azure-native.servicebus.Namespace
Explore with Pulumi AI
Description of a namespace resource. Azure REST API version: 2022-01-01-preview. Prior API version in Azure Native 1.x: 2017-04-01.
Other available API versions: 2022-10-01-preview, 2023-01-01-preview, 2024-01-01.
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",
        ResourceGroupName = "ArunMonocle",
        Sku = new AzureNative.ServiceBus.Inputs.SBSkuArgs
        {
            Name = AzureNative.ServiceBus.SkuName.Standard,
            Tier = AzureNative.ServiceBus.SkuTier.Standard,
        },
        Tags = 
        {
            { "tag1", "value1" },
            { "tag2", "value2" },
        },
    });
});
package main
import (
	servicebus "github.com/pulumi/pulumi-azure-native-sdk/servicebus/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := servicebus.NewNamespace(ctx, "namespace", &servicebus.NamespaceArgs{
			Location:          pulumi.String("South Central US"),
			NamespaceName:     pulumi.String("sdk-Namespace2924"),
			ResourceGroupName: pulumi.String("ArunMonocle"),
			Sku: &servicebus.SBSkuArgs{
				Name: pulumi.String(servicebus.SkuNameStandard),
				Tier: pulumi.String(servicebus.SkuTierStandard),
			},
			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")
            .resourceGroupName("ArunMonocle")
            .sku(SBSkuArgs.builder()
                .name("Standard")
                .tier("Standard")
                .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",
    resourceGroupName: "ArunMonocle",
    sku: {
        name: azure_native.servicebus.SkuName.Standard,
        tier: azure_native.servicebus.SkuTier.Standard,
    },
    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",
    resource_group_name="ArunMonocle",
    sku={
        "name": azure_native.servicebus.SkuName.STANDARD,
        "tier": azure_native.servicebus.SkuTier.STANDARD,
    },
    tags={
        "tag1": "value1",
        "tag2": "value2",
    })
resources:
  namespace:
    type: azure-native:servicebus:Namespace
    properties:
      location: South Central US
      namespaceName: sdk-Namespace2924
      resourceGroupName: ArunMonocle
      sku:
        name: Standard
        tier: Standard
      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,
              identity: Optional[IdentityArgs] = None,
              encryption: Optional[EncryptionArgs] = None,
              alternate_name: Optional[str] = None,
              location: Optional[str] = None,
              minimum_tls_version: Optional[Union[str, TlsVersion]] = None,
              namespace_name: Optional[str] = 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",
    Identity = new AzureNative.ServiceBus.Inputs.IdentityArgs
    {
        Type = "string",
        UserAssignedIdentities = new[]
        {
            "string",
        },
    },
    Encryption = new AzureNative.ServiceBus.Inputs.EncryptionArgs
    {
        KeySource = "string",
        KeyVaultProperties = new[]
        {
            new AzureNative.ServiceBus.Inputs.KeyVaultPropertiesArgs
            {
                Identity = new AzureNative.ServiceBus.Inputs.UserAssignedIdentityPropertiesArgs
                {
                    UserAssignedIdentity = "string",
                },
                KeyName = "string",
                KeyVaultUri = "string",
                KeyVersion = "string",
            },
        },
        RequireInfrastructureEncryption = false,
    },
    AlternateName = "string",
    Location = "string",
    MinimumTlsVersion = "string",
    NamespaceName = "string",
    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 = "string",
        Capacity = 0,
        Tier = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
    ZoneRedundant = false,
});
example, err := servicebus.NewNamespace(ctx, "examplenamespaceResourceResourceFromServicebus", &servicebus.NamespaceArgs{
	ResourceGroupName: pulumi.String("string"),
	Identity: &servicebus.IdentityArgs{
		Type: pulumi.String("string"),
		UserAssignedIdentities: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Encryption: &servicebus.EncryptionArgs{
		KeySource: pulumi.String("string"),
		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),
	},
	AlternateName:     pulumi.String("string"),
	Location:          pulumi.String("string"),
	MinimumTlsVersion: pulumi.String("string"),
	NamespaceName:     pulumi.String("string"),
	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:     pulumi.String("string"),
		Capacity: pulumi.Int(0),
		Tier:     pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	ZoneRedundant: pulumi.Bool(false),
})
var examplenamespaceResourceResourceFromServicebus = new Namespace("examplenamespaceResourceResourceFromServicebus", NamespaceArgs.builder()
    .resourceGroupName("string")
    .identity(IdentityArgs.builder()
        .type("string")
        .userAssignedIdentities("string")
        .build())
    .encryption(EncryptionArgs.builder()
        .keySource("string")
        .keyVaultProperties(KeyVaultPropertiesArgs.builder()
            .identity(UserAssignedIdentityPropertiesArgs.builder()
                .userAssignedIdentity("string")
                .build())
            .keyName("string")
            .keyVaultUri("string")
            .keyVersion("string")
            .build())
        .requireInfrastructureEncryption(false)
        .build())
    .alternateName("string")
    .location("string")
    .minimumTlsVersion("string")
    .namespaceName("string")
    .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("string")
        .capacity(0)
        .tier("string")
        .build())
    .tags(Map.of("string", "string"))
    .zoneRedundant(false)
    .build());
examplenamespace_resource_resource_from_servicebus = azure_native.servicebus.Namespace("examplenamespaceResourceResourceFromServicebus",
    resource_group_name="string",
    identity={
        "type": "string",
        "user_assigned_identities": ["string"],
    },
    encryption={
        "key_source": "string",
        "key_vault_properties": [{
            "identity": {
                "user_assigned_identity": "string",
            },
            "key_name": "string",
            "key_vault_uri": "string",
            "key_version": "string",
        }],
        "require_infrastructure_encryption": False,
    },
    alternate_name="string",
    location="string",
    minimum_tls_version="string",
    namespace_name="string",
    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": "string",
        "capacity": 0,
        "tier": "string",
    },
    tags={
        "string": "string",
    },
    zone_redundant=False)
const examplenamespaceResourceResourceFromServicebus = new azure_native.servicebus.Namespace("examplenamespaceResourceResourceFromServicebus", {
    resourceGroupName: "string",
    identity: {
        type: "string",
        userAssignedIdentities: ["string"],
    },
    encryption: {
        keySource: "string",
        keyVaultProperties: [{
            identity: {
                userAssignedIdentity: "string",
            },
            keyName: "string",
            keyVaultUri: "string",
            keyVersion: "string",
        }],
        requireInfrastructureEncryption: false,
    },
    alternateName: "string",
    location: "string",
    minimumTlsVersion: "string",
    namespaceName: "string",
    privateEndpointConnections: [{
        privateEndpoint: {
            id: "string",
        },
        privateLinkServiceConnectionState: {
            description: "string",
            status: "string",
        },
        provisioningState: "string",
    }],
    publicNetworkAccess: "string",
    disableLocalAuth: false,
    sku: {
        name: "string",
        capacity: 0,
        tier: "string",
    },
    tags: {
        string: "string",
    },
    zoneRedundant: false,
});
type: azure-native:servicebus:Namespace
properties:
    alternateName: string
    disableLocalAuth: false
    encryption:
        keySource: string
        keyVaultProperties:
            - identity:
                userAssignedIdentity: string
              keyName: string
              keyVaultUri: string
              keyVersion: string
        requireInfrastructureEncryption: false
    identity:
        type: string
        userAssignedIdentities:
            - string
    location: string
    minimumTlsVersion: string
    namespaceName: string
    privateEndpointConnections:
        - privateEndpoint:
            id: string
          privateLinkServiceConnectionState:
            description: string
            status: string
          provisioningState: string
    publicNetworkAccess: string
    resourceGroupName: string
    sku:
        capacity: 0
        name: string
        tier: string
    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 
- Name of the Resource group within the Azure subscription.
- 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.
- 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
- Enabling this property creates a Premium Service Bus Namespace in regions supported availability zones.
- ResourceGroup stringName 
- Name of the Resource group within the Azure subscription.
- 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.
- 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
- Enabling this property creates a Premium Service Bus Namespace in regions supported availability zones.
- resourceGroup StringName 
- Name of the Resource group within the Azure subscription.
- 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.
- 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
- Enabling this property creates a Premium Service Bus Namespace in regions supported availability zones.
- resourceGroup stringName 
- Name of the Resource group within the Azure subscription.
- 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.
- 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
- Enabling this property creates a Premium Service Bus Namespace in regions supported availability zones.
- resource_group_ strname 
- Name of the Resource group within the Azure subscription.
- 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.
- 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
- Enabling this property creates a Premium Service Bus Namespace in regions supported availability zones.
- resourceGroup StringName 
- Name of the Resource group within the Azure subscription.
- 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.
- 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
- Enabling this property creates a Premium Service Bus Namespace in regions supported availability zones.
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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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    
- 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      
- 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  
- KeySource string | 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 string | KeySource 
- Enumerates the possible value of keySource for Encryption
- KeyVault []KeyProperties Vault Properties 
- Properties of KeyVault
- RequireInfrastructure boolEncryption 
- Enable Infrastructure Encryption (Double Encryption)
- keySource String | 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 string | 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 str | 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 String | "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    
- 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  
- Type
string | Pulumi.Azure Native. Service Bus. Managed Service Identity Type 
- Type of managed service identity.
- UserAssigned List<string>Identities 
- Properties for User Assigned Identities
- Type
string | ManagedService Identity Type 
- Type of managed service identity.
- UserAssigned []stringIdentities 
- Properties for User Assigned Identities
- type
String | ManagedService Identity Type 
- Type of managed service identity.
- userAssigned List<String>Identities 
- Properties for User Assigned Identities
- type
string | ManagedService Identity Type 
- Type of managed service identity.
- userAssigned string[]Identities 
- Properties for User Assigned Identities
- type
str | ManagedService Identity Type 
- Type of managed service identity.
- user_assigned_ Sequence[str]identities 
- Properties for User Assigned Identities
- type
String | "SystemAssigned" | "User Assigned" | "System Assigned, User Assigned" | "None" 
- Type of managed service identity.
- userAssigned List<String>Identities 
- Properties for User Assigned Identities
IdentityResponse, IdentityResponseArgs    
- 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      
- 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        
- 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    
- 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.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        
- 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      
- 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  
- Name
string | Pulumi.Azure Native. Service Bus. Sku Name 
- Name of this SKU.
- Capacity int
- The specified messaging units for the tier. For Premium tier, capacity are 1,2 and 4.
- Tier
string | Pulumi.Azure Native. Service Bus. Sku Tier 
- The billing tier of this particular SKU.
- name String | "Basic" | "Standard" | "Premium"
- Name of this SKU.
- capacity Number
- The specified messaging units for the tier. For Premium tier, capacity are 1,2 and 4.
- tier String | "Basic" | "Standard" | "Premium"
- The billing tier of this particular SKU.
SBSkuResponse, SBSkuResponseArgs    
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      
- 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        
- 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