{ "info": { "author": "UFCG", "author_email": "ricardo@lsd.ufcg.edu.br", "bugtrack_url": null, "classifiers": [ "Environment :: OpenStack", "Intended Audience :: Information Technology", "Intended Audience :: System Administrators", "License :: OSI Approved :: Apache Software License", "Operating System :: POSIX :: Linux", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4" ], "description": "[![PyPI version](https://badge.fury.io/py/ironic-oneview-cli.svg)](https://badge.fury.io/py/ironic-oneview-cli)\n[![Build Status](https://travis-ci.org/HewlettPackard/ironic-oneview-cli.svg?branch=master)](https://travis-ci.org/HewlettPackard/ironic-oneview-cli)\n[![Coverage Status](https://codecov.io/gh/HewlettPackard/ironic-oneview-cli/branch/master/graphs/badge.svg)](https://codecov.io/gh/HewlettPackard/ironic-oneview-cli)\n\nIronic-OneView CLI\n==================\n\nOverview\n--------\n\nIronic-OneView CLI is a command line interface tool for easing the use of the OneView Drivers for Ironic. It allows the user to easily manage:\n\n- Ironic nodes compatible with OneView Server Hardware objects;\n- Nova flavors matching available Ironic nodes that use OneView drivers;\n- Ironic ports mapping Server Hardware ports.\n\n> **note**\n>\n> This tool works with OpenStack Identity API v2.0 and v3.\n\n> **note**\n>\n> This tool works with OpenStack Ironic API microversion '1.31'.\n\n* * * * *\n\nFor more information on *HPE OneView* entities, see [here](https://www.hpe.com/us/en/integrated-systems/software.html).\n\nInstallation\n------------\n\nTo install Ironic-OneView CLI from PyPI, use the following command:\n\n $ pip install ironic-oneview-cli\n\n> **note**\n>\n> Ocata/Newton users, we recommend using version 0.6.0\n\nConfiguration\n-------------\n\nIronic-Oneview CLI uses credentials loaded into environment variables by the *OpenStack RC* file (downloaded from OpenStack Horizon), and the Ironic OneView CLI RC file, which sample file can be generated using the following `genrc` subcommand:\n\n $ ironic-oneview genrc > ironic-oneviewrc.sh\n\nOnce the `ironic-oneviewrc.sh` is populated with OneView credentials using any text editor, it can be loaded by running the following:\n\n $ source ironic-oneviewrc.sh\n\nCredentials can be passed alternatively as command line parameters. A help message informing of which parameters should be used is shown by running the command the following:\n\n $ ironic-oneview help\n\nFor more information how to obtain and load the *OpenStack RC* file, see [here](http://docs.openstack.org/user-guide/common/cli_set_environment_variables_using_openstack_rc.html).\n\nUsage\n-----\n\nOnce the necessary environment variables and command line parameters are set, Ironic OneView CLI is ready to be used. The current version of Ironic-OneView CLI provides the following interactive subcommands:\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n

node-create

\n
Creates Ironic nodes based on available HPE OneView Server Hardware.
\n

flavor-create

\n
Creates Nova flavors based on available Ironic nodes.
\n

port-create

\n
Creates a Ironic Port based on available Ironic nodes.
\n

server-profile-template-list

\n
Lists HPE OneView Server Profile Templates.
\n

server-hardware-list

\n
Lists HPE OneView Server Hardware.
\n

node-delete

\n
Deletes multiple Ironic nodes.
\n

genrc

\n
Generates a sample Ironic-OneView CLI RC file.
\n

help

\n
Displays help about this program or one of its subcommands.
\n\nAny ironic-oneview-cli subcommand can be run in debugging mode with the --debug parameter, as in the following command:\n\n $ ironic-oneview --debug node-create\n\nFeatures\n--------\n\n### Node creation\n\nTo create Ironic nodes based on available HPE OneView `Server Hardware` objects, use the following command:\n\n $ ironic-oneview node-create\n\nThe tool retrieves all server profile templates previously created in OneView. It builds a list with the Name, Enclosure Group Name and Server Hardware Type Name (as shown in the table), and assigns an id that should be used by the administrator to select which `Server Profile Template` should be used for node creation:\n\n +----+------------------------+----------------------+---------------------------+\n | Id | Name | Enclosure Group Name | Server Hardware Type Name |\n +----+------------------------+----------------------+---------------------------+\n | 1 | template-dcs-virt-enc3 | virt-enclosure-group | BL460c Gen8 3 |\n | 2 | template-dcs-virt-enc4 | virt-enclosure-group | BL660c Gen9 1 |\n +----+------------------------+----------------------+---------------------------+\n\nOnce the user has chosen a valid `Server Profile Template`, the tool lists the available `Server Hardware` matching it as shown in the following table:\n\n +----+-----------------+------+-----------+----------+----------------------+---------------------------+\n | Id | Name | CPUs | Memory MB | Local GB | Enclosure Group Name | Server Hardware Type Name |\n +----+-----------------+------+-----------+----------+----------------------+---------------------------+\n | 1 | VIRT-enl, bay 5 | 8 | 32768 | 120 | virt-enclosure-group | BL460c Gen8 3 |\n | 2 | VIRT-enl, bay 8 | 8 | 32768 | 120 | virt-enclosure-group | BL460c Gen8 3 |\n +----+-----------------+------+-----------+----------+----------------------+---------------------------+\n\nNotice that multiple Ironic nodes can be created at once. That can be achieved, by selecting multiple `Server Hardware` IDs separated by blank spaces. The created Ironic nodes will be in the *enroll* provisioning state.\n\nThis command also creates an Ironic port to be used by the node, the port is created in the same way as the port-create command (see below) with the parameter `--mac` also optional.\n\n> **note**\n>\n> If *os\\_inspection\\_enabled = True*, the created node will not have the hardware properties (*cpus*, *memory\\_mb*, *local\\_gb*, *cpu\\_arch*) set in the node properties. This will be discovered during the Ironic Hardware Inspection.\n\n* * * * *\n\nAlternatively, the `Server Profile Template` and `Server Hardware` can be specified using the parameters `--server-profile-template` and `--server-hardware-uuid` respectively, as shown in the following command:\n\n $ ironic-oneview node-create [--server-profile-template | -t ] [--server-hardware-uuid | -s ]\n\nA collection of nodes sharing the same `Server Profile Template` can be set up in a batch by using the following command:\n\n $ ironic-oneview node-create [--number | -n ]\n\n> **note**\n>\n> You can use both arguments at once.\n\nIn order to enable *Networking OneView ML2 Driver*, the following command to create a node with this information set to its driver\\_info field:\n\n $ ironic-oneview node-create --use-oneview-ml2-driver\n\nFor more information on *Networking OneView ML2 Driver*, see [here](https://github.com/HewlettPackard/ironic-driver-oneview/tree/master/networking-oneview).\n\nWith the Driver composition reform, the default behavior is to create a node using a hardware type. With this feature, specific hardware type compatible interfaces can be dynamically set to the node, such as: `OpenStack Power Interface`, `OpenStack Management Interface`, `OpenStack Inspect Interface`, `OpenStack Deploy Interface`. Use the following command to create a node with this hardware type and interfaces:\n\n $ ironic-oneview node-create --os-driver --os-power-interface \n --os-management-interface --os-inspect-interface \n --os-deploy-interface \n\nIf you want to create the node using the classic driver, use the following command:\n\n $ ironic-oneview node-create --classic\n\nFor more information on the *Driver composition reform*, see [here](https://specs.openstack.org/openstack/ironic-specs/specs/approved/driver-composition-reform.html).\n\n* * * * *\n\nTo list all nodes in Ironic, use the following command:\n\n $ openstack baremetal node list\n\nFor more information about the created Ironic node, use the following command:\n\n $ openstack baremetal node show \n\n### Flavor creation\n\nIn order to launch bare metal instances, the user needs to specify a flavor compatible with an available Ironic Node, which maps directly to an available `Server Hardware`. The following interactive command can be used to create Nova flavors:\n\n $ ironic-oneview flavor-create\n\nThe tool will prompt with a list of possible new flavors, according to the configuration of enrolled Ironic nodes:\n\n +----+------+---------+-----------+-------------------------------------+----------------------+-------------------------+\n | Id | CPUs | Disk GB | Memory MB | Server Profile Template | Server Hardware Type | Enclosure Group Name |\n +----+------+---------+-----------+-------------------------------------+----------------------+-------------------------+\n | 1 | 8 | 120 | 8192 | second-virt-server-profile-template | BL460c Gen9 1 | virtual-enclosure-group |\n +----+------+---------+-----------+-------------------------------------+----------------------+-------------------------+\n\nAfter choosing a valid configuration, the user can optionally specify a name for the new flavor. If left blank, a default name will be used. Additional information from Server Hardware Type, Enclosure Group and Server Profile Template is automatically added by default to the flavor metadata. Use Horizon to delete the Enclosure Group info, for example, so that a flavor matches Server Hardware in all available enclosures.\n\nAlternatively, you can set a Ironic `node`, and optionally flavor `name` through the command:\n\n $ ironic-oneview flavor-create [--node ] [--name ]\n\n* * * * *\n\nTo list all flavors in Nova, use the command:\n\n $ openstack flavor list\n\nFor more information about the created Nova flavor, use the command:\n\n $ openstack flavor show \n\n### Port creation\n\nCreates a port for an existing Ironic node. The following interactive command can be used to create Ironic ports:\n\n $ ironic-oneview port-create [--mac | -m ] \n\nIn the case when the user does not specify a port, the result will be an Ironic port for the first `-a` available port at the `Server Hardware` used by ironic-node.\n\nTo list all ports in Ironic, use the command:\n\n $ openstack baremetal port list\n\nFor more information about the created Ironic port, use the following command:\n\n $ openstack baremetal port show \n\n### Server Profile Template List\n\nThe tool offers a command to list `Server Profile Templates`. For that use the following command:\n\n $ ironic-oneview server-profile-template-list\n\n### Server Hardware List\n\nThe tool offers a command to list `Server Hardware` compatible with a specific `Server Profile Template`. For that use the following command:\n\n $ ironic-oneview server-hardware-list\n\n### Node delete\n\nThe tool also offers the option to delete a specific number of Ironic nodes. For that use the following command:\n\n $ ironic-oneview node-delete --number \n\nTo delete all Ironic nodes, use the following command:\n\n $ ironic-oneview node-delete --all\n\n### Contributing\n\nFork it, branch it, change it, commit it, and pull-request it. We are passionate about improving this project, and are glad to accept help to make it better. However, keep the following in mind: We reserve the right to reject changes that we feel do not fit the scope of this project. For feature additions, please open an issue to discuss your ideas before doing the work.\n\n### Feature Requests\n\nIf you have a need not being met by the current implementation, please let us know (via a new issue). This feedback is crucial for us to deliver a useful product. Do not assume that we have already thought of everything, because we assure you that is not the case.\n\n### Testing\n\nWe have already packaged everything you need to do to verify if the code is passing the tests. The tox script wraps the unit tests execution against Python 2.7, 3.5 and pep8 validations. Run the following command:\n\n $ tox\n\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/HewlettPackard/ironic-oneview-cli", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "ironic-oneview-cli", "package_url": "https://pypi.org/project/ironic-oneview-cli/", "platform": "", "project_url": "https://pypi.org/project/ironic-oneview-cli/", "project_urls": { "Homepage": "https://github.com/HewlettPackard/ironic-oneview-cli" }, "release_url": "https://pypi.org/project/ironic-oneview-cli/1.2.1/", "requires_dist": null, "requires_python": "", "summary": "Command Line Interface to ease the use of OneView Driver for openstack/ironic", "version": "1.2.1" }, "last_serial": 3628633, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "459b9efdede764e4b55aca81c9521c39", "sha256": "b1f2713d699841d5070f2d003215fa827c33f720062fa4a5acc091a03b5cc9d1" }, "downloads": -1, "filename": "ironic-oneview-cli-0.0.1.tar.gz", "has_sig": false, "md5_digest": "459b9efdede764e4b55aca81c9521c39", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29430, "upload_time": "2015-11-12T14:32:40", "url": "https://files.pythonhosted.org/packages/6f/8c/ad22602065b9c641400696447c0379d9572c1823a83c9b7ca3e04a5002e1/ironic-oneview-cli-0.0.1.tar.gz" } ], "0.0.1.dev28": [ { "comment_text": "", "digests": { "md5": "387f165d8e8b077e53711badb654d484", "sha256": "7a4de300d5592682616a60380c0bfc483e841313fba1e95fd46eef7e5cc99856" }, "downloads": -1, "filename": "ironic-oneview-cli-0.0.1.dev28.tar.gz", "has_sig": false, "md5_digest": "387f165d8e8b077e53711badb654d484", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26937, "upload_time": "2015-11-05T20:26:44", "url": "https://files.pythonhosted.org/packages/c8/09/11167d27920dcdc7467b723b0b4a285d15fc8614a098137b8b36cd60be97/ironic-oneview-cli-0.0.1.dev28.tar.gz" } ], "0.0.1.dev29": [ { "comment_text": "", "digests": { "md5": "5bf977947bd650573e03129a27744ac5", "sha256": "16441e54c2f0ce766a08e5e37b3c89957428d68b64f7a21bc40caa7a3557d59c" }, "downloads": -1, "filename": "ironic-oneview-cli-0.0.1.dev29.tar.gz", "has_sig": false, "md5_digest": "5bf977947bd650573e03129a27744ac5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26970, "upload_time": "2015-11-05T22:37:25", "url": "https://files.pythonhosted.org/packages/76/c4/aaaba6dea67488bf7ab0f26633afd8374e013181308d0b5df991f5338663/ironic-oneview-cli-0.0.1.dev29.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "7c8cb6db21e213f6ba13e56982ffeb88", "sha256": "b6defa3917f197d3f62a7b49964367151e163b07277e11d4c1ec729b3cc6cdb9" }, "downloads": -1, "filename": "ironic-oneview-cli-0.0.2.tar.gz", "has_sig": false, "md5_digest": "7c8cb6db21e213f6ba13e56982ffeb88", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29941, "upload_time": "2015-12-16T18:03:02", "url": "https://files.pythonhosted.org/packages/4e/bf/77a0ccb15a70b26024eedbafc27e5c5d7393035d7e60b340cc75b38802eb/ironic-oneview-cli-0.0.2.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "97fd919ca194764e532def4d5e62465a", "sha256": "2755327f422dc6f2cc1047aa47a732c73a8c75e144e90e34d3227714569fc210" }, "downloads": -1, "filename": "ironic-oneview-cli-0.1.0.tar.gz", "has_sig": false, "md5_digest": "97fd919ca194764e532def4d5e62465a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33793, "upload_time": "2016-04-13T15:25:51", "url": "https://files.pythonhosted.org/packages/c6/63/7e09296aceaa9ab5679131a81833687d5667b35c891fa71b5a2fd453667a/ironic-oneview-cli-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "0efd26e71db7d39436164a79c3264026", "sha256": "c6fc6c81d0b05aa368cba57838cd14f45df77c8b90d6bd4912c815ac357c934f" }, "downloads": -1, "filename": "ironic-oneview-cli-0.1.1.tar.gz", "has_sig": false, "md5_digest": "0efd26e71db7d39436164a79c3264026", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34033, "upload_time": "2016-05-25T14:57:57", "url": "https://files.pythonhosted.org/packages/1f/9a/ad41e066a97bf985fb1a0d34587d05fb90878ccfae401a8f90762845bfb7/ironic-oneview-cli-0.1.1.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "2cc85789bfbacb7e5e2107d60857f17c", "sha256": "895e4bb8a62e65a606ace8df454194e7ec9e6cc255d24c01945a32332e457ef0" }, "downloads": -1, "filename": "ironic-oneview-cli-0.2.0.tar.gz", "has_sig": false, "md5_digest": "2cc85789bfbacb7e5e2107d60857f17c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28801, "upload_time": "2016-06-09T22:47:52", "url": "https://files.pythonhosted.org/packages/87/c8/12614fd47fafbc28eb69eae336994ae70b4ad30737dfab46280512c503ed/ironic-oneview-cli-0.2.0.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "9b5dcd49c544cbf345e07e1bb1a40477", "sha256": "1db7aebd31efafe2b36b00d79439fdf0a7c35d93605bfb432581d63605db8598" }, "downloads": -1, "filename": "ironic-oneview-cli-0.3.0.tar.gz", "has_sig": false, "md5_digest": "9b5dcd49c544cbf345e07e1bb1a40477", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33268, "upload_time": "2016-07-29T17:59:51", "url": "https://files.pythonhosted.org/packages/4c/b8/dcab912de163575f0b9ebc44a9ad3d6ca5aa300e67f5101189eba03574df/ironic-oneview-cli-0.3.0.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "97003ee0cc7eef232c2f37b961640257", "sha256": "f17583906652a17fc5086f37dd96a5f1e0129f2a8cfc9a17853010a833687787" }, "downloads": -1, "filename": "ironic-oneview-cli-0.4.0.tar.gz", "has_sig": false, "md5_digest": "97003ee0cc7eef232c2f37b961640257", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33730, "upload_time": "2016-09-20T22:13:14", "url": "https://files.pythonhosted.org/packages/00/dd/fc83f8bd6473eac7ad400388dad2632d4ba8176a54c58ecd9a0dbd315c7f/ironic-oneview-cli-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "34d328e1e2110010fe4fc42ae4d46840", "sha256": "1f0db27c55db41055dfc494b148060d291e86bacf3bfe5049f08b8425b38a3cf" }, "downloads": -1, "filename": "ironic-oneview-cli-0.4.1.tar.gz", "has_sig": false, "md5_digest": "34d328e1e2110010fe4fc42ae4d46840", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34240, "upload_time": "2016-11-09T20:18:41", "url": "https://files.pythonhosted.org/packages/6b/96/129102da8b62ff3a4c08bea7ab5e6583428fc2fb921377fceb4f7e833544/ironic-oneview-cli-0.4.1.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "fe8929d4cb8162127b1a03e4ffa94ad6", "sha256": "73cdfd5f6bd33e8d23f5032a651519e040b3dd38bcae41e9796619bdc34d1b10" }, "downloads": -1, "filename": "ironic-oneview-cli-0.5.0.tar.gz", "has_sig": false, "md5_digest": "fe8929d4cb8162127b1a03e4ffa94ad6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34826, "upload_time": "2016-11-30T20:33:44", "url": "https://files.pythonhosted.org/packages/f2/69/065ee54f41c5be51f30adffce7b61fbfb3617edba5ce9e313f95b9bb5f97/ironic-oneview-cli-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "13f4755b4a08e6a7a724d2dbce6050f8", "sha256": "1394db26fee460276aee20d6e76cdb9b1a1fc2a775daf0e3ebe14a17b5f25c5b" }, "downloads": -1, "filename": "ironic-oneview-cli-0.5.1.tar.gz", "has_sig": false, "md5_digest": "13f4755b4a08e6a7a724d2dbce6050f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34747, "upload_time": "2016-12-15T14:19:13", "url": "https://files.pythonhosted.org/packages/21/9d/805599303048f10bdcc1046e5f90ed36a8d5c2288c2c95a0c205d93f26ce/ironic-oneview-cli-0.5.1.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "d3698d3cd957e6bdfbde89355a9aeed9", "sha256": "ceebaee2c909066cab03dd9abf93f1efe7bc71c1ed5e25edb4187ca00a871b5a" }, "downloads": -1, "filename": "ironic-oneview-cli-0.6.0.tar.gz", "has_sig": false, "md5_digest": "d3698d3cd957e6bdfbde89355a9aeed9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34490, "upload_time": "2017-03-23T19:08:33", "url": "https://files.pythonhosted.org/packages/f0/db/22f0771851f17c10ec71d2275e8e9a68066531138c83910ba1733f8d0a4d/ironic-oneview-cli-0.6.0.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "330ec401c04ab217613423c02c526c31", "sha256": "7d7d4a2ab73308008d2e81abb36146511f42c2b8100616deac6959fd71dbe1f9" }, "downloads": -1, "filename": "ironic-oneview-cli-1.0.0.tar.gz", "has_sig": false, "md5_digest": "330ec401c04ab217613423c02c526c31", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30183, "upload_time": "2017-05-29T13:57:19", "url": "https://files.pythonhosted.org/packages/bb/97/981ee5f4950cd6cb3f48d65e16de63129504327e2bd3cfdaee869197e1d7/ironic-oneview-cli-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "cd1bc2d2ead8abb02715ba81a5cdc1b4", "sha256": "5523688eddeec7ca81be036c5966287bb8fa2f38cdb93f005c663e7d3c3fd9f0" }, "downloads": -1, "filename": "ironic-oneview-cli-1.1.0.tar.gz", "has_sig": false, "md5_digest": "cd1bc2d2ead8abb02715ba81a5cdc1b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36173, "upload_time": "2017-08-01T18:24:56", "url": "https://files.pythonhosted.org/packages/d0/97/d3810ef96e95be7c78469c386f3ca79e1d6b256d2fcc9b2563121bc16c7f/ironic-oneview-cli-1.1.0.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "58a9195ac62177b036850c8cca24f3c3", "sha256": "35eb7655a6c72d385d7b723c814add97cfd13ef74db4f3c0115d563f92e4aaba" }, "downloads": -1, "filename": "ironic-oneview-cli-1.2.0.tar.gz", "has_sig": false, "md5_digest": "58a9195ac62177b036850c8cca24f3c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47169, "upload_time": "2018-02-02T14:30:06", "url": "https://files.pythonhosted.org/packages/9e/f9/9578b5f863ab02d6505de5a03d37760ff7958a987f709a698bf27cd4e87f/ironic-oneview-cli-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "88e46445abce7194e9a882c17095f23d", "sha256": "56c19b913f33bc608f317d1bb7f0976d6a30661e2aeb6d938b842d640da50826" }, "downloads": -1, "filename": "ironic-oneview-cli-1.2.1.tar.gz", "has_sig": false, "md5_digest": "88e46445abce7194e9a882c17095f23d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47059, "upload_time": "2018-02-28T20:08:53", "url": "https://files.pythonhosted.org/packages/04/a9/1459ff778beb42f8a93f220ec8c5bb35c61d01feacd998aa3c5a1d8970df/ironic-oneview-cli-1.2.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "88e46445abce7194e9a882c17095f23d", "sha256": "56c19b913f33bc608f317d1bb7f0976d6a30661e2aeb6d938b842d640da50826" }, "downloads": -1, "filename": "ironic-oneview-cli-1.2.1.tar.gz", "has_sig": false, "md5_digest": "88e46445abce7194e9a882c17095f23d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47059, "upload_time": "2018-02-28T20:08:53", "url": "https://files.pythonhosted.org/packages/04/a9/1459ff778beb42f8a93f220ec8c5bb35c61d01feacd998aa3c5a1d8970df/ironic-oneview-cli-1.2.1.tar.gz" } ] }