Class: Latitude::API::Resources::IP::Assignment
- Defined in:
- lib/latitude/api/resources/ip.rb
Constant Summary
Constants inherited from APIObject
Instance Attribute Summary collapse
- #assigned_at ⇒ String readonly
- #hostname ⇒ String readonly
- #server_id ⇒ String 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
#assigned_at ⇒ String (readonly)
67 68 69 70 71 |
# File 'lib/latitude/api/resources/ip.rb', line 67 class Assignment < APIObject attribute :server_id, :string, read_only: true attribute :hostname, :string, read_only: true attribute :assigned_at, :string, read_only: true end |
#hostname ⇒ String (readonly)
67 68 69 70 71 |
# File 'lib/latitude/api/resources/ip.rb', line 67 class Assignment < APIObject attribute :server_id, :string, read_only: true attribute :hostname, :string, read_only: true attribute :assigned_at, :string, read_only: true end |
#server_id ⇒ String (readonly)
67 68 69 70 71 |
# File 'lib/latitude/api/resources/ip.rb', line 67 class Assignment < APIObject attribute :server_id, :string, read_only: true attribute :hostname, :string, read_only: true attribute :assigned_at, :string, read_only: true end |