v1.UserIdentityMapping
Object Schema
Expand or mouse-over a field for more information about it.
apiVersion:identity:
apiVersion:fieldPath:kind:name:namespace:resourceVersion:uid:kind:metadata:
annotations:
[string]:clusterName:creationTimestamp:deletionGracePeriodSeconds:deletionTimestamp:finalizers:
- [string]:generateName:generation:initializers:
pending:
- name:result:
apiVersion:code:details:
causes:
- field:message:reason:group:kind:name:retryAfterSeconds:uid:kind:message:metadata:
continue:resourceVersion:selfLink:reason:status:labels:
[string]:name:namespace:ownerReferences:
- apiVersion:blockOwnerDeletion:controller:kind:name:uid:resourceVersion:selfLink:uid:user:
apiVersion:fieldPath:kind:name:namespace:resourceVersion:uid:
Operations
Create a UserIdentityMapping
Create an UserIdentityMapping
HTTP request
POST /oapi/v1/useridentitymappings HTTP/1.1 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
Get a UserIdentityMapping
Read the specified UserIdentityMapping
HTTP request
GET /oapi/v1/useridentitymappings/$NAME HTTP/1.1 Authorization: Bearer $TOKEN Accept: application/json Connection: close
Update a UserIdentityMapping
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
$ curl -k \ -X PUT \ -d @- \ -H "Authorization: Bearer $TOKEN" \ -H 'Accept: application/json' \ -H 'Content-Type: application/json' \ https://$ENDPOINT/oapi/v1/useridentitymappings/$NAME <<'EOF' { "kind": "UserIdentityMapping", "apiVersion": "v1", ... } EOF
Patch a UserIdentityMapping
Partially update the specified UserIdentityMapping
HTTP request
PATCH /oapi/v1/useridentitymappings/$NAME HTTP/1.1 Authorization: Bearer $TOKEN Accept: application/json Connection: close 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
Delete a UserIdentityMapping
Delete an UserIdentityMapping
HTTP request
DELETE /oapi/v1/useridentitymappings/$NAME HTTP/1.1 Authorization: Bearer $TOKEN Accept: application/json Connection: close Content-Type: application/json' { ... }
Curl request
$ curl -k \ -X DELETE \ -d @- \ -H "Authorization: Bearer $TOKEN" \ -H 'Accept: application/json' \ -H 'Content-Type: application/json' \ https://$ENDPOINT/oapi/v1/useridentitymappings/$NAME <<'EOF' { ... } EOF
Query parameters
Parameter | Description |
---|---|
pretty |
If 'true', then the output is pretty printed. |
gracePeriodSeconds |
The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. |
orphanDependents |
Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy |
Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |