次の方法で共有


PoolGetOptions コンストラクター

定義

オーバーロード

PoolGetOptions()

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

PoolGetOptions(String, String, Nullable<Int32>, Nullable<Guid>, Nullable<Boolean>, Nullable<DateTime>, String, String, Nullable<DateTime>, Nullable<DateTime>)

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

PoolGetOptions()

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

public PoolGetOptions ();
Public Sub New ()

適用対象

PoolGetOptions(String, String, Nullable<Int32>, Nullable<Guid>, Nullable<Boolean>, Nullable<DateTime>, String, String, Nullable<DateTime>, Nullable<DateTime>)

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

public PoolGetOptions (string select = default, string expand = default, int? timeout = default, Guid? clientRequestId = default, bool? returnClientRequestId = default, DateTime? ocpDate = default, string ifMatch = default, string ifNoneMatch = default, DateTime? ifModifiedSince = default, DateTime? ifUnmodifiedSince = default);
new Microsoft.Azure.Batch.Protocol.Models.PoolGetOptions : string * string * Nullable<int> * Nullable<Guid> * Nullable<bool> * Nullable<DateTime> * string * string * Nullable<DateTime> * Nullable<DateTime> -> Microsoft.Azure.Batch.Protocol.Models.PoolGetOptions
Public Sub New (Optional select As String = Nothing, Optional expand As String = Nothing, Optional timeout As Nullable(Of Integer) = Nothing, Optional clientRequestId As Nullable(Of Guid) = Nothing, Optional returnClientRequestId As Nullable(Of Boolean) = Nothing, Optional ocpDate As Nullable(Of DateTime) = Nothing, Optional ifMatch As String = Nothing, Optional ifNoneMatch As String = Nothing, Optional ifModifiedSince As Nullable(Of DateTime) = Nothing, Optional ifUnmodifiedSince As Nullable(Of DateTime) = Nothing)

パラメーター

select
String

OData $select 句。

expand
String

OData $expand 句。

timeout
Nullable<Int32>

サーバーが要求の処理に費やすことができる最大時間 (秒単位)。 既定値は 30 秒です。

clientRequestId
Nullable<Guid>

呼び出し元によって生成された要求 ID。中かっこなどの装飾のない GUID の形式 (例: 9C4D50EE-2D56-4CD3-8152-34347DC9F2B0)。

returnClientRequestId
Nullable<Boolean>

サーバーが応答で client-request-id を返す必要があるかどうか。

ocpDate
Nullable<DateTime>

要求が発行された時刻。 クライアント ライブラリは通常、これを現在のシステム クロック時間に設定します。REST API を直接呼び出す場合は、明示的に設定します。

ifMatch
String

クライアントに認識されているリソースのバージョンに関連付けられている ETag 値。 操作は、サービス上のリソースの現在の ETag がクライアントで指定された値と正確に一致する場合にのみ実行されます。

ifNoneMatch
String

クライアントに認識されているリソースのバージョンに関連付けられている ETag 値。 操作は、サービス上のリソースの現在の ETag がクライアントで指定された値と一致しない場合にのみ実行されます。

ifModifiedSince
Nullable<DateTime>

クライアントに認識されているリソースの最終変更時刻を示すタイムスタンプ。 操作は、サービス上のリソースが指定された時刻以降に変更された場合にのみ実行されます。

ifUnmodifiedSince
Nullable<DateTime>

クライアントに認識されているリソースの最終変更時刻を示すタイムスタンプ。 操作は、指定された時刻以降にサービス上のリソースが変更されていない場合にのみ実行されます。

適用対象