1. Packages
  2. Azure Native v2
  3. API Docs
  4. relay
  5. Namespace
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.relay.Namespace

Explore with Pulumi AI

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

Description of a namespace resource. Azure REST API version: 2021-11-01. Prior API version in Azure Native 1.x: 2017-04-01.

Other available API versions: 2024-01-01.

Example Usage

RelayNamespaceCreate

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

return await Deployment.RunAsync(() => 
{
    var @namespace = new AzureNative.Relay.Namespace("namespace", new()
    {
        Location = "South Central US",
        NamespaceName = "example-RelayNamespace-5849",
        ResourceGroupName = "resourcegroup",
        Sku = new AzureNative.Relay.Inputs.SkuArgs
        {
            Name = AzureNative.Relay.SkuName.Standard,
            Tier = AzureNative.Relay.SkuTier.Standard,
        },
        Tags = 
        {
            { "tag1", "value1" },
            { "tag2", "value2" },
        },
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := relay.NewNamespace(ctx, "namespace", &relay.NamespaceArgs{
			Location:          pulumi.String("South Central US"),
			NamespaceName:     pulumi.String("example-RelayNamespace-5849"),
			ResourceGroupName: pulumi.String("resourcegroup"),
			Sku: &relay.SkuArgs{
				Name: pulumi.String(relay.SkuNameStandard),
				Tier: pulumi.String(relay.SkuTierStandard),
			},
			Tags: pulumi.StringMap{
				"tag1": pulumi.String("value1"),
				"tag2": pulumi.String("value2"),
			},
		})
		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.relay.Namespace;
import com.pulumi.azurenative.relay.NamespaceArgs;
import com.pulumi.azurenative.relay.inputs.SkuArgs;
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 namespace = new Namespace("namespace", NamespaceArgs.builder()
            .location("South Central US")
            .namespaceName("example-RelayNamespace-5849")
            .resourceGroupName("resourcegroup")
            .sku(SkuArgs.builder()
                .name("Standard")
                .tier("Standard")
                .build())
            .tags(Map.ofEntries(
                Map.entry("tag1", "value1"),
                Map.entry("tag2", "value2")
            ))
            .build());

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

const namespace = new azure_native.relay.Namespace("namespace", {
    location: "South Central US",
    namespaceName: "example-RelayNamespace-5849",
    resourceGroupName: "resourcegroup",
    sku: {
        name: azure_native.relay.SkuName.Standard,
        tier: azure_native.relay.SkuTier.Standard,
    },
    tags: {
        tag1: "value1",
        tag2: "value2",
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

namespace = azure_native.relay.Namespace("namespace",
    location="South Central US",
    namespace_name="example-RelayNamespace-5849",
    resource_group_name="resourcegroup",
    sku={
        "name": azure_native.relay.SkuName.STANDARD,
        "tier": azure_native.relay.SkuTier.STANDARD,
    },
    tags={
        "tag1": "value1",
        "tag2": "value2",
    })
Copy
resources:
  namespace:
    type: azure-native:relay:Namespace
    properties:
      location: South Central US
      namespaceName: example-RelayNamespace-5849
      resourceGroupName: resourcegroup
      sku:
        name: Standard
        tier: Standard
      tags:
        tag1: value1
        tag2: value2
Copy

Create Namespace Resource

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

Constructor syntax

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

@overload
def Namespace(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              resource_group_name: Optional[str] = None,
              location: Optional[str] = None,
              namespace_name: Optional[str] = None,
              private_endpoint_connections: Optional[Sequence[PrivateEndpointConnectionArgs]] = None,
              public_network_access: Optional[Union[str, PublicNetworkAccess]] = None,
              sku: Optional[SkuArgs] = None,
              tags: Optional[Mapping[str, str]] = None)
func NewNamespace(ctx *Context, name string, args NamespaceArgs, opts ...ResourceOption) (*Namespace, error)
public Namespace(string name, NamespaceArgs args, CustomResourceOptions? opts = null)
public Namespace(String name, NamespaceArgs args)
public Namespace(String name, NamespaceArgs args, CustomResourceOptions options)
type: azure-native:relay:Namespace
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. NamespaceArgs
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. NamespaceArgs
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. NamespaceArgs
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. NamespaceArgs
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. NamespaceArgs
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 examplenamespaceResourceResourceFromRelay = new AzureNative.Relay.Namespace("examplenamespaceResourceResourceFromRelay", new()
{
    ResourceGroupName = "string",
    Location = "string",
    NamespaceName = "string",
    PrivateEndpointConnections = new[]
    {
        
        {
            { "privateEndpoint", 
            {
                { "id", "string" },
            } },
            { "privateLinkServiceConnectionState", 
            {
                { "description", "string" },
                { "status", "string" },
            } },
            { "provisioningState", "string" },
        },
    },
    PublicNetworkAccess = "string",
    Sku = 
    {
        { "name", "string" },
        { "tier", "string" },
    },
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := relay.NewNamespace(ctx, "examplenamespaceResourceResourceFromRelay", &relay.NamespaceArgs{
	ResourceGroupName: "string",
	Location:          "string",
	NamespaceName:     "string",
	PrivateEndpointConnections: []map[string]interface{}{
		map[string]interface{}{
			"privateEndpoint": map[string]interface{}{
				"id": "string",
			},
			"privateLinkServiceConnectionState": map[string]interface{}{
				"description": "string",
				"status":      "string",
			},
			"provisioningState": "string",
		},
	},
	PublicNetworkAccess: "string",
	Sku: map[string]interface{}{
		"name": "string",
		"tier": "string",
	},
	Tags: map[string]interface{}{
		"string": "string",
	},
})
Copy
var examplenamespaceResourceResourceFromRelay = new Namespace("examplenamespaceResourceResourceFromRelay", NamespaceArgs.builder()
    .resourceGroupName("string")
    .location("string")
    .namespaceName("string")
    .privateEndpointConnections(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .publicNetworkAccess("string")
    .sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
examplenamespace_resource_resource_from_relay = azure_native.relay.Namespace("examplenamespaceResourceResourceFromRelay",
    resource_group_name=string,
    location=string,
    namespace_name=string,
    private_endpoint_connections=[{
        privateEndpoint: {
            id: string,
        },
        privateLinkServiceConnectionState: {
            description: string,
            status: string,
        },
        provisioningState: string,
    }],
    public_network_access=string,
    sku={
        name: string,
        tier: string,
    },
    tags={
        string: string,
    })
Copy
const examplenamespaceResourceResourceFromRelay = new azure_native.relay.Namespace("examplenamespaceResourceResourceFromRelay", {
    resourceGroupName: "string",
    location: "string",
    namespaceName: "string",
    privateEndpointConnections: [{
        privateEndpoint: {
            id: "string",
        },
        privateLinkServiceConnectionState: {
            description: "string",
            status: "string",
        },
        provisioningState: "string",
    }],
    publicNetworkAccess: "string",
    sku: {
        name: "string",
        tier: "string",
    },
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:relay:Namespace
properties:
    location: string
    namespaceName: string
    privateEndpointConnections:
        - privateEndpoint:
            id: string
          privateLinkServiceConnectionState:
            description: string
            status: string
          provisioningState: string
    publicNetworkAccess: string
    resourceGroupName: string
    sku:
        name: string
        tier: string
    tags:
        string: string
Copy

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

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the Resource group within the Azure subscription.
Location Changes to this property will trigger replacement. string
Resource location.
NamespaceName Changes to this property will trigger replacement. string
The namespace name
PrivateEndpointConnections List<Pulumi.AzureNative.Relay.Inputs.PrivateEndpointConnection>
List of private endpoint connections. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
PublicNetworkAccess string | Pulumi.AzureNative.Relay.PublicNetworkAccess
This determines if traffic is allowed over public network. By default it is enabled.
Sku Pulumi.AzureNative.Relay.Inputs.Sku
SKU of the namespace.
Tags Dictionary<string, string>
Resource tags.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the Resource group within the Azure subscription.
Location Changes to this property will trigger replacement. string
Resource location.
NamespaceName Changes to this property will trigger replacement. string
The namespace name
PrivateEndpointConnections []PrivateEndpointConnectionTypeArgs
List of private endpoint connections. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
PublicNetworkAccess string | PublicNetworkAccess
This determines if traffic is allowed over public network. By default it is enabled.
Sku SkuArgs
SKU of the namespace.
Tags map[string]string
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Name of the Resource group within the Azure subscription.
location Changes to this property will trigger replacement. String
Resource location.
namespaceName Changes to this property will trigger replacement. String
The namespace name
privateEndpointConnections List<PrivateEndpointConnection>
List of private endpoint connections. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
publicNetworkAccess String | PublicNetworkAccess
This determines if traffic is allowed over public network. By default it is enabled.
sku Sku
SKU of the namespace.
tags Map<String,String>
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the Resource group within the Azure subscription.
location Changes to this property will trigger replacement. string
Resource location.
namespaceName Changes to this property will trigger replacement. string
The namespace name
privateEndpointConnections PrivateEndpointConnection[]
List of private endpoint connections. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
publicNetworkAccess string | PublicNetworkAccess
This determines if traffic is allowed over public network. By default it is enabled.
sku Sku
SKU of the namespace.
tags {[key: string]: string}
Resource tags.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
Name of the Resource group within the Azure subscription.
location Changes to this property will trigger replacement. str
Resource location.
namespace_name Changes to this property will trigger replacement. str
The namespace name
private_endpoint_connections Sequence[PrivateEndpointConnectionArgs]
List of private endpoint connections. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
public_network_access str | PublicNetworkAccess
This determines if traffic is allowed over public network. By default it is enabled.
sku SkuArgs
SKU of the namespace.
tags Mapping[str, str]
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Name of the Resource group within the Azure subscription.
location Changes to this property will trigger replacement. String
Resource location.
namespaceName Changes to this property will trigger replacement. String
The namespace name
privateEndpointConnections List<Property Map>
List of private endpoint connections. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
publicNetworkAccess String | "Enabled" | "Disabled" | "SecuredByPerimeter"
This determines if traffic is allowed over public network. By default it is enabled.
sku Property Map
SKU of the namespace.
tags Map<String>
Resource tags.

Outputs

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

CreatedAt string
The time the namespace was created.
Id string
The provider-assigned unique ID for this managed resource.
MetricId string
Identifier for Azure Insights metrics.
Name string
Resource name.
ProvisioningState string
Provisioning state of the Namespace.
ServiceBusEndpoint string
Endpoint you can use to perform Service Bus operations.
Status string
Status of the Namespace.
SystemData Pulumi.AzureNative.Relay.Outputs.SystemDataResponse
The system meta data relating to this resource.
Type string
Resource type.
UpdatedAt string
The time the namespace was updated.
CreatedAt string
The time the namespace was created.
Id string
The provider-assigned unique ID for this managed resource.
MetricId string
Identifier for Azure Insights metrics.
Name string
Resource name.
ProvisioningState string
Provisioning state of the Namespace.
ServiceBusEndpoint string
Endpoint you can use to perform Service Bus operations.
Status string
Status of the Namespace.
SystemData SystemDataResponse
The system meta data relating to this resource.
Type string
Resource type.
UpdatedAt string
The time the namespace was updated.
createdAt String
The time the namespace was created.
id String
The provider-assigned unique ID for this managed resource.
metricId String
Identifier for Azure Insights metrics.
name String
Resource name.
provisioningState String
Provisioning state of the Namespace.
serviceBusEndpoint String
Endpoint you can use to perform Service Bus operations.
status String
Status of the Namespace.
systemData SystemDataResponse
The system meta data relating to this resource.
type String
Resource type.
updatedAt String
The time the namespace was updated.
createdAt string
The time the namespace was created.
id string
The provider-assigned unique ID for this managed resource.
metricId string
Identifier for Azure Insights metrics.
name string
Resource name.
provisioningState string
Provisioning state of the Namespace.
serviceBusEndpoint string
Endpoint you can use to perform Service Bus operations.
status string
Status of the Namespace.
systemData SystemDataResponse
The system meta data relating to this resource.
type string
Resource type.
updatedAt string
The time the namespace was updated.
created_at str
The time the namespace was created.
id str
The provider-assigned unique ID for this managed resource.
metric_id str
Identifier for Azure Insights metrics.
name str
Resource name.
provisioning_state str
Provisioning state of the Namespace.
service_bus_endpoint str
Endpoint you can use to perform Service Bus operations.
status str
Status of the Namespace.
system_data SystemDataResponse
The system meta data relating to this resource.
type str
Resource type.
updated_at str
The time the namespace was updated.
createdAt String
The time the namespace was created.
id String
The provider-assigned unique ID for this managed resource.
metricId String
Identifier for Azure Insights metrics.
name String
Resource name.
provisioningState String
Provisioning state of the Namespace.
serviceBusEndpoint String
Endpoint you can use to perform Service Bus operations.
status String
Status of the Namespace.
systemData Property Map
The system meta data relating to this resource.
type String
Resource type.
updatedAt String
The time the namespace was updated.

Supporting Types

ConnectionState
, ConnectionStateArgs

Description string
Description of the connection state.
Status string | Pulumi.AzureNative.Relay.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.

PrivateEndpointConnection
, PrivateEndpointConnectionArgs

PrivateEndpoint Pulumi.AzureNative.Relay.Inputs.PrivateEndpoint
The Private Endpoint resource for this Connection.
PrivateLinkServiceConnectionState Pulumi.AzureNative.Relay.Inputs.ConnectionState
Details about the state of the connection.
ProvisioningState string | Pulumi.AzureNative.Relay.EndPointProvisioningState
Provisioning state of the Private Endpoint Connection.
PrivateEndpoint PrivateEndpoint
The Private Endpoint resource for this Connection.
PrivateLinkServiceConnectionState ConnectionState
Details about the state of the connection.
ProvisioningState string | EndPointProvisioningState
Provisioning state of the Private Endpoint Connection.
privateEndpoint PrivateEndpoint
The Private Endpoint resource for this Connection.
privateLinkServiceConnectionState ConnectionState
Details about the state of the connection.
provisioningState String | EndPointProvisioningState
Provisioning state of the Private Endpoint Connection.
privateEndpoint PrivateEndpoint
The Private Endpoint resource for this Connection.
privateLinkServiceConnectionState ConnectionState
Details about the state of the connection.
provisioningState string | EndPointProvisioningState
Provisioning state of the Private Endpoint Connection.
private_endpoint PrivateEndpoint
The Private Endpoint resource for this Connection.
private_link_service_connection_state ConnectionState
Details about the state of the connection.
provisioning_state str | EndPointProvisioningState
Provisioning state of the Private Endpoint Connection.
privateEndpoint Property Map
The Private Endpoint resource for this Connection.
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.

PrivateEndpointConnectionResponse
, PrivateEndpointConnectionResponseArgs

Id This property is required. string
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
Location This property is required. string
The geo-location where the resource lives
Name This property is required. string
The name of the resource
SystemData This property is required. Pulumi.AzureNative.Relay.Inputs.SystemDataResponse
The system meta data relating to this resource.
Type This property is required. string
The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
PrivateEndpoint Pulumi.AzureNative.Relay.Inputs.PrivateEndpointResponse
The Private Endpoint resource for this Connection.
PrivateLinkServiceConnectionState Pulumi.AzureNative.Relay.Inputs.ConnectionStateResponse
Details about the state of the connection.
ProvisioningState string
Provisioning state of the Private Endpoint Connection.
Id This property is required. string
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
Location This property is required. string
The geo-location where the resource lives
Name This property is required. string
The name of the resource
SystemData This property is required. SystemDataResponse
The system meta data relating to this resource.
Type This property is required. string
The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
PrivateEndpoint PrivateEndpointResponse
The Private Endpoint resource for this Connection.
PrivateLinkServiceConnectionState ConnectionStateResponse
Details about the state of the connection.
ProvisioningState string
Provisioning state of the Private Endpoint Connection.
id This property is required. String
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
location This property is required. String
The geo-location where the resource lives
name This property is required. String
The name of the resource
systemData This property is required. SystemDataResponse
The system meta data relating to this resource.
type This property is required. String
The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
privateEndpoint PrivateEndpointResponse
The Private Endpoint resource for this Connection.
privateLinkServiceConnectionState ConnectionStateResponse
Details about the state of the connection.
provisioningState String
Provisioning state of the Private Endpoint Connection.
id This property is required. string
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
location This property is required. string
The geo-location where the resource lives
name This property is required. string
The name of the resource
systemData This property is required. SystemDataResponse
The system meta data relating to this resource.
type This property is required. string
The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
privateEndpoint PrivateEndpointResponse
The Private Endpoint resource for this Connection.
privateLinkServiceConnectionState ConnectionStateResponse
Details about the state of the connection.
provisioningState string
Provisioning state of the Private Endpoint Connection.
id This property is required. str
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
location This property is required. str
The geo-location where the resource lives
name This property is required. str
The name of the resource
system_data This property is required. SystemDataResponse
The system meta data relating to this resource.
type This property is required. str
The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
private_endpoint PrivateEndpointResponse
The Private Endpoint resource for this Connection.
private_link_service_connection_state ConnectionStateResponse
Details about the state of the connection.
provisioning_state str
Provisioning state of the Private Endpoint Connection.
id This property is required. String
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
location This property is required. String
The geo-location where the resource lives
name This property is required. String
The name of the resource
systemData This property is required. Property Map
The system meta data relating to this resource.
type This property is required. String
The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
privateEndpoint Property Map
The Private Endpoint resource for this Connection.
privateLinkServiceConnectionState Property Map
Details about the state of the connection.
provisioningState String
Provisioning state of the Private Endpoint Connection.

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

PublicNetworkAccess
, PublicNetworkAccessArgs

Enabled
Enabled
Disabled
Disabled
SecuredByPerimeter
SecuredByPerimeter
PublicNetworkAccessEnabled
Enabled
PublicNetworkAccessDisabled
Disabled
PublicNetworkAccessSecuredByPerimeter
SecuredByPerimeter
Enabled
Enabled
Disabled
Disabled
SecuredByPerimeter
SecuredByPerimeter
Enabled
Enabled
Disabled
Disabled
SecuredByPerimeter
SecuredByPerimeter
ENABLED
Enabled
DISABLED
Disabled
SECURED_BY_PERIMETER
SecuredByPerimeter
"Enabled"
Enabled
"Disabled"
Disabled
"SecuredByPerimeter"
SecuredByPerimeter

Sku
, SkuArgs

Name This property is required. string | Pulumi.AzureNative.Relay.SkuName
Name of this SKU.
Tier string | Pulumi.AzureNative.Relay.SkuTier
The tier of this SKU.
Name This property is required. string | SkuName
Name of this SKU.
Tier string | SkuTier
The tier of this SKU.
name This property is required. String | SkuName
Name of this SKU.
tier String | SkuTier
The tier of this SKU.
name This property is required. string | SkuName
Name of this SKU.
tier string | SkuTier
The tier of this SKU.
name This property is required. str | SkuName
Name of this SKU.
tier str | SkuTier
The tier of this SKU.
name This property is required. String | "Standard"
Name of this SKU.
tier String | "Standard"
The tier of this SKU.

SkuName
, SkuNameArgs

Standard
Standard
SkuNameStandard
Standard
Standard
Standard
Standard
Standard
STANDARD
Standard
"Standard"
Standard

SkuResponse
, SkuResponseArgs

Name This property is required. string
Name of this SKU.
Tier string
The tier of this SKU.
Name This property is required. string
Name of this SKU.
Tier string
The tier of this SKU.
name This property is required. String
Name of this SKU.
tier String
The tier of this SKU.
name This property is required. string
Name of this SKU.
tier string
The tier of this SKU.
name This property is required. str
Name of this SKU.
tier str
The tier of this SKU.
name This property is required. String
Name of this SKU.
tier String
The tier of this SKU.

SkuTier
, SkuTierArgs

Standard
Standard
SkuTierStandard
Standard
Standard
Standard
Standard
Standard
STANDARD
Standard
"Standard"
Standard

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:relay:Namespace example-RelayNamespace-5849 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Relay/namespaces/{namespaceName} 
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
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