File: modules_parameters.yml

package info (click to toggle)
cloudkitty 23.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,528 kB
  • sloc: python: 21,803; sh: 528; makefile: 226; pascal: 54
file content (49 lines) | stat: -rw-r--r-- 787 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
description:
  in: body
  description: |
    A quick description of the module
  type: string
  required: true

enabled: &enabled
  in: body
  description: |
    Boolean representing if the module is enabled
  type: bool
  required: true

enabled_opt:
  <<: *enabled
  required: false

hot_config:
  in: body
  description: |
    Boolean representing if the module supports hot-config
  type: bool
  required: true

module_id:
  in: body
  description: |
    The id of the module
  type: string
  required: true

modules_list:
  in: body
  description: |
    List of modules.
  type: list
  required: true

priority: &priority
  in: body
  description: |
    Priority of the module, relative to other modules
  type: int
  required: true

priority_opt:
  <<: *priority
  required: false