mirror of
https://github.com/status-im/consul.git
synced 2025-02-02 08:56:43 +00:00
website: document passing ACL tokens in catalog register/deregister
This commit is contained in:
parent
e3b3c99801
commit
c8f76b5e2c
@ -88,6 +88,17 @@ to indicate that the initial check has not been performed yet.
|
|||||||
It is important to note that `Check` does not have to be provided with `Service`
|
It is important to note that `Check` does not have to be provided with `Service`
|
||||||
and vice versa. A catalog entry can have either, neither, or both.
|
and vice versa. A catalog entry can have either, neither, or both.
|
||||||
|
|
||||||
|
An optional ACL token may be provided to perform the registration by including a
|
||||||
|
`WriteRequest` block in the query payload, like this:
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
{
|
||||||
|
"WriteRequest": {
|
||||||
|
"Token": "foo"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
If the API call succeeds, a 200 status code is returned.
|
If the API call succeeds, a 200 status code is returned.
|
||||||
|
|
||||||
### <a name="catalog_deregister"></a> /v1/catalog/deregister
|
### <a name="catalog_deregister"></a> /v1/catalog/deregister
|
||||||
@ -130,6 +141,17 @@ all associated services and checks are deleted. If `CheckID` is provided, only
|
|||||||
that check is removed. If `ServiceID` is provided, the
|
that check is removed. If `ServiceID` is provided, the
|
||||||
service and its associated health check (if any) are removed.
|
service and its associated health check (if any) are removed.
|
||||||
|
|
||||||
|
An optional ACL token may be provided to perform the deregister action by adding
|
||||||
|
a `WriteRequest` block to the payload, like this:
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
{
|
||||||
|
"WriteRequest": {
|
||||||
|
"Token": "foo"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
If the API call succeeds a 200 status code is returned.
|
If the API call succeeds a 200 status code is returned.
|
||||||
|
|
||||||
### <a name="catalog_datacenters"></a> /v1/catalog/datacenters
|
### <a name="catalog_datacenters"></a> /v1/catalog/datacenters
|
||||||
|
Loading…
x
Reference in New Issue
Block a user