Show / Hide Table of Contents

Class VpcArgs

Inheritance
System.Object
InputArgs
ResourceArgs
VpcArgs
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.DigitalOcean
Assembly: Pulumi.DigitalOcean.dll
Syntax
public sealed class VpcArgs : ResourceArgs

Constructors

View Source

VpcArgs()

Declaration
public VpcArgs()

Properties

View Source

Description

A free-form text field up to a limit of 255 characters to describe the VPC.

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

IpRange

The range of IP addresses for the VPC in CIDR notation. Network ranges cannot overlap with other networks in the same account and must be in range of private addresses as defined in RFC1918. It may not be larger than /16 or smaller than /24.

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

Name

A name for the VPC. Must be unique and contain alphanumeric characters, dashes, and periods only.

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

Region

The DigitalOcean region slug for the VPC's location.

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