RoutingStorageContainerProperties Constructors

Definition

Overloads

RoutingStorageContainerProperties()

Initializes a new instance of the RoutingStorageContainerProperties class.

RoutingStorageContainerProperties(String, String, String, String, String, String, ManagedIdentity, String, String, String, Nullable<Int32>, Nullable<Int32>, String)

Initializes a new instance of the RoutingStorageContainerProperties class.

RoutingStorageContainerProperties()

Initializes a new instance of the RoutingStorageContainerProperties class.

public RoutingStorageContainerProperties ();
Public Sub New ()

Applies to

RoutingStorageContainerProperties(String, String, String, String, String, String, ManagedIdentity, String, String, String, Nullable<Int32>, Nullable<Int32>, String)

Initializes a new instance of the RoutingStorageContainerProperties class.

public RoutingStorageContainerProperties (string name, string containerName, string id = default, string connectionString = default, string endpointUri = default, string authenticationType = default, Microsoft.Azure.Management.IotHub.Models.ManagedIdentity identity = default, string subscriptionId = default, string resourceGroup = default, string fileNameFormat = default, int? batchFrequencyInSeconds = default, int? maxChunkSizeInBytes = default, string encoding = default);
new Microsoft.Azure.Management.IotHub.Models.RoutingStorageContainerProperties : string * string * string * string * string * string * Microsoft.Azure.Management.IotHub.Models.ManagedIdentity * string * string * string * Nullable<int> * Nullable<int> * string -> Microsoft.Azure.Management.IotHub.Models.RoutingStorageContainerProperties
Public Sub New (name As String, containerName As String, Optional id As String = Nothing, Optional connectionString As String = Nothing, Optional endpointUri As String = Nothing, Optional authenticationType As String = Nothing, Optional identity As ManagedIdentity = Nothing, Optional subscriptionId As String = Nothing, Optional resourceGroup As String = Nothing, Optional fileNameFormat As String = Nothing, Optional batchFrequencyInSeconds As Nullable(Of Integer) = Nothing, Optional maxChunkSizeInBytes As Nullable(Of Integer) = Nothing, Optional encoding As String = Nothing)

Parameters

name
String

The name that identifies this endpoint. The name can only include alphanumeric characters, periods, underscores, hyphens and has a maximum length of 64 characters. The following names are reserved: events, fileNotifications, $default. Endpoint names must be unique across endpoint types.

containerName
String

The name of storage container in the storage account.

id
String

Id of the storage container endpoint

connectionString
String

The connection string of the storage account.

endpointUri
String

The url of the storage endpoint. It must include the protocol https://

authenticationType
String

Method used to authenticate against the storage endpoint. Possible values include: 'keyBased', 'identityBased'

identity
ManagedIdentity

Managed identity properties of routing storage endpoint.

subscriptionId
String

The subscription identifier of the storage account.

resourceGroup
String

The name of the resource group of the storage account.

fileNameFormat
String

File name format for the blob. Default format is {iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}. All parameters are mandatory but can be reordered.

batchFrequencyInSeconds
Nullable<Int32>

Time interval at which blobs are written to storage. Value should be between 60 and 720 seconds. Default value is 300 seconds.

maxChunkSizeInBytes
Nullable<Int32>

Maximum number of bytes for each blob written to storage. Value should be between 10485760(10MB) and 524288000(500MB). Default value is 314572800(300MB).

encoding
String

Encoding that is used to serialize messages to blobs. Supported values are 'avro', 'avrodeflate', and 'JSON'. Default value is 'avro'. Possible values include: 'Avro', 'AvroDeflate', 'JSON'

Applies to