1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-16 00:00:02 +01:00
VILLASnode/doc/openapi/components/schemas/config/nodes/amqp.yaml
Steffen Vogel 0735eb0f89 Make project REUSE compliant
And various other cleanups and harmonizations

Signed-off-by: Steffen Vogel <steffen.vogel@opal-rt.com>
2023-09-07 11:16:04 +02:00

50 lines
1.3 KiB
YAML

# yaml-language-server: $schema=http://json-schema.org/draft-07/schema
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
# SPDX-License-Identifier: Apache-2.0
---
title: Advanced Messaging & Queuing Protocol (AMQP)
allOf:
- type: object
properties:
format:
$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"
- $ref: ../node_signals.yaml
- $ref: ../node.yaml