PrivateAccessVirtualNetwork 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
PrivateAccessVirtualNetwork() |
Initializes a new instance of the PrivateAccessVirtualNetwork class. |
PrivateAccessVirtualNetwork(String, Nullable<Int32>, String, IList<PrivateAccessSubnet>) |
Initializes a new instance of the PrivateAccessVirtualNetwork class. |
PrivateAccessVirtualNetwork()
Initializes a new instance of the PrivateAccessVirtualNetwork class.
public PrivateAccessVirtualNetwork ();
Public Sub New ()
Applies to
PrivateAccessVirtualNetwork(String, Nullable<Int32>, String, IList<PrivateAccessSubnet>)
Initializes a new instance of the PrivateAccessVirtualNetwork class.
public PrivateAccessVirtualNetwork (string name = default, int? key = default, string resourceId = default, System.Collections.Generic.IList<Microsoft.Azure.Management.WebSites.Models.PrivateAccessSubnet> subnets = default);
new Microsoft.Azure.Management.WebSites.Models.PrivateAccessVirtualNetwork : string * Nullable<int> * string * System.Collections.Generic.IList<Microsoft.Azure.Management.WebSites.Models.PrivateAccessSubnet> -> Microsoft.Azure.Management.WebSites.Models.PrivateAccessVirtualNetwork
Public Sub New (Optional name As String = Nothing, Optional key As Nullable(Of Integer) = Nothing, Optional resourceId As String = Nothing, Optional subnets As IList(Of PrivateAccessSubnet) = Nothing)
Parameters
- name
- String
The name of the Virtual Network.
- resourceId
- String
The ARM uri of the Virtual Network
- subnets
- IList<PrivateAccessSubnet>
A List of subnets that access is allowed to on this Virtual Network. An empty array (but not null) is interpreted to mean that all subnets are allowed within this Virtual Network.
Applies to
Azure SDK for .NET