Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 945 Bytes

CreateVpcRequest.md

File metadata and controls

24 lines (18 loc) · 945 Bytes

VultrRuby::CreateVpcRequest

Properties

Name Type Description Notes
region String Create the VPC in this Region id.
description String A description of the VPC. [optional]
v4_subnet String The IPv4 VPC address. For example: 10.99.0.0<br><span style=&quot;color: red&quot;>If v4_subnet_mask is specified then v4_subnet is a required field.</span> [optional]
v4_subnet_mask Integer The number of bits for the netmask in CIDR notation. Example: 24<br><span style=&quot;color: red&quot;>If v4_subnet is specified then v4_subnet_mask is a required field.</span> [optional]

Example

require 'vultr_ruby'

instance = VultrRuby::CreateVpcRequest.new(
  region: null,
  description: null,
  v4_subnet: null,
  v4_subnet_mask: null
)