Show / Hide Table of Contents

Class AuthorizationRuleState

Inheritance
System.Object
InputArgs
ResourceArgs
AuthorizationRuleState
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.NotificationHub
Assembly: Pulumi.Azure.dll
Syntax
public sealed class AuthorizationRuleState : ResourceArgs

Constructors

View Source

AuthorizationRuleState()

Declaration
public AuthorizationRuleState()

Properties

View Source

Listen

Does this Authorization Rule have Listen access to the Notification 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 Manage access to the Notification Hub? Defaults to false.

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

Name

The name to use for this Authorization Rule. 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

The name of the Notification Hub Namespace in which the Notification Hub exists. 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

NotificationHubName

The name of the Notification Hub for which the Authorization Rule should be created. Changing this forces a new resource to be created.

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

PrimaryAccessKey

The Primary Access Key associated with this Authorization Rule.

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

ResourceGroupName

The name of the Resource Group in which the Notification Hub 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

SecondaryAccessKey

The Secondary Access Key associated with this Authorization Rule.

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

Send

Does this Authorization Rule have Send access to the Notification 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.