Show / Hide Table of Contents

Class SharedAccessPolicyState

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

Constructors

View Source

SharedAccessPolicyState()

Declaration
public SharedAccessPolicyState()

Properties

View Source

DeviceConnect

Adds DeviceConnect permission to this Shared Access Account. It allows sending and receiving on the device-side endpoints.

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

IothubName

The name of the IoTHub to which this Shared Access Policy belongs. Changing this forces a new resource to be created.

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

Name

Specifies the name of the IotHub Shared Access Policy 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

PrimaryConnectionString

The primary connection string of the Shared Access Policy.

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

PrimaryKey

The primary key used to create the authentication token.

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

RegistryRead

Adds RegistryRead permission to this Shared Access Account. It allows read access to the identity registry.

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

RegistryWrite

Adds RegistryWrite permission to this Shared Access Account. It allows write access to the identity registry.

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

ResourceGroupName

The name of the resource group under which the IotHub Shared Access Policy resource has to be created. 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 of the Shared Access Policy.

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

SecondaryKey

The secondary key used to create the authentication token.

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

ServiceConnect

Adds ServiceConnect permission to this Shared Access Account. It allows sending and receiving on the cloud-side endpoints.

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