solace_rdp_queue_binding_protected_header – protected header on queue bindining on rdp

Allows addition, removal and configuration of Protected Header objects on a Queue Binding object for a Rest Delivery Point(RDP).

Examples

- name: "Create protected header"
  solace_rdp_queue_binding_protected_header:
    rdp_name: "rdp-test-ansible-solace"
    queue_name: "rdp-test-ansible-solace"
    header_name: "protected-header"
    settings:
      headerValue: 'protected header value'
    state: present

- name: "list protected headers: config"
  solace_get_rdp_queue_binding_protected_headers:
    rdp_name: "rdp-test-ansible-solace"
    queue_name: "rdp-test-ansible-solace"
    query_params:
      where:
        - "headerName==protected*"

- name: "list protected headers: monitor"
  solace_get_rdp_queue_binding_protected_headers:
    rdp_name: "rdp-test-ansible-solace"
    queue_name: "rdp-test-ansible-solace"
    api: monitor
    query_params:
      where:
        - "headerName==protected*"

- name: "remove protected header"
  solace_rdp_queue_binding_protected_header:
    rdp_name: "rdp-test-ansible-solace"
    queue_name: "rdp-test-ansible-solace"
    header_name: "protected-header"
    state: absent

Notes

See Also

Parameters

host (optional)

Hostname of Solace Broker.

type: str
default: localhost
msg_vpn (required)

The message vpn.

type: str
name (required)

Name of the protected request header. Maps to ‘headerName’ in the API.

type: str
aliases: header_name
password (optional)

Administrator password for Solace Broker.

type: str
default: admin
port (optional)

Management port of Solace Broker.

type: int
default: 8080
queue_name (required)

Name of the queue. Maps to ‘queueBindingName’ in the API.

type: str
rdp_name (required)

Name of the RDP. Maps to ‘restDeliveryPointName’ in the API.

type: str
reverse_proxy (optional)

Use a reverse proxy / api gateway. Note: Experimental. Not permitted for Solace Cloud API.

type: dict
headers (optional)

Additional headers to add to the http call. Example: ‘apiKey: {my-api-key}’.

type: dict
x-asc-module (optional)

Flag for the module to add the header ‘x-asc-module:{module-name}’ to the http call with it’s module name.

type: bool
default: False
x-asc-module-op (optional)

Flag for the module to add the header ‘x-asc-module-op:{module operation}’ to the http call with the module’s operation.

type: bool
default: False
query_params (optional)

Additional query paramters to add to the URL. Example: ‘apiCode: {my-api-code}’.

type: dict
semp_base_path (optional)

Base path prepended to all SEMP calls. Example: ‘my/base/path’. Resulting URL will be: http(s)://{host}:{port}/{semp_base_path}/{module-semp-call-path}

type: str
use_basic_auth (optional)

Flag to use basic authentication in the http(s) call or not. Uses ‘username’/’password’.

type: bool
default: False
secure_connection (optional)

If true, use https rather than http.

type: bool
default: False
sempv2_settings (optional)

JSON dictionary of additional configuration for the SEMP V2 API. See Reference documentation.

type: dict
aliases: settings
state (optional)

Target state.

type: str
default: present
choices: present, absent
timeout (optional)

Connection timeout in seconds for the http request.

type: int
default: 10
username (optional)

Administrator username for Solace Broker.

type: str
default: admin
validate_certs (optional)

Flag to switch validation of client certificates on/off when using a secure connection.

type: bool
default: True
x_broker (optional)

Custom HTTP header with the broker virtual router id, if using a SEMPv2 Proxy/agent infrastructure.

type: str

Return Values

response

The response from the Solace Sempv2 request.

returned: success
type: dict
msg

The response from the HTTP call in case of error.

returned: error
type: dict
rc

Return code. rc=0 on success, rc=1 on error.

returned: always
type: int
sample:
  {
  "error": {
    "rc": 1
  },
  "success": {
    "rc": 0
  }
}