forked from StackStorm-Exchange/stackstorm-vsphere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.schema.yaml
executable file
·50 lines (47 loc) · 1.19 KB
/
config.schema.yaml
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
50
---
ssl_verify:
description: "Verify SSL certificate used with vCenter Server."
type: boolean
default: True
vsphere:
type: "object"
required: true
patternProperties:
"^\\w+":
"$ref": "#/properties/vcenters"
additionalProperties: false
vcenters:
type: "object"
properties:
host:
description: "Hostname or IP address of vSphere Server."
type: "string"
required: true
port:
description: "TCP port number for the vSphere Server."
type: "integer"
required: true
user:
description: "Authentication user-id for the vSphere Server."
type: "string"
required: true
passwd:
description: "The password of the specified user."
type: "string"
secret: true
required: true
additionalProperties: false
sensors:
type: object
properties:
taskinfo:
type: object
properties:
tasknum:
description: "The number of tasks to check at a polling processing"
type: integer
default: 1
vsphere:
description: "vSphere environment to poll, as specified in the config. Uses 'default' if not set"
type: string
default: 'default'