Show / Hide Table of Contents

Class SharedAccessPolicyArgs

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

Constructors

View Source

SharedAccessPolicyArgs()

Declaration
public SharedAccessPolicyArgs()

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

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

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.