gcpubsub_facts - List Topics/Subscriptions and Messages from Google PubSub.¶
New in version 2.3.
Synopsis¶
- List Topics/Subscriptions from Google PubSub. Use the gcpubsub module for topic/subscription management. See https://cloud.google.com/pubsub/docs for an overview.
Requirements¶
The below requirements are needed on the host that executes this module.
- python >= 2.6
- google-auth >= 0.5.0
- google-cloud-pubsub >= 0.22.0
Parameters¶
Parameter | Choices/Defaults | Comments |
---|---|---|
state |
list is the only valid option.
|
|
topic |
GCP pubsub topic name. Only the name, not the full path, is required.
|
|
view
required |
Choices are 'topics' or 'subscriptions'
|
Notes¶
Note
- list state enables user to list topics or subscriptions in the project. See examples for details.
Examples¶
## List all Topics in a project
- gcpubsub_facts:
view: topics
state: list
## List all Subscriptions in a project
- gcpubsub_facts:
view: subscriptions
state: list
## List all Subscriptions for a Topic in a project
- gcpubsub_facts:
view: subscriptions
topic: my-topic
state: list
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Key | Returned | Description |
---|---|---|
subscriptions
list
|
When view is set to subscriptions. |
List of subscriptions.
Sample:
['mysubscription', 'mysubscription2']
|
topic
str
|
Always |
Name of topic. Used to filter subscriptions.
Sample:
mytopic
|
topics
list
|
When view is set to topics. |
List of topics.
Sample:
['mytopic', 'mytopic2']
|
Status¶
This module is flagged as preview which means that it is not guaranteed to have a backwards compatible interface.
Maintenance¶
This module is flagged as community which means that it is maintained by the Ansible Community. See Module Maintenance & Support for more info.
For a list of other modules that are also maintained by the Ansible Community, see here.
Author¶
- Tom Melendez (@supertom) <tom@supertom.com>
Hint
If you notice any issues in this documentation you can edit this document to improve it.