Skip to content

Commit

Permalink
Update JSON Schema
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Aug 28, 2024
1 parent f0ffdd9 commit 560eef3
Showing 1 changed file with 35 additions and 5 deletions.
40 changes: 35 additions & 5 deletions resources/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1601,6 +1601,11 @@
"title": "Environment Variables",
"description": "environment variables for the command"
},
"nolinger": {
"type": "boolean",
"title": "Disable SO_LINGER",
"description": "Disable SO_LINGER TCP flag"
},
"contain": {
"type": "string",
"title": "Contain Text",
Expand Down Expand Up @@ -1643,7 +1648,8 @@
"required": [
"name",
"alert",
"host"
"host",
"nolinger"
]
},
"probe_host_Threshold": {
Expand Down Expand Up @@ -1767,6 +1773,11 @@
"title": "HTTP Body",
"description": "HTTP body to use for HTTP requests"
},
"nolinger": {
"type": "boolean",
"title": "Disable SO_LINGER",
"description": "Disable SO_LINGER TCP flag"
},
"contain": {
"type": "string",
"title": "Contain Text",
Expand Down Expand Up @@ -1834,7 +1845,8 @@
"required": [
"name",
"alert",
"url"
"url",
"nolinger"
]
},
"probe_ping_Ping": {
Expand Down Expand Up @@ -2169,6 +2181,11 @@
"title": "Environment Variables",
"description": "environment variables for the command"
},
"nolinger": {
"type": "boolean",
"title": "Disable SO_LINGER",
"description": "Disable SO_LINGER TCP flag"
},
"contain": {
"type": "string",
"title": "Contain Text",
Expand All @@ -2195,7 +2212,8 @@
"required": [
"name",
"alert",
"host"
"host",
"nolinger"
]
},
"probe_tcp_TCP": {
Expand Down Expand Up @@ -2256,14 +2274,20 @@
"format": "hostname",
"title": "Proxy",
"description": "The proxy to use"
},
"nolinger": {
"type": "boolean",
"title": "Disable SO_LINGER",
"description": "Disable SO_LINGER TCP flag"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"name",
"alert",
"host"
"host",
"nolinger"
]
},
"probe_tls_TLS": {
Expand Down Expand Up @@ -2330,6 +2354,11 @@
"title": "Insecure Skip Verify",
"description": "Whether to skip verifying the certificate chain and host name"
},
"nolinger": {
"type": "boolean",
"title": "Disable SO_LINGER",
"description": "Disable SO_LINGER TCP flag"
},
"root_ca_pem_path": {
"type": "string",
"title": "Root CA PEM Path",
Expand All @@ -2356,7 +2385,8 @@
"required": [
"name",
"alert",
"host"
"host",
"nolinger"
]
},
"probe_websocket_WebSocket": {
Expand Down

0 comments on commit 560eef3

Please sign in to comment.