azure-native.eventhub.Namespace
Explore with Pulumi AI
Single Namespace item in List or Get Operation Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 2017-04-01.
Other available API versions: 2023-01-01-preview, 2024-01-01, 2024-05-01-preview.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:eventhub:Namespace NamespaceSample /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName} 
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,
              maximum_throughput_units: Optional[int] = None,
              location: Optional[str] = None,
              encryption: Optional[EncryptionArgs] = None,
              identity: Optional[IdentityArgs] = None,
              minimum_tls_version: Optional[Union[str, TlsVersion]] = None,
              kafka_enabled: Optional[bool] = None,
              disable_local_auth: Optional[bool] = None,
              alternate_name: Optional[str] = None,
              is_auto_inflate_enabled: Optional[bool] = None,
              namespace_name: Optional[str] = None,
              private_endpoint_connections: Optional[Sequence[PrivateEndpointConnectionArgs]] = None,
              public_network_access: Optional[Union[str, PublicNetworkAccess]] = None,
              cluster_arm_id: Optional[str] = None,
              sku: Optional[SkuArgs] = 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:eventhub: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 azure_nativeNamespaceResource = new AzureNative.EventHub.Namespace("azure-nativeNamespaceResource", new()
{
    ResourceGroupName = "string",
    MaximumThroughputUnits = 0,
    Location = "string",
    Encryption = new AzureNative.EventHub.Inputs.EncryptionArgs
    {
        KeySource = AzureNative.EventHub.KeySource.Microsoft_KeyVault,
        KeyVaultProperties = new[]
        {
            new AzureNative.EventHub.Inputs.KeyVaultPropertiesArgs
            {
                Identity = new AzureNative.EventHub.Inputs.UserAssignedIdentityPropertiesArgs
                {
                    UserAssignedIdentity = "string",
                },
                KeyName = "string",
                KeyVaultUri = "string",
                KeyVersion = "string",
            },
        },
        RequireInfrastructureEncryption = false,
    },
    Identity = new AzureNative.EventHub.Inputs.IdentityArgs
    {
        Type = AzureNative.EventHub.ManagedServiceIdentityType.SystemAssigned,
        UserAssignedIdentities = new[]
        {
            "string",
        },
    },
    MinimumTlsVersion = "string",
    KafkaEnabled = false,
    DisableLocalAuth = false,
    AlternateName = "string",
    IsAutoInflateEnabled = false,
    NamespaceName = "string",
    PrivateEndpointConnections = new[]
    {
        new AzureNative.EventHub.Inputs.PrivateEndpointConnectionArgs
        {
            PrivateEndpoint = new AzureNative.EventHub.Inputs.PrivateEndpointArgs
            {
                Id = "string",
            },
            PrivateLinkServiceConnectionState = new AzureNative.EventHub.Inputs.ConnectionStateArgs
            {
                Description = "string",
                Status = "string",
            },
            ProvisioningState = "string",
        },
    },
    PublicNetworkAccess = "string",
    ClusterArmId = "string",
    Sku = new AzureNative.EventHub.Inputs.SkuArgs
    {
        Name = "string",
        Capacity = 0,
        Tier = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
    ZoneRedundant = false,
});
example, err := eventhub.NewNamespace(ctx, "azure-nativeNamespaceResource", &eventhub.NamespaceArgs{
	ResourceGroupName:      pulumi.String("string"),
	MaximumThroughputUnits: pulumi.Int(0),
	Location:               pulumi.String("string"),
	Encryption: &eventhub.EncryptionArgs{
		KeySource: eventhub.KeySource_Microsoft_KeyVault,
		KeyVaultProperties: eventhub.KeyVaultPropertiesArray{
			&eventhub.KeyVaultPropertiesArgs{
				Identity: &eventhub.UserAssignedIdentityPropertiesArgs{
					UserAssignedIdentity: pulumi.String("string"),
				},
				KeyName:     pulumi.String("string"),
				KeyVaultUri: pulumi.String("string"),
				KeyVersion:  pulumi.String("string"),
			},
		},
		RequireInfrastructureEncryption: pulumi.Bool(false),
	},
	Identity: &eventhub.IdentityArgs{
		Type: eventhub.ManagedServiceIdentityTypeSystemAssigned,
		UserAssignedIdentities: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	MinimumTlsVersion:    pulumi.String("string"),
	KafkaEnabled:         pulumi.Bool(false),
	DisableLocalAuth:     pulumi.Bool(false),
	AlternateName:        pulumi.String("string"),
	IsAutoInflateEnabled: pulumi.Bool(false),
	NamespaceName:        pulumi.String("string"),
	PrivateEndpointConnections: eventhub.PrivateEndpointConnectionTypeArray{
		&eventhub.PrivateEndpointConnectionTypeArgs{
			PrivateEndpoint: &eventhub.PrivateEndpointArgs{
				Id: pulumi.String("string"),
			},
			PrivateLinkServiceConnectionState: &eventhub.ConnectionStateArgs{
				Description: pulumi.String("string"),
				Status:      pulumi.String("string"),
			},
			ProvisioningState: pulumi.String("string"),
		},
	},
	PublicNetworkAccess: pulumi.String("string"),
	ClusterArmId:        pulumi.String("string"),
	Sku: &eventhub.SkuArgs{
		Name:     pulumi.String("string"),
		Capacity: pulumi.Int(0),
		Tier:     pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	ZoneRedundant: pulumi.Bool(false),
})
var azure_nativeNamespaceResource = new Namespace("azure-nativeNamespaceResource", NamespaceArgs.builder()
    .resourceGroupName("string")
    .maximumThroughputUnits(0)
    .location("string")
    .encryption(EncryptionArgs.builder()
        .keySource("Microsoft.KeyVault")
        .keyVaultProperties(KeyVaultPropertiesArgs.builder()
            .identity(UserAssignedIdentityPropertiesArgs.builder()
                .userAssignedIdentity("string")
                .build())
            .keyName("string")
            .keyVaultUri("string")
            .keyVersion("string")
            .build())
        .requireInfrastructureEncryption(false)
        .build())
    .identity(IdentityArgs.builder()
        .type("SystemAssigned")
        .userAssignedIdentities("string")
        .build())
    .minimumTlsVersion("string")
    .kafkaEnabled(false)
    .disableLocalAuth(false)
    .alternateName("string")
    .isAutoInflateEnabled(false)
    .namespaceName("string")
    .privateEndpointConnections(PrivateEndpointConnectionArgs.builder()
        .privateEndpoint(PrivateEndpointArgs.builder()
            .id("string")
            .build())
        .privateLinkServiceConnectionState(ConnectionStateArgs.builder()
            .description("string")
            .status("string")
            .build())
        .provisioningState("string")
        .build())
    .publicNetworkAccess("string")
    .clusterArmId("string")
    .sku(SkuArgs.builder()
        .name("string")
        .capacity(0)
        .tier("string")
        .build())
    .tags(Map.of("string", "string"))
    .zoneRedundant(false)
    .build());
azure_native_namespace_resource = azure_native.eventhub.Namespace("azure-nativeNamespaceResource",
    resource_group_name="string",
    maximum_throughput_units=0,
    location="string",
    encryption={
        "key_source": azure_native.eventhub.KeySource.MICROSOFT_KEY_VAULT,
        "key_vault_properties": [{
            "identity": {
                "user_assigned_identity": "string",
            },
            "key_name": "string",
            "key_vault_uri": "string",
            "key_version": "string",
        }],
        "require_infrastructure_encryption": False,
    },
    identity={
        "type": azure_native.eventhub.ManagedServiceIdentityType.SYSTEM_ASSIGNED,
        "user_assigned_identities": ["string"],
    },
    minimum_tls_version="string",
    kafka_enabled=False,
    disable_local_auth=False,
    alternate_name="string",
    is_auto_inflate_enabled=False,
    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",
    cluster_arm_id="string",
    sku={
        "name": "string",
        "capacity": 0,
        "tier": "string",
    },
    tags={
        "string": "string",
    },
    zone_redundant=False)
const azure_nativeNamespaceResource = new azure_native.eventhub.Namespace("azure-nativeNamespaceResource", {
    resourceGroupName: "string",
    maximumThroughputUnits: 0,
    location: "string",
    encryption: {
        keySource: azure_native.eventhub.KeySource.Microsoft_KeyVault,
        keyVaultProperties: [{
            identity: {
                userAssignedIdentity: "string",
            },
            keyName: "string",
            keyVaultUri: "string",
            keyVersion: "string",
        }],
        requireInfrastructureEncryption: false,
    },
    identity: {
        type: azure_native.eventhub.ManagedServiceIdentityType.SystemAssigned,
        userAssignedIdentities: ["string"],
    },
    minimumTlsVersion: "string",
    kafkaEnabled: false,
    disableLocalAuth: false,
    alternateName: "string",
    isAutoInflateEnabled: false,
    namespaceName: "string",
    privateEndpointConnections: [{
        privateEndpoint: {
            id: "string",
        },
        privateLinkServiceConnectionState: {
            description: "string",
            status: "string",
        },
        provisioningState: "string",
    }],
    publicNetworkAccess: "string",
    clusterArmId: "string",
    sku: {
        name: "string",
        capacity: 0,
        tier: "string",
    },
    tags: {
        string: "string",
    },
    zoneRedundant: false,
});
type: azure-native:eventhub:Namespace
properties:
    alternateName: string
    clusterArmId: string
    disableLocalAuth: false
    encryption:
        keySource: Microsoft.KeyVault
        keyVaultProperties:
            - identity:
                userAssignedIdentity: string
              keyName: string
              keyVaultUri: string
              keyVersion: string
        requireInfrastructureEncryption: false
    identity:
        type: SystemAssigned
        userAssignedIdentities:
            - string
    isAutoInflateEnabled: false
    kafkaEnabled: false
    location: string
    maximumThroughputUnits: 0
    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 specified when alias and namespace names are same.
- ClusterArm stringId 
- Cluster ARM ID of the Namespace.
- DisableLocal boolAuth 
- This property disables SAS authentication for the Event Hubs namespace.
- Encryption
Pulumi.Azure Native. Event Hub. Inputs. Encryption 
- Properties of BYOK Encryption description
- Identity
Pulumi.Azure Native. Event Hub. Inputs. Identity 
- Properties of BYOK Identity description
- IsAuto boolInflate Enabled 
- Value that indicates whether AutoInflate is enabled for eventhub namespace.
- KafkaEnabled bool
- Value that indicates whether Kafka is enabled for eventhub namespace.
- Location string
- Resource location.
- MaximumThroughput intUnits 
- Upper limit of throughput units when AutoInflate is enabled, value should be within 0 to 20 throughput units. ( '0' if AutoInflateEnabled = true)
- MinimumTls string | Pulumi.Version Azure Native. Event Hub. 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. Event Hub. 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. Event Hub. Public Network Access 
- This determines if traffic is allowed over public network. By default it is enabled.
- Sku
Pulumi.Azure Native. Event Hub. Inputs. Sku 
- Properties of sku resource
- Dictionary<string, string>
- Resource tags.
- ZoneRedundant bool
- Enabling this property creates a Standard Event Hubs Namespace in regions supported availability zones.
- ResourceGroup stringName 
- Name of the resource group within the azure subscription.
- AlternateName string
- Alternate name specified when alias and namespace names are same.
- ClusterArm stringId 
- Cluster ARM ID of the Namespace.
- DisableLocal boolAuth 
- This property disables SAS authentication for the Event Hubs namespace.
- Encryption
EncryptionArgs 
- Properties of BYOK Encryption description
- Identity
IdentityArgs 
- Properties of BYOK Identity description
- IsAuto boolInflate Enabled 
- Value that indicates whether AutoInflate is enabled for eventhub namespace.
- KafkaEnabled bool
- Value that indicates whether Kafka is enabled for eventhub namespace.
- Location string
- Resource location.
- MaximumThroughput intUnits 
- Upper limit of throughput units when AutoInflate is enabled, value should be within 0 to 20 throughput units. ( '0' if AutoInflateEnabled = true)
- 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
SkuArgs 
- Properties of sku resource
- map[string]string
- Resource tags.
- ZoneRedundant bool
- Enabling this property creates a Standard Event Hubs Namespace in regions supported availability zones.
- resourceGroup StringName 
- Name of the resource group within the azure subscription.
- alternateName String
- Alternate name specified when alias and namespace names are same.
- clusterArm StringId 
- Cluster ARM ID of the Namespace.
- disableLocal BooleanAuth 
- This property disables SAS authentication for the Event Hubs namespace.
- encryption Encryption
- Properties of BYOK Encryption description
- identity Identity
- Properties of BYOK Identity description
- isAuto BooleanInflate Enabled 
- Value that indicates whether AutoInflate is enabled for eventhub namespace.
- kafkaEnabled Boolean
- Value that indicates whether Kafka is enabled for eventhub namespace.
- location String
- Resource location.
- maximumThroughput IntegerUnits 
- Upper limit of throughput units when AutoInflate is enabled, value should be within 0 to 20 throughput units. ( '0' if AutoInflateEnabled = true)
- 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 Sku
- Properties of sku resource
- Map<String,String>
- Resource tags.
- zoneRedundant Boolean
- Enabling this property creates a Standard Event Hubs Namespace in regions supported availability zones.
- resourceGroup stringName 
- Name of the resource group within the azure subscription.
- alternateName string
- Alternate name specified when alias and namespace names are same.
- clusterArm stringId 
- Cluster ARM ID of the Namespace.
- disableLocal booleanAuth 
- This property disables SAS authentication for the Event Hubs namespace.
- encryption Encryption
- Properties of BYOK Encryption description
- identity Identity
- Properties of BYOK Identity description
- isAuto booleanInflate Enabled 
- Value that indicates whether AutoInflate is enabled for eventhub namespace.
- kafkaEnabled boolean
- Value that indicates whether Kafka is enabled for eventhub namespace.
- location string
- Resource location.
- maximumThroughput numberUnits 
- Upper limit of throughput units when AutoInflate is enabled, value should be within 0 to 20 throughput units. ( '0' if AutoInflateEnabled = true)
- 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 Sku
- Properties of sku resource
- {[key: string]: string}
- Resource tags.
- zoneRedundant boolean
- Enabling this property creates a Standard Event Hubs Namespace in regions supported availability zones.
- resource_group_ strname 
- Name of the resource group within the azure subscription.
- alternate_name str
- Alternate name specified when alias and namespace names are same.
- cluster_arm_ strid 
- Cluster ARM ID of the Namespace.
- disable_local_ boolauth 
- This property disables SAS authentication for the Event Hubs namespace.
- encryption
EncryptionArgs 
- Properties of BYOK Encryption description
- identity
IdentityArgs 
- Properties of BYOK Identity description
- is_auto_ boolinflate_ enabled 
- Value that indicates whether AutoInflate is enabled for eventhub namespace.
- kafka_enabled bool
- Value that indicates whether Kafka is enabled for eventhub namespace.
- location str
- Resource location.
- maximum_throughput_ intunits 
- Upper limit of throughput units when AutoInflate is enabled, value should be within 0 to 20 throughput units. ( '0' if AutoInflateEnabled = true)
- 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
SkuArgs 
- Properties of sku resource
- Mapping[str, str]
- Resource tags.
- zone_redundant bool
- Enabling this property creates a Standard Event Hubs Namespace in regions supported availability zones.
- resourceGroup StringName 
- Name of the resource group within the azure subscription.
- alternateName String
- Alternate name specified when alias and namespace names are same.
- clusterArm StringId 
- Cluster ARM ID of the Namespace.
- disableLocal BooleanAuth 
- This property disables SAS authentication for the Event Hubs namespace.
- encryption Property Map
- Properties of BYOK Encryption description
- identity Property Map
- Properties of BYOK Identity description
- isAuto BooleanInflate Enabled 
- Value that indicates whether AutoInflate is enabled for eventhub namespace.
- kafkaEnabled Boolean
- Value that indicates whether Kafka is enabled for eventhub namespace.
- location String
- Resource location.
- maximumThroughput NumberUnits 
- Upper limit of throughput units when AutoInflate is enabled, value should be within 0 to 20 throughput units. ( '0' if AutoInflateEnabled = true)
- 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 resource
- Map<String>
- Resource tags.
- zoneRedundant Boolean
- Enabling this property creates a Standard Event Hubs 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
- The name of the resource
- 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. Event Hub. Outputs. System Data Response 
- The system meta data relating to this resource.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- 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
- The name of the resource
- 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
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- 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
- The name of the resource
- 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
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- 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
- The name of the resource
- 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
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- 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
- The name of the resource
- 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
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- 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
- The name of the resource
- 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
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- updatedAt String
- The time the Namespace was updated.
Supporting Types
ConnectionState, ConnectionStateArgs    
- Description string
- Description of the connection state.
- Status
string | Pulumi.Azure Native. Event Hub. 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 Pulumi.Azure Native. Event Hub. Key Source 
- Enumerates the possible value of keySource for Encryption
- KeyVault List<Pulumi.Properties Azure Native. Event Hub. Inputs. Key Vault Properties> 
- Properties of KeyVault
- RequireInfrastructure boolEncryption 
- Enable Infrastructure Encryption (Double Encryption)
- KeySource KeySource 
- Enumerates the possible value of keySource for Encryption
- KeyVault []KeyProperties Vault Properties 
- Properties of KeyVault
- RequireInfrastructure boolEncryption 
- Enable Infrastructure Encryption (Double Encryption)
- keySource KeySource 
- Enumerates the possible value of keySource for Encryption
- keyVault List<KeyProperties Vault Properties> 
- Properties of KeyVault
- requireInfrastructure BooleanEncryption 
- Enable Infrastructure Encryption (Double Encryption)
- keySource KeySource 
- Enumerates the possible value of keySource for Encryption
- keyVault KeyProperties Vault Properties[] 
- Properties of KeyVault
- requireInfrastructure booleanEncryption 
- Enable Infrastructure Encryption (Double Encryption)
- key_source KeySource 
- Enumerates the possible value of keySource for Encryption
- key_vault_ Sequence[Keyproperties Vault Properties] 
- Properties of KeyVault
- require_infrastructure_ boolencryption 
- Enable Infrastructure Encryption (Double Encryption)
- keySource "Microsoft.Key Vault" 
- Enumerates the possible value of keySource for Encryption
- keyVault List<Property Map>Properties 
- Properties of KeyVault
- requireInfrastructure BooleanEncryption 
- Enable Infrastructure Encryption (Double Encryption)
EncryptionResponse, EncryptionResponseArgs    
- KeySource string
- Enumerates the possible value of keySource for Encryption
- KeyVault List<Pulumi.Properties Azure Native. Event Hub. 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
Pulumi.Azure Native. Event Hub. Managed Service Identity Type 
- Type of managed service identity.
- UserAssigned List<string>Identities 
- Properties for User Assigned Identities
- Type
ManagedService Identity Type 
- Type of managed service identity.
- UserAssigned []stringIdentities 
- Properties for User Assigned Identities
- type
ManagedService Identity Type 
- Type of managed service identity.
- userAssigned List<String>Identities 
- Properties for User Assigned Identities
- type
ManagedService Identity Type 
- Type of managed service identity.
- userAssigned string[]Identities 
- Properties for User Assigned Identities
- type
ManagedService Identity Type 
- Type of managed service identity.
- user_assigned_ Sequence[str]identities 
- Properties for User Assigned Identities
- type
"SystemAssigned" | "User Assigned" | "System Assigned, User Assigned" | "None" 
- Type of managed service identity.
- userAssigned List<String>Identities 
- Properties for User Assigned Identities
IdentityResponse, IdentityResponseArgs    
- 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. Event Hub. 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. Event Hub. Inputs. User Assigned Identity Properties 
- KeyName string
- Name of the Key from KeyVault
- KeyVault stringUri 
- Uri of KeyVault
- KeyVersion string
- Key Version
- Identity
UserAssigned Identity Properties 
- KeyName string
- Name of the Key from KeyVault
- KeyVault stringUri 
- Uri of KeyVault
- KeyVersion string
- Key Version
- identity
UserAssigned Identity Properties 
- keyName String
- Name of the Key from KeyVault
- keyVault StringUri 
- Uri of KeyVault
- keyVersion String
- Key Version
- identity
UserAssigned Identity Properties 
- keyName string
- Name of the Key from KeyVault
- keyVault stringUri 
- Uri of KeyVault
- keyVersion string
- Key Version
- identity
UserAssigned Identity Properties 
- key_name str
- Name of the Key from KeyVault
- key_vault_ struri 
- Uri of KeyVault
- key_version str
- Key Version
- identity Property Map
- keyName String
- Name of the Key from KeyVault
- keyVault StringUri 
- Uri of KeyVault
- keyVersion String
- Key Version
KeyVaultPropertiesResponse, KeyVaultPropertiesResponseArgs        
- Identity
Pulumi.Azure Native. Event Hub. Inputs. User Assigned Identity Properties Response 
- KeyName string
- Name of the Key from KeyVault
- KeyVault stringUri 
- Uri of KeyVault
- KeyVersion string
- Key Version
- Identity
UserAssigned Identity Properties Response 
- KeyName string
- Name of the Key from KeyVault
- KeyVault stringUri 
- Uri of KeyVault
- KeyVersion string
- Key Version
- identity
UserAssigned Identity Properties Response 
- keyName String
- Name of the Key from KeyVault
- keyVault StringUri 
- Uri of KeyVault
- keyVersion String
- Key Version
- identity
UserAssigned Identity Properties Response 
- keyName string
- Name of the Key from KeyVault
- keyVault stringUri 
- Uri of KeyVault
- keyVersion string
- Key Version
- identity
UserAssigned Identity Properties Response 
- key_name str
- Name of the Key from KeyVault
- key_vault_ struri 
- Uri of KeyVault
- key_version str
- Key Version
- identity Property Map
- keyName String
- Name of the Key from KeyVault
- keyVault StringUri 
- Uri of KeyVault
- keyVersion String
- Key Version
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. Event Hub. Inputs. Private Endpoint 
- The Private Endpoint resource for this Connection.
- PrivateLink Pulumi.Service Connection State Azure Native. Event Hub. Inputs. Connection State 
- Details about the state of the connection.
- ProvisioningState string | Pulumi.Azure Native. Event Hub. 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. Event Hub. 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. Event Hub. Inputs. Private Endpoint Response 
- The Private Endpoint resource for this Connection.
- PrivateLink Pulumi.Service Connection State Azure Native. Event Hub. 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
Sku, SkuArgs  
- Name
string | Pulumi.Azure Native. Event Hub. Sku Name 
- Name of this SKU.
- Capacity int
- The Event Hubs throughput units for Basic or Standard tiers, where value should be 0 to 20 throughput units. The Event Hubs premium units for Premium tier, where value should be 0 to 10 premium units.
- Tier
string | Pulumi.Azure Native. Event Hub. Sku Tier 
- The billing tier of this particular SKU.
- Name
string | SkuName 
- Name of this SKU.
- Capacity int
- The Event Hubs throughput units for Basic or Standard tiers, where value should be 0 to 20 throughput units. The Event Hubs premium units for Premium tier, where value should be 0 to 10 premium units.
- Tier
string | SkuTier 
- The billing tier of this particular SKU.
- name
String | SkuName 
- Name of this SKU.
- capacity Integer
- The Event Hubs throughput units for Basic or Standard tiers, where value should be 0 to 20 throughput units. The Event Hubs premium units for Premium tier, where value should be 0 to 10 premium units.
- tier
String | SkuTier 
- The billing tier of this particular SKU.
- name
string | SkuName 
- Name of this SKU.
- capacity number
- The Event Hubs throughput units for Basic or Standard tiers, where value should be 0 to 20 throughput units. The Event Hubs premium units for Premium tier, where value should be 0 to 10 premium units.
- tier
string | SkuTier 
- The billing tier of this particular SKU.
- name
str | SkuName 
- Name of this SKU.
- capacity int
- The Event Hubs throughput units for Basic or Standard tiers, where value should be 0 to 20 throughput units. The Event Hubs premium units for Premium tier, where value should be 0 to 10 premium units.
- tier
str | SkuTier 
- The billing tier of this particular SKU.
- name String | "Basic" | "Standard" | "Premium"
- Name of this SKU.
- capacity Number
- The Event Hubs throughput units for Basic or Standard tiers, where value should be 0 to 20 throughput units. The Event Hubs premium units for Premium tier, where value should be 0 to 10 premium units.
- tier String | "Basic" | "Standard" | "Premium"
- The billing tier of this particular SKU.
SkuName, SkuNameArgs    
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- SkuName Basic 
- Basic
- SkuName Standard 
- Standard
- SkuName Premium 
- Premium
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- BASIC
- Basic
- STANDARD
- Standard
- PREMIUM
- Premium
- "Basic"
- Basic
- "Standard"
- Standard
- "Premium"
- Premium
SkuResponse, SkuResponseArgs    
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
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0