{ "info": { "author": "Matthew Garrett", "author_email": "matgarre@cisco.com", "bugtrack_url": null, "classifiers": [ "Operating System :: OS Independent", "Programming Language :: Python :: 3" ], "description": "# intersight-rest\n\nCisco has released their new Intersight platform for managing UCS Server and Hyperflex Hyperconverged infrastructure from a SaaS based interface. With high security standards, forming and signing the RESTful API calls to Intersight can be a challenge, so this package was written to do all of that work for you. All you need to provide is your Public/Private keys generated from the Intersight interface, as well at the API endpoint you'd like to target. Optionally you can add in query parameters for GET requests, and a body for POST/PATCH opterations. \n\n### **Overview:**\n```py\nintersight_call(**options);\n```\n\n| Option | Format | Value |\n| ------ | ------ | ------ |\n| http_method | <String> | HTTP Verb [ GET \\| POST \\| PATCH \\| DELETE ] |\n| resource_path | <String> | Resource Path from https://intersight.com/apidocs |\n| query_params | <Dict> | Query Parameters from Resource Path GET |\n| body | <Dict> | Body Parameters from Resource Path POST|\n| moid | <String> | MOID of Object to be Modified |\n| name | <String> | Name of Object to be Modified (See Notes) |\n| proxy | <String> | Proxy Server Address [ proto://\\
:\\