StorageQueue コンストラクター

定義

オーバーロード

StorageQueue()

StorageQueue クラスの新しいインスタンスを初期化します。

StorageQueue(String, String, String, IDictionary<String,String>, Nullable<Int32>)

StorageQueue クラスの新しいインスタンスを初期化します。

StorageQueue()

StorageQueue クラスの新しいインスタンスを初期化します。

public StorageQueue ();
Public Sub New ()

適用対象

StorageQueue(String, String, String, IDictionary<String,String>, Nullable<Int32>)

StorageQueue クラスの新しいインスタンスを初期化します。

public StorageQueue (string id = default, string name = default, string type = default, System.Collections.Generic.IDictionary<string,string> metadata = default, int? approximateMessageCount = default);
new Microsoft.Azure.Management.Storage.Models.StorageQueue : string * string * string * System.Collections.Generic.IDictionary<string, string> * Nullable<int> -> Microsoft.Azure.Management.Storage.Models.StorageQueue
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional metadata As IDictionary(Of String, String) = Nothing, Optional approximateMessageCount As Nullable(Of Integer) = Nothing)

パラメーター

id
String

リソースの完全修飾リソース ID。 例 - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

name
String

リソースの名前

type
String

リソースの型。 例: "Microsoft.Compute/virtualMachines" または "Microsoft.Storage/storageAccounts"

metadata
IDictionary<String,String>

キュー メタデータを表す名前と値のペア。

approximateMessageCount
Nullable<Int32>

キュー内のメッセージのおおよその数を示す整数。 この数は、キュー内の実際のメッセージ数より少なくなることはありませんが、多くなる可能性があります。

適用対象