This repository has been archived by the owner on Jul 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathspec.schema.json
66 lines (66 loc) · 1.54 KB
/
spec.schema.json
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"aws": {
"type": "object",
"description": "A mapping of OCI account configuration.",
"properties": {
"connection": {
"type": "object",
"x-relay-connectionType": "oci",
"description": "A Relay OCI connection to use",
"properties": {
"userOCID": {
"type": "string",
"description": "User Oracle Cloud ID"
},
"keyContent": {
"type": "string",
"description": "Key Content of the OCI private API key"
},
"fingerprint": {
"type": "string",
"description": "Fingerprint of the OCI private API key"
},
"tenancy": {
"type": "string",
"description": "Oracle Cloud Tenancy ID"
}
},
"required": [
"userOCID",
"keyContent",
"fingerprint",
"tenancy"
]
},
"region": {
"type": "string",
"description": "The OCI region to use (for example, eu-frankfurt-1)"
}
},
"required": [
"connection",
"region"
]
},
"instanceIDs": {
"type": "array",
"items": {
"type": "string"
},
"description": "The list of OCI instance IDs identifying the instances to reboot."
},
"GracefulReboot": {
"type":"boolean",
"description": "Enable to Gracefully reboot the instance by sending a shutdown command to the operating system, and then powers the instance back on",
"default": "False"
}
},
"required": [
"oci",
"instanceIDs"
],
"additionalProperties": false
}