Show / Hide Table of Contents

Class EventHubAuthorizationRuleState

Inheritance
System.Object
InputArgs
ResourceArgs
EventHubAuthorizationRuleState
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 EventHubAuthorizationRuleState : ResourceArgs

Constructors

View Source

EventHubAuthorizationRuleState()

Declaration
public EventHubAuthorizationRuleState()

Properties

View Source

EventhubName

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

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

Listen

Does this Authorization Rule have permissions to Listen to the Event Hub? Defaults to false.

Declaration
public Input<bool> Listen { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Manage

Does this Authorization Rule have permissions to Manage to the Event Hub? When this property is true - both listen and send must be too. Defaults to false.

Declaration
public Input<bool> Manage { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Name

Specifies the name of the EventHub Authorization Rule 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

NamespaceName

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

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

PrimaryConnectionString

The Primary Connection String for the Event Hubs authorization Rule.

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

PrimaryConnectionStringAlias

The alias of the Primary Connection String for the Event Hubs authorization Rule, which is generated when disaster recovery is enabled.

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

PrimaryKey

The Primary Key for the Event Hubs authorization Rule.

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

ResourceGroupName

The name of the resource group in which the EventHub Namespace exists. Changing this forces a new resource to be created.

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

SecondaryConnectionString

The Secondary Connection String for the Event Hubs Authorization Rule.

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

SecondaryConnectionStringAlias

The alias of the Secondary Connection String for the Event Hubs Authorization Rule, which is generated when disaster recovery is enabled.

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

SecondaryKey

The Secondary Key for the Event Hubs Authorization Rule.

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

Send

Does this Authorization Rule have permissions to Send to the Event Hub? Defaults to false.

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