v1.UserIdentityMapping
Expand or mouse-over a field for more information about it.
Create an UserIdentityMapping
HTTP request
Authorization: Bearer $TOKEN
Accept: application/json
Connection: close
Content-Type: application/json'
{
"kind": "UserIdentityMapping",
"apiVersion": "v1",
...
}
Curl request
$ curl -k \
-X POST \
-d @- \
-H "Authorization: Bearer $TOKEN" \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
https://$ENDPOINT/oapi/v1/useridentitymappings <<'EOF'
{
"kind": "UserIdentityMapping",
"apiVersion": "v1",
}
EOF
HTTP body
Query parameters
Parameter | Description |
---|---|
pretty | If ‘true’, then the output is pretty printed. |
Responses
HTTP Code | Schema |
---|---|
200 OK | v1.UserIdentityMapping |
401 Unauthorized |
Consumes
- */*
Produces
application/json
application/yaml
application/vnd.kubernetes.protobuf
Read the specified UserIdentityMapping
HTTP request
Curl request
$ curl -k \
-H "Authorization: Bearer $TOKEN" \
-H 'Accept: application/json' \
https://$ENDPOINT/oapi/v1/useridentitymappings/$NAME
Path parameters
Parameter | Description |
---|---|
name | name of the UserIdentityMapping |
Query parameters
Parameter | Description |
---|---|
pretty | If ‘true’, then the output is pretty printed. |
Responses
Consumes
- */*
Produces
application/yaml
application/vnd.kubernetes.protobuf
Replace the specified UserIdentityMapping
HTTP request
PUT /oapi/v1/useridentitymappings/$NAME HTTP/1.1
Authorization: Bearer $TOKEN
Accept: application/json
Connection: close
Content-Type: application/json'
"kind": "UserIdentityMapping",
"apiVersion": "v1",
...
}
Curl request
HTTP body
Parameter | Schema |
---|---|
body | v1.UserIdentityMapping |
Path parameters
Parameter | Description |
---|---|
name | name of the UserIdentityMapping |
Query parameters
Parameter | Description |
---|---|
pretty | If ‘true’, then the output is pretty printed. |
Responses
HTTP Code | Schema |
---|---|
200 OK | v1.UserIdentityMapping |
401 Unauthorized |
Consumes
- */*
Produces
application/json
application/yaml
application/vnd.kubernetes.protobuf
Partially update the specified UserIdentityMapping
HTTP request
PATCH /oapi/v1/useridentitymappings/$NAME HTTP/1.1
Authorization: Bearer $TOKEN
Accept: application/json
Content-Type: application/json-patch+json'
{
...
}
Curl request
$ curl -k \
-X PATCH \
-d @- \
-H "Authorization: Bearer $TOKEN" \
-H 'Accept: application/json' \
-H 'Content-Type: application/json-patch+json' \
https://$ENDPOINT/oapi/v1/useridentitymappings/$NAME <<'EOF'
{
...
}
EOF
HTTP body
Path parameters
Parameter | Description |
---|---|
name | name of the UserIdentityMapping |
Query parameters
Parameter | Description |
---|---|
If ‘true’, then the output is pretty printed. |
Responses
HTTP Code | Schema |
---|---|
200 OK | v1.UserIdentityMapping |
401 Unauthorized |
Consumes
application/json-patch+json
application/merge-patch+json
application/strategic-merge-patch+json
Produces
application/json
application/yaml
application/vnd.kubernetes.protobuf
Delete an UserIdentityMapping
HTTP request
Curl request
$ curl -k \
-X DELETE \
-H "Authorization: Bearer $TOKEN" \
-H 'Accept: application/json' \
Path parameters
Parameter | Description |
---|---|
name | name of the UserIdentityMapping |
Query parameters
Responses
HTTP Code | Schema |
---|---|
200 OK | v1.Status |
401 Unauthorized |
Consumes
- */*
Produces
application/json
application/yaml