identity/oidc: minor fixes to the API documentation (#16638)

This commit is contained in:
Austin Gebauer 2022-08-09 08:09:37 -07:00 committed by GitHub
parent 78e8c135fc
commit e72b7a8938
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 6 deletions

View File

@ -283,8 +283,9 @@ This endpoint creates or updates a client.
[allow_all](/docs/concepts/oidc-provider#assignments) assignment.
- `client_type` `(string: "confidential")` The [client type](https://datatracker.ietf.org/doc/html/rfc6749#section-2.1)
based on its ability to maintain confidentiality of credentials. The following list details
the differences between confidential and public clients in Vault:
based on its ability to maintain confidentiality of credentials. This cannot be modified
after creation. The following list details the differences between confidential and public
clients in Vault:
- `confidential`
- Capable of maintaining the confidentiality of its credentials
- Has a client secret
@ -447,8 +448,8 @@ This endpoint creates or updates an assignment.
```json
{
"group_ids":["my-group"],
"entity_ids":["my-entity"]
"group_ids":["262ca5b9-7b69-0a84-446a-303dc7d778af"],
"entity_ids":["b6094ac6-baf4-6520-b05a-2bd9f07c66da"]
}
```
@ -488,10 +489,10 @@ $ curl \
{
"data":{
"entity_ids":[
"my-entity"
"b6094ac6-baf4-6520-b05a-2bd9f07c66da"
],
"group_ids":[
"my-group"
"262ca5b9-7b69-0a84-446a-303dc7d778af"
]
}
}