Server Appliances¶
-
OneAndOne::ServerAppliance()
The
ServerAppliance
class allows a user to perform actions against the 1and1 API.-
list
(page: nil, per_page: nil, sort: nil, q: nil, fields: nil)¶ List all server appliances.
Parameters: - page (
int
) – Allows the use of pagination. Indicate which page to start on. - per_page (
int
) – Number of items per page. - sort (
str
) –sort: 'name'
retrieves a list of elements sorted alphabetically.sort: 'creation_date'
retrieves a list of elements sorted by their creation date in descending order. - q (
str
) –q
is for query. Use this parameter to return only the items that match your search query. - fields (
str
) – Returns only the parameters requested. (i.e. fields: ‘id, name, description, hardware.ram’)
Return type: JSON
- page (
-
get
(appliance_id: nil)¶ Returns information about an appliance.
Parameters: - appliance_id (
str
) – the unique identifier for the appliance.
Return type: JSON
- appliance_id (
-