Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 707 Bytes

CreateNetworkRequest.md

File metadata and controls

24 lines (18 loc) · 707 Bytes

VultrRuby::CreateNetworkRequest

Properties

Name Type Description Notes
region String Create the Private Network in this Region id.
description String A description of the private network. [optional]
v4_subnet String The IPv4 network address. For example: 10.99.0.0 [optional]
v4_subnet_mask Integer The number of bits for the netmask in CIDR notation. Example: 24 [optional]

Example

require 'vultr_ruby'

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