Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 753 Bytes

CreateRegistryRequest.md

File metadata and controls

24 lines (18 loc) · 753 Bytes

VultrRuby::CreateRegistryRequest

Properties

Name Type Description Notes
name Name
public Public
region String The name of the region you'd like to deploy this Registry in. Can get list of regions from /registry/region/list endpoint i.e. sjc
plan String The key of the plan you'd like to select which dictates how much storage you're allocated and the monthly cost. Can get list of plans from /plan/list endpoint i.e. start_up

Example

require 'vultr_ruby'

instance = VultrRuby::CreateRegistryRequest.new(
  name: null,
  public: null,
  region: null,
  plan: null
)