Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 901 Bytes

UserUser.md

File metadata and controls

28 lines (22 loc) · 901 Bytes

VultrRuby::UserUser

Properties

Name Type Description Notes
id String The User's id. [optional]
name String The User's name. [optional]
api_enabled Boolean Permit API access for this User. * true * false [optional]
email String The User's email address. [optional]
password String The User's password. [optional]
acls Array<String> An array of permission granted. * abuse * alerts * billing * dns * firewall * loadbalancer * manage\_users * objstore * provisioning * subscriptions * subscriptions\_view * support * upgrade [optional]

Example

require 'vultr_ruby'

instance = VultrRuby::UserUser.new(
  id: null,
  name: null,
  api_enabled: null,
  email: null,
  password: null,
  acls: null
)