JobPatchHeaders Constructors

Definition

Overloads

JobPatchHeaders()

Initializes a new instance of the JobPatchHeaders class.

JobPatchHeaders(Nullable<Guid>, Nullable<Guid>, String, Nullable<DateTime>, String)

Initializes a new instance of the JobPatchHeaders class.

JobPatchHeaders()

Source:
JobPatchHeaders.cs

Initializes a new instance of the JobPatchHeaders class.

public JobPatchHeaders ();
Public Sub New ()

Applies to

JobPatchHeaders(Nullable<Guid>, Nullable<Guid>, String, Nullable<DateTime>, String)

Source:
JobPatchHeaders.cs

Initializes a new instance of the JobPatchHeaders class.

public JobPatchHeaders (Guid? clientRequestId = default, Guid? requestId = default, string eTag = default, DateTime? lastModified = default, string dataServiceId = default);
new Microsoft.Azure.Batch.Protocol.Models.JobPatchHeaders : Nullable<Guid> * Nullable<Guid> * string * Nullable<DateTime> * string -> Microsoft.Azure.Batch.Protocol.Models.JobPatchHeaders
Public Sub New (Optional clientRequestId As Nullable(Of Guid) = Nothing, Optional requestId As Nullable(Of Guid) = Nothing, Optional eTag As String = Nothing, Optional lastModified As Nullable(Of DateTime) = Nothing, Optional dataServiceId As String = Nothing)

Parameters

clientRequestId
Nullable<Guid>

The client-request-id provided by the client during the request. This will be returned only if the return-client-request-id parameter was set to true.

requestId
Nullable<Guid>

A unique identifier for the request that was made to the Batch service. If a request is consistently failing and you have verified that the request is properly formulated, you may use this value to report the error to Microsoft. In your report, include the value of this request ID, the approximate time that the request was made, the Batch Account against which the request was made, and the region that Account resides in.

eTag
String

The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Modified-Since, If-Unmodified-Since, If-Match or If-None-Match headers.

lastModified
Nullable<DateTime>

The time at which the resource was last modified.

dataServiceId
String

The OData ID of the resource to which the request applied.

Applies to