Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cloudstack: handle unicode API results in has_changed (#16601) | René Moser | 2016-07-06 | 1 | -5/+13 |
| | | | | | | * cloudstack: handle unicode API results in has_changed * cloudstack: add more case sensitve keys | ||||
* | cloudstack: simplify tag handling (#16188) | René Moser | 2016-06-13 | 1 | -15/+3 |
| | | | Fixes tag support in projects. | ||||
* | cloudstack: add common network code | Rene Moser | 2016-05-24 | 1 | -0/+27 |
| | | | | Also used for VPC support. | ||||
* | cloudstack: add VPC support | Rene Moser | 2016-05-23 | 1 | -0/+27 |
| | |||||
* | cloudstack: fix bug, api_secret always None | Rene Moser | 2016-03-31 | 1 | -1/+1 |
| | | | In case if api args are used, api_secret is None in every cloudstack module. | ||||
* | cloudstack: add CS_HYPERVISORS constant | Rene Moser | 2016-03-01 | 1 | -0/+12 |
| | |||||
* | cloudstack: fix case insensitivity | Rene Moser | 2016-01-10 | 1 | -11/+13 |
| | | | | | cloudstack: fix has_change reports changed for case insensitivity values | ||||
* | cloudstack: change order of tags handling, fixes update of tag value does ↵ | Rene Moser | 2015-11-08 | 1 | -1/+1 |
| | | | | not work | ||||
* | cloudstack: use jop polling in tag handling, fixes outdated tags returned. | Rene Moser | 2015-11-08 | 1 | -2/+3 |
| | | | In some cases the async job did not finish fast enough, causing returning an unexpeded result. | ||||
* | Add imports for stdlib modules that are used. | Toshio Kuratomi | 2015-11-02 | 1 | -0/+1 |
| | | | | This is cleanup that will aid us when we get ziploader implemented for 2.1 | ||||
* | cloudstack: clean up unneeded ";" | Rene Moser | 2015-11-01 | 1 | -2/+2 |
| | |||||
* | Remove mutable default arguments. | gduke | 2015-10-20 | 1 | -1/+3 |
| | |||||
* | cloudstack: make tags handling idempotence | Rene Moser | 2015-09-22 | 1 | -38/+37 |
| | | | Credits to @jeffersongirao, who provided the patch. | ||||
* | cloudstack: add returns_to_int return handling into utils | Rene Moser | 2015-09-22 | 1 | -0/+7 |
| | | | It is not uncommon that the API returns string for int values e.g. ports in listFirewallRules or listPortForwardings, | ||||
* | cloudstack: common argument_spec and requried_together to utils | Rene Moser | 2015-09-22 | 1 | -0/+12 |
| | |||||
* | cloudstack: implement general api_region support, update docs | Rene Moser | 2015-08-25 | 1 | -1/+2 |
| | |||||
* | cloudstack: rename returns for consistency | Rene Moser | 2015-08-19 | 1 | -2/+2 |
| | |||||
* | cloudstack: add more common returns | Rene Moser | 2015-08-17 | 1 | -8/+11 |
| | |||||
* | cloudstack: refactor get_result() | Rene Moser | 2015-08-12 | 1 | -11/+31 |
| | | | | | | | * A commen dict of keys has been defined, which we look in results returned from the API. * self.returns dict can be use in subclass to extend this dict. * Optionally the key name can be replaced with a new key name, often used to make the return keys identical to the arguments passed. * Use new style class | ||||
* | cloudstack: add get_result() in utils to return common results | Rene Moser | 2015-08-11 | 1 | -0/+15 |
| | |||||
* | cloudstack: fix domain name is not unique, use full path | Rene Moser | 2015-06-26 | 1 | -3/+4 |
| | |||||
* | cloudstack: add get_or_failback() | Rene Moser | 2015-06-26 | 1 | -0/+8 |
| | |||||
* | cloudstack: methods renaming | Rene Moser | 2015-06-10 | 1 | -2/+10 |
| | |||||
* | cloudstack: remove unused methods used for backward compatibility | Rene Moser | 2015-06-10 | 1 | -25/+0 |
| | |||||
* | cloudstack: prevent getting the wrong project. | Rene Moser | 2015-06-09 | 1 | -2/+2 |
| | | | | | Since we use domain and account data to filter the project, listall is not needed and can return the wrong identical named project of another account if root admin permissions are used. Fixed projects names are not case insensitive. | ||||
* | cloudstack: add timeout to utils | Rene Moser | 2015-06-02 | 1 | -0/+2 |
| | |||||
* | cloudstack: fix typo in variable, fixes get_domain() | Rene Moser | 2015-05-08 | 1 | -1/+1 |
| | |||||
* | cloudstack: implement account und domain support in utils | Rene Moser | 2015-05-03 | 1 | -2/+14 |
| | |||||
* | cloudstack: add get_domain() and get_account() to utils | Rene Moser | 2015-05-03 | 1 | -2/+40 |
| | |||||
* | cloudstack: _has_changed() should not compare None values | Rene Moser | 2015-05-01 | 1 | -0/+4 |
| | |||||
* | cloudstack: add tag support in utils | Rene Moser | 2015-04-29 | 1 | -0/+61 |
| | |||||
* | cloudstack: get_vm(): fix missing zone | Rene Moser | 2015-04-26 | 1 | -0/+1 |
| | | | | Fixes returning wrong VM having identical name in different zone. | ||||
* | cloudstack: add method to to get infos of API | Rene Moser | 2015-04-25 | 1 | -0/+9 |
| | | | | | get_capabilities() allows you to get infos e.g. `cloudstackversion` to compare functionality of the API in your modules. | ||||
* | cloudstack: fix missing self. in cloudstack utils | Rene Moser | 2015-04-24 | 1 | -5/+5 |
| | |||||
* | cloudstack: add _has_changed() to utils | Rene Moser | 2015-04-24 | 1 | -0/+21 |
| | | | Generic method to compare values in dict. | ||||
* | cloudstack: use _get_by_key in get_...() methods in utils | Rene Moser | 2015-04-24 | 1 | -30/+55 |
| | | | | But also add backward compatibility for existing modules in extras. | ||||
* | cloudstack: add _get_by_key() to utils | Rene Moser | 2015-04-24 | 1 | -0/+8 |
| | | | | Generic method to get the whole dict or just a singe value by key if found. | ||||
* | cloudstack: fix other projects not found | Rene Moser | 2015-04-24 | 1 | -1/+1 |
| | |||||
* | cloudstack: fix vm not found by displayname | Rene Moser | 2015-04-20 | 1 | -1/+1 |
| | |||||
* | cloudstack: add error result handling in async job | Rene Moser | 2015-04-20 | 1 | -2/+4 |
| | |||||
* | cloudstack: module utils are BSD licensed | Rene Moser | 2015-03-26 | 1 | -10/+20 |
| | |||||
* | cloudstack: fail_json() if library cs is not found | Rene Moser | 2015-03-26 | 1 | -4/+5 |
| | |||||
* | cloudstack: add utils for common functionality | Rene Moser | 2015-03-26 | 1 | -0/+182 |