Share via


ComputeNodeInformation Constructors

Definition

Overloads

ComputeNodeInformation()

Initializes a new instance of the ComputeNodeInformation class.

ComputeNodeInformation(String, String, String, String, String, String)

Initializes a new instance of the ComputeNodeInformation class.

ComputeNodeInformation()

Source:
ComputeNodeInformation.cs

Initializes a new instance of the ComputeNodeInformation class.

public ComputeNodeInformation ();
Public Sub New ()

Applies to

ComputeNodeInformation(String, String, String, String, String, String)

Source:
ComputeNodeInformation.cs

Initializes a new instance of the ComputeNodeInformation class.

public ComputeNodeInformation (string affinityId = default, string nodeUrl = default, string poolId = default, string nodeId = default, string taskRootDirectory = default, string taskRootDirectoryUrl = default);
new Microsoft.Azure.Batch.Protocol.Models.ComputeNodeInformation : string * string * string * string * string * string -> Microsoft.Azure.Batch.Protocol.Models.ComputeNodeInformation
Public Sub New (Optional affinityId As String = Nothing, Optional nodeUrl As String = Nothing, Optional poolId As String = Nothing, Optional nodeId As String = Nothing, Optional taskRootDirectory As String = Nothing, Optional taskRootDirectoryUrl As String = Nothing)

Parameters

affinityId
String

An identifier for the Node on which the Task ran, which can be passed when adding a Task to request that the Task be scheduled on this Compute Node.

nodeUrl
String

The URL of the Compute Node on which the Task ran.

poolId
String

The ID of the Pool on which the Task ran.

nodeId
String

The ID of the Compute Node on which the Task ran.

taskRootDirectory
String

The root directory of the Task on the Compute Node.

taskRootDirectoryUrl
String

The URL to the root directory of the Task on the Compute Node.

Applies to