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: 2015-08-01, 2022-10-01-preview.
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 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=azure_native.servicebus.SBSkuArgs(
name=azure_native.servicebus.SkuName.STANDARD,
tier=azure_native.servicebus.SkuTier.STANDARD,
),
tags={
"tag1": "value1",
"tag2": "value2",
})
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",
},
});
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=azure_native.servicebus.IdentityArgs(
type="string",
user_assigned_identities=["string"],
),
encryption=azure_native.servicebus.EncryptionArgs(
key_source="string",
key_vault_properties=[azure_native.servicebus.KeyVaultPropertiesArgs(
identity=azure_native.servicebus.UserAssignedIdentityPropertiesArgs(
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=[azure_native.servicebus.PrivateEndpointConnectionArgs(
private_endpoint=azure_native.servicebus.PrivateEndpointArgs(
id="string",
),
private_link_service_connection_state=azure_native.servicebus.ConnectionStateArgs(
description="string",
status="string",
),
provisioning_state="string",
)],
public_network_access="string",
disable_local_auth=False,
sku=azure_native.servicebus.SBSkuArgs(
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
The Namespace resource accepts the following input properties:
- Resource
Group stringName - Name of the Resource group within the Azure subscription.
- Alternate
Name string - Alternate name for namespace
- Disable
Local 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
- Minimum
Tls string | Pulumi.Version Azure Native. Service Bus. Tls Version - The minimum TLS version for the cluster to support, e.g. '1.2'
- Namespace
Name string - The namespace name.
- Private
Endpoint 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.
- Public
Network 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
- Zone
Redundant bool - Enabling this property creates a Premium Service Bus Namespace in regions supported availability zones.
- Resource
Group stringName - Name of the Resource group within the Azure subscription.
- Alternate
Name string - Alternate name for namespace
- Disable
Local boolAuth - This property disables SAS authentication for the Service Bus namespace.
- Encryption
Encryption
Args - Properties of BYOK Encryption description
- Identity
Identity
Args - Properties of BYOK Identity description
- Location string
- The Geo-location where the resource lives
- Minimum
Tls string | TlsVersion Version - The minimum TLS version for the cluster to support, e.g. '1.2'
- Namespace
Name string - The namespace name.
- Private
Endpoint []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.
- Public
Network string | PublicAccess Network Access - This determines if traffic is allowed over public network. By default it is enabled.
- Sku
SBSku
Args - Properties of SKU
- map[string]string
- Resource tags
- Zone
Redundant bool - Enabling this property creates a Premium Service Bus Namespace in regions supported availability zones.
- resource
Group StringName - Name of the Resource group within the Azure subscription.
- alternate
Name String - Alternate name for namespace
- disable
Local 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
- minimum
Tls String | TlsVersion Version - The minimum TLS version for the cluster to support, e.g. '1.2'
- namespace
Name String - The namespace name.
- private
Endpoint 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.
- public
Network 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
- zone
Redundant Boolean - Enabling this property creates a Premium Service Bus Namespace in regions supported availability zones.
- resource
Group stringName - Name of the Resource group within the Azure subscription.
- alternate
Name string - Alternate name for namespace
- disable
Local 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
- minimum
Tls string | TlsVersion Version - The minimum TLS version for the cluster to support, e.g. '1.2'
- namespace
Name string - The namespace name.
- private
Endpoint 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.
- public
Network 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
- zone
Redundant 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
Encryption
Args - Properties of BYOK Encryption description
- identity
Identity
Args - 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
SBSku
Args - 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.
- resource
Group StringName - Name of the Resource group within the Azure subscription.
- alternate
Name String - Alternate name for namespace
- disable
Local 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
- minimum
Tls String | "1.0" | "1.1" | "1.2"Version - The minimum TLS version for the cluster to support, e.g. '1.2'
- namespace
Name String - The namespace name.
- private
Endpoint 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.
- public
Network 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
- zone
Redundant 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:
- Created
At string - The time the namespace was created
- Id string
- The provider-assigned unique ID for this managed resource.
- Metric
Id string - Identifier for Azure Insights metrics
- Name string
- Resource name
- Provisioning
State string - Provisioning state of the namespace.
- Service
Bus stringEndpoint - Endpoint you can use to perform Service Bus operations.
- Status string
- Status of the namespace.
- System
Data Pulumi.Azure Native. Service Bus. Outputs. System Data Response - The system meta data relating to this resource.
- Type string
- Resource type
- Updated
At string - The time the namespace was updated.
- Created
At string - The time the namespace was created
- Id string
- The provider-assigned unique ID for this managed resource.
- Metric
Id string - Identifier for Azure Insights metrics
- Name string
- Resource name
- Provisioning
State string - Provisioning state of the namespace.
- Service
Bus stringEndpoint - Endpoint you can use to perform Service Bus operations.
- Status string
- Status of the namespace.
- System
Data SystemData Response - The system meta data relating to this resource.
- Type string
- Resource type
- Updated
At string - The time the namespace was updated.
- created
At String - The time the namespace was created
- id String
- The provider-assigned unique ID for this managed resource.
- metric
Id String - Identifier for Azure Insights metrics
- name String
- Resource name
- provisioning
State String - Provisioning state of the namespace.
- service
Bus StringEndpoint - Endpoint you can use to perform Service Bus operations.
- status String
- Status of the namespace.
- system
Data SystemData Response - The system meta data relating to this resource.
- type String
- Resource type
- updated
At String - The time the namespace was updated.
- created
At string - The time the namespace was created
- id string
- The provider-assigned unique ID for this managed resource.
- metric
Id string - Identifier for Azure Insights metrics
- name string
- Resource name
- provisioning
State string - Provisioning state of the namespace.
- service
Bus stringEndpoint - Endpoint you can use to perform Service Bus operations.
- status string
- Status of the namespace.
- system
Data SystemData Response - The system meta data relating to this resource.
- type string
- Resource type
- updated
At 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.
- created
At String - The time the namespace was created
- id String
- The provider-assigned unique ID for this managed resource.
- metric
Id String - Identifier for Azure Insights metrics
- name String
- Resource name
- provisioning
State String - Provisioning state of the namespace.
- service
Bus StringEndpoint - Endpoint you can use to perform Service Bus operations.
- status String
- Status of the namespace.
- system
Data Property Map - The system meta data relating to this resource.
- type String
- Resource type
- updated
At 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 | Private
Link Connection Status - Status of the connection.
- description String
- Description of the connection state.
- status
String | Private
Link Connection Status - Status of the connection.
- description string
- Description of the connection state.
- status
string | Private
Link Connection Status - Status of the connection.
- description str
- Description of the connection state.
- status
str | Private
Link 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
- Key
Source string | Pulumi.Azure Native. Service Bus. Key Source - Enumerates the possible value of keySource for Encryption
- Key
Vault List<Pulumi.Properties Azure Native. Service Bus. Inputs. Key Vault Properties> - Properties of KeyVault
- Require
Infrastructure boolEncryption - Enable Infrastructure Encryption (Double Encryption)
- Key
Source string | KeySource - Enumerates the possible value of keySource for Encryption
- Key
Vault []KeyProperties Vault Properties - Properties of KeyVault
- Require
Infrastructure boolEncryption - Enable Infrastructure Encryption (Double Encryption)
- key
Source String | KeySource - Enumerates the possible value of keySource for Encryption
- key
Vault List<KeyProperties Vault Properties> - Properties of KeyVault
- require
Infrastructure BooleanEncryption - Enable Infrastructure Encryption (Double Encryption)
- key
Source string | KeySource - Enumerates the possible value of keySource for Encryption
- key
Vault KeyProperties Vault Properties[] - Properties of KeyVault
- require
Infrastructure 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)
- key
Source String | "Microsoft.Key Vault" - Enumerates the possible value of keySource for Encryption
- key
Vault List<Property Map>Properties - Properties of KeyVault
- require
Infrastructure BooleanEncryption - Enable Infrastructure Encryption (Double Encryption)
EncryptionResponse, EncryptionResponseArgs
- Key
Source string - Enumerates the possible value of keySource for Encryption
- Key
Vault List<Pulumi.Properties Azure Native. Service Bus. Inputs. Key Vault Properties Response> - Properties of KeyVault
- Require
Infrastructure boolEncryption - Enable Infrastructure Encryption (Double Encryption)
- Key
Source string - Enumerates the possible value of keySource for Encryption
- Key
Vault []KeyProperties Vault Properties Response - Properties of KeyVault
- Require
Infrastructure boolEncryption - Enable Infrastructure Encryption (Double Encryption)
- key
Source String - Enumerates the possible value of keySource for Encryption
- key
Vault List<KeyProperties Vault Properties Response> - Properties of KeyVault
- require
Infrastructure BooleanEncryption - Enable Infrastructure Encryption (Double Encryption)
- key
Source string - Enumerates the possible value of keySource for Encryption
- key
Vault KeyProperties Vault Properties Response[] - Properties of KeyVault
- require
Infrastructure 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)
- key
Source String - Enumerates the possible value of keySource for Encryption
- key
Vault List<Property Map>Properties - Properties of KeyVault
- require
Infrastructure BooleanEncryption - Enable Infrastructure Encryption (Double Encryption)
EndPointProvisioningState, EndPointProvisioningStateArgs
- Creating
- Creating
- Updating
- Updating
- Deleting
- Deleting
- Succeeded
- Succeeded
- Canceled
- Canceled
- Failed
- Failed
- End
Point Provisioning State Creating - Creating
- End
Point Provisioning State Updating - Updating
- End
Point Provisioning State Deleting - Deleting
- End
Point Provisioning State Succeeded - Succeeded
- End
Point Provisioning State Canceled - Canceled
- End
Point 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.
- User
Assigned List<string>Identities - Properties for User Assigned Identities
- Type
string | Managed
Service Identity Type - Type of managed service identity.
- User
Assigned []stringIdentities - Properties for User Assigned Identities
- type
String | Managed
Service Identity Type - Type of managed service identity.
- user
Assigned List<String>Identities - Properties for User Assigned Identities
- type
string | Managed
Service Identity Type - Type of managed service identity.
- user
Assigned string[]Identities - Properties for User Assigned Identities
- type
str | Managed
Service Identity Type - Type of managed service identity.
- user_
assigned_ Sequence[str]identities - Properties for User Assigned Identities
- type
String | "System
Assigned" | "User Assigned" | "System Assigned, User Assigned" | "None" - Type of managed service identity.
- user
Assigned List<String>Identities - Properties for User Assigned Identities
IdentityResponse, IdentityResponseArgs
- Principal
Id string - ObjectId from the KeyVault
- Tenant
Id string - TenantId from the KeyVault
- Type string
- Type of managed service identity.
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Service Bus. Inputs. User Assigned Identity Response> - Properties for User Assigned Identities
- Principal
Id string - ObjectId from the KeyVault
- Tenant
Id string - TenantId from the KeyVault
- Type string
- Type of managed service identity.
- User
Assigned map[string]UserIdentities Assigned Identity Response - Properties for User Assigned Identities
- principal
Id String - ObjectId from the KeyVault
- tenant
Id String - TenantId from the KeyVault
- type String
- Type of managed service identity.
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - Properties for User Assigned Identities
- principal
Id string - ObjectId from the KeyVault
- tenant
Id string - TenantId from the KeyVault
- type string
- Type of managed service identity.
- user
Assigned {[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
- principal
Id String - ObjectId from the KeyVault
- tenant
Id String - TenantId from the KeyVault
- type String
- Type of managed service identity.
- user
Assigned Map<Property Map>Identities - Properties for User Assigned Identities
KeySource, KeySourceArgs
- Microsoft_Key
Vault - Microsoft.KeyVault
- Key
Source_Microsoft_Key Vault - Microsoft.KeyVault
- Microsoft_Key
Vault - Microsoft.KeyVault
- Microsoft_Key
Vault - 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 - Key
Name string - Name of the Key from KeyVault
- Key
Vault stringUri - Uri of KeyVault
- Key
Version string - Version of KeyVault
- Identity
User
Assigned Identity Properties - Key
Name string - Name of the Key from KeyVault
- Key
Vault stringUri - Uri of KeyVault
- Key
Version string - Version of KeyVault
- identity
User
Assigned Identity Properties - key
Name String - Name of the Key from KeyVault
- key
Vault StringUri - Uri of KeyVault
- key
Version String - Version of KeyVault
- identity
User
Assigned Identity Properties - key
Name string - Name of the Key from KeyVault
- key
Vault stringUri - Uri of KeyVault
- key
Version string - Version of KeyVault
- identity
User
Assigned 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
- key
Name String - Name of the Key from KeyVault
- key
Vault StringUri - Uri of KeyVault
- key
Version String - Version of KeyVault
KeyVaultPropertiesResponse, KeyVaultPropertiesResponseArgs
- Identity
Pulumi.
Azure Native. Service Bus. Inputs. User Assigned Identity Properties Response - Key
Name string - Name of the Key from KeyVault
- Key
Vault stringUri - Uri of KeyVault
- Key
Version string - Version of KeyVault
- Identity
User
Assigned Identity Properties Response - Key
Name string - Name of the Key from KeyVault
- Key
Vault stringUri - Uri of KeyVault
- Key
Version string - Version of KeyVault
- identity
User
Assigned Identity Properties Response - key
Name String - Name of the Key from KeyVault
- key
Vault StringUri - Uri of KeyVault
- key
Version String - Version of KeyVault
- identity
User
Assigned Identity Properties Response - key
Name string - Name of the Key from KeyVault
- key
Vault stringUri - Uri of KeyVault
- key
Version string - Version of KeyVault
- identity
User
Assigned 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
- key
Name String - Name of the Key from KeyVault
- key
Vault StringUri - Uri of KeyVault
- key
Version String - Version of KeyVault
ManagedServiceIdentityType, ManagedServiceIdentityTypeArgs
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- Managed
Service Identity Type System Assigned - SystemAssigned
- Managed
Service Identity Type User Assigned - UserAssigned
- Managed
Service Identity Type_System Assigned_User Assigned - SystemAssigned, UserAssigned
- Managed
Service Identity Type None - None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned, UserAssigned
- NONE
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned, 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
- Private
Endpoint Pulumi.Azure Native. Service Bus. Inputs. Private Endpoint - The Private Endpoint resource for this Connection.
- Private
Link Pulumi.Service Connection State Azure Native. Service Bus. Inputs. Connection State - Details about the state of the connection.
- Provisioning
State string | Pulumi.Azure Native. Service Bus. End Point 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 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 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 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.
- private
Endpoint Property Map - The Private Endpoint resource for this Connection.
- private
Link Property MapService Connection State - Details about the state of the connection.
- provisioning
State 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
- System
Data 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"
- Private
Endpoint Pulumi.Azure Native. Service Bus. Inputs. Private Endpoint Response - The Private Endpoint resource for this Connection.
- Private
Link Pulumi.Service Connection State Azure Native. Service Bus. Inputs. Connection State Response - Details about the state of the connection.
- Provisioning
State 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
- System
Data 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"
- 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 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
- system
Data 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"
- 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 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
- system
Data 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"
- 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 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
- system
Data 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"
- private
Endpoint Property Map - The Private Endpoint resource for this Connection.
- private
Link Property MapService Connection State - Details about the state of the connection.
- provisioning
State 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
- Private
Link Connection Status Pending - Pending
- Private
Link Connection Status Approved - Approved
- Private
Link Connection Status Rejected - Rejected
- Private
Link 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
- Secured
By Perimeter - SecuredByPerimeter
- Public
Network Access Enabled - Enabled
- Public
Network Access Disabled - Disabled
- Public
Network Access Secured By Perimeter - SecuredByPerimeter
- Enabled
- Enabled
- Disabled
- Disabled
- Secured
By Perimeter - SecuredByPerimeter
- Enabled
- Enabled
- Disabled
- Disabled
- Secured
By Perimeter - SecuredByPerimeter
- ENABLED
- Enabled
- DISABLED
- Disabled
- SECURED_BY_PERIMETER
- SecuredByPerimeter
- "Enabled"
- Enabled
- "Disabled"
- Disabled
- "Secured
By 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
- Sku
Name Basic - Basic
- Sku
Name Standard - Standard
- Sku
Name 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
- Sku
Tier Basic - Basic
- Sku
Tier Standard - Standard
- Sku
Tier 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
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The type of identity that last modified the resource.
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The type of identity that last modified the resource.
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The type of identity that last modified the resource.
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The type of identity that last modified the resource.
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified 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.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The type of identity that last modified the resource.
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
TlsVersion, TlsVersionArgs
- Tls
Version_1_0 - 1.0
- Tls
Version_1_1 - 1.1
- Tls
Version_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
- Tls
Version_1_0 - 1.0
- Tls
Version_1_1 - 1.1
- Tls
Version_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
- User
Assigned stringIdentity - ARM ID of user Identity selected for encryption
- User
Assigned stringIdentity - ARM ID of user Identity selected for encryption
- user
Assigned StringIdentity - ARM ID of user Identity selected for encryption
- user
Assigned stringIdentity - ARM ID of user Identity selected for encryption
- user_
assigned_ stridentity - ARM ID of user Identity selected for encryption
- user
Assigned StringIdentity - ARM ID of user Identity selected for encryption
UserAssignedIdentityPropertiesResponse, UserAssignedIdentityPropertiesResponseArgs
- User
Assigned stringIdentity - ARM ID of user Identity selected for encryption
- User
Assigned stringIdentity - ARM ID of user Identity selected for encryption
- user
Assigned StringIdentity - ARM ID of user Identity selected for encryption
- user
Assigned stringIdentity - ARM ID of user Identity selected for encryption
- user_
assigned_ stridentity - ARM ID of user Identity selected for encryption
- user
Assigned StringIdentity - ARM ID of user Identity selected for encryption
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id string - Client Id of user assigned identity
- Principal
Id string - Principal Id of user assigned identity
- Client
Id string - Client Id of user assigned identity
- Principal
Id string - Principal Id of user assigned identity
- client
Id String - Client Id of user assigned identity
- principal
Id String - Principal Id of user assigned identity
- client
Id string - Client Id of user assigned identity
- principal
Id 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
- client
Id String - Client Id of user assigned identity
- principal
Id 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