Skip to content

DownloadRabbitMqDefinitions Configurations Yaml View

TL;DR — Copy this schema-derived YAML scaffold, replace placeholder values, and use the table view for field descriptions.

When to use

Use this page when you need a starting YAML shape for this hook configuration and want all generated fields in one block.

YAML configuration

The scaffold follows the generated schema order. String placeholders are quoted, optional lists render as [], and numeric placeholders use schema minimums when they exist.

Minimal example

ProbeConfiguration:
  DefinitionsFilePath: 'value'
  Host: 'value'
  AllowInvalidServerCertificates: False
  ManagementPort: 15672
  ManagementScheme: 'http'
  Password: 'admin'
  Port: 5672
  RequestTimeoutMs: 30000
  UseGlobalDict: False
  Username: 'admin'
  VirtualHost: '/'
  VirtualHostName: 'value'

Realistic example

Start with the minimal scaffold, replace placeholder values with project values, and combine it with the surrounding hook entry shown on the overview page.

Edge cases

  • Optional arrays are emitted as []; add entries only when the hook needs that collection.
  • Placeholder-style strings are quoted so YAML parsers keep them as scalar values.

See also