Share via


JobNetworkConfiguration Constructors

Definition

Overloads

JobNetworkConfiguration()

Initializes a new instance of the JobNetworkConfiguration class.

JobNetworkConfiguration(String, Nullable<Boolean>)

Initializes a new instance of the JobNetworkConfiguration class.

JobNetworkConfiguration()

Source:
JobNetworkConfiguration.cs

Initializes a new instance of the JobNetworkConfiguration class.

public JobNetworkConfiguration ();
Public Sub New ()

Applies to

JobNetworkConfiguration(String, Nullable<Boolean>)

Source:
JobNetworkConfiguration.cs

Initializes a new instance of the JobNetworkConfiguration class.

public JobNetworkConfiguration (string subnetId, bool? skipWithdrawFromVNet = default);
new Microsoft.Azure.Batch.Protocol.Models.JobNetworkConfiguration : string * Nullable<bool> -> Microsoft.Azure.Batch.Protocol.Models.JobNetworkConfiguration
Public Sub New (subnetId As String, Optional skipWithdrawFromVNet As Nullable(Of Boolean) = Nothing)

Parameters

subnetId
String

The ARM resource identifier of the virtual network subnet which Compute Nodes running Tasks from the Job will join for the duration of the Task.

skipWithdrawFromVNet
Nullable<Boolean>

Whether to withdraw Compute Nodes from the virtual network to DNC when the job is terminated or deleted.

Applies to