Udostępnij przez


VirtualNetworkPropertiesFormat Constructors

Definition

Overloads

VirtualNetworkPropertiesFormat()

Initializes a new instance of the VirtualNetworkPropertiesFormat class.

public VirtualNetworkPropertiesFormat();
Public Sub New ()

Applies to

VirtualNetworkPropertiesFormat(AddressSpace, DhcpOptions, IList<Subnet>, IList<VirtualNetworkPeering>, String, String, Nullable<Boolean>, Nullable<Boolean>, SubResource, VirtualNetworkBgpCommunities, IList<SubResource>)

Initializes a new instance of the VirtualNetworkPropertiesFormat class.

public VirtualNetworkPropertiesFormat(Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.AddressSpace addressSpace = default, Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.DhcpOptions dhcpOptions = default, System.Collections.Generic.IList<Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.Subnet> subnets = default, System.Collections.Generic.IList<Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.VirtualNetworkPeering> virtualNetworkPeerings = default, string resourceGuid = default, string provisioningState = default, bool? enableDdosProtection = default, bool? enableVMProtection = default, Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.SubResource ddosProtectionPlan = default, Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.VirtualNetworkBgpCommunities bgpCommunities = default, System.Collections.Generic.IList<Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.SubResource> ipAllocations = default);
new Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.VirtualNetworkPropertiesFormat : Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.AddressSpace * Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.DhcpOptions * System.Collections.Generic.IList<Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.Subnet> * System.Collections.Generic.IList<Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.VirtualNetworkPeering> * string * string * Nullable<bool> * Nullable<bool> * Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.SubResource * Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.VirtualNetworkBgpCommunities * System.Collections.Generic.IList<Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.SubResource> -> Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.Network.Models.VirtualNetworkPropertiesFormat
Public Sub New (Optional addressSpace As AddressSpace = Nothing, Optional dhcpOptions As DhcpOptions = Nothing, Optional subnets As IList(Of Subnet) = Nothing, Optional virtualNetworkPeerings As IList(Of VirtualNetworkPeering) = Nothing, Optional resourceGuid As String = Nothing, Optional provisioningState As String = Nothing, Optional enableDdosProtection As Nullable(Of Boolean) = Nothing, Optional enableVMProtection As Nullable(Of Boolean) = Nothing, Optional ddosProtectionPlan As SubResource = Nothing, Optional bgpCommunities As VirtualNetworkBgpCommunities = Nothing, Optional ipAllocations As IList(Of SubResource) = Nothing)

Parameters

addressSpace
AddressSpace

The AddressSpace that contains an array of IP address ranges that can be used by subnets.

dhcpOptions
DhcpOptions

The dhcpOptions that contains an array of DNS servers available to VMs deployed in the virtual network.

subnets
IList<Subnet>

A list of subnets in a Virtual Network.

virtualNetworkPeerings
IList<VirtualNetworkPeering>

A list of peerings in a Virtual Network.

resourceGuid
String

The resourceGuid property of the Virtual Network resource.

provisioningState
String

The provisioning state of the virtual network resource. Possible values include: 'Succeeded', 'Updating', 'Deleting', 'Failed'

enableDdosProtection
Nullable<Boolean>

Indicates if DDoS protection is enabled for all the protected resources in the virtual network. It requires a DDoS protection plan associated with the resource.

enableVMProtection
Nullable<Boolean>

Indicates if VM protection is enabled for all the subnets in the virtual network.

ddosProtectionPlan
SubResource

The DDoS protection plan associated with the virtual network.

bgpCommunities
VirtualNetworkBgpCommunities

Bgp Communities sent over ExpressRoute with each route corresponding to a prefix in this VNET.

ipAllocations
IList<SubResource>

Array of IpAllocation which reference this VNET.

Applies to