Show / Hide Table of Contents

Class NamespaceArgs

Inheritance
System.Object
InputArgs
ResourceArgs
NamespaceArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.EventHub
Assembly: Pulumi.Azure.dll
Syntax
public sealed class NamespaceArgs : ResourceArgs

Constructors

View Source

NamespaceArgs()

Declaration
public NamespaceArgs()

Properties

View Source

Capacity

Specifies the capacity. When sku is Premium, capacity can be 1, 2, 4 or 8. When sku is Basic or Standard, capacity can be 0 only.

Declaration
public Input<int> Capacity { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Location

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

Declaration
public Input<string> Location { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

Specifies the name of the ServiceBus Namespace resource . Changing this forces a new resource to be created.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ResourceGroupName

The name of the resource group in which to create the namespace.

Declaration
public Input<string> ResourceGroupName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Sku

Defines which tier to use. Options are basic, standard or premium. Changing this forces a new resource to be created.

Declaration
public Input<string> Sku { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Tags

A mapping of tags to assign to the resource.

Declaration
public InputMap<string> Tags { get; set; }
Property Value
Type Description
InputMap<System.String>
View Source

ZoneRedundant

Whether or not this resource is zone redundant. sku needs to be Premium. Defaults to false.

Declaration
public Input<bool> ZoneRedundant { get; set; }
Property Value
Type Description
Input<System.Boolean>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.