diff --git a/ironic_ui/api/ironic.py b/ironic_ui/api/ironic.py index 590c4494..8763072f 100755 --- a/ironic_ui/api/ironic.py +++ b/ironic_ui/api/ironic.py @@ -195,6 +195,8 @@ def driver_list(request): :param request: HTTP request. :return: A list of drivers. + + http://docs.openstack.org/developer/python-ironicclient/api/ironicclient.v1.driver.html#ironicclient.v1.driver.DriverManager.list """ return ironicclient(request).driver.list() @@ -205,6 +207,8 @@ def driver_properties(request, driver_name): :param request: HTTP request :param driver_name: Name of the driver :return: Property list + + http://docs.openstack.org/developer/python-ironicclient/api/ironicclient.v1.driver.html#ironicclient.v1.driver.DriverManager.properties """ return ironicclient(request).driver.properties(driver_name) @@ -215,6 +219,8 @@ def port_create(request, params): :param request: HTTP request :param params: Port creation parameters :return: Port + + http://docs.openstack.org/developer/python-ironicclient/api/ironicclient.v1.port.html#ironicclient.v1.port.PortManager.create """ port_manager = ironicclient(request).port return port_manager.create(**params) @@ -226,6 +232,8 @@ def port_delete(request, port_uuid): :param request: HTTP request :param port_uuid: Port uuid :return: Port + + http://docs.openstack.org/developer/python-ironicclient/api/ironicclient.v1.port.html#ironicclient.v1.port.PortManager.delete """ return ironicclient(request).port.delete(port_uuid) diff --git a/ironic_ui/static/dashboard/admin/ironic/ironic.service.js b/ironic_ui/static/dashboard/admin/ironic/ironic.service.js index 872c7e5e..ea04495a 100755 --- a/ironic_ui/static/dashboard/admin/ironic/ironic.service.js +++ b/ironic_ui/static/dashboard/admin/ironic/ironic.service.js @@ -63,10 +63,10 @@ /** * @description Retrieve a list of nodes - * http://docs.openstack.org/developer/ironic/webapi/v1.html#get--v1-nodes + * http://developer.openstack.org/api-ref/baremetal/? + * expanded=create-node-detail#list-nodes-detailed * * @return {promise} Node collection in JSON - * http://docs.openstack.org/developer/ironic/webapi/v1.html#NodeCollection */ function getNodes() { return apiService.get('/api/ironic/nodes/') @@ -89,8 +89,8 @@ /** * @description Retrieve information about the given node. * - * http://docs.openstack.org/developer/ironic/webapi/v1.html#get--v1- - * nodes-(node_ident) + * http://developer.openstack.org/api-ref/baremetal/? + * expanded=create-node-detail#list-nodes-detailed * * @param {string} uuid – UUID or logical name of a node. * @return {promise} Node @@ -114,7 +114,7 @@ /** * @description Retrieve a list of ports associated with a node. * - * http://docs.openstack.org/developer/ironic/webapi/v1.html#get--v1-ports + * http://developer.openstack.org/api-ref/baremetal/#list-detailed-ports * * @param {string} uuid – UUID or logical name of a node. * @return {promise} List of ports @@ -139,8 +139,7 @@ /** * @description Put the node in maintenance mode. * - * http://docs.openstack.org/developer/ironic/webapi/v1.html# - * put--v1-nodes-(node_ident)-maintenance + * http://developer.openstack.org/api-ref/baremetal/#set-maintenance-flag * * @param {string} uuid – UUID or logical name of a node. * @param {string} reason – Reason for why node is being put into @@ -166,8 +165,7 @@ /** * @description Remove the node from maintenance mode. * - * http://docs.openstack.org/developer/ironic/webapi/v1.html# - * delete--v1-nodes-(node_ident)-maintenance + * http://developer.openstack.org/api-ref/baremetal/#clear-maintenance-flag * * @param {string} uuid – UUID or logical name of a node. * @return {promise} Promise @@ -188,8 +186,7 @@ /** * @description Set the power state of the node. * - * http://docs.openstack.org/developer/ironic/webapi/v1.html# - * put--v1-nodes-(node_ident)-states-power + * http://developer.openstack.org/api-ref/baremetal/#change-node-power-state * * @param {string} uuid – UUID or logical name of a node. * @return {promise} Promise @@ -216,8 +213,7 @@ /** * @description Set the power state of the node. * - * http://docs.openstack.org/developer/ironic/webapi/v1.html# - * put--v1-nodes-(node_ident)-states-power + * http://developer.openstack.org/api-ref/baremetal/#change-node-power-state * * @param {string} uuid – UUID or logical name of a node. * @return {promise} Promise @@ -244,8 +240,7 @@ /** * @description Set the target provision state of the node. * - * http://docs.openstack.org/developer/ironic/webapi/v1.html# - * put--v1-nodes-(node_ident)-states-provision + * http://developer.openstack.org/api-ref/baremetal/#change-node-provision-state * * @param {string} uuid – UUID of a node. * @param {string} verb – Provisioning verb used to move node to desired @@ -276,7 +271,7 @@ /** * @description Create an Ironic node * - * http://docs.openstack.org/developer/ironic/webapi/v1.html#post--v1-nodes + * http://developer.openstack.org/api-ref/baremetal/#create-node * * @param {object} params – Object containing parameters that define * the node to be created @@ -299,8 +294,7 @@ /** * @description Delete the specified node from inventory * - * http://docs.openstack.org/developer/ironic/webapi/v1.html# - * delete--v1-nodes + * http://developer.openstack.org/api-ref/baremetal/#delete-node * * @param {string} nodeIdent – UUID or logical name of a node. * @return {promise} Promise @@ -324,8 +318,7 @@ /** * @description Update the definition of a specified node. * - * http://docs.openstack.org/developer/ironic/webapi/v1.html# - * patch--v1-nodes-(node_ident) + * http://developer.openstack.org/api-ref/baremetal/#update-node * * @param {string} uuid – UUID of a node. * @param {object[]} patch – Sequence of update operations @@ -353,11 +346,11 @@ /** * @description Validate the specified node * - * http://docs.openstack.org/developer/ironic/webapi/v1.html# - * validate--v1-nodes + * http://developer.openstack.org/api-ref/baremetal/#validate-node * * @param {string} nodeId – UUID or logical name of a node. - * @return {promise} Promise + * @return {promise} Promise. success: list of interface validation + * records, error: failure response */ function validateNode(nodeId) { return apiService.get('/api/ironic/nodes/' + nodeId + '/validate', @@ -374,10 +367,9 @@ /** * @description Retrieve the list of Ironic drivers * - * http://docs.openstack.org/developer/ironic/webapi/v1.html#get--v1-drivers + * http://developer.openstack.org/api-ref/baremetal/#list-drivers * * @return {promise} Driver collection in JSON - * http://docs.openstack.org/developer/ironic/webapi/v1.html#DriverList */ function getDrivers() { return apiService.get('/api/ironic/drivers/') @@ -394,8 +386,7 @@ /** * @description Retrieve properities of a specified driver * - * http://docs.openstack.org/developer/ironic/webapi/v1.html# - * get--v1-drivers-properties + * http://developer.openstack.org/api-ref/baremetal/#show-driver-properties * * @param {string} driverName - Driver name * @returns {promise} Property list @@ -416,6 +407,8 @@ /** * @description Create a network port * + * http://developer.openstack.org/api-ref/baremetal/#create-port + * * @param {object} port – Object containing parameters that define * the port to be created * @return {promise} Promise @@ -441,6 +434,8 @@ /** * @description Delete a network port * + * http://developer.openstack.org/api-ref/baremetal/#delete-port + * * @param {string} portUuid – UUID of the port to be deleted * @return {promise} Promise */