NetworkConfiguration Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
NetworkConfiguration() |
Initializes a new instance of the NetworkConfiguration class. |
NetworkConfiguration(String, Nullable<DynamicVNetAssignmentScope>, PoolEndpointConfiguration, PublicIPAddressConfiguration, Nullable<Boolean>) |
Initializes a new instance of the NetworkConfiguration class. |
NetworkConfiguration()
- Source:
- NetworkConfiguration.cs
Initializes a new instance of the NetworkConfiguration class.
public NetworkConfiguration ();
Public Sub New ()
Applies to
NetworkConfiguration(String, Nullable<DynamicVNetAssignmentScope>, PoolEndpointConfiguration, PublicIPAddressConfiguration, Nullable<Boolean>)
- Source:
- NetworkConfiguration.cs
Initializes a new instance of the NetworkConfiguration class.
public NetworkConfiguration (string subnetId = default, Microsoft.Azure.Batch.Protocol.Models.DynamicVNetAssignmentScope? dynamicVNetAssignmentScope = default, Microsoft.Azure.Batch.Protocol.Models.PoolEndpointConfiguration endpointConfiguration = default, Microsoft.Azure.Batch.Protocol.Models.PublicIPAddressConfiguration publicIPAddressConfiguration = default, bool? enableAcceleratedNetworking = default);
new Microsoft.Azure.Batch.Protocol.Models.NetworkConfiguration : string * Nullable<Microsoft.Azure.Batch.Protocol.Models.DynamicVNetAssignmentScope> * Microsoft.Azure.Batch.Protocol.Models.PoolEndpointConfiguration * Microsoft.Azure.Batch.Protocol.Models.PublicIPAddressConfiguration * Nullable<bool> -> Microsoft.Azure.Batch.Protocol.Models.NetworkConfiguration
Public Sub New (Optional subnetId As String = Nothing, Optional dynamicVNetAssignmentScope As Nullable(Of DynamicVNetAssignmentScope) = Nothing, Optional endpointConfiguration As PoolEndpointConfiguration = Nothing, Optional publicIPAddressConfiguration As PublicIPAddressConfiguration = Nothing, Optional enableAcceleratedNetworking As Nullable(Of Boolean) = Nothing)
Parameters
- subnetId
- String
The ARM resource identifier of the virtual network subnet which the Compute Nodes of the Pool will join. This is of the form /subscriptions/{subscription}/resourceGroups/{group}/providers/{provider}/virtualNetworks/{network}/subnets/{subnet}.
- dynamicVNetAssignmentScope
- Nullable<DynamicVNetAssignmentScope>
The scope of dynamic vnet assignment.
- endpointConfiguration
- PoolEndpointConfiguration
The configuration for endpoints on Compute Nodes in the Batch Pool.
- publicIPAddressConfiguration
- PublicIPAddressConfiguration
The Public IPAddress configuration for Compute Nodes in the Batch Pool.
Whether this pool should enable accelerated networking.
Applies to
Azure SDK for .NET