2021-11-18 12:10:36 +01:00
|
|
|
# yaml-language-server: $schema=http://json-schema.org/draft-07/schema
|
2021-12-02 04:14:44 -05:00
|
|
|
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
|
2021-11-18 12:10:36 +01:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2022-01-10 17:52:36 +01:00
|
|
|
---
|
2021-12-02 04:14:44 -05:00
|
|
|
title: Advanced Messaging & Queuing Protocol (AMQP)
|
2021-11-18 12:10:36 +01:00
|
|
|
allOf:
|
|
|
|
- type: object
|
|
|
|
properties:
|
|
|
|
format:
|
2021-12-02 04:14:44 -05:00
|
|
|
$ref: ../format_spec.yaml
|
|
|
|
|
|
|
|
uri:
|
|
|
|
type: string
|
|
|
|
format: uri
|
|
|
|
description: |
|
|
|
|
See also: https://www.rabbitmq.com/uri-spec.html
|
|
|
|
|
|
|
|
exchange:
|
|
|
|
type: string
|
|
|
|
description: |
|
|
|
|
The name of the AMQP exchange the node will publish the messages to.
|
|
|
|
|
|
|
|
routing_key:
|
|
|
|
type: string
|
|
|
|
description: |
|
|
|
|
The routing key of published messages as well as the routing key which is used to bind the subcriber queue.
|
|
|
|
|
|
|
|
ssl:
|
|
|
|
description: |
|
|
|
|
Note: These settings are only used if the `uri` setting is using the `amqps://` schema.
|
|
|
|
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
verify_hostname:
|
|
|
|
default: true,
|
|
|
|
|
|
|
|
verify_peer:
|
|
|
|
default: true,
|
|
|
|
|
|
|
|
ca_cert:
|
|
|
|
default: "/path/to/ca.crt"
|
|
|
|
|
|
|
|
client_cert:
|
|
|
|
default: "/path/to/client.crt"
|
|
|
|
|
|
|
|
client_key:
|
|
|
|
default: "/path/to/client.key"
|
|
|
|
|
2022-04-07 08:52:19 +02:00
|
|
|
- $ref: ../node_signals.yaml
|
2021-12-06 09:25:55 +01:00
|
|
|
- $ref: ../node.yaml
|