docs: Update responses for /v1/session/ endpoints post 1.7

Update output for /v1/session/ endpoints to match output post Consul
1.7.0.

Documents new `NodeChecks` and `ServiceChecks` parameters which were
added in that release.

Resolves #7341, resolves #10095
pull/10665/head
Blake Covarrubias 3 years ago committed by Blake Covarrubias
parent bc7ece2bb0
commit e515c9d449

@ -46,9 +46,19 @@ The table below shows this endpoint's support for
- `Name` `(string: "")` - Specifies a human-readable name for the session. - `Name` `(string: "")` - Specifies a human-readable name for the session.
- `Checks` `(array<string>: nil)` - specifies a list of associated health - `Checks` `(array<string>: nil)` - Specifies a list of node health
check IDs (commonly `CheckID` in API responses). It is highly recommended that, check IDs (commonly `CheckID` in API responses). It is highly recommended that,
if you override this list, you include the default `serfHealth`. if you override this list, you include the default `serfHealth`.
Deprecated in Consul 1.7.0 and replaced by `NodeChecks`. This field will be
omitted from the API response in Consul 1.7+ if `serfHealth` is the only defined check.
- `NodeChecks` `(array<string>: nil)` - Specifies a list of node health
check IDs (commonly `CheckID` in API responses). It is highly recommended that,
if you override this list, you include the default `serfHealth`. Added in
Consul 1.7.0.
- `ServiceChecks` `(array<string>: nil)` - Specifies a list of service health
check IDs (commonly `CheckID` in API responses). Added in Consul 1.7.0.
- `Behavior` `(string: "release")` - Controls the behavior to take when a - `Behavior` `(string: "release")` - Controls the behavior to take when a
session is invalidated. Valid values are: session is invalidated. Valid values are:
@ -88,7 +98,7 @@ $ curl \
### Sample Response ### Sample Response
```javascript ```json
{ {
"ID": "adf4238a-882b-9ddc-4a9d-5b6758e4159e" "ID": "adf4238a-882b-9ddc-4a9d-5b6758e4159e"
} }
@ -195,10 +205,13 @@ $ curl \
"ID": "adf4238a-882b-9ddc-4a9d-5b6758e4159e", "ID": "adf4238a-882b-9ddc-4a9d-5b6758e4159e",
"Name": "test-session", "Name": "test-session",
"Node": "raja-laptop-02", "Node": "raja-laptop-02",
"Checks": ["serfHealth"], "LockDelay": 15000000000,
"LockDelay": 1.5e10,
"Behavior": "release", "Behavior": "release",
"TTL": "30s", "TTL": "30s",
"NodeChecks": [
"serfHealth"
],
"ServiceChecks": null,
"CreateIndex": 1086449, "CreateIndex": 1086449,
"ModifyIndex": 1086449 "ModifyIndex": 1086449
} }
@ -255,11 +268,14 @@ $ curl \
{ {
"ID": "adf4238a-882b-9ddc-4a9d-5b6758e4159e", "ID": "adf4238a-882b-9ddc-4a9d-5b6758e4159e",
"Name": "test-session", "Name": "test-session",
"Node": "raja-laptop-02", "Node": "node-abcd1234",
"Checks": ["serfHealth"], "LockDelay": 15000000000,
"LockDelay": 1.5e10,
"Behavior": "release", "Behavior": "release",
"TTL": "30s", "TTL": "30s",
"NodeChecks": [
"serfHealth"
],
"ServiceChecks": null,
"CreateIndex": 1086449, "CreateIndex": 1086449,
"ModifyIndex": 1086449 "ModifyIndex": 1086449
} }
@ -311,10 +327,13 @@ $ curl \
"ID": "adf4238a-882b-9ddc-4a9d-5b6758e4159e", "ID": "adf4238a-882b-9ddc-4a9d-5b6758e4159e",
"Name": "test-session", "Name": "test-session",
"Node": "raja-laptop-02", "Node": "raja-laptop-02",
"Checks": ["serfHealth"], "LockDelay": 15000000000,
"LockDelay": 1.5e10,
"Behavior": "release", "Behavior": "release",
"TTL": "30s", "TTL": "30s",
"NodeChecks": [
"serfHealth"
],
"ServiceChecks": null,
"CreateIndex": 1086449, "CreateIndex": 1086449,
"ModifyIndex": 1086449 "ModifyIndex": 1086449
} }
@ -370,10 +389,13 @@ $ curl \
"ID": "adf4238a-882b-9ddc-4a9d-5b6758e4159e", "ID": "adf4238a-882b-9ddc-4a9d-5b6758e4159e",
"Name": "test-session", "Name": "test-session",
"Node": "raja-laptop-02", "Node": "raja-laptop-02",
"Checks": ["serfHealth"], "LockDelay": 15000000000,
"LockDelay": 1.5e10,
"Behavior": "release", "Behavior": "release",
"TTL": "15s", "TTL": "30s",
"NodeChecks": [
"serfHealth"
],
"ServiceChecks": null,
"CreateIndex": 1086449, "CreateIndex": 1086449,
"ModifyIndex": 1086449 "ModifyIndex": 1086449
} }

Loading…
Cancel
Save