summaryrefslogtreecommitdiff
path: root/lib/ansible/modules/cloud/google/gcpubsub_facts.py
Commit message (Collapse)AuthorAgeFilesLines
* Add module support to yamllint sanity test. (#34964)Matt Clay2018-01-161-10/+10
| | | | | | | * Add module support to yamllint sanity test. * Fix duplicate keys in module RETURN docs. * Fix syntax in return_common docs fragment. * Fix duplicate keys in module EXAMPLES docs.
* Update metadata to 1.1Toshio Kuratomi2017-08-151-1/+1
|
* remove wildcards and add boilerplateToshio Kuratomi2017-07-291-18/+11
| | | | | | | | | * cloud/centurylink * source_control * cloud/google * notification * cloud/rackspace * cloud/vmware
* New metadata 1.0 (#22587)Toshio Kuratomi2017-03-141-3/+4
| | | | | | | | | | | | | | | | Changes to the metadata format were approved here: https://github.com/ansible/proposals/issues/54 * Update documentation to the new metadata format * Changes to metadata-tool to account for new metadata * Add GPL license header * Add upgrade subcommand to upgrade metadata version * Change default metadata to the new format * Fix exclusion of non-modules from the metadata report * Fix ansible-doc for new module metadata * Exclude metadata version from ansible-doc output * Fix website docs generation for the new metadata * Update metadata schema in valiate-modules test * Update the metadata in all modules to the new version
* Update validate-modules (#20932)Matt Martz2017-02-021-0/+4
| | | | | | | | | | | | | | * Update validate-modules * Validates ANSIBLE_METADATA * Ensures imports happen after documentation vars * Some pep8 cleanup * Clean up some left over unneeded code * Update modules for new module guidelines and validate-modules checks * Update imports for ec2_vpc_route_table and ec2_vpc_nat_gateway
* PEP 8 E111 cleanup.Matt Clay2017-01-301-44/+44
|
* PEP 8 indent cleanup. (#20800)Matt Clay2017-01-291-7/+7
| | | | | | | | * PEP 8 E121 cleanup. * PEP 8 E126 cleanup. * PEP 8 E122 cleanup.
* PEP 8 cleanup. (#20789)Matt Clay2017-01-281-1/+1
| | | | | | | * PEP 8 E703 cleanup. * PEP 8 E701 cleanup. * PEP 8 E711 cleanup. * PEP 8 W191 and E101 cleanup.
* PEP 8 W291 whitespace cleanup.Matt Clay2017-01-271-2/+2
|
* PEP 8 whitespace cleanup. (#20783)Matt Clay2017-01-271-2/+2
| | | | | | * PEP 8 E271 whitespace cleanup. * PEP 8 W293 whitespace cleanup. * Fix whitespace issue from recent PR.
* [GCE] Google Cloud Pubsub Module (#19091)Tom Melendez2017-01-261-0/+150
* Google Cloud Pubsub Module The Google Cloud Pubsub module allows the Ansible user to: * Create/Delete Topics * Create/Delete Subscriptions * Change subscription from pull to push (and configure endpoint) * Publish messages to a topic * Pull messages from a Subscription An accessory module, gcpubsub_facts, has been added to list topics and subscriptions. * Added docs for state field to DOCUMENTATION and RETURN blocks.