NodeRebootParameter Constructors

Definition

Overloads

NodeRebootParameter()

Initializes a new instance of the NodeRebootParameter class.

NodeRebootParameter(Nullable<ComputeNodeRebootOption>)

Initializes a new instance of the NodeRebootParameter class.

NodeRebootParameter()

Source:
NodeRebootParameter.cs

Initializes a new instance of the NodeRebootParameter class.

public NodeRebootParameter ();
Public Sub New ()

Applies to

NodeRebootParameter(Nullable<ComputeNodeRebootOption>)

Source:
NodeRebootParameter.cs

Initializes a new instance of the NodeRebootParameter class.

public NodeRebootParameter (Microsoft.Azure.Batch.Protocol.Models.ComputeNodeRebootOption? nodeRebootOption = default);
new Microsoft.Azure.Batch.Protocol.Models.NodeRebootParameter : Nullable<Microsoft.Azure.Batch.Protocol.Models.ComputeNodeRebootOption> -> Microsoft.Azure.Batch.Protocol.Models.NodeRebootParameter
Public Sub New (Optional nodeRebootOption As Nullable(Of ComputeNodeRebootOption) = Nothing)

Parameters

nodeRebootOption
Nullable<ComputeNodeRebootOption>

When to reboot the Compute Node and what to do with currently running Tasks.

Applies to