Remove incorrect api docs text around metadata being supported for identity aliases

This commit is contained in:
Jeff Mitchell 2018-10-04 09:09:41 -04:00 committed by Jeff Mitchell
parent 695f9ed682
commit 4c9301a91f

View file

@ -29,18 +29,11 @@ This endpoint creates a new alias for an entity.
- `mount_accessor` `(string: <required>)` - Accessor of the mount to which the
alias should belong to.
- `metadata` `(key-value-map: {})` Metadata to be associated with the
alias.
### Sample Payload
```json
{
"name": "testuser",
"metadata": {
"group": "san_francisco",
"region": "west"
},
"canonical_id": "404e57bc-a0b1-a80f-0a73-b6e92e8a52d3",
"mount_accessor": "auth_userpass_e50b1a44"
}
@ -130,18 +123,11 @@ This endpoint is used to update an existing entity alias.
- `mount_accessor` `(string: <required>)` - Accessor of the mount to which the
alias should belong to.
- `metadata` `(key-value-map: {})` Metadata to be associated with the
alias. Format should be a list of `key=value` pairs.
### Sample Payload
```json
{
"name": "testuser",
"metadata": {
"group": "philadelphia",
"region": "east"
},
"canonical_id": "404e57bc-a0b1-a80f-0a73-b6e92e8a52d3",
"mount_accessor": "auth_userpass_e50b1a44"
}