MAAS API
Restful MAAS API.
This is the documentation for the API that lets you control and query MAAS. The API is "Restful", which means that you access it through normal HTTP requests.
API versions
At any given time, MAAS may support multiple versions of its API. The version number is included in the API's URL, e.g. /api/2.0/
For now, 2.0 is the only supported version.
The current API version number can be retrieved by issuing a GET to "/api/version/". Accessing an old or unknown API version URL will result in a "410 GONE" being returned, along with a descriptive error message. Both the error message and the api version are returned as plaintext.
HTTP methods and parameter-passing
The following HTTP methods are available for accessing the API:
- GET (for information retrieval and queries),
- POST (for asking the system to do things),
- PUT (for updating objects), and
- DELETE (for deleting objects).
All methods except DELETE may take parameters, but they are not all passed in the same way. GET parameters are passed in the URL, as is normal with a GET: "/item/?foo=bar" passes parameter "foo" with value "bar".
POST and PUT are different. Your request should have MIME type "multipart/form-data"; each part represents one parameter (for POST) or attribute (for PUT). Each part is named after the parameter or attribute it contains, and its contents are the conveyed value.
All parameters are in text form. If you need to submit binary data to the API, don't send it as any MIME binary format; instead, send it as a plain text part containing base64-encoded data.
Most resources offer a choice of GET or POST operations. In those cases these methods will take one special parameter, called op, to indicate what it is you want to do.
For example, to list all machines, you might GET "/api/2.0/machines".
Operations
Logged-in user
Manage the current logged-in user.
GET /api/2.0/account/ op=list_authorisation_tokens
List authorisation tokens available to the currently logged-in user.
returnlist of dictionaries representing each key's name and token.
POST /api/2.0/account/ op=create_authorisation_token
Create an authorisation OAuth token and OAuth consumer.
-
param nameOptional name of the token that will be generated. -
type nameunicode -
returna json dict with four keys: 'token_key', 'token_secret', 'consumer_key' and 'name'(e.g. {token_key: 's65244576fgqs', token_secret: 'qsdfdhv34', consumer_key: '68543fhj854fg', name: 'MAAS consumer'}). -
rtypestring (json)
POST /api/2.0/account/ op=delete_authorisation_token
Delete an authorisation OAuth token and the related OAuth consumer.
-
param token\_keyThe key of the token to be deleted. -
type token\_keyunicode
POST /api/2.0/account/ op=update_token_name
Modify the consumer name of an authorisation OAuth token.
-
param tokenCan be the whole token or only the token key. -
type tokenunicode -
param nameNew name of the token. -
type nameunicode
Bcache Cache Set
Manage bcache cache set on a machine.
DELETE /api/2.0/nodes/{system_id}/bcache-cache-set/{id}/
Delete cache set on a machine.
Returns 400 if the cache set is in use. Returns 404 if the machine or cache set is not found. Returns 409 if the machine is not Ready.
GET /api/2.0/nodes/{system_id}/bcache-cache-set/{id}/
Read bcache cache set on a machine.
Returns 404 if the machine or cache set is not found.
PUT /api/2.0/nodes/{system_id}/bcache-cache-set/{id}/
Delete bcache on a machine.
-
param cache\_deviceCache block device to replace current one. -
param cache\_partitionCache partition to replace current one.
Specifying both a cache_device and a cache_partition is not allowed.
Returns 404 if the machine or the cache set is not found. Returns 409 if the machine is not Ready.
Bcache Cache Sets
Manage bcache cache sets on a machine.
GET /api/2.0/nodes/{system_id}/bcache-cache-sets/
List all bcache cache sets belonging to a machine.
Returns 404 if the machine is not found.
POST /api/2.0/nodes/{system_id}/bcache-cache-sets/
Creates a Bcache Cache Set.
-
param cache\_deviceCache block device. -
param cache\_partitionCache partition.
Specifying both a cache_device and a cache_partition is not allowed.
Returns 404 if the machine is not found. Returns 409 if the machine is not Ready.
Bcache Device
Manage bcache device on a machine.
DELETE /api/2.0/nodes/{system_id}/bcache/{id}/
Delete bcache on a machine.
Returns 404 if the machine or bcache is not found. Returns 409 if the machine is not Ready.
GET /api/2.0/nodes/{system_id}/bcache/{id}/
Read bcache device on a machine.
Returns 404 if the machine or bcache is not found.
PUT /api/2.0/nodes/{system_id}/bcache/{id}/
Delete bcache on a machine.
-
param nameName of the Bcache. -
param uuidUUID of the Bcache. -
param cache\_setCache set to replace current one. -
param backing\_deviceBacking block device to replace current one. -
param backing\_partitionBacking partition to replace current one. -
param cache\_modeCache mode (writeback, writethrough, writearound).
Specifying both a device and a partition for a given role (cache or backing) is not allowed.
Returns 404 if the machine or the bcache is not found. Returns 409 if the machine is not Ready.
Bcache Devices
Manage bcache devices on a machine.
GET /api/2.0/nodes/{system_id}/bcaches/
List all bcache devices belonging to a machine.
Returns 404 if the machine is not found.
POST /api/2.0/nodes/{system_id}/bcaches/
Creates a Bcache.
-
param nameName of the Bcache. -
param uuidUUID of the Bcache. -
param cache\_setCache set. -
param backing\_deviceBacking block device. -
param backing\_partitionBacking partition. -
param cache\_modeCache mode (WRITEBACK, WRITETHROUGH, WRITEAROUND).
Specifying both a device and a partition for a given role (cache or backing) is not allowed.
Returns 404 if the machine is not found. Returns 409 if the machine is not Ready.
Block device
Manage a block device on a machine.
DELETE /api/2.0/nodes/{system_id}/blockdevices/{id}/
Delete block device on a machine.
Returns 404 if the machine or block device is not found. Returns 403 if the user is not allowed to delete the block device. Returns 409 if the machine is not Ready.
GET /api/2.0/nodes/{system_id}/blockdevices/{id}/
Read block device on node.
Returns 404 if the machine or block device is not found.
POST /api/2.0/nodes/{system_id}/blockdevices/{id}/ op=add_tag
Add a tag to block device on a machine.
param tagThe tag being added.
Returns 404 if the machine or block device is not found. Returns 403 if the user is not allowed to update the block device. Returns 409 if the machine is not Ready.
POST /api/2.0/nodes/{system_id}/blockdevices/{id}/ op=format
Format block device with filesystem.
-
param fstypeType of filesystem. -
param uuidUUID of the filesystem.
Returns 403 when the user doesn't have the ability to format the block device. Returns 404 if the machine or block device is not found. Returns 409 if the machine is not Ready or Allocated.
POST /api/2.0/nodes/{system_id}/blockdevices/{id}/ op=mount
Mount the filesystem on block device.
-
param mount\_pointPath on the filesystem to mount. -
param mount\_optionsOptions to pass to mount(8).
Returns 403 when the user doesn't have the ability to mount the block device. Returns 404 if the machine or block device is not found. Returns 409 if the machine is not Ready or Allocated.
POST /api/2.0/nodes/{system_id}/blockdevices/{id}/ op=remove_tag
Remove a tag from block device on a machine.
param tagThe tag being removed.
Returns 404 if the machine or block device is not found. Returns 403 if the user is not allowed to update the block device. Returns 409 if the machine is not Ready.
POST /api/2.0/nodes/{system_id}/blockdevices/{id}/ op=set_boot_disk
Set this block device as the boot disk for the machine.
Returns 400 if the block device is a virtual block device. Returns 404 if the machine or block device is not found. Returns 403 if the user is not allowed to update the block device. Returns 409 if the machine is not Ready or Allocated.
POST /api/2.0/nodes/{system_id}/blockdevices/{id}/ op=unformat
Unformat block device with filesystem.
Returns 400 if the block device is not formatted, currently mounted, or part of a filesystem group. Returns 403 when the user doesn't have the ability to unformat the block device. Returns 404 if the machine or block device is not found. Returns 409 if the machine is not Ready or Allocated.
POST /api/2.0/nodes/{system_id}/blockdevices/{id}/ op=unmount
Unmount the filesystem on block device.
Returns 400 if the block device is not formatted or not currently mounted. Returns 403 when the user doesn't have the ability to unmount the block device. Returns 404 if the machine or block device is not found. Returns 409 if the machine is not Ready or Allocated.
PUT /api/2.0/nodes/{system_id}/blockdevices/{id}/
Update block device on a machine.
Machines must have a status of Ready to have access to all options. Machines with Deployed status can only have the name, model, serial, and/or id_path updated for a block device. This is intented to allow a bad block device to be replaced while the machine remains deployed.
Fields for physical block device:
-
param nameName of the block device. -
param modelModel of the block device. -
param serialSerial number of the block device. -
param id\_path(optional) Only used if model and serial cannot be provided. This should be a path that is fixed and doesn't change depending on the boot order or kernel version. -
param sizeSize of the block device. -
param block\_sizeBlock size of the block device.
Fields for virtual block device:
-
param nameName of the block device. -
param uuidUUID of the block device. -
param sizeSize of the block device. (Only allowed for logical volumes.)
Returns 404 if the machine or block device is not found. Returns 403 if the user is not allowed to update the block device. Returns 409 if the machine is not Ready.
Block devices
Manage block devices on a machine.
GET /api/2.0/nodes/{system_id}/blockdevices/
List all block devices belonging to a machine.
Returns 404 if the machine is not found.
POST /api/2.0/nodes/{system_id}/blockdevices/
Create a physical block device.
-
param nameName of the block device. -
param modelModel of the block device. -
param serialSerial number of the block device. -
param id\_path(optional) Only used if model and serial cannot be provided. This should be a path that is fixed and doesn't change depending on the boot order or kernel version. -
param sizeSize of the block device. -
param block\_sizeBlock size of the block device.
Returns 404 if the node is not found.
Boot resource
Manage a boot resource.
DELETE /api/2.0/boot-resources/{id}/
Delete boot resource.
GET /api/2.0/boot-resources/{id}/
Read a boot resource.
Boot resources
Manage the boot resources.
GET /api/2.0/boot-resources/
List all boot resources.
param typeType of boot resources to list. Default: all
GET /api/2.0/boot-resources/ op=is_importing
Return import status.
POST /api/2.0/boot-resources/
Uploads a new boot resource.
-
param nameName of the boot resource. -
param titleTitle for the boot resource. -
param architectureArchitecture the boot resource supports. -
param filetypeFiletype for uploaded content. (Default: tgz) -
param contentImage content. Note: this is not a normal parameter, but a file upload.
POST /api/2.0/boot-resources/ op=import
Import the boot resources.
POST /api/2.0/boot-resources/ op=stop_import
Stop import of boot resources.
Boot source
Manage a boot source.
DELETE /api/2.0/boot-sources/{id}/
Delete a specific boot source.
GET /api/2.0/boot-sources/{id}/
Read a boot source.
PUT /api/2.0/boot-sources/{id}/
Update a specific boot source.
-
param urlThe URL of the BootSource. -
param keyring\_filenameThe path to the keyring file for this BootSource. -
param keyring\_dataThe GPG keyring for this BootSource, base64-encoded data.
Boot source selection
Manage a boot source selection.
DELETE /api/2.0/boot-sources/{boot_source_id}/selections/{id}/
Delete a specific boot source.
GET /api/2.0/boot-sources/{boot_source_id}/selections/{id}/
Read a boot source selection.
PUT /api/2.0/boot-sources/{boot_source_id}/selections/{id}/
Update a specific boot source selection.
-
param releaseThe release for which to import resources. -
param archesThe list of architectures for which to import resources. -
param subarchesThe list of subarchitectures for which to import resources. -
param labelsThe list of labels for which to import resources.
Boot source selections
Manage the collection of boot source selections.
GET /api/2.0/boot-sources/{boot_source_id}/selections/
List boot source selections.
Get a listing of a boot source's selections.
POST /api/2.0/boot-sources/{boot_source_id}/selections/
Create a new boot source selection.
-
param releaseThe release for which to import resources. -
param archesThe architecture list for which to import resources. -
param subarchesThe subarchitecture list for which to import resources. -
param labelsThe label lists for which to import resources.
Boot sources
Manage the collection of boot sources.
GET /api/2.0/boot-sources/
List boot sources.
Get a listing of boot sources.
POST /api/2.0/boot-sources/
Create a new boot source.
-
param urlThe URL of the BootSource. -
param keyring\_filenameThe path to the keyring file for this BootSource. -
param keyring\_dataThe GPG keyring for this BootSource, base64-encoded.
Commissioning script
Manage a custom commissioning script.
This functionality is only available to administrators.
DELETE /api/2.0/commissioning-scripts/{name}
Delete a commissioning script.
GET /api/2.0/commissioning-scripts/{name}
Read a commissioning script.
PUT /api/2.0/commissioning-scripts/{name}
Update a commissioning script.
Commissioning scripts
Manage custom commissioning scripts.
This functionality is only available to administrators.
GET /api/2.0/commissioning-scripts/
List commissioning scripts.
POST /api/2.0/commissioning-scripts/
Create a new commissioning script.
Each commissioning script is identified by a unique name.
By convention the name should consist of a two-digit number, a dash, and a brief descriptive identifier consisting only of ASCII characters. You don't need to follow this convention, but not doing so opens you up to risks w.r.t. encoding and ordering. The name must not contain any whitespace, quotes, or apostrophes.
A commissioning machine will run each of the scripts in lexicographical order. There are no promises about how non-ASCII characters are sorted, or even how upper-case letters are sorted relative to lower-case letters. So where ordering matters, use unique numbers.
Scripts built into MAAS will have names starting with "00-maas" or "99-maas" to ensure that they run first or last, respectively.
Usually a commissioning script will be just that, a script. Ideally a script should be ASCII text to avoid any confusion over encoding. But in some cases a commissioning script might consist of a binary tool provided by a hardware vendor. Either way, the script gets passed to the commissioning machine in the exact form in which it was uploaded.
-
param nameUnique identifying name for the script. Names should follow the pattern of "25-burn-in-hard-disk" (all ASCII, and with numbers greater than zero, and generally no "weird" characters). -
param contentA script file, to be uploaded in binary form. Note: this is not a normal parameter, but a file upload. Its filename is ignored; MAAS will know it by the name you pass to the request.
DHCP Snippet
Manage an individual DHCP snippet.
The DHCP snippet is identified by its id.
DELETE /api/2.0/dhcp-snippets/{id}/
Delete a DHCP snippet.
Returns 404 if the DHCP snippet is not found.
GET /api/2.0/dhcp-snippets/{id}/
Read DHCP snippet.
Returns 404 if the snippet is not found.
POST /api/2.0/dhcp-snippets/{id}/ op=revert
Revert the value of a DHCP snippet to an earlier revision.
-
param toWhat revision in the DHCP snippet's history to revert to. This can either be an ID or a negative number representing how far back to go. -
type tointeger
Returns 404 if the DHCP snippet is not found.
PUT /api/2.0/dhcp-snippets/{id}/
Update a DHCP snippet.
-
param nameThe name of the DHCP snippet. -
type nameunicode -
param valueThe new value of the DHCP snippet to be used in dhcpd.conf. Previous values are stored and can be reverted. -
type valueunicode -
param descriptionA description of what the DHCP snippet does. -
type descriptionunicode -
param enabledWhether or not the DHCP snippet is currently enabled. -
type enabledboolean -
param nodeThe node the DHCP snippet is to be used for. Can not be set if subnet is set. -
type nodeunicode -
param subnetThe subnet the DHCP snippet is to be used for. Can not be set if node is set. -
type subnetunicode -
param global\_snippetSet the DHCP snippet to be a global option. This removes any node or subnet links. -
type global\_snippetboolean
Returns 404 if the DHCP snippet is not found.
DHCP Snippets
Manage the collection of all DHCP snippets in MAAS.
GET /api/2.0/dhcp-snippets/
List all DHCP snippets.
POST /api/2.0/dhcp-snippets/
Create a DHCP snippet.
-
param nameThe name of the DHCP snippet. This is required to create a new DHCP snippet. -
type nameunicode -
param valueThe snippet of config inserted into dhcpd.conf. This is required to create a new DHCP snippet. -
type valueunicode -
param descriptionA description of what the snippet does. -
type descriptionunicode -
param enabledWhether or not the snippet is currently enabled. -
type enabledboolean -
param nodeThe node this snippet applies to. Cannot be used with subnet or global_snippet. -
type nodeunicode -
param subnetThe subnet this snippet applies to. Cannot be used with node or global_snippet. -
type subnetunicode -
param global\_snippetWhether or not this snippet is to be applied globally. Cannot be used with node or subnet. -
type global\_snippetboolean
Returns 404 if the DHCP snippet is not found.
DNSResource
Manage dnsresource.
DELETE /api/2.0/dnsresources/{id}/
Delete dnsresource.
Returns 403 if the user does not have permission to delete the dnsresource. Returns 404 if the dnsresource is not found.
GET /api/2.0/dnsresources/{id}/
Read dnsresource.
Returns 404 if the dnsresource is not found.
PUT /api/2.0/dnsresources/{id}/
Update dnsresource.
-
param fqdnHostname (with domain) for the dnsresource. -
param ip\_addressAddress to assign to the dnsresource.
Returns 403 if the user does not have permission to update the dnsresource. Returns 404 if the dnsresource is not found.
DNSResourceRecord
Manage dnsresourcerecord.
DELETE /api/2.0/dnsresourcerecords/{id}/
Delete dnsresourcerecord.
Returns 403 if the user does not have permission to delete the dnsresourcerecord. Returns 404 if the dnsresourcerecord is not found.
GET /api/2.0/dnsresourcerecords/{id}/
Read dnsresourcerecord.
Returns 404 if the dnsresourcerecord is not found.
PUT /api/2.0/dnsresourcerecords/{id}/
Update dnsresourcerecord.
-
param rrtypeResource Type -
param rrdataResource Data (everything to the right of Type.)
Returns 403 if the user does not have permission to update the dnsresourcerecord. Returns 404 if the dnsresourcerecord is not found.
DNSResourceRecords
Manage dnsresourcerecords.
GET /api/2.0/dnsresourcerecords/
List all dnsresourcerecords.
-
param domainrestrict the listing to entries for the domain. -
param namerestrict the listing to entries of the given name. -
param rrtyperestrict the listing to entries which have records of the given rrtype.
POST /api/2.0/dnsresourcerecords/
Create a dnsresourcerecord.
-
param fqdnHostname (with domain) for the dnsresource. Either fqdn or (name, domain) must be specified. Fqdn is ignored if either name or domain is given. -
param nameHostname (without domain) -
param domainDomain (name or id) -
param rrtyperesource type to create -
param rrdataresource data (everything to the right of resource type.)
DNSResources
Manage dnsresources.
GET /api/2.0/dnsresources/
List all resources for the specified criteria.
-
param domainrestrict the listing to entries for the domain. -
param namerestrict the listing to entries of the given name. -
param rrtyperestrict the listing to entries which have records of the given rrtype.
POST /api/2.0/dnsresources/
Create a dnsresource.
-
param fqdnHostname (with domain) for the dnsresource. Either fqdn or (name, domain) must be specified. Fqdn is ignored if either name or domain is given. -
param nameHostname (without domain) -
param domainDomain (name or id) -
param address\_ttlDefault ttl for entries in this zone. -
param ip\_addresses(optional) Address (ip or id) to assign to the dnsresource.
Device
Manage an individual device.
The device is identified by its system_id.
DELETE /api/2.0/devices/{system_id}/
Delete a specific Device.
Returns 404 if the device is not found. Returns 403 if the user does not have permission to delete the device. Returns 204 if the device is successfully deleted.
GET /api/2.0/devices/{system_id}/
Read a specific Node.
Returns 404 if the node is not found.
GET /api/2.0/devices/{system_id}/ op=details
Obtain various system details.
For example, LLDP and lshw XML dumps.
Returns a {detail_type: xml, ...} map, where detail_type is something
like "lldp" or "lshw".
Note that this is returned as BSON and not JSON. This is for efficiency, but mainly because JSON can't do binary content without applying additional encoding like base-64.
Returns 404 if the node is not found.
GET /api/2.0/devices/{system_id}/ op=power_parameters
Obtain power parameters.
This method is reserved for admin users and returns a 403 if the user is not one.
This returns the power parameters, if any, configured for a node. For some types of power control this will include private information such as passwords and secret keys.
Returns 404 if the node is not found.
POST /api/2.0/devices/{system_id}/ op=restore_default_configuration
Reset a device's configuration to its initial state.
Returns 404 if the device is not found. Returns 403 if the user does not have permission to reset the device.
POST /api/2.0/devices/{system_id}/ op=restore_networking_configuration
Reset a device's network options.
Returns 404 if the device is not found Returns 403 if the user does not have permission to reset the device.
POST /api/2.0/devices/{system_id}/ op=set_owner_data
Set key/value data for the current owner.
Pass any key/value data to this method to add, modify, or remove. A key is removed when the value for that key is set to an empty string.
This operation will not remove any previous keys unless explicitly passed with an empty string. All owner data is removed when the machine is no longer allocated to a user.
Returns 404 if the machine is not found. Returns 403 if the user does not have permission.
PUT /api/2.0/devices/{system_id}/
Update a specific device.
-
param hostnameThe new hostname for this device. -
type hostnameunicode -
param domainThe domain for this device. -
type domainunicode -
param parentOptional system_id to indicate this device's parent. If the parent is already set and this parameter is omitted, the parent will be unchanged. -
type parentunicode -
param zoneName of a valid physical zone in which to place this node. -
type zoneunicode
Returns 404 if the device is not found. Returns 403 if the user does not have permission to update the device.
Devices
Manage the collection of all the devices in the MAAS.
GET /api/2.0/devices/
List Nodes visible to the user, optionally filtered by criteria.
Nodes are sorted by id (i.e. most recent last) and grouped by type.
-
param hostnameAn optional hostname. Only nodes relating to the node with the matching hostname will be returned. This can be specified multiple times to see multiple nodes. -
type hostnameunicode -
param mac\_addressAn optional MAC address. Only nodes relating to the node owning the specified MAC address will be returned. This can be specified multiple times to see multiple nodes. -
type mac\_addressunicode -
param idAn optional list of system ids. Only nodes relating to the nodes with matching system ids will be returned. -
type idunicode -
param domainAn optional name for a dns domain. Only nodes relating to the nodes in the domain will be returned. -
type domainunicode -
param zoneAn optional name for a physical zone. Only nodes relating to the nodes in the zone will be returned. -
type zoneunicode -
param agent\_nameAn optional agent name. Only nodes relating to the nodes with matching agent names will be returned. -
type agent\_nameunicode
POST /api/2.0/devices/
Create a new device.
-
param hostnameA hostname. If not given, one will be generated. -
type hostnameunicode -
param domainThe domain of the device. If not given the default domain is used. -
type domainunicode -
param mac\_addressesOne or more MAC addresses for the device. -
type mac\_addressesunicode -
param parentThe system id of the parent. Optional. -
type parentunicode
POST /api/2.0/devices/ op=set_zone
Assign multiple nodes to a physical zone at once.
-
param zoneZone name. If omitted, the zone is "none" and the nodes will be taken out of their physical zones. -
param nodessystem_ids of the nodes whose zones are to be set. (An empty list is acceptable).
Raises 403 if the user is not an admin.
Discoveries
Query observed discoveries.
GET /api/2.0/discovery/
Lists all the devices MAAS has discovered.
Discoveries are listed in the order they were last observed on the network (most recent first).
GET /api/2.0/discovery/ op=by_unknown_ip
Lists all discovered devices which have an unknown IP address.
Filters the list of discovered devices by excluding any discoveries where a known MAAS node is configured with the IP address of the discovery, or has been observed using it after it was assigned by a MAAS-managed DHCP server.
Discoveries are listed in the order they were last observed on the network (most recent first).
GET /api/2.0/discovery/ op=by_unknown_ip_and_mac
Lists all discovered devices which are completely unknown to MAAS.
Filters the list of discovered devices by excluding any discoveries where a known MAAS node is configured with either the MAC address or the IP address of the discovery.
Discoveries are listed in the order they were last observed on the network (most recent first).
GET /api/2.0/discovery/ op=by_unknown_mac
Lists all discovered devices which have an unknown IP address.
Filters the list of discovered devices by excluding any discoveries where an interface known to MAAS is configured with MAC address of the discovery.
Discoveries are listed in the order they were last observed on the network (most recent first).
POST /api/2.0/discovery/ op=clear
Deletes all discovered neighbours and/or mDNS entries.
-
param mdnsif True, deletes all mDNS entries. -
param neighboursif True, deletes all neighbour entries. -
param allif True, deletes all discovery data.
POST /api/2.0/discovery/ op=scan
Immediately run a neighbour discovery scan on all rack networks.
This command causes each connected rack controller to execute the 'maas-rack scan-network' command, which will scan all CIDRs configured on the rack controller using 'nmap' (if it is installed) or 'ping'.
Network discovery must not be set to 'disabled' for this command to be useful.
Scanning will be started in the background, and could take a long time on rack controllers that do not have 'nmap' installed and are connected to large networks.
If the call is a success, this method will return a dictionary of results as follows:
result: A human-readable string summarizing the results. scan_attempted_on: A list of rack 'system_id' values where a scan was attempted. (That is, an RPC connection was successful and a subsequent call was intended.)
failed_to_connect_to: A list of rack 'system_id' values where the RPC connection failed.
scan_started_on: A list of rack 'system_id' values where a scan was successfully started.
scan_failed_on: A list of rack 'system_id' values where a scan was attempted, but failed because a scan was already in progress.
rpc_call_timed_out_on: A list of rack 'system_id' values where the RPC connection was made, but the call timed out before a ten second timeout elapsed.
-
param cidrThe subnet CIDR(s) to scan (can be specified multiple times). If not specified, defaults to all networks. -
param forceIf True, will force the scan, even if all networks are specified. (This may not be the best idea, depending on acceptable use agreements, and the politics of the organization that owns the network.) Default: False. -
param always\_use\_pingIf True, will force the scan to use 'ping' even if 'nmap' is installed. Default: False. -
param slowIf True, and 'nmap' is being used, will limit the scan to nine packets per second. If the scanner is 'ping', this option has no effect. Default: False. -
param threadsThe number of threads to use during scanning. If 'nmap' is the scanner, the default is one thread per 'nmap' process. If 'ping' is the scanner, the default is four threads per CPU.
Discovery
Read or delete an observed discovery.
GET /api/2.0/discovery/{discovery_id}/ Domain ====== Manage domain.
DELETE /api/2.0/domains/{id}/
Delete domain.
Returns 403 if the user does not have permission to update the dnsresource. Returns 404 if the domain is not found.
GET /api/2.0/domains/{id}/
Read domain.
Returns 404 if the domain is not found.
PUT /api/2.0/domains/{id}/
Update domain.
-
param nameName of the domain. -
param authoritativeTrue if we are authoritative for this domain. -
param ttlThe default TTL for this domain.
Returns 403 if the user does not have permission to update the dnsresource. Returns 404 if the domain is not found.
Domains
Manage domains.
GET /api/2.0/domains/
List all domains.
POST /api/2.0/domains/
Create a domain.
-
param nameName of the domain. -
param authoritativeClass type of the domain.
POST /api/2.0/domains/ op=set_serial
Set the SOA serial number (for all DNS zones.)
param serialserial number to use next.
Events
Retrieve filtered node events.
A specific Node's events is identified by specifying one or more ids, hostnames, or mac addresses as a list.
GET /api/2.0/events/ op=query
List Node events, optionally filtered by various criteria via URL query parameters.
-
param hostnameAn optional hostname. Only events relating to the node with the matching hostname will be returned. This can be specified multiple times to get events relating to more than one node. -
param mac\_addressAn optional list of MAC addresses. Only nodes with matching MAC addresses will be returned. -
param idAn optional list of system ids. Only nodes with matching system ids will be returned. -
param zoneAn optional name for a physical zone. Only nodes in the zone will be returned. -
param agent\_nameAn optional agent name. Only nodes with matching agent names will be returned. -
param levelDesired minimum log level of returned events. Returns this level of events and greater. Choose from: CRITICAL, DEBUG, ERROR, INFO, WARNING. The default is INFO. -
param limitOptional number of events to return. Default 100. Maximum: 1000. -
param beforeOptional event id. Defines where to start returning older events. -
param afterOptional event id. Defines where to start returning newer events.
Fabric
Manage fabric.
DELETE /api/2.0/fabrics/{id}/
Delete fabric.
Returns 404 if the fabric is not found.
GET /api/2.0/fabrics/{id}/
Read fabric.
Returns 404 if the fabric is not found.
PUT /api/2.0/fabrics/{id}/
Update fabric.
-
param nameName of the fabric. -
param descriptionDescription of the fabric. -
param class\_typeClass type of the fabric.
Returns 404 if the fabric is not found.
Fabrics
Manage fabrics.
GET /api/2.0/fabrics/
List all fabrics.
POST /api/2.0/fabrics/
Create a fabric.
-
param nameName of the fabric. -
param descriptionDescription of the fabric. -
param class\_typeClass type of the fabric.
Fan Network
Manage Fan Network.
DELETE /api/2.0/fannetworks/{id}/
Delete fannetwork.
Returns 404 if the fannetwork is not found.
GET /api/2.0/fannetworks/{id}/
Read fannetwork.
Returns 404 if the fannetwork is not found.
PUT /api/2.0/fannetworks/{id}/
Update fannetwork.
-
param nameName of the fannetwork. -
param overlayOverlay network -
param underlayUnderlay network -
param dhcpconfiugre dhcp server for overlay net -
param host\_reservenumber of IP addresses to reserve for host -
param bridgeoverride bridge name -
param offput this int he config, but disable it.
Returns 404 if the fannetwork is not found.
Fan Networks
Manage Fan Networks.
GET /api/2.0/fannetworks/
List all fannetworks.
POST /api/2.0/fannetworks/
Create a fannetwork.
-
param nameName of the fannetwork. -
param overlayOverlay network -
param underlayUnderlay network -
param dhcpconfiugre dhcp server for overlay net -
param host\_reservenumber of IP addresses to reserve for host -
param bridgeoverride bridge name -
param offput this int he config, but disable it.
File
Manage a FileStorage object.
The file is identified by its filename and owner.
DELETE /api/2.0/files/{filename}/
Delete a FileStorage object.
GET /api/2.0/files/{filename}/
GET a FileStorage object as a json object.
The 'content' of the file is base64-encoded.
Files
Manage the collection of all the files in this MAAS.
DELETE /api/2.0/files/
Delete a FileStorage object.
-
param filenameThe filename of the object to be deleted. -
type filenameunicode
GET /api/2.0/files/
List the files from the file storage.
The returned files are ordered by file name and the content is excluded.
-
param prefixOptional prefix used to filter out the returned files. -
type prefixstring
GET /api/2.0/files/ op=get
Get a named file from the file storage.
-
param filenameThe exact name of the file you want to get. -
type filenamestring -
returnThe file is returned in the response content.
GET /api/2.0/files/ op=get_by_key
Get a file from the file storage using its key.
-
param keyThe exact key of the file you want to get. -
type keystring -
returnThe file is returned in the response content.
POST /api/2.0/files/
Add a new file to the file storage.
-
param filenameThe file name to use in the storage. -
type filenamestring -
param fileActual file data with content type application/octet-stream
Returns 400 if any of these conditions apply: - The filename is missing from the parameters - The file data is missing - More than one file is supplied
IP Addresses
Manage IP addresses allocated by MAAS.
GET /api/2.0/ipaddresses/
List IP addresses known to MAAS.
By default, gets a listing of all IP addresses allocated to the requesting user.
-
param ipIf specified, will only display information for the specified IP address. -
type ipunicode (must be an IPv4 or IPv6 address)
If the requesting user is a MAAS administrator, the following options may also be supplied:
-
param allIf True, all reserved IP addresses will be shown. (By default, only addresses of type 'User reserved' that are assigned to the requesting user are shown.) -
type allbool -
param ownerIf specified, filters the list to show only IP addresses owned by the specified username. -
type userunicode
POST /api/2.0/ipaddresses/ op=release
Release an IP address that was previously reserved by the user.
-
param ipThe IP address to release. -
type ipunicode -
param forceIf True, allows a MAAS administrator to force an IP address to be released, even if it is not a user-reserved IP address or does not belong to the requesting user. Use with caution. -
type forcebool
Returns 404 if the provided IP address is not found.
POST /api/2.0/ipaddresses/ op=reserve
Reserve an IP address for use outside of MAAS.
Returns an IP adddress, which MAAS will not allow any of its known nodes to use; it is free for use by the requesting user until released by the user.
The user may supply either a subnet or a specific IP address within a subnet.
-
param subnetCIDR representation of the subnet on which the IP reservation is required. e.g. 10.1.2.0/24 -
param ipThe IP address, which must be within a known subnet. -
param ip\_address(Deprecated.) Alias for 'ip' parameter. Provided for backward compatibility. -
param hostnameThe hostname to use for the specified IP address. If no domain component is given, the default domain will be used. -
param macThe MAC address that should be linked to this reservation.
Returns 400 if there is no subnet in MAAS matching the provided one, or a ip_address is supplied, but a corresponding subnet could not be found. Returns 503 if there are no more IP addresses available.
IP Range
Manage IP range.
DELETE /api/2.0/ipranges/{id}/
Delete IP range.
Returns 403 if not owner of IP range. Returns 404 if the IP range is not found.
GET /api/2.0/ipranges/{id}/
Read IP range.
Returns 404 if the IP range is not found.
PUT /api/2.0/ipranges/{id}/
Update IP range.
-
param start\_ipStart IP address of this range (inclusive). -
param end\_ipEnd IP address of this range (inclusive). -
param commentA description of this range. (optional)
Returns 403 if not owner of IP range. Returns 404 if the IP Range is not found.
IP Ranges
Manage IP ranges.
GET /api/2.0/ipranges/
List all IP ranges.
POST /api/2.0/ipranges/
Create an IP range.
-
param typeType of this range. (dynamic or reserved) -
param start\_ipStart IP address of this range (inclusive). -
param end\_ipEnd IP address of this range (inclusive). -
param subnetSubnet this range is associated with. (optional) -
param commentA description of this range. (optional)
Returns 403 if standard users tries to create a dynamic IP range.
Interface
Manage a node's or device's interface.
DELETE /api/2.0/nodes/{system_id}/interfaces/{id}/
Delete interface on node.
Returns 404 if the node or interface is not found.
GET /api/2.0/nodes/{system_id}/interfaces/{id}/
Read interface on node.
Returns 404 if the node or interface is not found.
POST /api/2.0/nodes/{system_id}/interfaces/{id}/ op=add_tag
Add a tag to interface on a node.
param tagThe tag being added.
Returns 404 if the node or interface is not found. Returns 403 if the user is not allowed to update the interface.
POST /api/2.0/nodes/{system_id}/interfaces/{id}/ op=disconnect
Disconnect an interface.
Deletes any linked subnets and IP addresses, and disconnects the interface from any associated VLAN.
Returns 404 if the node or interface is not found.
POST /api/2.0/nodes/{system_id}/interfaces/{id}/ op=link_subnet
Link interface to a subnet.
-
param modeAUTO, DHCP, STATIC or LINK_UP connection to subnet. -
param subnetSubnet linked to interface. -
param ip\_addressIP address for the interface in subnet. Only used when mode is STATIC. If not provided an IP address from subnet will be auto selected. -
param forceIf True, allows LINK_UP to be set on the interface even if other links already exist. Also allows the selection of any VLAN, even a VLAN MAAS does not believe the interface to currently be on. Using this option will cause all other links on the interface to be deleted. (Defaults to False.) -
param default\_gatewayTrue sets the gateway IP address for the subnet as the default gateway for the node this interface belongs to. Option can only be used with the AUTO and STATIC modes.
Mode definitions: AUTO - Assign this interface a static IP address from the provided subnet. The subnet must be a managed subnet. The IP address will not be assigned until the node goes to be deployed.
DHCP - Bring this interface up with DHCP on the given subnet. Only one subnet can be set to DHCP. If the subnet is managed this interface will pull from the dynamic IP range.
STATIC - Bring this interface up with a STATIC IP address on the given subnet. Any number of STATIC links can exist on an interface.
LINK_UP - Bring this interface up only on the given subnet. No IP address will be assigned to this interface. The interface cannot have any current AUTO, DHCP or STATIC links.
Returns 404 if the node or interface is not found.
POST /api/2.0/nodes/{system_id}/interfaces/{id}/ op=remove_tag
Remove a tag from interface on a node.
param tagThe tag being removed.
Returns 404 if the node or interface is not found. Returns 403 if the user is not allowed to update the interface.
POST /api/2.0/nodes/{system_id}/interfaces/{id}/ op=set_default_gateway
Set the node to use this interface as the default gateway.
If this interface has more than one subnet with a gateway IP in the same IP address family then specifying the ID of the link on this interface is required.
param link\_idID of the link on this interface to select the default gateway IP address from.
Returns 400 if the interface has not AUTO or STATIC links. Returns 404 if the node or interface is not found.
POST /api/2.0/nodes/{system_id}/interfaces/{id}/ op=unlink_subnet
Unlink interface to a subnet.
param idID of the link on the interface to remove.
Returns 404 if the node or interface is not found.
PUT /api/2.0/nodes/{system_id}/interfaces/{id}/
Update interface on node.
Machines must has status of Ready or Broken to have access to all options. Machines with Deployed status can only have the name and/or mac_address updated for an interface. This is intented to allow a bad interface to be replaced while the machine remains deployed.
Fields for physical interface:
-
param nameName of the interface. -
param mac\_addressMAC address of the interface. -
param tagsTags for the interface. -
param vlanUntagged VLAN the interface is connected to. If not set then the interface is considered disconnected.
Fields for bond interface:
-
param nameName of the interface. -
param mac\_addressMAC address of the interface. -
param tagsTags for the interface. -
param vlanUntagged VLAN the interface is connected to. If not set then the interface is considered disconnected. -
param parentsParent interfaces that make this bond.
Fields for VLAN interface:
-
param tagsTags for the interface. -
param vlanTagged VLAN the interface is connected to. -
param parentParent interface for this VLAN interface.
Fields for bridge interface:
-
param nameName of the interface. -
param mac\_addressMAC address of the interface. -
param tagsTags for the interface. -
param vlanVLAN the interface is connected to. -
param parentParent interface for this bridge interface.
Following are extra parameters that can be set on all interface types:
-
param mtuMaximum transmission unit. -
param accept\_raAccept router advertisements. (IPv6 only) -
param autoconfPerform stateless autoconfiguration. (IPv6 only)
Following are parameters specific to bonds:
-
param bond-modeThe operating mode of the bond. (Default: active-backup). -
param bond-miimonThe link monitoring freqeuncy in milliseconds. (Default: 100). -
param bond-downdelaySpecifies the time, in milliseconds, to wait before disabling a slave after a link failure has been detected. -
param bond-updelaySpecifies the time, in milliseconds, to wait before enabling a slave after a link recovery has been detected. -
param bond-lacp\_rateOption specifying the rate in which we'll ask our link partner to transmit LACPDU packets in 802.3ad mode. Available options are fast or slow. (Default: slow). -
param bond-xmit\_hash\_policyThe transmit hash policy to use for slave selection in balance-xor, 802.3ad, and tlb modes.
Supported bonding modes (bond-mode):
balance-rr - Transmit packets in sequential order from the first available slave through the last. This mode provides load balancing and fault tolerance.
active-backup - Only one slave in the bond is active. A different slave becomes active if, and only if, the active slave fails. The bond's MAC address is externally visible on only one port (network adapter) to avoid confusing the switch.
balance-xor - Transmit based on the selected transmit hash policy. The default policy is a simple [(source MAC address XOR'd with destination MAC address XOR packet type ID) modulo slave count].
broadcast - Transmits everything on all slave interfaces. This mode provides fault tolerance.
802.3ad - IEEE 802.3ad Dynamic link aggregation. Creates aggregation groups that share the same speed and duplex settings. Utilizes all slaves in the active aggregator according to the 802.3ad specification.
balance-tlb - Adaptive transmit load balancing: channel bonding that does not require any special switch support.
balance-alb - Adaptive load balancing: includes balance-tlb plus receive load balancing (rlb) for IPV4 traffic, and does not require any special switch support. The receive load balancing is achieved by ARP negotiation.
Following are parameters specific to bridges:
-
param bridge\_stpTurn spanning tree protocol on or off. (Default: False). -
param bridge\_fdSet bridge forward delay to time seconds. (Default: 15).
Returns 404 if the node or interface is not found.
Interfaces
Manage interfaces on a node.
GET /api/2.0/nodes/{system_id}/interfaces/
List all interfaces belonging to a machine, device, or rack controller.
Returns 404 if the node is not found.
POST /api/2.0/nodes/{system_id}/interfaces/ op=create_bond
Create a bond interface on a machine.
-
param nameName of the interface. -
param mac\_addressMAC address of the interface. -
param tagsTags for the interface. -
param vlanVLAN the interface is connected to. If not provided then the interface is considered disconnected. -
param parentsParent interfaces that make this bond.
Following are parameters specific to bonds:
-
param bond\_modeThe operating mode of the bond. (Default: active-backup). -
param bond\_miimonThe link monitoring freqeuncy in milliseconds. (Default: 100). -
param bond\_downdelaySpecifies the time, in milliseconds, to wait before disabling a slave after a link failure has been detected. -
param bond\_updelaySpecifies the time, in milliseconds, to wait before enabling a slave after a link recovery has been detected. -
param bond\_lacp\_rateOption specifying the rate in which we'll ask our link partner to transmit LACPDU packets in 802.3ad mode. Available options are fast or slow. (Default: slow). -
param bond\_xmit\_hash\_policyThe transmit hash policy to use for slave selection in balance-xor, 802.3ad, and tlb modes. (Default: layer2)
Supported bonding modes (bond-mode): balance-rr - Transmit packets in sequential order from the first available slave through the last. This mode provides load balancing and fault tolerance.
active-backup - Only one slave in the bond is active. A different slave becomes active if, and only if, the active slave fails. The bond's MAC address is externally visible on only one port (network adapter) to avoid confusing the switch.
balance-xor - Transmit based on the selected transmit hash policy. The default policy is a simple [(source MAC address XOR'd with destination MAC address XOR packet type ID) modulo slave count].
broadcast - Transmits everything on all slave interfaces. This mode provides fault tolerance.
802.3ad - IEEE 802.3ad Dynamic link aggregation. Creates aggregation groups that share the same speed and duplex settings. Utilizes all slaves in the active aggregator according to the 802.3ad specification.
balance-tlb - Adaptive transmit load balancing: channel bonding that does not require any special switch support.
balance-alb - Adaptive load balancing: includes balance-tlb plus receive load balancing (rlb) for IPV4 traffic, and does not require any special switch support. The receive load balancing is achieved by ARP negotiation.
Following are extra parameters that can be set on the interface:
-
param mtuMaximum transmission unit. -
param accept\_raAccept router advertisements. (IPv6 only) -
param autoconfPerform stateless autoconfiguration. (IPv6 only)
Returns 404 if the node is not found.
POST /api/2.0/nodes/{system_id}/interfaces/ op=create_bridge
Create a bridge interface on a machine.
-
param nameName of the interface. -
param mac\_addressMAC address of the interface. -
param tagsTags for the interface. -
param vlanVLAN the interface is connected to. -
param parentParent interface for this bridge interface.
Following are parameters specific to bridges:
-
param bridge\_stpTurn spanning tree protocol on or off. (Default: False). -
param bridge\_fdSet bridge forward delay to time seconds. (Default: 15).
Following are extra parameters that can be set on the interface:
-
param mtuMaximum transmission unit. -
param accept\_raAccept router advertisements. (IPv6 only) -
param autoconfPerform stateless autoconfiguration. (IPv6 only)
Returns 404 if the node is not found.
POST /api/2.0/nodes/{system_id}/interfaces/ op=create_physical
Create a physical interface on a machine and device.
-
param nameName of the interface. -
param mac\_addressMAC address of the interface. -
param tagsTags for the interface. -
param vlanUntagged VLAN the interface is connected to. If not provided then the interface is considered disconnected.
Following are extra parameters that can be set on the interface:
-
param mtuMaximum transmission unit. -
param accept\_raAccept router advertisements. (IPv6 only) -
param autoconfPerform stateless autoconfiguration. (IPv6 only)
Returns 404 if the node is not found.
POST /api/2.0/nodes/{system_id}/interfaces/ op=create_vlan
Create a VLAN interface on a machine.
-
param tagsTags for the interface. -
param vlanTagged VLAN the interface is connected to. -
param parentParent interface for this VLAN interface.
Following are extra parameters that can be set on the interface:
-
param mtuMaximum transmission unit. -
param accept\_raAccept router advertisements. (IPv6 only) -
param autoconfPerform stateless autoconfiguration. (IPv6 only)
Returns 404 if the node is not found.
License Key
Manage a license key.
DELETE /api/2.0/license-key/{osystem}/{distro_series}
Delete license key.
GET /api/2.0/license-key/{osystem}/{distro_series}
Read license key.
PUT /api/2.0/license-key/{osystem}/{distro_series}
Update license key.
-
param osystemOperating system that the key belongs to. -
param distro\_seriesOS release that the key belongs to. -
param license\_keyLicense key for osystem/distro_series combo.
License Keys
Manage the license keys.
GET /api/2.0/license-keys/
List license keys.
POST /api/2.0/license-keys/
Define a license key.
-
param osystemOperating system that the key belongs to. -
param distro\_seriesOS release that the key belongs to. -
param license\_keyLicense key for osystem/distro_series combo.
MAAS server
Manage the MAAS server.
GET /api/2.0/maas/ op=get_config
Get a config value.
param nameThe name of the config item to be retrieved.
Available configuration items:
active_discovery_interval Active subnet mapping interval. When enabled, each rack will scan subnets enabled for active mapping. This helps ensure discovery information is accurate and complete.
boot_images_auto_import Automatically import/refresh the boot images every 60 minutes.
commissioning_distro_series Default Ubuntu release used for commissioning.
completed_intro Marks if the initial intro has been completed..
curtin_verbose Run the fast-path installer with higher verbosity. This provides more detail in the installation logs..
default_distro_series Default OS release used for deployment.
default_dns_ttl Default Time-To-Live for the DNS.. If no TTL value is specified at a more specific point this is how long DNS responses are valid, in seconds.
default_min_hwe_kernel Default Minimum Kernel Version. The default minimum kernel version used on all new and commissioned nodes.
default_osystem Default operating system used for deployment.
default_storage_layout Default storage layout. Storage layout that is applied to a node when it is commissioned. Available choices are: 'bcache' (Bcache layout), 'flat' (Flat layout), 'lvm' (LVM layout).
disk_erase_with_quick_erase Use quick erase by default when erasing disks.. This is not a secure erase; it wipes only the beginning and end of each disk.
disk_erase_with_secure_erase Use secure erase by default when erasing disks.. Will only be used on devices that support secure erase. Other devices will fall back to full wipe or quick erase depending on the selected options.
dnssec_validation Enable DNSSEC validation of upstream zones. Only used when MAAS is running its own DNS server. This value is used as the value of 'dnssec_validation' in the DNS server config.
enable_analytics Enable MAAS UI usage of Google Analytics. This helps the developers of MAAS to identify usage statistics to further development..
enable_disk_erasing_on_release Erase nodes' disks prior to releasing.. Forces users to always erase disks when releasing.
enable_http_proxy Enable the use of an APT and HTTP/HTTPS proxy. Provision nodes to use the built-in HTTP proxy (or user specified proxy) for APT. MAAS also uses the proxy for downloading boot images.
enable_third_party_drivers Enable the installation of proprietary drivers (i.e. HPVSA).
http_proxy Proxy for APT and HTTP/HTTPS. This will be passed onto provisioned nodes to use as a proxy for APT traffic. MAAS also uses the proxy for downloading boot images. If no URL is provided, the built-in MAAS proxy will be used.
kernel_opts Boot parameters to pass to the kernel by default.
maas_name MAAS name.
network_discovery . When enabled, MAAS will use passive techniques (such as listening to ARP requests and mDNS advertisements) to observe networks attached to rack controllers. Active subnet mapping will also be available to be enabled on the configured subnets.
ntp_external_only Use external NTP servers only. Configure all region controller hosts, rack controller hosts, and subsequently deployed machines to refer directly to the configured external NTP servers. Otherwise only region controller hosts will be configured to use those external NTP servers, rack contoller hosts will in turn refer to the regions' NTP servers, and deployed machines will refer to the racks' NTP servers.
ntp_servers Addresses of NTP servers. NTP servers, specified as IP addresses or hostnames delimited by commas and/or spaces, to be used as time references for MAAS itself, the machines MAAS deploys, and devices that make use of MAAS's DHCP services.
upstream_dns Upstream DNS used to resolve domains not managed by this MAAS (space-separated IP addresses). Only used when MAAS is running its own DNS server. This value is used as the value of 'forwarders' in the DNS server config.
windows_kms_host Windows KMS activation host. FQDN or IP address of the host that provides the KMS Windows activation service. (Only needed for Windows deployments using KMS activation.)
POST /api/2.0/maas/ op=set_config
Set a config value.
-
param nameThe name of the config item to be set. -
param valueThe value of the config item to be set.
Available configuration items:
active_discovery_interval Active subnet mapping interval. When enabled, each rack will scan subnets enabled for active mapping. This helps ensure discovery information is accurate and complete.
boot_images_auto_import Automatically import/refresh the boot images every 60 minutes.
commissioning_distro_series Default Ubuntu release used for commissioning.
completed_intro Marks if the initial intro has been completed..
curtin_verbose Run the fast-path installer with higher verbosity. This provides more detail in the installation logs..
default_distro_series Default OS release used for deployment.
default_dns_ttl Default Time-To-Live for the DNS.. If no TTL value is specified at a more specific point this is how long DNS responses are valid, in seconds.
default_min_hwe_kernel Default Minimum Kernel Version. The default minimum kernel version used on all new and commissioned nodes.
default_osystem Default operating system used for deployment.
default_storage_layout Default storage layout. Storage layout that is applied to a node when it is commissioned. Available choices are: 'bcache' (Bcache layout), 'flat' (Flat layout), 'lvm' (LVM layout).
disk_erase_with_quick_erase Use quick erase by default when erasing disks.. This is not a secure erase; it wipes only the beginning and end of each disk.
disk_erase_with_secure_erase Use secure erase by default when erasing disks.. Will only be used on devices that support secure erase. Other devices will fall back to full wipe or quick erase depending on the selected options.
dnssec_validation Enable DNSSEC validation of upstream zones. Only used when MAAS is running its own DNS server. This value is used as the value of 'dnssec_validation' in the DNS server config.
enable_analytics Enable MAAS UI usage of Google Analytics. This helps the developers of MAAS to identify usage statistics to further development..
enable_disk_erasing_on_release Erase nodes' disks prior to releasing.. Forces users to always erase disks when releasing.
enable_http_proxy Enable the use of an APT and HTTP/HTTPS proxy. Provision nodes to use the built-in HTTP proxy (or user specified proxy) for APT. MAAS also uses the proxy for downloading boot images.
enable_third_party_drivers Enable the installation of proprietary drivers (i.e. HPVSA).
http_proxy Proxy for APT and HTTP/HTTPS. This will be passed onto provisioned nodes to use as a proxy for APT traffic. MAAS also uses the proxy for downloading boot images. If no URL is provided, the built-in MAAS proxy will be used.
kernel_opts Boot parameters to pass to the kernel by default.
maas_name MAAS name.
network_discovery . When enabled, MAAS will use passive techniques (such as listening to ARP requests and mDNS advertisements) to observe networks attached to rack controllers. Active subnet mapping will also be available to be enabled on the configured subnets.
ntp_external_only Use external NTP servers only. Configure all region controller hosts, rack controller hosts, and subsequently deployed machines to refer directly to the configured external NTP servers. Otherwise only region controller hosts will be configured to use those external NTP servers, rack contoller hosts will in turn refer to the regions' NTP servers, and deployed machines will refer to the racks' NTP servers.
ntp_servers Addresses of NTP servers. NTP servers, specified as IP addresses or hostnames delimited by commas and/or spaces, to be used as time references for MAAS itself, the machines MAAS deploys, and devices that make use of MAAS's DHCP services.
upstream_dns Upstream DNS used to resolve domains not managed by this MAAS (space-separated IP addresses). Only used when MAAS is running its own DNS server. This value is used as the value of 'forwarders' in the DNS server config.
windows_kms_host Windows KMS activation host. FQDN or IP address of the host that provides the KMS Windows activation service. (Only needed for Windows deployments using KMS activation.)
Machine
Manage an individual Machine.
The Machine is identified by its system_id.
DELETE /api/2.0/machines/{system_id}/
Delete a specific Node.
Returns 404 if the node is not found. Returns 403 if the user does not have permission to delete the node. Returns 204 if the node is successfully deleted.
GET /api/2.0/machines/{system_id}/
Read a specific Node.
Returns 404 if the node is not found.
GET /api/2.0/machines/{system_id}/ op=details
Obtain various system details.
For example, LLDP and lshw XML dumps.
Returns a {detail_type: xml, ...} map, where detail_type is something
like "lldp" or "lshw".
Note that this is returned as BSON and not JSON. This is for efficiency, but mainly because JSON can't do binary content without applying additional encoding like base-64.
Returns 404 if the node is not found.
GET /api/2.0/machines/{system_id}/ op=get_curtin_config
Return the rendered curtin configuration for the machine.
Returns 404 if the machine could not be found. Returns 403 if the user does not have permission to get the curtin configuration.
GET /api/2.0/machines/{system_id}/ op=power_parameters
Obtain power parameters.
This method is reserved for admin users and returns a 403 if the user is not one.
This returns the power parameters, if any, configured for a node. For some types of power control this will include private information such as passwords and secret keys.
Returns 404 if the node is not found.
GET /api/2.0/machines/{system_id}/ op=query_power_state
Query the power state of a node.
Send a request to the node's power controller which asks it about the node's state. The reply to this could be delayed by up to 30 seconds while waiting for the power controller to respond. Use this method sparingly as it ties up an appserver thread while waiting.
-
param system\_idThe node to query. -
returna dict whose key is "state" with a value of one of 'on' or 'off'.
Returns 404 if the node is not found. Returns node's power state.
POST /api/2.0/machines/{system_id}/ op=abort
Abort a machine's current operation.
-
param commentOptional comment for the event log. -
type commentunicode
This currently only supports aborting of the 'Disk Erasing' operation.
Returns 404 if the machine could not be found. Returns 403 if the user does not have permission to abort the current operation.
POST /api/2.0/machines/{system_id}/ op=clear_default_gateways
Clear any set default gateways on the machine.
This will clear both IPv4 and IPv6 gateways on the machine. This will transition the logic of identifing the best gateway to MAAS. This logic is determined based the following criteria:
- Managed subnets over unmanaged subnets.
- Bond interfaces over physical interfaces.
- Machine's boot interface over all other interfaces except bonds.
- Physical interfaces over VLAN interfaces.
- Sticky IP links over user reserved IP links.
- User reserved IP links over auto IP links.
If the default gateways need to be specific for this machine you can set which interface and subnet's gateway to use when this machine is deployed with the interfaces set-default-gateway API.
Returns 404 if the machine could not be found. Returns 403 if the user does not have permission to clear the default gateways.
POST /api/2.0/machines/{system_id}/ op=commission
Begin commissioning process for a machine.
-
param enable\_sshWhether to enable SSH for the commissioning environment using the user's SSH key(s). -
type enable\_sshbool ('0' for False, '1' for True) -
param skip\_networkingWhether to skip re-configuring the networking on the machine after the commissioning has completed. -
type skip\_networkingbool ('0' for False, '1' for True) -
param skip\_storageWhether to skip re-configuring the storage on the machine after the commissioning has completed. -
type skip\_storagebool ('0' for False, '1' for True)
A machine in the 'ready', 'declared' or 'failed test' state may initiate a commissioning cycle where it is checked out and tested in preparation for transitioning to the 'ready' state. If it is already in the 'ready' state this is considered a re-commissioning process which is useful if commissioning tests were changed after it previously commissioned.
Returns 404 if the machine is not found.
POST /api/2.0/machines/{system_id}/ op=deploy
Deploy an operating system to a machine.
-
param user\_dataIf present, this blob of user-data to be made available to the machines through the metadata service. -
type user\_database64-encoded unicode -
param distro\_seriesIf present, this parameter specifies the OS release the machine will use. -
type distro\_seriesunicode -
param hwe\_kernelIf present, this parameter specified the kernel to be used on the machine -
type hwe\_kernelunicode -
param commentOptional comment for the event log. -
type commentunicode
Ideally we'd have MIME multipart and content-transfer-encoding etc. deal with the encapsulation of binary data, but couldn't make it work with the framework in reasonable time so went for a dumb, manual encoding instead.
Returns 404 if the machine is not found. Returns 403 if the user does not have permission to start the machine. Returns 503 if the start-up attempted to allocate an IP address, and there were no IP addresses available on the relevant cluster interface.
POST /api/2.0/machines/{system_id}/ op=exit_rescue_mode
Exit rescue mode process for a machine.
A machine in the 'rescue mode' state may exit the rescue mode process.
Returns 404 if the machine is not found. Returns 403 if the user does not have permission to exit the rescue mode process for this machine.
POST /api/2.0/machines/{system_id}/ op=mark_broken
Mark a node as 'broken'.
If the node is allocated, release it first.
-
param commentOptional comment for the event log. Will be displayed on the node as an error description until marked fixed. -
type commentunicode
Returns 404 if the node is not found. Returns 403 if the user does not have permission to mark the node broken.
POST /api/2.0/machines/{system_id}/ op=mark_fixed
Mark a broken node as fixed and set its status as 'ready'.
-
param commentOptional comment for the event log. -
type commentunicode
Returns 404 if the machine is not found. Returns 403 if the user does not have permission to mark the machine fixed.
POST /api/2.0/machines/{system_id}/ op=mount_special
Mount a special-purpose filesystem, like tmpfs.
-
param fstypeThe filesystem type. This must be a filesystem that does not require a block special device. -
param mount\_pointPath on the filesystem to mount. -
param mount\_optionOptions to pass to mount(8).
Returns 403 when the user is not permitted to mount the partition.
POST /api/2.0/machines/{system_id}/ op=power_off
Power off a node.
-
param stop\_modeAn optional power off mode. If 'soft', perform a soft power down if the node's power type supports it, otherwise perform a hard power off. For all values other than 'soft', and by default, perform a hard power off. A soft power off generally asks the OS to shutdown the system gracefully before powering off, while a hard power off occurs immediately without any warning to the OS. -
type stop\_modeunicode -
param commentOptional comment for the event log. -
type commentunicode
Returns 404 if the node is not found. Returns 403 if the user does not have permission to stop the node.
POST /api/2.0/machines/{system_id}/ op=power_on
Turn on a node.
-
param user\_dataIf present, this blob of user-data to be made available to the nodes through the metadata service. -
type user\_database64-encoded unicode -
param commentOptional comment for the event log. -
type commentunicode
Ideally we'd have MIME multipart and content-transfer-encoding etc. deal with the encapsulation of binary data, but couldn't make it work with the framework in reasonable time so went for a dumb, manual encoding instead.
Returns 404 if the node is not found. Returns 403 if the user does not have permission to start the machine. Returns 503 if the start-up attempted to allocate an IP address, and there were no IP addresses available on the relevant cluster interface.
POST /api/2.0/machines/{system_id}/ op=release
Release a machine. Opposite of Machines.allocate.
-
param commentOptional comment for the event log. -
type commentunicode -
param eraseErase the disk when releasing. -
type eraseboolean -
param secure\_eraseUse the drive's secure erase feature if available. In some cases this can be much faster than overwriting the drive. Some drives implement secure erasure by overwriting themselves so this could still be slow. -
type secure\_eraseboolean -
param quick\_eraseWipe 1MiB at the start and at the end of the drive to make data recovery inconvenient and unlikely to happen by accident. This is not secure. -
type quick\_eraseboolean
If neither secure_erase nor quick_erase are specified, MAAS will overwrite the whole disk with null bytes. This can be very slow.
If both secure_erase and quick_erase are specified and the drive does NOT have a secure erase feature, MAAS will behave as if only quick_erase was specified.
If secure_erase is specified and quick_erase is NOT specified and the drive does NOT have a secure erase feature, MAAS will behave as if secure_erase was NOT specified, i.e. will overwrite the whole disk with null bytes. This can be very slow.
Returns 404 if the machine is not found. Returns 403 if the user doesn't have permission to release the machine. Returns 409 if the machine is in a state where it may not be released.
POST /api/2.0/machines/{system_id}/ op=rescue_mode
Begin rescue mode process for a machine.
A machine in the 'deployed' or 'broken' state may initiate the rescue mode process.
Returns 404 if the machine is not found. Returns 403 if the user does not have permission to start the rescue mode process for this machine.
POST /api/2.0/machines/{system_id}/ op=restore_default_configuration
Reset a machine's configuration to its initial state.
Returns 404 if the machine is not found. Returns 403 if the user does not have permission to reset the machine.
POST /api/2.0/machines/{system_id}/ op=restore_networking_configuration
Reset a machine's networking options to its initial state.
Returns 404 if the machine is not found. Returns 403 if the user does not have permission to reset the machine.
POST /api/2.0/machines/{system_id}/ op=restore_storage_configuration
Reset a machine's storage options to its initial state.
Returns 404 if the machine is not found. Returns 403 if the user does not have permission to reset the machine.
POST /api/2.0/machines/{system_id}/ op=set_owner_data
Set key/value data for the current owner.
Pass any key/value data to this method to add, modify, or remove. A key is removed when the value for that key is set to an empty string.
This operation will not remove any previous keys unless explicitly passed with an empty string. All owner data is removed when the machine is no longer allocated to a user.
Returns 404 if the machine is not found. Returns 403 if the user does not have permission.
POST /api/2.0/machines/{system_id}/ op=set_storage_layout
Changes the storage layout on the machine.
This can only be preformed on an allocated machine.
Note: This will clear the current storage layout and any extra configuration and replace it will the new layout.
param storage\_layoutStorage layout for the machine. (flat, lvm, and bcache)
The following are optional for all layouts:
-
param boot\_sizeSize of the boot partition. -
param root\_sizeSize of the root partition. -
param root\_devicePhysical block device to place the root partition.
The following are optional for LVM:
-
param vg\_nameName of created volume group. -
param lv\_nameName of created logical volume. -
param lv\_sizeSize of created logical volume.
The following are optional for Bcache:
-
param cache\_devicePhysical block device to use as the cache device. -
param cache\_modeCache mode for bcache device. (writeback, writethrough, writearound) -
param cache\_sizeSize of the cache partition to create on the cache device. -
param cache\_no\_partDon't create a partition on the cache device. Use the entire disk as the cache device.
Returns 400 if the machine is currently not allocated. Returns 404 if the machine could not be found. Returns 403 if the user does not have permission to set the storage layout.
POST /api/2.0/machines/{system_id}/ op=unmount_special
Unmount a special-purpose filesystem, like tmpfs.
param mount\_pointPath on the filesystem to unmount.
Returns 403 when the user is not permitted to unmount the partition.
PUT /api/2.0/machines/{system_id}/
Update a specific Machine.
-
param hostnameThe new hostname for this machine. -
type hostnameunicode -
param domainThe domain for this machine. If not given the default domain is used. -
type domainunicode -
param architectureThe new architecture for this machine. -
type architectureunicode -
param min\_hwe\_kernelA string containing the minimum kernel version allowed to be ran on this machine. -
type min\_hwe\_kernelunicode -
param power\_typeThe new power type for this machine. If you use the default value, power_parameters will be set to the empty string. Available to admin users. See the Power types_ section for a list of the available power types. -
type power\_typeunicode -
param power\_parameters\_{param1}The new value for the 'param1' power parameter. Note that this is dynamic as the available parameters depend on the selected value of the Machine's power_type. Available to admin users. See the Power types_ section for a list of the available power parameters for each power type. -
type power\_parameters\_{param1}unicode -
param power\_parameters\_skip\_checkWhether or not the new power parameters for this machine should be checked against the expected power parameters for the machine's power -
type ('true' or 'false'). The default is 'false'. -
type power\_parameters\_skip\_checkunicode -
param zoneName of a valid physical zone in which to place this machine. -
type zoneunicode -
param swap\_sizeSpecifies the size of the swap file, in bytes. Field accept K, M, G and T suffixes for values expressed respectively in kilobytes, megabytes, gigabytes and terabytes. -
type swap\_sizeunicode -
param disable\_ipv4Deprecated. If specified, must be False. -
type disable\_ipv4boolean -
param cpu\_countThe amount of CPU cores the machine has. -
type cpu\_countinteger -
param memoryHow much memory the machine has. -
type memoryunicode
Returns 404 if the machine is not found. Returns 403 if the user does not have permission to update the machine.
Machines
Manage the collection of all the machines in the MAAS.
GET /api/2.0/machines/
List Nodes visible to the user, optionally filtered by criteria.
Nodes are sorted by id (i.e. most recent last) and grouped by type.
-
param hostnameAn optional hostname. Only nodes relating to the node with the matching hostname will be returned. This can be specified multiple times to see multiple nodes. -
type hostnameunicode -
param mac\_addressAn optional MAC address. Only nodes relating to the node owning the specified MAC address will be returned. This can be specified multiple times to see multiple nodes. -
type mac\_addressunicode -
param idAn optional list of system ids. Only nodes relating to the nodes with matching system ids will be returned. -
type idunicode -
param domainAn optional name for a dns domain. Only nodes relating to the nodes in the domain will be returned. -
type domainunicode -
param zoneAn optional name for a physical zone. Only nodes relating to the nodes in the zone will be returned. -
type zoneunicode -
param agent\_nameAn optional agent name. Only nodes relating to the nodes with matching agent names will be returned. -
type agent\_nameunicode
GET /api/2.0/machines/ op=list_allocated
Fetch Machines that were allocated to the User/oauth token.
GET /api/2.0/machines/ op=power_parameters
Retrieve power parameters for multiple machines.
-
param idAn optional list of system ids. Only machines with matching system ids will be returned. -
type iditerable -
returnA dictionary of power parameters, keyed by machine system_id.
Raises 403 if the user is not an admin.
POST /api/2.0/machines/
Create a new Machine.
Adding a server to MAAS puts it on a path that will wipe its disks and re-install its operating system, in the event that it PXE boots. In anonymous enlistment (and when the enlistment is done by a non-admin), the machine is held in the "New" state for approval by a MAAS admin.
The minimum data required is: architecture=<arch string> (e.g. "i386/generic") mac_addresses=<value> (e.g. "aa:bb:cc:dd:ee:ff")
-
param architectureA string containing the architecture type of the machine. (For example, "i386", or "amd64".) To determine the supported architectures, use the boot-resources endpoint. -
type architectureunicode -
param min\_hwe\_kernelA string containing the minimum kernel version allowed to be ran on this machine. -
type min\_hwe\_kernelunicode -
param subarchitectureA string containing the subarchitecture type of the machine. (For example, "generic" or "hwe-t".) To determine the supported subarchitectures, use the boot-resources endpoint. -
type subarchitectureunicode -
param mac\_addressesOne or more MAC addresses for the machine. To specify more than one MAC address, the parameter must be specified twice. (such as "machines new mac_addresses=01:02:03:04:05:06 mac_addresses=02:03:04:05:06:07") -
type mac\_addressesunicode -
param hostnameA hostname. If not given, one will be generated. -
type hostnameunicode -
param domainThe domain of the machine. If not given the default domain is used. -
type domainunicode -
param power\_typeA power management type, if applicable (e.g. "virsh", "ipmi"). -
type power\_typeunicode
POST /api/2.0/machines/ op=accept
Accept declared machines into the MAAS.
Machines can be enlisted in the MAAS anonymously or by non-admin users, as opposed to by an admin. These machines are held in the New state; a MAAS admin must first verify the authenticity of these enlistments, and accept them.
Enlistments can be accepted en masse, by passing multiple machines to this call. Accepting an already accepted machine is not an error, but accepting one that is already allocated, broken, etc. is.
-
param machinessystem_ids of the machines whose enlistment is to be accepted. (An empty list is acceptable). -
returnThe system_ids of any machines that have their status changed by this call. Thus, machines that were already accepted are excluded from the result.
Returns 400 if any of the machines do not exist. Returns 403 if the user is not an admin.
POST /api/2.0/machines/ op=accept_all
Accept all declared machines into the MAAS.
Machines can be enlisted in the MAAS anonymously or by non-admin users, as opposed to by an admin. These machines are held in the New state; a MAAS admin must first verify the authenticity of these enlistments, and accept them.
returnRepresentations of any machines that have their status changed by this call. Thus, machines that were already accepted are excluded from the result.
POST /api/2.0/machines/ op=add_chassis
Add special hardware types.
-
param chassis\_typeThe type of hardware. mscm is the type for the Moonshot Chassis Manager. msftocs is the type for the Microsoft OCS Chassis Manager. powerkvm is the type for Virtual Machines on Power KVM, managed by Virsh. seamicro15k is the type for the Seamicro 1500 Chassis. ucsm is the type for the Cisco UCS Manager. virsh is the type for virtual machines managed by Virsh. vmware is the type for virtual machines managed by VMware. -
type chassis\_typeunicode -
param hostnameThe URL, hostname, or IP address to access the chassis. -
type urlunicode -
param usernameThe username used to access the chassis. This field is required for the seamicro15k, vmware, mscm, msftocs, and ucsm chassis types. -
type usernameunicode -
param passwordThe password used to access the chassis. This field is required for the seamicro15k, vmware, mscm, msftocs, and ucsm chassis types. -
type passwordunicode -
param accept\_allIf true, all enlisted machines will be commissioned. -
type accept\_allunicode -
param rack\_controllerThe system_id of the rack controller to send the add chassis command through. If none is specifed MAAS will automatically determine the rack controller to use. -
type rack\_controllerunicode -
param domainThe domain that each new machine added should use. -
type domainunicode
The following are optional if you are adding a virsh, vmware, or powerkvm chassis:
-
param prefix\_filterFilter machines with supplied prefix. -
type prefix\_filterunicode
The following are optional if you are adding a seamicro15k chassis:
-
param power\_controlThe power_control to use, either ipmi (default), restapi, or restapi2. -
type power\_controlunicode
The following are optional if you are adding a vmware or msftocs chassis.
-
param portThe port to use when accessing the chassis. -
type portinteger
The following are optioanl if you are adding a vmware chassis:
-
param protocolThe protocol to use when accessing the VMware chassis (default: https). -
type protocolunicode -
returnA string containing the chassis powered on by which rack controller.
Returns 404 if no rack controller can be found which has access to the given URL. Returns 403 if the user does not have access to the rack controller. Returns 400 if the required parameters were not passed.
POST /api/2.0/machines/ op=allocate
Allocate an available machine for deployment.
Constraints parameters can be used to allocate a machine that possesses certain characteristics. All the constraints are optional and when multiple constraints are provided, they are combined using 'AND' semantics.
-
param nameHostname or FQDN of the desired machine. If a FQDN is specified, both the domain and the hostname portions must match. -
type nameunicode -
param system\_idsystem_id of the desired machine. -
type system\_idunicode -
param archArchitecture of the returned machine (e.g. 'i386/generic', 'amd64', 'armhf/highbank', etc.).If multiple architectures are specified, the machine to acquire may match any of the given architectures. To request multiple architectures, this parameter must be repeated in the request with each value.
-
type archunicode (accepts multiple) -
param cpu\_countMinimum number of CPUs a returned machine must have.
A machine with additional CPUs may be allocated if there is no exact match, or if the 'mem' constraint is not also specified.
-
type cpu\_countpositive integer -
param memThe minimum amount of memory (expressed in MB) the returned machine must have. A machine with additional memory may be allocated if there is no exact match, or the 'cpu_count' constraint is not also specified. -
type mempositive integer -
param tagsTags the machine must match in order to be acquired.
If multiple tag names are specified, the machine must be tagged with all of them. To request multiple tags, this parameter must be repeated in the request with each value.
-
type tagsunicode (accepts multiple) -
param not\_tagsTags the machine must NOT match.
If multiple tag names are specified, the machine must NOT be tagged with ANY of them. To request exclusion of multiple tags, this parameter must be repeated in the request with each value.
-
type tagsunicode (accepts multiple) -
param zonePhysical zone name the machine must be located in. -
type zoneunicode -
type not\_in\_zoneList of physical zones from which the machine must not be acquired.If multiple zones are specified, the machine must NOT be associated with ANY of them. To request multiple zones to exclude, this parameter must be repeated in the request with each value.
-
type not\_in\_zoneunicode (accepts multiple) -
param subnetsSubnets that must be linked to the machine.
"Linked to" means the node must be configured to acquire an address in the specified subnet, have a static IP address in the specified subnet, or have been observed to DHCP from the specified subnet during commissioning time (which implies that it could have an address on the specified subnet).
Subnets can be specified by one of the following criteria:
- <id>: match the subnet by its 'id' field
- fabric:<fabric-spec>: match all subnets in a given fabric.
- ip:<ip-address>: Match the subnet containing <ip-address> with the with the longest-prefix match.
- name:<subnet-name>: Match a subnet with the given name.
- space:<space-spec>: Match all subnets in a given space.
- vid:<vid-integer>: Match a subnet on a VLAN with the specified VID. Valid values range from 0 through 4094 (inclusive). An untagged VLAN can be specified by using the value "0".
- vlan:<vlan-spec>: Match all subnets on the given VLAN.
Note that (as of this writing), the 'fabric', 'space', 'vid', and 'vlan' specifiers are only useful for the 'not_spaces' version of this constraint, because they will most likely force the query to match ALL the subnets in each fabric, space, or VLAN, and thus not return any nodes. (This is not a particularly useful behavior, so may be changed in the future.)
If multiple subnets are specified, the machine must be associated with all of them. To request multiple subnets, this parameter must be repeated in the request with each value.
Note that this replaces the leagcy 'networks' constraint in MAAS 1.x.
-
type subnetsunicode (accepts multiple) -
param not\_subnetsSubnets that must NOT be linked to the machine.
See the 'subnets' constraint documentation above for more information about how each subnet can be specified.
If multiple subnets are specified, the machine must NOT be associated with ANY of them. To request multiple subnets to exclude, this parameter must be repeated in the request with each value. (Or a fabric, space, or VLAN specifier may be used to match multiple subnets).
Note that this replaces the leagcy 'not_networks' constraint in MAAS 1.x.
-
type not\_subnetsunicode (accepts multiple) -
param storageA list of storage constraint identifiers, in the form: <label>:<size>(<tag>[,<tag>[,...])][,<label>:...] -
type storageunicode -
param interfacesA labeled constraint map associating constraint labels with interface properties that should be matched. Returned nodes must have one or more interface matching the specified constraints. The labeled constraint map must be in the format:<label>:<key>=<value>[,<key2>=<value2>[,...]]Each key can be one of the following:
-
id: Matches an interface with the specific id
- fabric: Matches an interface attached to the specified fabric.
- fabric_class: Matches an interface attached to a fabric with the specified class.
- ip: Matches an interface with the specified IP address assigned to it.
- mode: Matches an interface with the specified mode. (Currently, the only supported mode is "unconfigured".)
- name: Matches an interface with the specified name. (For example, "eth0".)
- hostname: Matches an interface attached to the node with the specified hostname.
- subnet: Matches an interface attached to the specified subnet.
- space: Matches an interface attached to the specified space.
- subnet_cidr: Matches an interface attached to the specified subnet CIDR. (For example, "192.168.0.0/24".)
- type: Matches an interface of the specified type. (Valid types: "physical", "vlan", "bond", "bridge", or "unknown".)
- vlan: Matches an interface on the specified VLAN.
- vid: Matches an interface on a VLAN with the specified VID.
-
tag: Matches an interface tagged with the specified tag.
-
type interfacesunicode -
param fabricsSet of fabrics that the machine must be associated with in order to be acquired.If multiple fabrics names are specified, the machine can be in any of the specified fabrics. To request multiple possible fabrics to match, this parameter must be repeated in the request with each value.
-
type fabricsunicode (accepts multiple) -
param not\_fabricsFabrics the machine must NOT be associated with in order to be acquired.If multiple fabrics names are specified, the machine must NOT be in ANY of them. To request exclusion of multiple fabrics, this parameter must be repeated in the request with each value.
-
type not\_fabricsunicode (accepts multiple) -
param fabric\_classesSet of fabric class types whose fabrics the machine must be associated with in order to be acquired.If multiple fabrics class types are specified, the machine can be in any matching fabric. To request multiple possible fabrics class types to match, this parameter must be repeated in the request with each value.
-
type fabric\_classesunicode (accepts multiple) -
param not\_fabric\_classesFabric class types whose fabrics the machine must NOT be associated with in order to be acquired.If multiple fabrics names are specified, the machine must NOT be in ANY of them. To request exclusion of multiple fabrics, this parameter must be repeated in the request with each value.
-
type not\_fabric\_classesunicode (accepts multiple) -
param agent\_nameAn optional agent name to attach to the acquired machine. -
type agent\_nameunicode -
param commentOptional comment for the event log. -
type commentunicode -
param bridge\_allOptionally create a bridge interface for every configured interface on the machine. The created bridges will be removed once the machine is released. (Default: False) -
type bridge\_allboolean -
param bridge\_stpOptionally turn spanning tree protocol on or off for the bridges created on every configured interface. (Default: off) -
type bridge\_stpboolean -
param bridge\_fdOptionally adjust the forward delay to time seconds. (Default: 15) -
type bridge\_fdinteger -
param dry\_runOptional boolean to indicate that the machine should not actually be acquired (this is for support/troubleshooting, or users who want to see which machine would match a constraint, without acquiring a machine). Defaults to False. -
type dry\_runbool -
param verboseOptional boolean to indicate that the user would like additional verbosity in the constraints_by_type field (each constraint will be prefixed by verbose_, and contain the full data structure that indicates which machine(s) matched). -
type verbosebool
Returns 409 if a suitable machine matching the constraints could not be found.
POST /api/2.0/machines/ op=release
Release multiple machines.
This places the machines back into the pool, ready to be reallocated.
-
param machinessystem_ids of the machines which are to be released. (An empty list is acceptable). -
param commentOptional comment for the event log. -
type commentunicode -
returnThe system_ids of any machines that have their status changed by this call. Thus, machines that were already released are excluded from the result.
Returns 400 if any of the machines cannot be found. Returns 403 if the user does not have permission to release any of the machines. Returns a 409 if any of the machines could not be released due to their current state.
POST /api/2.0/machines/ op=set_zone
Assign multiple nodes to a physical zone at once.
-
param zoneZone name. If omitted, the zone is "none" and the nodes will be taken out of their physical zones. -
param nodessystem_ids of the nodes whose zones are to be set. (An empty list is acceptable).
Raises 403 if the user is not an admin.
Network
Manage a network.
This endpoint is deprecated. Use the new 'subnet' endpoint instead.
DELETE /api/2.0/networks/{name}/
Delete network definition.
This endpoint is no longer available. Use the 'subnet' endpoint instead.
GET /api/2.0/networks/{name}/
Read network definition.
GET /api/2.0/networks/{name}/ op=list_connected_macs
Returns the list of MAC addresses connected to this network.
Only MAC addresses for nodes visible to the requesting user are returned.
POST /api/2.0/networks/{name}/ op=connect_macs
Connect the given MAC addresses to this network.
This endpoint is no longer available. Use the 'subnet' endpoint instead.
POST /api/2.0/networks/{name}/ op=disconnect_macs
Disconnect the given MAC addresses from this network.
This endpoint is no longer available. Use the 'subnet' endpoint instead.
PUT /api/2.0/networks/{name}/
Update network definition.
This endpoint is no longer available. Use the 'subnet' endpoint instead.
-
param nameA simple name for the network, to make it easier to refer to. Must consist only of letters, digits, dashes, and underscores. -
param ipBase IP address for the network, e.g. 10.1.0.0. The host bits will be zeroed. -
param netmaskSubnet mask to indicate which parts of an IP address are part of the network address. For example, 255.255.255.0. -
param vlan\_tagOptional VLAN tag: a number between 1 and 0xffe (4094) inclusive, or zero for an untagged network. -
param descriptionDetailed description of the network for the benefit of users and administrators.
Networks
Manage the networks.
This endpoint is deprecated. Use the new 'subnets' endpoint instead.
GET /api/2.0/networks/
List networks.
param nodeOptionally, nodes which must be attached to any returned networks. If more than one node is given, the result will be restricted to networks that these nodes have in common.
POST /api/2.0/networks/
Define a network.
This endpoint is no longer available. Use the 'subnets' endpoint instead.
Node
Manage an individual Node.
The Node is identified by its system_id.
DELETE /api/2.0/nodes/{system_id}/
Delete a specific Node.
Returns 404 if the node is not found. Returns 403 if the user does not have permission to delete the node. Returns 204 if the node is successfully deleted.
GET /api/2.0/nodes/{system_id}/
Read a specific Node.
Returns 404 if the node is not found.
GET /api/2.0/nodes/{system_id}/ op=details
Obtain various system details.
For example, LLDP and lshw XML dumps.
Returns a {detail_type: xml, ...} map, where detail_type is something
like "lldp" or "lshw".
Note that this is returned as BSON and not JSON. This is for efficiency, but mainly because JSON can't do binary content without applying additional encoding like base-64.
Returns 404 if the node is not found.
GET /api/2.0/nodes/{system_id}/ op=power_parameters
Obtain power parameters.
This method is reserved for admin users and returns a 403 if the user is not one.
This returns the power parameters, if any, configured for a node. For some types of power control this will include private information such as passwords and secret keys.
Returns 404 if the node is not found.
Commissioning results
Read the collection of NodeResult in the MAAS.
GET /api/2.0/installation-results/
List NodeResult visible to the user, optionally filtered.
-
param system\_idAn optional list of system ids. Only the results related to the nodes with these system ids will be returned. -
type system\_iditerable -
param nameAn optional list of names. Only the results with the specified names will be returned. -
type nameiterable -
param result\_typeAn optional result_type. Only the results with the specified result_type will be returned. -
type nameiterable
Nodes
Manage the collection of all the nodes in the MAAS.
GET /api/2.0/nodes/
List Nodes visible to the user, optionally filtered by criteria.
Nodes are sorted by id (i.e. most recent last) and grouped by type.
-
param hostnameAn optional hostname. Only nodes relating to the node with the matching hostname will be returned. This can be specified multiple times to see multiple nodes. -
type hostnameunicode -
param mac\_addressAn optional MAC address. Only nodes relating to the node owning the specified MAC address will be returned. This can be specified multiple times to see multiple nodes. -
type mac\_addressunicode -
param idAn optional list of system ids. Only nodes relating to the nodes with matching system ids will be returned. -
type idunicode -
param domainAn optional name for a dns domain. Only nodes relating to the nodes in the domain will be returned. -
type domainunicode -
param zoneAn optional name for a physical zone. Only nodes relating to the nodes in the zone will be returned. -
type zoneunicode -
param agent\_nameAn optional agent name. Only nodes relating to the nodes with matching agent names will be returned. -
type agent\_nameunicode
POST /api/2.0/nodes/ op=set_zone
Assign multiple nodes to a physical zone at once.
-
param zoneZone name. If omitted, the zone is "none" and the nodes will be taken out of their physical zones. -
param nodessystem_ids of the nodes whose zones are to be set. (An empty list is acceptable).
Raises 403 if the user is not an admin.
Package Repositories
Manage the collection of all Package Repositories in MAAS.
GET /api/2.0/package-repositories/
List all Package Repositories.
POST /api/2.0/package-repositories/
Create a Package Repository.
-
param nameThe name of the Package Repository. -
type nameunicode -
param urlThe url of the Package Repository. -
type urlunicode -
param distributionsWhich package distributions to include. -
type distributionsunicode -
param disabled\_pocketsThe list of pockets to disable. -
param componentsThe list of components to enable. -
param archesThe list of supported architectures. -
param keyThe authentication key to use with the repository. -
type keyunicode -
param enabledWhether or not the repository is enabled. -
type enabledboolean
Package Repository
Manage an individual Package Repository.
The Package Repository is identified by its id.
DELETE /api/2.0/package-repositories/{id}/
Delete a Package Repository.
Returns 404 if the Package Repository is not found.
GET /api/2.0/package-repositories/{id}/
Read Package Repository.
Returns 404 if the repository is not found.
PUT /api/2.0/package-repositories/{id}/
Update a Package Repository.
-
param nameThe name of the Package Repository. -
type nameunicode -
param urlThe url of the Package Repository. -
type urlunicode -
param distributionsWhich package distributions to include. -
type distributionsunicode -
param disabled\_pocketsThe list of pockets to disable. -
param componentsThe list of components to enable. -
param archesThe list of supported architectures. -
param keyThe authentication key to use with the repository. -
type keyunicode -
param enabledWhether or not the repository is enabled. -
type enabledboolean
Returns 404 if the Package Repository is not found.
Partitions
Manage partition on a block device.
DELETE /api/2.0/nodes/{system_id}/blockdevices/{device_id}/partition/{id}
Delete partition.
Returns 404 if the node, block device, or partition are not found.
GET /api/2.0/nodes/{system_id}/blockdevices/{device_id}/partition/{id}
Read partition.
Returns 404 if the node, block device, or partition are not found.
POST /api/2.0/nodes/{system_id}/blockdevices/{device_id}/partition/{id} op=format
Format a partition.
-
param fstypeType of filesystem. -
param uuidThe UUID for the filesystem. -
param labelThe label for the filesystem.
Returns 403 when the user doesn't have the ability to format the partition. Returns 404 if the node, block device, or partition is not found.
POST /api/2.0/nodes/{system_id}/blockdevices/{device_id}/partition/{id} op=mount
Mount the filesystem on partition.
-
param mount\_pointPath on the filesystem to mount. -
param mount\_optionsOptions to pass to mount(8).
Returns 403 when the user doesn't have the ability to mount the partition. Returns 404 if the node, block device, or partition is not found.
POST /api/2.0/nodes/{system_id}/blockdevices/{device_id}/partition/{id} op=unformat
Unformat a partition.
POST /api/2.0/nodes/{system_id}/blockdevices/{device_id}/partition/{id} op=unmount
Unmount the filesystem on partition.
Returns 400 if the partition is not formatted or not currently mounted. Returns 403 when the user doesn't have the ability to unmount the partition. Returns 404 if the node, block device, or partition is not found.
Partitions
Manage partitions on a block device.
GET /api/2.0/nodes/{system_id}/blockdevices/{device_id}/partitions/
List all partitions on the block device.
Returns 404 if the node or the block device are not found.
POST /api/2.0/nodes/{system_id}/blockdevices/{device_id}/partitions/
Create a partition on the block device.
-
param sizeThe size of the partition. -
param uuidUUID for the partition. Only used if the partition table type for the block device is GPT. -
param bootableIf the partition should be marked bootable.
Returns 404 if the node or the block device are not found.
RackController
Manage an individual rack controller.
The rack controller is identified by its system_id.
DELETE /api/2.0/rackcontrollers/{system_id}/
Delete a specific Node.
Returns 404 if the node is not found. Returns 403 if the user does not have permission to delete the node. Returns 204 if the node is successfully deleted.
GET /api/2.0/rackcontrollers/{system_id}/
Read a specific Node.
Returns 404 if the node is not found.
GET /api/2.0/rackcontrollers/{system_id}/ op=details
Obtain various system details.
For example, LLDP and lshw XML dumps.
Returns a {detail_type: xml, ...} map, where detail_type is something
like "lldp" or "lshw".
Note that this is returned as BSON and not JSON. This is for efficiency, but mainly because JSON can't do binary content without applying additional encoding like base-64.
Returns 404 if the node is not found.
GET /api/2.0/rackcontrollers/{system_id}/ op=list_boot_images
List all available boot images.
Shows all available boot images and lists whether they are in sync with the region.
Returns 404 if the rack controller is not found.
GET /api/2.0/rackcontrollers/{system_id}/ op=power_parameters
Obtain power parameters.
This method is reserved for admin users and returns a 403 if the user is not one.
This returns the power parameters, if any, configured for a node. For some types of power control this will include private information such as passwords and secret keys.
Returns 404 if the node is not found.
GET /api/2.0/rackcontrollers/{system_id}/ op=query_power_state
Query the power state of a node.
Send a request to the node's power controller which asks it about the node's state. The reply to this could be delayed by up to 30 seconds while waiting for the power controller to respond. Use this method sparingly as it ties up an appserver thread while waiting.
-
param system\_idThe node to query. -
returna dict whose key is "state" with a value of one of 'on' or 'off'.
Returns 404 if the node is not found. Returns node's power state.
POST /api/2.0/rackcontrollers/{system_id}/ op=import_boot_images
Import the boot images on this rack controller.
Returns 404 if the rack controller is not found.
POST /api/2.0/rackcontrollers/{system_id}/ op=power_off
Power off a node.
-
param stop\_modeAn optional power off mode. If 'soft', perform a soft power down if the node's power type supports it, otherwise perform a hard power off. For all values other than 'soft', and by default, perform a hard power off. A soft power off generally asks the OS to shutdown the system gracefully before powering off, while a hard power off occurs immediately without any warning to the OS. -
type stop\_modeunicode -
param commentOptional comment for the event log. -
type commentunicode
Returns 404 if the node is not found. Returns 403 if the user does not have permission to stop the node.
POST /api/2.0/rackcontrollers/{system_id}/ op=power_on
Turn on a node.
-
param user\_dataIf present, this blob of user-data to be made available to the nodes through the metadata service. -
type user\_database64-encoded unicode -
param commentOptional comment for the event log. -
type commentunicode
Ideally we'd have MIME multipart and content-transfer-encoding etc. deal with the encapsulation of binary data, but couldn't make it work with the framework in reasonable time so went for a dumb, manual encoding instead.
Returns 404 if the node is not found. Returns 403 if the user does not have permission to start the machine. Returns 503 if the start-up attempted to allocate an IP address, and there were no IP addresses available on the relevant cluster interface.
PUT /api/2.0/rackcontrollers/{system_id}/
Update a specific Rack controller.
-
param power\_typeThe new power type for this rack controller. If you use the default value, power_parameters will be set to the empty string. Available to admin users. See the Power types_ section for a list of the available power types. -
type power\_typeunicode -
param power\_parameters\_{param1}The new value for the 'param1' power parameter. Note that this is dynamic as the available parameters depend on the selected value of the rack controller's power_type. Available to admin users. See the Power types_ section for a list of the available power parameters for each power type. -
type power\_parameters\_{param1}unicode -
param power\_parameters\_skip\_checkWhether or not the new power parameters for this rack controller should be checked against the expected power parameters for the rack controller's power type ('true' or 'false'). The default is 'false'. -
type power\_parameters\_skip\_checkunicode -
param zoneName of a valid physical zone in which to place this rack controller. -
type zoneunicode
Returns 404 if the rack controller is not found. Returns 403 if the user does not have permission to update the rack controller.
RackControllers
Manage the collection of all rack controllers in MAAS.
GET /api/2.0/rackcontrollers/
List Nodes visible to the user, optionally filtered by criteria.
Nodes are sorted by id (i.e. most recent last) and grouped by type.
-
param hostnameAn optional hostname. Only nodes relating to the node with the matching hostname will be returned. This can be specified multiple times to see multiple nodes. -
type hostnameunicode -
param mac\_addressAn optional MAC address. Only nodes relating to the node owning the specified MAC address will be returned. This can be specified multiple times to see multiple nodes. -
type mac\_addressunicode -
param idAn optional list of system ids. Only nodes relating to the nodes with matching system ids will be returned. -
type idunicode -
param domainAn optional name for a dns domain. Only nodes relating to the nodes in the domain will be returned. -
type domainunicode -
param zoneAn optional name for a physical zone. Only nodes relating to the nodes in the zone will be returned. -
type zoneunicode -
param agent\_nameAn optional agent name. Only nodes relating to the nodes with matching agent names will be returned. -
type agent\_nameunicode
GET /api/2.0/rackcontrollers/ op=describe_power_types
Query all of the rack controllers for power information.
returna list of dicts that describe the power types in this format.
GET /api/2.0/rackcontrollers/ op=power_parameters
Retrieve power parameters for multiple machines.
-
param idAn optional list of system ids. Only machines with matching system ids will be returned. -
type iditerable -
returnA dictionary of power parameters, keyed by machine system_id.
Raises 403 if the user is not an admin.
POST /api/2.0/rackcontrollers/ op=import_boot_images
Import the boot images on all rack controllers.
POST /api/2.0/rackcontrollers/ op=set_zone
Assign multiple nodes to a physical zone at once.
-
param zoneZone name. If omitted, the zone is "none" and the nodes will be taken out of their physical zones. -
param nodessystem_ids of the nodes whose zones are to be set. (An empty list is acceptable).
Raises 403 if the user is not an admin.
RAID Device
Manage a specific RAID device on a machine.
DELETE /api/2.0/nodes/{system_id}/raid/{id}/
Delete RAID on a machine.
Returns 404 if the machine or RAID is not found. Returns 409 if the machine is not Ready.
GET /api/2.0/nodes/{system_id}/raid/{id}/
Read RAID device on a machine.
Returns 404 if the machine or RAID is not found.
PUT /api/2.0/nodes/{system_id}/raid/{id}/
Update RAID on a machine.
-
param nameName of the RAID. -
param uuidUUID of the RAID. -
param add\_block\_devicesBlock devices to add to the RAID. -
param remove\_block\_devicesBlock devices to remove from the RAID. -
param add\_spare\_devicesSpare block devices to add to the RAID. -
param remove\_spare\_devicesSpare block devices to remove from the RAID. -
param add\_partitionsPartitions to add to the RAID. -
param remove\_partitionsPartitions to remove from the RAID. -
param add\_spare\_partitionsSpare partitions to add to the RAID. -
param remove\_spare\_partitionsSpare partitions to remove from the RAID.
Returns 404 if the machine or RAID is not found. Returns 409 if the machine is not Ready.
RAID Devices
Manage all RAID devices on a machine.
GET /api/2.0/nodes/{system_id}/raids/
List all RAID devices belonging to a machine.
Returns 404 if the machine is not found.
POST /api/2.0/nodes/{system_id}/raids/
Creates a RAID
-
param nameName of the RAID. -
param uuidUUID of the RAID. -
param levelRAID level. -
param block\_devicesBlock devices to add to the RAID. -
param spare\_devicesSpare block devices to add to the RAID. -
param partitionsPartitions to add to the RAID. -
param spare\_partitionsSpare partitions to add to the RAID.
Returns 404 if the machine is not found. Returns 409 if the machine is not Ready.
RegionController
Manage an individual region controller.
The region controller is identified by its system_id.
DELETE /api/2.0/regioncontrollers/{system_id}/
Delete a specific Node.
Returns 404 if the node is not found. Returns 403 if the user does not have permission to delete the node. Returns 204 if the node is successfully deleted.
GET /api/2.0/regioncontrollers/{system_id}/
Read a specific Node.
Returns 404 if the node is not found.
GET /api/2.0/regioncontrollers/{system_id}/ op=details
Obtain various system details.
For example, LLDP and lshw XML dumps.
Returns a {detail_type: xml, ...} map, where detail_type is something
like "lldp" or "lshw".
Note that this is returned as BSON and not JSON. This is for efficiency, but mainly because JSON can't do binary content without applying additional encoding like base-64.
Returns 404 if the node is not found.
GET /api/2.0/regioncontrollers/{system_id}/ op=power_parameters
Obtain power parameters.
This method is reserved for admin users and returns a 403 if the user is not one.
This returns the power parameters, if any, configured for a node. For some types of power control this will include private information such as passwords and secret keys.
Returns 404 if the node is not found.
PUT /api/2.0/regioncontrollers/{system_id}/
Update a specific Region controller.
-
param power\_typeThe new power type for this region controller. If you use the default value, power_parameters will be set to the empty string. Available to admin users. See the Power types_ section for a list of the available power types. -
type power\_typeunicode -
param power\_parameters\_{param1}The new value for the 'param1' power parameter. Note that this is dynamic as the available parameters depend on the selected value of the region controller's power_type. Available to admin users. See the Power types_ section for a list of the available power parameters for each power type. -
type power\_parameters\_{param1}unicode -
param power\_parameters\_skip\_checkWhether or not the new power parameters for this region controller should be checked against the expected power parameters for the region controller's power type ('true' or 'false'). The default is 'false'. -
type power\_parameters\_skip\_checkunicode -
param zoneName of a valid physical zone in which to place this region controller. -
type zoneunicode
Returns 404 if the region controller is not found. Returns 403 if the user does not have permission to update the region controller.
RegionControllers
Manage the collection of all region controllers in MAAS.
GET /api/2.0/regioncontrollers/
List Nodes visible to the user, optionally filtered by criteria.
Nodes are sorted by id (i.e. most recent last) and grouped by type.
-
param hostnameAn optional hostname. Only nodes relating to the node with the matching hostname will be returned. This can be specified multiple times to see multiple nodes. -
type hostnameunicode -
param mac\_addressAn optional MAC address. Only nodes relating to the node owning the specified MAC address will be returned. This can be specified multiple times to see multiple nodes. -
type mac\_addressunicode -
param idAn optional list of system ids. Only nodes relating to the nodes with matching system ids will be returned. -
type idunicode -
param domainAn optional name for a dns domain. Only nodes relating to the nodes in the domain will be returned. -
type domainunicode -
param zoneAn optional name for a physical zone. Only nodes relating to the nodes in the zone will be returned. -
type zoneunicode -
param agent\_nameAn optional agent name. Only nodes relating to the nodes with matching agent names will be returned. -
type agent\_nameunicode
POST /api/2.0/regioncontrollers/ op=set_zone
Assign multiple nodes to a physical zone at once.
-
param zoneZone name. If omitted, the zone is "none" and the nodes will be taken out of their physical zones. -
param nodessystem_ids of the nodes whose zones are to be set. (An empty list is acceptable).
Raises 403 if the user is not an admin.
SSH Key
Manage an SSH key.
SSH keys can be retrieved or deleted.
DELETE /api/2.0/account/prefs/sshkeys/{id}/
DELETE an SSH key.
Returns 404 if the key does not exist. Returns 401 if the key does not belong to the calling user.
GET /api/2.0/account/prefs/sshkeys/{id}/
GET an SSH key.
Returns 404 if the key does not exist.
SSH Keys
Manage the collection of all the SSH keys in this MAAS.
GET /api/2.0/account/prefs/sshkeys/
List all keys belonging to the requesting user.
POST /api/2.0/account/prefs/sshkeys/
Add a new SSH key to the requesting user's account.
The request payload should contain the public SSH key data in form data whose name is "key".
POST /api/2.0/account/prefs/sshkeys/ op=import
Import the requesting user's SSH keys.
Import SSH keys for a given protocol and authorization ID in protocol:auth_id format.
SSL Key
Manage an SSL key.
SSL keys can be retrieved or deleted.
DELETE /api/2.0/account/prefs/sslkeys/{id}/
DELETE an SSL key.
Returns 401 if the key does not belong to the requesting user. Returns 204 if the key is successfully deleted.
GET /api/2.0/account/prefs/sslkeys/{id}/
GET an SSL key.
Returns 404 if the key with id is not found. Returns 401 if the key does not belong to the requesting user.
SSL Keys
Operations on multiple keys.
GET /api/2.0/account/prefs/sslkeys/
List all keys belonging to the requesting user.
POST /api/2.0/account/prefs/sslkeys/
Add a new SSL key to the requesting user's account.
The request payload should contain the SSL key data in form data whose name is "key".
Space
Manage space.
DELETE /api/2.0/spaces/{id}/
Delete space.
Returns 404 if the space is not found.
GET /api/2.0/spaces/{id}/
Read space.
Returns 404 if the space is not found.
PUT /api/2.0/spaces/{id}/
Update space.
-
param nameName of the space. -
param descriptionDescription of the space.
Returns 404 if the space is not found.
Spaces
Manage spaces.
GET /api/2.0/spaces/
List all spaces.
POST /api/2.0/spaces/
Create a space.
-
param nameName of the space. -
param descriptionDescription of the space.
Static route
Manage static route.
DELETE /api/2.0/static-routes/{id}/
Delete static route.
Returns 404 if the static route is not found.
GET /api/2.0/static-routes/{id}/
Read static route.
Returns 404 if the static route is not found.
PUT /api/2.0/static-routes/{id}/
Update static route.
-
param sourceSource subnet for the route. -
param destinationDestination subnet for the route. -
param gateway\_ipIP address of the gateway on the source subnet. -
param metricWeight of the route on a deployed machine.
Returns 404 if the static route is not found.
Static routes
Manage static routes.
GET /api/2.0/static-routes/
List all static routes.
POST /api/2.0/static-routes/
Create a static route.
-
param sourceSource subnet for the route. -
param destinationDestination subnet for the route. -
param gateway\_ipIP address of the gateway on the source subnet. -
param metricWeight of the route on a deployed machine.
Subnet
Manage subnet.
DELETE /api/2.0/subnets/{id}/
Delete subnet.
Returns 404 if the subnet is not found.
GET /api/2.0/subnets/{id}/
Read subnet.
Returns 404 if the subnet is not found.
GET /api/2.0/subnets/{id}/ op=ip_addresses
Returns a summary of IP addresses assigned to this subnet.
Optional arguments: with_username: (default=True) if False, suppresses the display of usernames associated with each address. with_node_summary: (default=True) if False, suppresses the display of any node associated with each address.
GET /api/2.0/subnets/{id}/ op=reserved_ip_ranges
Lists IP ranges currently reserved in the subnet.
Returns 404 if the subnet is not found.
GET /api/2.0/subnets/{id}/ op=statistics
Returns statistics for the specified subnet, including:
num_available - the number of available IP addresses largest_available - the largest number of contiguous free IP addresses num_unavailable - the number of unavailable IP addresses total_addresses - the sum of the available plus unavailable addresses usage - the (floating point) usage percentage of this subnet usage_string - the (formatted unicode) usage percentage of this subnet ranges - the specific IP ranges present in ths subnet (if specified)
Optional arguments: include_ranges: if True, includes detailed information about the usage of this range. include_suggestions: if True, includes the suggested gateway and dynamic range for this subnet, if it were to be configured.
Returns 404 if the subnet is not found.
GET /api/2.0/subnets/{id}/ op=unreserved_ip_ranges
Lists IP ranges currently unreserved in the subnet.
Returns 404 if the subnet is not found.
PUT /api/2.0/subnets/{id}/
Update subnet.
-
param nameName of the subnet. -
param descriptionDescription of the subnet. -
param vlanVLAN this subnet belongs to. -
param spaceSpace this subnet is in. -
param cidrThe network CIDR for this subnet. -
param gateway\_ipThe gateway IP address for this subnet. -
param rdns\_modeHow reverse DNS is handled for this subnet. -
param allow\_proxyConfigure maas-proxy to allow requests from this subnet. -
param dns\_serversComma-seperated list of DNS servers for this subnet.
Returns 404 if the subnet is not found.
Subnets
Manage subnets.
GET /api/2.0/subnets/
List all subnets.
POST /api/2.0/subnets/
Create a subnet.
-
param nameName of the subnet. -
param descriptionDescription of the subnet. -
param fabricFabric for the subnet. Defaults to the fabric the provided VLAN belongs to or defaults to the default fabric. -
param vlanVLAN this subnet belongs to. Defaults to the default VLAN for the provided fabric or defaults to the default VLAN in the default fabric. -
param vidVID of the VLAN this subnet belongs to. Only used when vlan is not provided. Picks the VLAN with this VID in the provided fabric or the default fabric if one is not given. -
param spaceSpace this subnet is in. Defaults to the default space. -
param cidrThe network CIDR for this subnet. -
param gateway\_ipThe gateway IP address for this subnet. -
param rdns\_modeHow reverse DNS is handled for this subnet. One of: 0 (Disabled), 1 (Enabled), or 2 (RFC2317). Disabled means no reverse zone is created; Enabled means generate the reverse zone; RFC2317 extends Enabled to create the necessary parent zone with the appropriate CNAME resource records for the network, if the network is small enough to require the support described in RFC2317. -
param allow\_proxyConfigure maas-proxy to allow requests from this subnet. -
param dns\_serversComma-seperated list of DNS servers for this subnet.
Tag
Manage a Tag.
Tags are properties that can be associated with a Node and serve as criteria for selecting and allocating nodes.
A Tag is identified by its name.
DELETE /api/2.0/tags/{name}/
Delete a specific Tag.
Returns 404 if the tag is not found. Returns 204 if the tag is successfully deleted.
GET /api/2.0/tags/{name}/
Read a specific Tag.
Returns 404 if the tag is not found.
GET /api/2.0/tags/{name}/ op=devices
Get the list of devices that have this tag.
Returns 404 if the tag is not found.
GET /api/2.0/tags/{name}/ op=machines
Get the list of machines that have this tag.
Returns 404 if the tag is not found.
GET /api/2.0/tags/{name}/ op=nodes
Get the list of nodes that have this tag.
Returns 404 if the tag is not found.
GET /api/2.0/tags/{name}/ op=rack_controllers
Get the list of rack controllers that have this tag.
Returns 404 if the tag is not found.
GET /api/2.0/tags/{name}/ op=region_controllers
Get the list of region controllers that have this tag.
Returns 404 if the tag is not found.
POST /api/2.0/tags/{name}/ op=rebuild
Manually trigger a rebuild the tag <=> node mapping.
This is considered a maintenance operation, which should normally not be necessary. Adding nodes or updating a tag's definition should automatically trigger the appropriate changes.
Returns 404 if the tag is not found.
POST /api/2.0/tags/{name}/ op=update_nodes
Add or remove nodes being associated with this tag.
-
param addsystem_ids of nodes to add to this tag. -
param removesystem_ids of nodes to remove from this tag. -
param definition(optional) If supplied, the definition will be validated against the current definition of the tag. If the value does not match, then the update will be dropped (assuming this was just a case of a worker being out-of-date) -
param rack\_controllerA system ID of a rack controller that did the processing. This value is optional. If not supplied, the requester must be a superuser. If supplied, then the requester must be the rack controller.
Returns 404 if the tag is not found. Returns 401 if the user does not have permission to update the nodes. Returns 409 if 'definition' doesn't match the current definition.
PUT /api/2.0/tags/{name}/
Update a specific Tag.
-
param nameThe name of the Tag to be created. This should be a short name, and will be used in the URL of the tag. -
param commentA long form description of what the tag is meant for. It is meant as a human readable description of the tag. -
param definitionAn XPATH query that will be evaluated against the hardware_details stored for all nodes (output of lshw -xml).
Returns 404 if the tag is not found.
Tags
Manage the collection of all the Tags in this MAAS.
GET /api/2.0/tags/
List Tags.
Get a listing of all tags that are currently defined.
POST /api/2.0/tags/
Create a new Tag.
-
param nameThe name of the Tag to be created. This should be a short name, and will be used in the URL of the tag. -
param commentA long form description of what the tag is meant for. It is meant as a human readable description of the tag. -
param definitionAn XPATH query that will be evaluated against the hardware_details stored for all nodes (output of lshw -xml). -
param kernel\_optsCan be None. If set, nodes associated with this tag will add this string to their kernel options when booting. The value overrides the global 'kernel_opts' setting. If more than one tag is associated with a node, the one with the lowest alphabetical name will be picked (eg 01-my-tag will be taken over 99-tag-name).
Returns 401 if the user is not an admin.
User
Manage a user account.
DELETE /api/2.0/users/{username}/
Deletes a user
GET /api/2.0/users/{username}/ Users ===== Manage the user accounts of this
MAAS.
GET /api/2.0/users/
List users.
GET /api/2.0/users/ op=whoami
Returns the currently logged in user.
POST /api/2.0/users/
Create a MAAS user account.
This is not safe: the password is sent in plaintext. Avoid it for production, unless you are confident that you can prevent eavesdroppers from observing the request.
-
param usernameIdentifier-style username for the new user. -
type usernameunicode -
param emailEmail address for the new user. -
type emailunicode -
param passwordPassword for the new user. -
type passwordunicode -
param is\_superuserWhether the new user is to be an administrator. -
type is\_superuserbool ('0' for False, '1' for True)
Returns 400 if any mandatory parameters are missing.
MAAS version
Information about this MAAS instance.
This returns a JSON dictionary with information about this MAAS instance:
{ 'version': '1.8.0', 'subversion': 'alpha10+bzr3750', 'capabilities': ['capability1', 'capability2', ...] }
GET /api/2.0/version/
Version and capabilities of this MAAS instance.
VLAN
Manage VLAN on a fabric.
DELETE /api/2.0/fabrics/{fabric_id}/vlans/{vid}/
Delete VLAN on fabric.
Returns 404 if the fabric or VLAN is not found.
GET /api/2.0/fabrics/{fabric_id}/vlans/{vid}/
Read VLAN on fabric.
Returns 404 if the fabric or VLAN is not found.
PUT /api/2.0/fabrics/{fabric_id}/vlans/{vid}/
Update VLAN.
-
param nameName of the VLAN. -
type nameunicode -
param descriptionDescription of the VLAN. -
type descriptionunicode -
param vidVLAN ID of the VLAN. -
type vidinteger -
param mtuThe MTU to use on the VLAN. -
type mtuinteger
Param dhcp_on Whether or not DHCP should be managed on the VLAN.
-
type dhcp\_onboolean -
param primary\_rackThe primary rack controller managing the VLAN. -
type primary\_racksystem_id -
param secondary\_rackThe secondary rack controller manging the VLAN. -
type secondary\_racksystem_id
Returns 404 if the fabric or VLAN is not found.
VLANs
Manage VLANs on a fabric.
GET /api/2.0/fabrics/{fabric_id}/vlans/
List all VLANs belonging to fabric.
Returns 404 if the fabric is not found.
POST /api/2.0/fabrics/{fabric_id}/vlans/
Create a VLAN.
-
param nameName of the VLAN. -
param descriptionDescription of the VLAN. -
param vidVLAN ID of the VLAN.
Volume group
Manage volume group on a machine.
DELETE /api/2.0/nodes/{system_id}/volume-group/{id}/
Delete volume group on a machine.
Returns 404 if the machine or volume group is not found. Returns 409 if the machine is not Ready.
GET /api/2.0/nodes/{system_id}/volume-group/{id}/
Read volume group on a machine.
Returns 404 if the machine or volume group is not found.
POST /api/2.0/nodes/{system_id}/volume-group/{id}/ op=create_logical_volume
Create a logical volume in the volume group.
-
param nameName of the logical volume. -
param uuid(optional) UUID of the logical volume. -
param sizeSize of the logical volume.
Returns 404 if the machine or volume group is not found. Returns 409 if the machine is not Ready.
POST /api/2.0/nodes/{system_id}/volume-group/{id}/ op=delete_logical_volume
Delete a logical volume in the volume group.
param idID of the logical volume.
Returns 403 if no logical volume with id. Returns 404 if the machine or volume group is not found. Returns 409 if the machine is not Ready.
PUT /api/2.0/nodes/{system_id}/volume-group/{id}/
Read volume group on a machine.
-
param nameName of the volume group. -
param uuidUUID of the volume group. -
param add\_block\_devicesBlock devices to add to the volume group. -
param remove\_block\_devicesBlock devices to remove from the volume group. -
param add\_partitionsPartitions to add to the volume group. -
param remove\_partitionsPartitions to remove from the volume group.
Returns 404 if the machine or volume group is not found. Returns 409 if the machine is not Ready.
Volume groups
Manage volume groups on a machine.
GET /api/2.0/nodes/{system_id}/volume-groups/
List all volume groups belonging to a machine.
Returns 404 if the machine is not found.
POST /api/2.0/nodes/{system_id}/volume-groups/
Create a volume group belonging to machine.
-
param nameName of the volume group. -
param uuid(optional) UUID of the volume group. -
param block\_devicesBlock devices to add to the volume group. -
param partitionsPartitions to add to the volume group.
Returns 404 if the machine is not found. Returns 409 if the machine is not Ready.
Zone
Manage a physical zone.
Any node is in a physical zone, or "zone" for short. The meaning of a physical zone is up to you: it could identify e.g. a server rack, a network, or a data centre. Users can then allocate nodes from specific physical zones, to suit their redundancy or performance requirements.
This functionality is only available to administrators. Other users can view physical zones, but not modify them.
DELETE /api/2.0/zones/{name}/
DELETE request. Delete zone.
Returns 404 if the zone is not found. Returns 204 if the zone is successfully deleted.
GET /api/2.0/zones/{name}/
GET request. Return zone.
Returns 404 if the zone is not found.
PUT /api/2.0/zones/{name}/
PUT request. Update zone.
Returns 404 if the zone is not found.
Zones
Manage physical zones.
GET /api/2.0/zones/
List zones.
Get a listing of all the physical zones.
POST /api/2.0/zones/
Create a new physical zone.
-
param nameIdentifier-style name for the new zone. -
type nameunicode -
param descriptionFree-form description of the new zone. -
type descriptionunicode
Power types
This is the list of the supported power types and their associated power parameters. Note that the list of usable power types for a particular cluster might be a subset of this list if the cluster in question is from an older version of MAAS.
manual (Manual)
Power parameters:
virsh (Virsh (virtual systems))
Power parameters:
- power_address (Power address).
- power_id (Power ID).
- power_pass (Power password (optional)).
vmware (VMWare)
Power parameters:
- power_vm_name (VM Name (if UUID unknown)).
- power_uuid (VM UUID (if known)).
- power_address (VMware hostname).
- power_user (VMware username).
- power_pass (VMware password).
- power_port (VMware API port (optional)).
- power_protocol (VMware API protocol (optional)).
fence_cdu (Sentry Switch CDU)
Power parameters:
- power_address (Power address).
- power_id (Power ID).
- power_user (Power user).
- power_pass (Power password).
ipmi (IPMI)
Power parameters:
- power_driver (Power driver). Choices: 'LAN' (LAN [IPMI 1.5]), 'LAN_2_0' (LAN_2_0 [IPMI 2.0]) Default: 'LAN_2_0'.
- power_address (IP address).
- power_user (Power user).
- power_pass (Power password).
- mac_address (Power MAC).
moonshot (HP Moonshot - iLO4 (IPMI))
Power parameters:
- power_address (Power address).
- power_user (Power user).
- power_pass (Power password).
- power_hwaddress (Power hardware address).
sm15k (SeaMicro 15000)
Power parameters:
- system_id (System ID).
- power_address (Power address).
- power_user (Power user).
- power_pass (Power password).
- power_control (Power control type). Choices: 'ipmi' (IPMI), 'restapi' (REST API v0.9), 'restapi2' (REST API v2.0) Default: 'ipmi'.
amt (Intel AMT)
Power parameters:
- power_pass (Power password).
- power_address (Power address).
dli (Digital Loggers, Inc. PDU)
Power parameters:
- outlet_id (Outlet ID).
- power_address (Power address).
- power_user (Power user).
- power_pass (Power password).
wedge (Facebook's Wedge)
Power parameters:
- power_address (IP address).
- power_user (Power user).
- power_pass (Power password).
ucsm (Cisco UCS Manager)
Power parameters:
- uuid (Server UUID).
- power_address (URL for XML API).
- power_user (API user).
- power_pass (API password).
mscm (HP Moonshot - iLO Chassis Manager)
Power parameters:
- power_address (IP for MSCM CLI API).
- power_user (MSCM CLI API user).
- power_pass (MSCM CLI API password).
- node_id (Node ID - Must adhere to cXnY format (X=cartridge number, Y=node number).).
msftocs (Microsoft OCS - Chassis Manager)
Power parameters:
- power_address (Power address).
- power_port (Power port).
- power_user (Power user).
- power_pass (Power password).
- blade_id (Blade ID (Typically 1-24)).
apc (American Power Conversion (APC) PDU)
Power parameters:
- power_address (IP for APC PDU).
- node_outlet (APC PDU node outlet number (1-16)).
- power_on_delay (Power ON outlet delay (seconds)). Default: '5'.
hmc (IBM Hardware Management Console (HMC))
Power parameters:
- power_address (IP for HMC).
- power_user (HMC username).
- power_pass (HMC password).
- server_name (HMC Managed System server name).
- lpar (HMC logical partition).
nova (OpenStack Nova)
Power parameters:
- nova_id (Host UUID).
- os_tenantname (Tenant name).
- os_username (Username).
- os_password (Password).
- os_authurl (Auth URL).