Class: Latitude::API::Resources::VirtualMachine::Feature
- Defined in:
- lib/latitude/api/resources/virtual_machine.rb
Constant Summary
Constants inherited from APIObject
Instance Attribute Summary collapse
- #raid ⇒ Boolean readonly
- #ssh_keys ⇒ Boolean readonly
- #user_data ⇒ Boolean readonly
Attributes inherited from APIObject
Method Summary
Methods inherited from APIObject
#==, #[], #as_json, #each, #hash, #initialize, #inspect, #key?, #keys, #method_missing, #respond_to_missing?, #to_h, wrap
Methods included from Attributes::ClassMethods
Methods included from Attributes::InstanceMethods
#attribute_spec, #read_attribute, #wrap_attribute
Constructor Details
This class inherits a constructor from Latitude::API::APIObject
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Latitude::API::APIObject
Instance Attribute Details
#raid ⇒ Boolean (readonly)
37 38 39 40 41 |
# File 'lib/latitude/api/resources/virtual_machine.rb', line 37 class Feature < APIObject attribute :raid, :boolean, read_only: true attribute :ssh_keys, :boolean, read_only: true attribute :user_data, :boolean, read_only: true end |
#ssh_keys ⇒ Boolean (readonly)
37 38 39 40 41 |
# File 'lib/latitude/api/resources/virtual_machine.rb', line 37 class Feature < APIObject attribute :raid, :boolean, read_only: true attribute :ssh_keys, :boolean, read_only: true attribute :user_data, :boolean, read_only: true end |
#user_data ⇒ Boolean (readonly)
37 38 39 40 41 |
# File 'lib/latitude/api/resources/virtual_machine.rb', line 37 class Feature < APIObject attribute :raid, :boolean, read_only: true attribute :ssh_keys, :boolean, read_only: true attribute :user_data, :boolean, read_only: true end |