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="color: red">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="color: red">If v4_subnet is specified then v4_subnet_mask is a required field.</span> | [optional] |
require 'vultr_ruby'
instance = VultrRuby::CreateVpcRequest.new(
region: null,
description: null,
v4_subnet: null,
v4_subnet_mask: null
)