palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
25 lines • 908 B
TypeScript
/**
* Copyright (c) Spectro Cloud
* SPDX-License-Identifier: Apache-2.0
*/
/**
* Generated by orval v7.17.0 🍺
* Do not edit manually.
* Palette APIs - 4.8
* OpenAPI spec version: v1
*/
export type JWKResponse = {
/** The "alg" (algorithm) parameter identifies the algorithm intended for use with the key */
alg?: string;
e?: string;
/** The "key_ops" (key operations) parameter identifies the operation(s) for which the key is intended to be used */
key_ops?: string;
/** The "kid" (key ID) parameter is used to match a specific key */
kid?: string;
/** The "kty" (key type) parameter identifies the cryptographic algorithm family used with the key, such as "RSA" or "EC" */
kty?: string;
n?: string;
/** The "use" (public key use) parameter identifies the intended use of the public key */
use?: string;
};
//# sourceMappingURL=jWKResponse.d.ts.map