Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 827 Bytes

Vpc2.md

File metadata and controls

28 lines (22 loc) · 827 Bytes

VultrRuby::Vpc2

Properties

Name Type Description Notes
id String A unique ID for the VPC.
region String The Region id where the VPC is located. [optional]
date_created String Date the VPC was created. [optional]
description String A description of the VPC. [optional]
ip_block String The VPC subnet IP address. For example: 10.99.0.0 [optional]
prefix_length Integer The number of bits for the netmask in CIDR notation. Example: 24 [optional]

Example

require 'vultr_ruby'

instance = VultrRuby::Vpc2.new(
  id: null,
  region: null,
  date_created: null,
  description: null,
  ip_block: null,
  prefix_length: null
)