solace_cloud_get_services – get all services in Solace Cloud
Get a list of all services’ details in the Solace Cloud account.
Examples
hosts: all
gather_facts: no
any_errors_fatal: true
collections:
- solace.pubsub_plus
tasks:
- name: "solace_cloud_get_services"
solace_cloud_get_services:
api_token: "{{ api_token }}"
register: result
- set_fact:
service_list: "{{ result.result_list }}"
- name: "Loop: Get Service for all Services By serviceId"
solace_cloud_get_service:
api_token: "{{ api_token }}"
service_id: "{{ service.serviceId }}"
loop: "{{ service_list }}"
loop_control:
loop_var: service
Notes
Note
Module Solace Cloud API: https://docs.solace.com/Solace-Cloud/ght_use_rest_api_services.htm
See Also
Parameters
- solace_cloud_api_token (required)
The API Token.
Generate using Solace Cloud console with the appropriate permissions for the operations you want to enable.
type: straliases: api_token- solace_cloud_home (optional)
The Solace Cloud home region.
type: strchoices: us, au, US, AU,- timeout (optional)
Connection timeout in seconds for the http request or overall call interaction timeout for Solace Cloud API.
type: intdefault: 60- validate_certs (optional)
Flag to switch validation of client certificates on/off when using a secure connection.
type: booldefault: True
Return Values
- result_list
The list of objects found containing requested fields. Results differ based on the api called.
returned: successtype: list- result_list_count
Number of items in result_list.
returned: successtype: int- rc
Return code. rc=0 on success, rc=1 on error.
returned: alwaystype: intsample:{ "error": { "rc": 1 }, "success": { "rc": 0 } }
- msg
The response from the HTTP call in case of error.
returned: errortype: dict