你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

JobUpdateOptions 构造函数

定义

重载

JobUpdateOptions()

初始化 JobUpdateOptions 类的新实例。

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

初始化 JobUpdateOptions 类的新实例。

JobUpdateOptions()

初始化 JobUpdateOptions 类的新实例。

public JobUpdateOptions ();
Public Sub New ()

适用于

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

初始化 JobUpdateOptions 类的新实例。

public JobUpdateOptions (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.JobUpdateOptions : Nullable<int> * Nullable<Guid> * Nullable<bool> * Nullable<DateTime> * string * string * Nullable<DateTime> * Nullable<DateTime> -> Microsoft.Azure.Batch.Protocol.Models.JobUpdateOptions
Public Sub New (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)

参数

timeout
Nullable<Int32>

服务器处理请求的最长时间(以秒为单位)。 默认为 30 秒。

clientRequestId
Nullable<Guid>

调用方生成的请求标识,采用不带修饰的 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>

一个时间戳,指示客户端已知的资源的上次修改时间。 仅当服务上的资源自指定时间以来未修改时,才会执行该操作。

适用于