cloudstack-python-client icon indicating copy to clipboard operation
cloudstack-python-client copied to clipboard

Python client library for the CloudStack API.

Results 7 cloudstack-python-client issues
Sort by recently updated
recently updated
newest added

I added createTags, listTags, and deleteTags.

This is happening when I was trying to do 'addIpToNic' request. The secondary IP was successfully added but it threw an exception: ``` >>> cs_client.request('addIpToNic', args = {'nicid':'56ff09e3-17e2-48da-b340-6f7258d32bff','ipaddress':'192.168.0.200'} ... )...

Needed this (new) function for a project and have added it to the bindings. Hope you find it useful enough to include it in the main tree

Was running into issues with returns of '431' return code with no data from the cloudstack API. Logic will return the API error.

Issue in BaseClient.py, lines 48-62 https://github.com/jasonhancock/cloudstack-python-client/blob/master/CloudStack/BaseClient.py#L48-62 ### Example listDomains returns a JSON structure like this: ``` json { "listdomainsresponse": { "count": 42, "domain": [ { "id": "990e3623-e45c-4bb9-9de8-d584d1bbbf15", "name": "ROOT", "level":...