forked from StackStorm-Exchange/stackstorm-algosec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.schema.yaml
45 lines (42 loc) · 1.12 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
---
algosec:
type: "object"
required: true
patternProperties:
"^\\w+":
"$ref": "#/properties/connection"
additionalProperties: false
connection:
type: "object"
properties:
server:
description: "AlgoSec server hostname/ip to connect with"
type: "string"
required: true
domain:
description: "AlgoSec domain to connect with for authentication"
type: "string"
required: false
username:
description: Username for authentication
type: "string"
required: true
password:
description: Password of the specified username
type: "string"
secret: true
required: true
port:
description: Port number override used for the connection (80, 443) (none means use the default for the transport)
type: "integer"
required: false
transport:
description: Transport used for the connection (http, https)
type: "string"
default: http
required: false
wsdl_endpoint:
description: HTTP URI for the WSDL file on the server
type: "string"
required: false
additionalProperties: false