Show / Hide Table of Contents

Class VirtualNetworkArgs

Inheritance
System.Object
InputArgs
ResourceArgs
VirtualNetworkArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.Network
Assembly: Pulumi.Azure.dll
Syntax
public sealed class VirtualNetworkArgs : ResourceArgs

Constructors

View Source

VirtualNetworkArgs()

Declaration
public VirtualNetworkArgs()

Properties

View Source

AddressSpaces

The address space that is used the virtual network. You can supply more than one address space. Changing this forces a new resource to be created.

Declaration
public InputList<string> AddressSpaces { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

DdosProtectionPlan

A ddos_protection_plan block as documented below.

Declaration
public Input<VirtualNetworkDdosProtectionPlanArgs> DdosProtectionPlan { get; set; }
Property Value
Type Description
Input<VirtualNetworkDdosProtectionPlanArgs>
View Source

DnsServers

List of IP addresses of DNS servers

Declaration
public InputList<string> DnsServers { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

Location

The location/region where the virtual network is created. Changing this forces a new resource to be created.

Declaration
public Input<string> Location { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

The name of the virtual network. Changing this forces a new resource to be created.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ResourceGroupName

The name of the resource group in which to create the virtual network.

Declaration
public Input<string> ResourceGroupName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Subnets

Can be specified multiple times to define multiple subnets. Each subnet block supports fields documented below.

Declaration
public InputList<VirtualNetworkSubnetArgs> Subnets { get; set; }
Property Value
Type Description
InputList<VirtualNetworkSubnetArgs>
View Source

Tags

A mapping of tags to assign to the resource.

Declaration
public InputMap<string> Tags { get; set; }
Property Value
Type Description
InputMap<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.