azure-native.servicebus.Namespace
Description of a namespace resource.
Uses Azure REST API version 2024-01-01. In version 2.x of the Azure Native provider, it used API version 2022-01-01-preview.
Other available API versions: 2018-01-01-preview, 2021-01-01-preview, 2021-06-01-preview, 2021-11-01, 2022-01-01-preview, 2022-10-01-preview, 2023-01-01-preview, 2025-05-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native servicebus [ApiVersion]. See the version guide for details.
Example Usage
NameSpaceCreate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var @namespace = new AzureNative.ServiceBus.Namespace("namespace", new()
    {
        Location = "South Central US",
        NamespaceName = "sdk-Namespace2924",
        PremiumMessagingPartitions = 2,
        ResourceGroupName = "ArunMonocle",
        Sku = new AzureNative.ServiceBus.Inputs.SBSkuArgs
        {
            Capacity = 4,
            Name = AzureNative.ServiceBus.SkuName.Premium,
            Tier = AzureNative.ServiceBus.SkuTier.Premium,
        },
        Tags = 
        {
            { "tag1", "value1" },
            { "tag2", "value2" },
        },
    });
});
package main
import (
	servicebus "github.com/pulumi/pulumi-azure-native-sdk/servicebus/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := servicebus.NewNamespace(ctx, "namespace", &servicebus.NamespaceArgs{
			Location:                   pulumi.String("South Central US"),
			NamespaceName:              pulumi.String("sdk-Namespace2924"),
			PremiumMessagingPartitions: pulumi.Int(2),
			ResourceGroupName:          pulumi.String("ArunMonocle"),
			Sku: &servicebus.SBSkuArgs{
				Capacity: pulumi.Int(4),
				Name:     servicebus.SkuNamePremium,
				Tier:     servicebus.SkuTierPremium,
			},
			Tags: pulumi.StringMap{
				"tag1": pulumi.String("value1"),
				"tag2": pulumi.String("value2"),
			},
		})
		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.servicebus.Namespace;
import com.pulumi.azurenative.servicebus.NamespaceArgs;
import com.pulumi.azurenative.servicebus.inputs.SBSkuArgs;
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("sdk-Namespace2924")
            .premiumMessagingPartitions(2)
            .resourceGroupName("ArunMonocle")
            .sku(SBSkuArgs.builder()
                .capacity(4)
                .name("Premium")
                .tier("Premium")
                .build())
            .tags(Map.ofEntries(
                Map.entry("tag1", "value1"),
                Map.entry("tag2", "value2")
            ))
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const namespace = new azure_native.servicebus.Namespace("namespace", {
    location: "South Central US",
    namespaceName: "sdk-Namespace2924",
    premiumMessagingPartitions: 2,
    resourceGroupName: "ArunMonocle",
    sku: {
        capacity: 4,
        name: azure_native.servicebus.SkuName.Premium,
        tier: azure_native.servicebus.SkuTier.Premium,
    },
    tags: {
        tag1: "value1",
        tag2: "value2",
    },
});
import pulumi
import pulumi_azure_native as azure_native
namespace = azure_native.servicebus.Namespace("namespace",
    location="South Central US",
    namespace_name="sdk-Namespace2924",
    premium_messaging_partitions=2,
    resource_group_name="ArunMonocle",
    sku={
        "capacity": 4,
        "name": azure_native.servicebus.SkuName.PREMIUM,
        "tier": azure_native.servicebus.SkuTier.PREMIUM,
    },
    tags={
        "tag1": "value1",
        "tag2": "value2",
    })
resources:
  namespace:
    type: azure-native:servicebus:Namespace
    properties:
      location: South Central US
      namespaceName: sdk-Namespace2924
      premiumMessagingPartitions: 2
      resourceGroupName: ArunMonocle
      sku:
        capacity: 4
        name: Premium
        tier: Premium
      tags:
        tag1: value1
        tag2: value2
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,
              namespace_name: Optional[str] = None,
              encryption: Optional[EncryptionArgs] = None,
              identity: Optional[IdentityArgs] = None,
              location: Optional[str] = None,
              minimum_tls_version: Optional[Union[str, TlsVersion]] = None,
              alternate_name: Optional[str] = None,
              premium_messaging_partitions: Optional[int] = None,
              private_endpoint_connections: Optional[Sequence[PrivateEndpointConnectionArgs]] = None,
              public_network_access: Optional[Union[str, PublicNetworkAccess]] = None,
              disable_local_auth: Optional[bool] = None,
              sku: Optional[SBSkuArgs] = None,
              tags: Optional[Mapping[str, str]] = None,
              zone_redundant: Optional[bool] = 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:servicebus:Namespace
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args NamespaceArgs
- 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 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 string
- The unique name of the resource.
- args NamespaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NamespaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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 examplenamespaceResourceResourceFromServicebus = new AzureNative.ServiceBus.Namespace("examplenamespaceResourceResourceFromServicebus", new()
{
    ResourceGroupName = "string",
    NamespaceName = "string",
    Encryption = new AzureNative.ServiceBus.Inputs.EncryptionArgs
    {
        KeySource = AzureNative.ServiceBus.KeySource.Microsoft_KeyVault,
        KeyVaultProperties = new[]
        {
            new AzureNative.ServiceBus.Inputs.KeyVaultPropertiesArgs
            {
                Identity = new AzureNative.ServiceBus.Inputs.UserAssignedIdentityPropertiesArgs
                {
                    UserAssignedIdentity = "string",
                },
                KeyName = "string",
                KeyVaultUri = "string",
                KeyVersion = "string",
            },
        },
        RequireInfrastructureEncryption = false,
    },
    Identity = new AzureNative.ServiceBus.Inputs.IdentityArgs
    {
        Type = AzureNative.ServiceBus.ManagedServiceIdentityType.SystemAssigned,
        UserAssignedIdentities = new[]
        {
            "string",
        },
    },
    Location = "string",
    MinimumTlsVersion = "string",
    AlternateName = "string",
    PremiumMessagingPartitions = 0,
    PrivateEndpointConnections = new[]
    {
        new AzureNative.ServiceBus.Inputs.PrivateEndpointConnectionArgs
        {
            PrivateEndpoint = new AzureNative.ServiceBus.Inputs.PrivateEndpointArgs
            {
                Id = "string",
            },
            PrivateLinkServiceConnectionState = new AzureNative.ServiceBus.Inputs.ConnectionStateArgs
            {
                Description = "string",
                Status = "string",
            },
            ProvisioningState = "string",
        },
    },
    PublicNetworkAccess = "string",
    DisableLocalAuth = false,
    Sku = new AzureNative.ServiceBus.Inputs.SBSkuArgs
    {
        Name = AzureNative.ServiceBus.SkuName.Basic,
        Capacity = 0,
        Tier = AzureNative.ServiceBus.SkuTier.Basic,
    },
    Tags = 
    {
        { "string", "string" },
    },
    ZoneRedundant = false,
});
example, err := servicebus.NewNamespace(ctx, "examplenamespaceResourceResourceFromServicebus", &servicebus.NamespaceArgs{
	ResourceGroupName: pulumi.String("string"),
	NamespaceName:     pulumi.String("string"),
	Encryption: &servicebus.EncryptionArgs{
		KeySource: servicebus.KeySource_Microsoft_KeyVault,
		KeyVaultProperties: servicebus.KeyVaultPropertiesArray{
			&servicebus.KeyVaultPropertiesArgs{
				Identity: &servicebus.UserAssignedIdentityPropertiesArgs{
					UserAssignedIdentity: pulumi.String("string"),
				},
				KeyName:     pulumi.String("string"),
				KeyVaultUri: pulumi.String("string"),
				KeyVersion:  pulumi.String("string"),
			},
		},
		RequireInfrastructureEncryption: pulumi.Bool(false),
	},
	Identity: &servicebus.IdentityArgs{
		Type: servicebus.ManagedServiceIdentityTypeSystemAssigned,
		UserAssignedIdentities: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Location:                   pulumi.String("string"),
	MinimumTlsVersion:          pulumi.String("string"),
	AlternateName:              pulumi.String("string"),
	PremiumMessagingPartitions: pulumi.Int(0),
	PrivateEndpointConnections: servicebus.PrivateEndpointConnectionTypeArray{
		&servicebus.PrivateEndpointConnectionTypeArgs{
			PrivateEndpoint: &servicebus.PrivateEndpointArgs{
				Id: pulumi.String("string"),
			},
			PrivateLinkServiceConnectionState: &servicebus.ConnectionStateArgs{
				Description: pulumi.String("string"),
				Status:      pulumi.String("string"),
			},
			ProvisioningState: pulumi.String("string"),
		},
	},
	PublicNetworkAccess: pulumi.String("string"),
	DisableLocalAuth:    pulumi.Bool(false),
	Sku: &servicebus.SBSkuArgs{
		Name:     servicebus.SkuNameBasic,
		Capacity: pulumi.Int(0),
		Tier:     servicebus.SkuTierBasic,
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	ZoneRedundant: pulumi.Bool(false),
})
var examplenamespaceResourceResourceFromServicebus = new com.pulumi.azurenative.servicebus.Namespace("examplenamespaceResourceResourceFromServicebus", com.pulumi.azurenative.servicebus.NamespaceArgs.builder()
    .resourceGroupName("string")
    .namespaceName("string")
    .encryption(EncryptionArgs.builder()
        .keySource("Microsoft.KeyVault")
        .keyVaultProperties(KeyVaultPropertiesArgs.builder()
            .identity(UserAssignedIdentityPropertiesArgs.builder()
                .userAssignedIdentity("string")
                .build())
            .keyName("string")
            .keyVaultUri("string")
            .keyVersion("string")
            .build())
        .requireInfrastructureEncryption(false)
        .build())
    .identity(IdentityArgs.builder()
        .type("SystemAssigned")
        .userAssignedIdentities("string")
        .build())
    .location("string")
    .minimumTlsVersion("string")
    .alternateName("string")
    .premiumMessagingPartitions(0)
    .privateEndpointConnections(PrivateEndpointConnectionArgs.builder()
        .privateEndpoint(PrivateEndpointArgs.builder()
            .id("string")
            .build())
        .privateLinkServiceConnectionState(ConnectionStateArgs.builder()
            .description("string")
            .status("string")
            .build())
        .provisioningState("string")
        .build())
    .publicNetworkAccess("string")
    .disableLocalAuth(false)
    .sku(SBSkuArgs.builder()
        .name("Basic")
        .capacity(0)
        .tier("Basic")
        .build())
    .tags(Map.of("string", "string"))
    .zoneRedundant(false)
    .build());
examplenamespace_resource_resource_from_servicebus = azure_native.servicebus.Namespace("examplenamespaceResourceResourceFromServicebus",
    resource_group_name="string",
    namespace_name="string",
    encryption={
        "key_source": azure_native.servicebus.KeySource.MICROSOFT_KEY_VAULT,
        "key_vault_properties": [{
            "identity": {
                "user_assigned_identity": "string",
            },
            "key_name": "string",
            "key_vault_uri": "string",
            "key_version": "string",
        }],
        "require_infrastructure_encryption": False,
    },
    identity={
        "type": azure_native.servicebus.ManagedServiceIdentityType.SYSTEM_ASSIGNED,
        "user_assigned_identities": ["string"],
    },
    location="string",
    minimum_tls_version="string",
    alternate_name="string",
    premium_messaging_partitions=0,
    private_endpoint_connections=[{
        "private_endpoint": {
            "id": "string",
        },
        "private_link_service_connection_state": {
            "description": "string",
            "status": "string",
        },
        "provisioning_state": "string",
    }],
    public_network_access="string",
    disable_local_auth=False,
    sku={
        "name": azure_native.servicebus.SkuName.BASIC,
        "capacity": 0,
        "tier": azure_native.servicebus.SkuTier.BASIC,
    },
    tags={
        "string": "string",
    },
    zone_redundant=False)
const examplenamespaceResourceResourceFromServicebus = new azure_native.servicebus.Namespace("examplenamespaceResourceResourceFromServicebus", {
    resourceGroupName: "string",
    namespaceName: "string",
    encryption: {
        keySource: azure_native.servicebus.KeySource.Microsoft_KeyVault,
        keyVaultProperties: [{
            identity: {
                userAssignedIdentity: "string",
            },
            keyName: "string",
            keyVaultUri: "string",
            keyVersion: "string",
        }],
        requireInfrastructureEncryption: false,
    },
    identity: {
        type: azure_native.servicebus.ManagedServiceIdentityType.SystemAssigned,
        userAssignedIdentities: ["string"],
    },
    location: "string",
    minimumTlsVersion: "string",
    alternateName: "string",
    premiumMessagingPartitions: 0,
    privateEndpointConnections: [{
        privateEndpoint: {
            id: "string",
        },
        privateLinkServiceConnectionState: {
            description: "string",
            status: "string",
        },
        provisioningState: "string",
    }],
    publicNetworkAccess: "string",
    disableLocalAuth: false,
    sku: {
        name: azure_native.servicebus.SkuName.Basic,
        capacity: 0,
        tier: azure_native.servicebus.SkuTier.Basic,
    },
    tags: {
        string: "string",
    },
    zoneRedundant: false,
});
type: azure-native:servicebus:Namespace
properties:
    alternateName: string
    disableLocalAuth: false
    encryption:
        keySource: Microsoft.KeyVault
        keyVaultProperties:
            - identity:
                userAssignedIdentity: string
              keyName: string
              keyVaultUri: string
              keyVersion: string
        requireInfrastructureEncryption: false
    identity:
        type: SystemAssigned
        userAssignedIdentities:
            - string
    location: string
    minimumTlsVersion: string
    namespaceName: string
    premiumMessagingPartitions: 0
    privateEndpointConnections:
        - privateEndpoint:
            id: string
          privateLinkServiceConnectionState:
            description: string
            status: string
          provisioningState: string
    publicNetworkAccess: string
    resourceGroupName: string
    sku:
        capacity: 0
        name: Basic
        tier: Basic
    tags:
        string: string
    zoneRedundant: false
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:
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- AlternateName string
- Alternate name for namespace
- DisableLocal boolAuth 
- This property disables SAS authentication for the Service Bus namespace.
- Encryption
Pulumi.Azure Native. Service Bus. Inputs. Encryption 
- Properties of BYOK Encryption description
- Identity
Pulumi.Azure Native. Service Bus. Inputs. Identity 
- Properties of BYOK Identity description
- Location string
- The Geo-location where the resource lives
- MinimumTls string | Pulumi.Version Azure Native. Service Bus. Tls Version 
- The minimum TLS version for the cluster to support, e.g. '1.2'
- NamespaceName string
- The namespace name.
- int
- The number of partitions of a Service Bus namespace. This property is only applicable to Premium SKU namespaces. The default value is 1 and possible values are 1, 2 and 4
- PrivateEndpoint List<Pulumi.Connections Azure Native. Service Bus. Inputs. Private Endpoint Connection> 
- 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.
- PublicNetwork string | Pulumi.Access Azure Native. Service Bus. Public Network Access 
- This determines if traffic is allowed over public network. By default it is enabled.
- Sku
Pulumi.Azure Native. Service Bus. Inputs. SBSku 
- Properties of SKU
- Dictionary<string, string>
- Resource tags
- ZoneRedundant bool
- This property reflects if zone redundancy has been enabled for namespaces in regions that support availability zones.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- AlternateName string
- Alternate name for namespace
- DisableLocal boolAuth 
- This property disables SAS authentication for the Service Bus namespace.
- Encryption
EncryptionArgs 
- Properties of BYOK Encryption description
- Identity
IdentityArgs 
- Properties of BYOK Identity description
- Location string
- The Geo-location where the resource lives
- MinimumTls string | TlsVersion Version 
- The minimum TLS version for the cluster to support, e.g. '1.2'
- NamespaceName string
- The namespace name.
- int
- The number of partitions of a Service Bus namespace. This property is only applicable to Premium SKU namespaces. The default value is 1 and possible values are 1, 2 and 4
- PrivateEndpoint []PrivateConnections Endpoint Connection Type Args 
- 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.
- PublicNetwork string | PublicAccess Network Access 
- This determines if traffic is allowed over public network. By default it is enabled.
- Sku
SBSkuArgs 
- Properties of SKU
- map[string]string
- Resource tags
- ZoneRedundant bool
- This property reflects if zone redundancy has been enabled for namespaces in regions that support availability zones.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- alternateName String
- Alternate name for namespace
- disableLocal BooleanAuth 
- This property disables SAS authentication for the Service Bus namespace.
- encryption Encryption
- Properties of BYOK Encryption description
- identity Identity
- Properties of BYOK Identity description
- location String
- The Geo-location where the resource lives
- minimumTls String | TlsVersion Version 
- The minimum TLS version for the cluster to support, e.g. '1.2'
- namespaceName String
- The namespace name.
- Integer
- The number of partitions of a Service Bus namespace. This property is only applicable to Premium SKU namespaces. The default value is 1 and possible values are 1, 2 and 4
- privateEndpoint List<PrivateConnections Endpoint Connection> 
- 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.
- publicNetwork String | PublicAccess Network Access 
- This determines if traffic is allowed over public network. By default it is enabled.
- sku SBSku
- Properties of SKU
- Map<String,String>
- Resource tags
- zoneRedundant Boolean
- This property reflects if zone redundancy has been enabled for namespaces in regions that support availability zones.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- alternateName string
- Alternate name for namespace
- disableLocal booleanAuth 
- This property disables SAS authentication for the Service Bus namespace.
- encryption Encryption
- Properties of BYOK Encryption description
- identity Identity
- Properties of BYOK Identity description
- location string
- The Geo-location where the resource lives
- minimumTls string | TlsVersion Version 
- The minimum TLS version for the cluster to support, e.g. '1.2'
- namespaceName string
- The namespace name.
- number
- The number of partitions of a Service Bus namespace. This property is only applicable to Premium SKU namespaces. The default value is 1 and possible values are 1, 2 and 4
- privateEndpoint PrivateConnections Endpoint Connection[] 
- 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.
- publicNetwork string | PublicAccess Network Access 
- This determines if traffic is allowed over public network. By default it is enabled.
- sku SBSku
- Properties of SKU
- {[key: string]: string}
- Resource tags
- zoneRedundant boolean
- This property reflects if zone redundancy has been enabled for namespaces in regions that support availability zones.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- alternate_name str
- Alternate name for namespace
- disable_local_ boolauth 
- This property disables SAS authentication for the Service Bus namespace.
- encryption
EncryptionArgs 
- Properties of BYOK Encryption description
- identity
IdentityArgs 
- Properties of BYOK Identity description
- location str
- The Geo-location where the resource lives
- minimum_tls_ str | Tlsversion Version 
- The minimum TLS version for the cluster to support, e.g. '1.2'
- namespace_name str
- The namespace name.
- int
- The number of partitions of a Service Bus namespace. This property is only applicable to Premium SKU namespaces. The default value is 1 and possible values are 1, 2 and 4
- private_endpoint_ Sequence[Privateconnections Endpoint Connection Args] 
- 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_ str | Publicaccess Network Access 
- This determines if traffic is allowed over public network. By default it is enabled.
- sku
SBSkuArgs 
- Properties of SKU
- Mapping[str, str]
- Resource tags
- zone_redundant bool
- This property reflects if zone redundancy has been enabled for namespaces in regions that support availability zones.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- alternateName String
- Alternate name for namespace
- disableLocal BooleanAuth 
- This property disables SAS authentication for the Service Bus namespace.
- encryption Property Map
- Properties of BYOK Encryption description
- identity Property Map
- Properties of BYOK Identity description
- location String
- The Geo-location where the resource lives
- minimumTls String | "1.0" | "1.1" | "1.2"Version 
- The minimum TLS version for the cluster to support, e.g. '1.2'
- namespaceName String
- The namespace name.
- Number
- The number of partitions of a Service Bus namespace. This property is only applicable to Premium SKU namespaces. The default value is 1 and possible values are 1, 2 and 4
- privateEndpoint List<Property Map>Connections 
- 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.
- publicNetwork String | "Enabled" | "Disabled" | "SecuredAccess By Perimeter" 
- This determines if traffic is allowed over public network. By default it is enabled.
- sku Property Map
- Properties of SKU
- Map<String>
- Resource tags
- zoneRedundant Boolean
- This property reflects if zone redundancy has been enabled for namespaces in regions that support availability zones.
Outputs
All input properties are implicitly available as output properties. Additionally, the Namespace resource produces the following output properties:
- AzureApi stringVersion 
- The Azure API version of the resource.
- 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.
- ServiceBus stringEndpoint 
- Endpoint you can use to perform Service Bus operations.
- Status string
- Status of the namespace.
- SystemData Pulumi.Azure Native. Service Bus. Outputs. System Data Response 
- The system meta data relating to this resource.
- Type string
- Resource type
- UpdatedAt string
- The time the namespace was updated.
- AzureApi stringVersion 
- The Azure API version of the resource.
- 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.
- ServiceBus stringEndpoint 
- Endpoint you can use to perform Service Bus operations.
- Status string
- Status of the namespace.
- SystemData SystemData Response 
- The system meta data relating to this resource.
- Type string
- Resource type
- UpdatedAt string
- The time the namespace was updated.
- azureApi StringVersion 
- The Azure API version of the resource.
- 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.
- serviceBus StringEndpoint 
- Endpoint you can use to perform Service Bus operations.
- status String
- Status of the namespace.
- systemData SystemData Response 
- The system meta data relating to this resource.
- type String
- Resource type
- updatedAt String
- The time the namespace was updated.
- azureApi stringVersion 
- The Azure API version of the resource.
- 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.
- serviceBus stringEndpoint 
- Endpoint you can use to perform Service Bus operations.
- status string
- Status of the namespace.
- systemData SystemData Response 
- The system meta data relating to this resource.
- type string
- Resource type
- updatedAt string
- The time the namespace was updated.
- azure_api_ strversion 
- The Azure API version of the resource.
- 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_ strendpoint 
- Endpoint you can use to perform Service Bus operations.
- status str
- Status of the namespace.
- system_data SystemData Response 
- The system meta data relating to this resource.
- type str
- Resource type
- updated_at str
- The time the namespace was updated.
- azureApi StringVersion 
- The Azure API version of the resource.
- 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.
- serviceBus StringEndpoint 
- 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    
ConnectionState information.- Description string
- Description of the connection state.
- Status
string | Pulumi.Azure Native. Service Bus. Private Link Connection Status 
- Status of the connection.
- Description string
- Description of the connection state.
- Status
string | PrivateLink Connection Status 
- Status of the connection.
- description String
- Description of the connection state.
- status
String | PrivateLink Connection Status 
- Status of the connection.
- description string
- Description of the connection state.
- status
string | PrivateLink Connection Status 
- Status of the connection.
- description str
- Description of the connection state.
- status
str | PrivateLink Connection Status 
- Status of the connection.
- description String
- Description of the connection state.
- status String | "Pending" | "Approved" | "Rejected" | "Disconnected"
- Status of the connection.
ConnectionStateResponse, ConnectionStateResponseArgs      
ConnectionState information.- 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.
Encryption, EncryptionArgs  
Properties to configure Encryption- KeySource Pulumi.Azure Native. Service Bus. Key Source 
- Enumerates the possible value of keySource for Encryption
- KeyVault List<Pulumi.Properties Azure Native. Service Bus. Inputs. Key Vault Properties> 
- Properties of KeyVault
- RequireInfrastructure boolEncryption 
- Enable Infrastructure Encryption (Double Encryption)
- KeySource KeySource 
- Enumerates the possible value of keySource for Encryption
- KeyVault []KeyProperties Vault Properties 
- Properties of KeyVault
- RequireInfrastructure boolEncryption 
- Enable Infrastructure Encryption (Double Encryption)
- keySource KeySource 
- Enumerates the possible value of keySource for Encryption
- keyVault List<KeyProperties Vault Properties> 
- Properties of KeyVault
- requireInfrastructure BooleanEncryption 
- Enable Infrastructure Encryption (Double Encryption)
- keySource KeySource 
- Enumerates the possible value of keySource for Encryption
- keyVault KeyProperties Vault Properties[] 
- Properties of KeyVault
- requireInfrastructure booleanEncryption 
- Enable Infrastructure Encryption (Double Encryption)
- key_source KeySource 
- Enumerates the possible value of keySource for Encryption
- key_vault_ Sequence[Keyproperties Vault Properties] 
- Properties of KeyVault
- require_infrastructure_ boolencryption 
- Enable Infrastructure Encryption (Double Encryption)
- keySource "Microsoft.Key Vault" 
- Enumerates the possible value of keySource for Encryption
- keyVault List<Property Map>Properties 
- Properties of KeyVault
- requireInfrastructure BooleanEncryption 
- Enable Infrastructure Encryption (Double Encryption)
EncryptionResponse, EncryptionResponseArgs    
Properties to configure Encryption- KeySource string
- Enumerates the possible value of keySource for Encryption
- KeyVault List<Pulumi.Properties Azure Native. Service Bus. Inputs. Key Vault Properties Response> 
- Properties of KeyVault
- RequireInfrastructure boolEncryption 
- Enable Infrastructure Encryption (Double Encryption)
- KeySource string
- Enumerates the possible value of keySource for Encryption
- KeyVault []KeyProperties Vault Properties Response 
- Properties of KeyVault
- RequireInfrastructure boolEncryption 
- Enable Infrastructure Encryption (Double Encryption)
- keySource String
- Enumerates the possible value of keySource for Encryption
- keyVault List<KeyProperties Vault Properties Response> 
- Properties of KeyVault
- requireInfrastructure BooleanEncryption 
- Enable Infrastructure Encryption (Double Encryption)
- keySource string
- Enumerates the possible value of keySource for Encryption
- keyVault KeyProperties Vault Properties Response[] 
- Properties of KeyVault
- requireInfrastructure booleanEncryption 
- Enable Infrastructure Encryption (Double Encryption)
- key_source str
- Enumerates the possible value of keySource for Encryption
- key_vault_ Sequence[Keyproperties Vault Properties Response] 
- Properties of KeyVault
- require_infrastructure_ boolencryption 
- Enable Infrastructure Encryption (Double Encryption)
- keySource String
- Enumerates the possible value of keySource for Encryption
- keyVault List<Property Map>Properties 
- Properties of KeyVault
- requireInfrastructure BooleanEncryption 
- Enable Infrastructure Encryption (Double Encryption)
EndPointProvisioningState, EndPointProvisioningStateArgs        
- Creating
- Creating
- Updating
- Updating
- Deleting
- Deleting
- Succeeded
- Succeeded
- Canceled
- Canceled
- Failed
- Failed
- EndPoint Provisioning State Creating 
- Creating
- EndPoint Provisioning State Updating 
- Updating
- EndPoint Provisioning State Deleting 
- Deleting
- EndPoint Provisioning State Succeeded 
- Succeeded
- EndPoint Provisioning State Canceled 
- Canceled
- EndPoint Provisioning State 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
- "Creating"
- Creating
- "Updating"
- Updating
- "Deleting"
- Deleting
- "Succeeded"
- Succeeded
- "Canceled"
- Canceled
- "Failed"
- Failed
Identity, IdentityArgs  
Properties to configure User Assigned Identities for Bring your Own Keys- Type
Pulumi.Azure Native. Service Bus. Managed Service Identity Type 
- Type of managed service identity.
- UserAssigned List<string>Identities 
- Properties for User Assigned Identities
- Type
ManagedService Identity Type 
- Type of managed service identity.
- UserAssigned []stringIdentities 
- Properties for User Assigned Identities
- type
ManagedService Identity Type 
- Type of managed service identity.
- userAssigned List<String>Identities 
- Properties for User Assigned Identities
- type
ManagedService Identity Type 
- Type of managed service identity.
- userAssigned string[]Identities 
- Properties for User Assigned Identities
- type
ManagedService Identity Type 
- Type of managed service identity.
- user_assigned_ Sequence[str]identities 
- Properties for User Assigned Identities
- type
"SystemAssigned" | "User Assigned" | "System Assigned, User Assigned" | "None" 
- Type of managed service identity.
- userAssigned List<String>Identities 
- Properties for User Assigned Identities
IdentityResponse, IdentityResponseArgs    
Properties to configure User Assigned Identities for Bring your Own Keys- PrincipalId string
- ObjectId from the KeyVault
- TenantId string
- TenantId from the KeyVault
- Type string
- Type of managed service identity.
- UserAssigned Dictionary<string, Pulumi.Identities Azure Native. Service Bus. Inputs. User Assigned Identity Response> 
- Properties for User Assigned Identities
- PrincipalId string
- ObjectId from the KeyVault
- TenantId string
- TenantId from the KeyVault
- Type string
- Type of managed service identity.
- UserAssigned map[string]UserIdentities Assigned Identity Response 
- Properties for User Assigned Identities
- principalId String
- ObjectId from the KeyVault
- tenantId String
- TenantId from the KeyVault
- type String
- Type of managed service identity.
- userAssigned Map<String,UserIdentities Assigned Identity Response> 
- Properties for User Assigned Identities
- principalId string
- ObjectId from the KeyVault
- tenantId string
- TenantId from the KeyVault
- type string
- Type of managed service identity.
- userAssigned {[key: string]: UserIdentities Assigned Identity Response} 
- Properties for User Assigned Identities
- principal_id str
- ObjectId from the KeyVault
- tenant_id str
- TenantId from the KeyVault
- type str
- Type of managed service identity.
- user_assigned_ Mapping[str, Useridentities Assigned Identity Response] 
- Properties for User Assigned Identities
- principalId String
- ObjectId from the KeyVault
- tenantId String
- TenantId from the KeyVault
- type String
- Type of managed service identity.
- userAssigned Map<Property Map>Identities 
- Properties for User Assigned Identities
KeySource, KeySourceArgs    
- Microsoft_KeyVault 
- Microsoft.KeyVault
- KeySource_Microsoft_Key Vault 
- Microsoft.KeyVault
- Microsoft_KeyVault 
- Microsoft.KeyVault
- Microsoft_KeyVault 
- Microsoft.KeyVault
- MICROSOFT_KEY_VAULT
- Microsoft.KeyVault
- "Microsoft.Key Vault" 
- Microsoft.KeyVault
KeyVaultProperties, KeyVaultPropertiesArgs      
Properties to configure keyVault Properties- Identity
Pulumi.Azure Native. Service Bus. Inputs. User Assigned Identity Properties 
- KeyName string
- Name of the Key from KeyVault
- KeyVault stringUri 
- Uri of KeyVault
- KeyVersion string
- Version of KeyVault
- Identity
UserAssigned Identity Properties 
- KeyName string
- Name of the Key from KeyVault
- KeyVault stringUri 
- Uri of KeyVault
- KeyVersion string
- Version of KeyVault
- identity
UserAssigned Identity Properties 
- keyName String
- Name of the Key from KeyVault
- keyVault StringUri 
- Uri of KeyVault
- keyVersion String
- Version of KeyVault
- identity
UserAssigned Identity Properties 
- keyName string
- Name of the Key from KeyVault
- keyVault stringUri 
- Uri of KeyVault
- keyVersion string
- Version of KeyVault
- identity
UserAssigned Identity Properties 
- key_name str
- Name of the Key from KeyVault
- key_vault_ struri 
- Uri of KeyVault
- key_version str
- Version of KeyVault
- identity Property Map
- keyName String
- Name of the Key from KeyVault
- keyVault StringUri 
- Uri of KeyVault
- keyVersion String
- Version of KeyVault
KeyVaultPropertiesResponse, KeyVaultPropertiesResponseArgs        
Properties to configure keyVault Properties- Identity
Pulumi.Azure Native. Service Bus. Inputs. User Assigned Identity Properties Response 
- KeyName string
- Name of the Key from KeyVault
- KeyVault stringUri 
- Uri of KeyVault
- KeyVersion string
- Version of KeyVault
- Identity
UserAssigned Identity Properties Response 
- KeyName string
- Name of the Key from KeyVault
- KeyVault stringUri 
- Uri of KeyVault
- KeyVersion string
- Version of KeyVault
- identity
UserAssigned Identity Properties Response 
- keyName String
- Name of the Key from KeyVault
- keyVault StringUri 
- Uri of KeyVault
- keyVersion String
- Version of KeyVault
- identity
UserAssigned Identity Properties Response 
- keyName string
- Name of the Key from KeyVault
- keyVault stringUri 
- Uri of KeyVault
- keyVersion string
- Version of KeyVault
- identity
UserAssigned Identity Properties Response 
- key_name str
- Name of the Key from KeyVault
- key_vault_ struri 
- Uri of KeyVault
- key_version str
- Version of KeyVault
- identity Property Map
- keyName String
- Name of the Key from KeyVault
- keyVault StringUri 
- Uri of KeyVault
- keyVersion String
- Version of KeyVault
ManagedServiceIdentityType, ManagedServiceIdentityTypeArgs        
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned, UserAssigned
- None
- None
- ManagedService Identity Type System Assigned 
- SystemAssigned
- ManagedService Identity Type User Assigned 
- UserAssigned
- ManagedService Identity Type_System Assigned_User Assigned 
- SystemAssigned, UserAssigned
- ManagedService Identity Type None 
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned, UserAssigned
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned, UserAssigned
- None
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned, UserAssigned
- NONE
- None
- "SystemAssigned" 
- SystemAssigned
- "UserAssigned" 
- UserAssigned
- "SystemAssigned, User Assigned" 
- SystemAssigned, UserAssigned
- "None"
- None
PrivateEndpoint, PrivateEndpointArgs    
PrivateEndpoint information.- 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      
Properties of the PrivateEndpointConnection.- PrivateEndpoint Pulumi.Azure Native. Service Bus. Inputs. Private Endpoint 
- The Private Endpoint resource for this Connection.
- PrivateLink Pulumi.Service Connection State Azure Native. Service Bus. Inputs. Connection State 
- Details about the state of the connection.
- ProvisioningState string | Pulumi.Azure Native. Service Bus. End Point Provisioning State 
- Provisioning state of the Private Endpoint Connection.
- PrivateEndpoint PrivateEndpoint 
- The Private Endpoint resource for this Connection.
- PrivateLink ConnectionService Connection State State 
- Details about the state of the connection.
- ProvisioningState string | EndPoint Provisioning State 
- Provisioning state of the Private Endpoint Connection.
- privateEndpoint PrivateEndpoint 
- The Private Endpoint resource for this Connection.
- privateLink ConnectionService Connection State State 
- Details about the state of the connection.
- provisioningState String | EndPoint Provisioning State 
- Provisioning state of the Private Endpoint Connection.
- privateEndpoint PrivateEndpoint 
- The Private Endpoint resource for this Connection.
- privateLink ConnectionService Connection State State 
- Details about the state of the connection.
- provisioningState string | EndPoint Provisioning State 
- Provisioning state of the Private Endpoint Connection.
- private_endpoint PrivateEndpoint 
- The Private Endpoint resource for this Connection.
- private_link_ Connectionservice_ connection_ state State 
- Details about the state of the connection.
- provisioning_state str | EndPoint Provisioning State 
- Provisioning state of the Private Endpoint Connection.
- privateEndpoint Property Map
- The Private Endpoint resource for this Connection.
- privateLink Property MapService Connection State 
- Details about the state of the connection.
- provisioningState String | "Creating" | "Updating" | "Deleting" | "Succeeded" | "Canceled" | "Failed"
- Provisioning state of the Private Endpoint Connection.
PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs        
Properties of the PrivateEndpointConnection.- Id string
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- Location string
- The geo-location where the resource lives
- Name string
- The name of the resource
- SystemData Pulumi.Azure Native. Service Bus. Inputs. System Data Response 
- 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"
- PrivateEndpoint Pulumi.Azure Native. Service Bus. Inputs. Private Endpoint Response 
- The Private Endpoint resource for this Connection.
- PrivateLink Pulumi.Service Connection State Azure Native. Service Bus. Inputs. Connection State Response 
- Details about the state of the connection.
- ProvisioningState string
- Provisioning state of the Private Endpoint Connection.
- Id string
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- Location string
- The geo-location where the resource lives
- Name string
- The name of the resource
- SystemData SystemData Response 
- 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"
- PrivateEndpoint PrivateEndpoint Response 
- The Private Endpoint resource for this Connection.
- PrivateLink ConnectionService Connection State State Response 
- Details about the state of the connection.
- ProvisioningState string
- Provisioning state of the Private Endpoint Connection.
- id String
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- location String
- The geo-location where the resource lives
- name String
- The name of the resource
- systemData SystemData Response 
- 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"
- privateEndpoint PrivateEndpoint Response 
- The Private Endpoint resource for this Connection.
- privateLink ConnectionService Connection State State Response 
- Details about the state of the connection.
- provisioningState String
- Provisioning state of the Private Endpoint Connection.
- id string
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- location string
- The geo-location where the resource lives
- name string
- The name of the resource
- systemData SystemData Response 
- 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"
- privateEndpoint PrivateEndpoint Response 
- The Private Endpoint resource for this Connection.
- privateLink ConnectionService Connection State State Response 
- Details about the state of the connection.
- provisioningState string
- Provisioning state of the Private Endpoint Connection.
- id str
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- location str
- The geo-location where the resource lives
- name str
- The name of the resource
- system_data SystemData Response 
- 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"
- private_endpoint PrivateEndpoint Response 
- The Private Endpoint resource for this Connection.
- private_link_ Connectionservice_ connection_ state State Response 
- Details about the state of the connection.
- provisioning_state str
- Provisioning state of the Private Endpoint Connection.
- id String
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- 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"
- privateEndpoint Property Map
- The Private Endpoint resource for this Connection.
- privateLink Property MapService Connection State 
- Details about the state of the connection.
- provisioningState String
- Provisioning state of the Private Endpoint Connection.
PrivateEndpointResponse, PrivateEndpointResponseArgs      
PrivateEndpoint information.- 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
- PrivateLink Connection Status Pending 
- Pending
- PrivateLink Connection Status Approved 
- Approved
- PrivateLink Connection Status Rejected 
- Rejected
- PrivateLink Connection Status 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
- "Pending"
- Pending
- "Approved"
- Approved
- "Rejected"
- Rejected
- "Disconnected"
- Disconnected
PublicNetworkAccess, PublicNetworkAccessArgs      
- Enabled
- Enabled
- Disabled
- Disabled
- SecuredBy Perimeter 
- SecuredByPerimeter
- PublicNetwork Access Enabled 
- Enabled
- PublicNetwork Access Disabled 
- Disabled
- PublicNetwork Access Secured By Perimeter 
- SecuredByPerimeter
- Enabled
- Enabled
- Disabled
- Disabled
- SecuredBy Perimeter 
- SecuredByPerimeter
- Enabled
- Enabled
- Disabled
- Disabled
- SecuredBy Perimeter 
- SecuredByPerimeter
- ENABLED
- Enabled
- DISABLED
- Disabled
- SECURED_BY_PERIMETER
- SecuredByPerimeter
- "Enabled"
- Enabled
- "Disabled"
- Disabled
- "SecuredBy Perimeter" 
- SecuredByPerimeter
SBSku, SBSkuArgs  
SKU of the namespace.- Name
Pulumi.Azure Native. Service Bus. Sku Name 
- Name of this SKU.
- Capacity int
- Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64
- Tier
Pulumi.Azure Native. Service Bus. Sku Tier 
- The billing tier of this particular SKU.
- Name
SkuName 
- Name of this SKU.
- Capacity int
- Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64
- Tier
SkuTier 
- The billing tier of this particular SKU.
- name
SkuName 
- Name of this SKU.
- capacity Integer
- Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64
- tier
SkuTier 
- The billing tier of this particular SKU.
- name
SkuName 
- Name of this SKU.
- capacity number
- Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64
- tier
SkuTier 
- The billing tier of this particular SKU.
- name
SkuName 
- Name of this SKU.
- capacity int
- Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64
- tier
SkuTier 
- The billing tier of this particular SKU.
- name "Basic" | "Standard" | "Premium"
- Name of this SKU.
- capacity Number
- Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64
- tier "Basic" | "Standard" | "Premium"
- The billing tier of this particular SKU.
SBSkuResponse, SBSkuResponseArgs    
SKU of the namespace.- Name string
- Name of this SKU.
- Capacity int
- Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64
- Tier string
- The billing tier of this particular SKU.
- Name string
- Name of this SKU.
- Capacity int
- Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64
- Tier string
- The billing tier of this particular SKU.
- name String
- Name of this SKU.
- capacity Integer
- Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64
- tier String
- The billing tier of this particular SKU.
- name string
- Name of this SKU.
- capacity number
- Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64
- tier string
- The billing tier of this particular SKU.
- name str
- Name of this SKU.
- capacity int
- Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64
- tier str
- The billing tier of this particular SKU.
- name String
- Name of this SKU.
- capacity Number
- Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64
- tier String
- The billing tier of this particular SKU.
SkuName, SkuNameArgs    
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- SkuName Basic 
- Basic
- SkuName Standard 
- Standard
- SkuName Premium 
- Premium
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- BASIC
- Basic
- STANDARD
- Standard
- PREMIUM
- Premium
- "Basic"
- Basic
- "Standard"
- Standard
- "Premium"
- Premium
SkuTier, SkuTierArgs    
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- SkuTier Basic 
- Basic
- SkuTier Standard 
- Standard
- SkuTier Premium 
- Premium
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- BASIC
- Basic
- STANDARD
- Standard
- PREMIUM
- Premium
- "Basic"
- Basic
- "Standard"
- Standard
- "Premium"
- Premium
SystemDataResponse, SystemDataResponseArgs      
Metadata pertaining to creation and last modification of the resource.- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The type of identity that last modified the resource.
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The type of identity that last modified the resource.
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The type of identity that last modified the resource.
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The type of identity that last modified the resource.
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- 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_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The type of identity that last modified the resource.
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The type of identity that last modified the resource.
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
TlsVersion, TlsVersionArgs    
- TlsVersion_1_0 
- 1.0
- TlsVersion_1_1 
- 1.1
- TlsVersion_1_2 
- 1.2
- TlsVersion_1_0 
- 1.0
- TlsVersion_1_1 
- 1.1
- TlsVersion_1_2 
- 1.2
- _1_0
- 1.0
- _1_1
- 1.1
- _1_2
- 1.2
- TlsVersion_1_0 
- 1.0
- TlsVersion_1_1 
- 1.1
- TlsVersion_1_2 
- 1.2
- TLS_VERSION_1_0
- 1.0
- TLS_VERSION_1_1
- 1.1
- TLS_VERSION_1_2
- 1.2
- "1.0"
- 1.0
- "1.1"
- 1.1
- "1.2"
- 1.2
UserAssignedIdentityProperties, UserAssignedIdentityPropertiesArgs        
- UserAssigned stringIdentity 
- ARM ID of user Identity selected for encryption
- UserAssigned stringIdentity 
- ARM ID of user Identity selected for encryption
- userAssigned StringIdentity 
- ARM ID of user Identity selected for encryption
- userAssigned stringIdentity 
- ARM ID of user Identity selected for encryption
- user_assigned_ stridentity 
- ARM ID of user Identity selected for encryption
- userAssigned StringIdentity 
- ARM ID of user Identity selected for encryption
UserAssignedIdentityPropertiesResponse, UserAssignedIdentityPropertiesResponseArgs          
- UserAssigned stringIdentity 
- ARM ID of user Identity selected for encryption
- UserAssigned stringIdentity 
- ARM ID of user Identity selected for encryption
- userAssigned StringIdentity 
- ARM ID of user Identity selected for encryption
- userAssigned stringIdentity 
- ARM ID of user Identity selected for encryption
- user_assigned_ stridentity 
- ARM ID of user Identity selected for encryption
- userAssigned StringIdentity 
- ARM ID of user Identity selected for encryption
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs        
Recognized Dictionary value.- ClientId string
- Client Id of user assigned identity
- PrincipalId string
- Principal Id of user assigned identity
- ClientId string
- Client Id of user assigned identity
- PrincipalId string
- Principal Id of user assigned identity
- clientId String
- Client Id of user assigned identity
- principalId String
- Principal Id of user assigned identity
- clientId string
- Client Id of user assigned identity
- principalId string
- Principal Id of user assigned identity
- client_id str
- Client Id of user assigned identity
- principal_id str
- Principal Id of user assigned identity
- clientId String
- Client Id of user assigned identity
- principalId String
- Principal Id of user assigned identity
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:servicebus:Namespace sdk-Namespace-2924 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
