Type Alias ApiKeyConfigPatch

A JSON Patch document as defined in https://datatracker.ietf.org/doc/html/rfc6902.

type ApiKeyConfigPatch = {
    op: "replace";
    path:
        | "/api_keys_enabled"
        | "/max_api_key_expiry"
        | "/max_keys_per_user"
        | "/scim_externalClient_expiry";
    value: unknown;
}
Index

Properties

Properties

op: "replace"

The operation to be performed.

path:
    | "/api_keys_enabled"
    | "/max_api_key_expiry"
    | "/max_keys_per_user"
    | "/scim_externalClient_expiry"

The path for the given resource field to patch. The '/api_keys_enabled' option is deprecated and will be removed in a future release.

value: unknown

The value to be used for this operation.