vault/ui/api-client/dist/esm/models/PkiGenerateKmsKeyResponse.d.ts

51 lines
1.7 KiB
TypeScript

/**
* HashiCorp Vault API
* HTTP API that gives you full access to Vault. All API routes are prefixed with `/v1/`.
*
* The version of the OpenAPI document: 1.21.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface PkiGenerateKmsKeyResponse
*/
export interface PkiGenerateKmsKeyResponse {
/**
* ID assigned to this key.
* @type {string}
* @memberof PkiGenerateKmsKeyResponse
*/
keyId?: string;
/**
* Name assigned to this key.
* @type {string}
* @memberof PkiGenerateKmsKeyResponse
*/
keyName?: string;
/**
* The type of key to use; defaults to RSA. "rsa" "ec" and "ed25519" are the only valid values.
* @type {string}
* @memberof PkiGenerateKmsKeyResponse
*/
keyType?: string;
/**
* The private key string
* @type {string}
* @memberof PkiGenerateKmsKeyResponse
*/
privateKey?: string;
}
/**
* Check if a given object implements the PkiGenerateKmsKeyResponse interface.
*/
export declare function instanceOfPkiGenerateKmsKeyResponse(value: object): value is PkiGenerateKmsKeyResponse;
export declare function PkiGenerateKmsKeyResponseFromJSON(json: any): PkiGenerateKmsKeyResponse;
export declare function PkiGenerateKmsKeyResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiGenerateKmsKeyResponse;
export declare function PkiGenerateKmsKeyResponseToJSON(json: any): PkiGenerateKmsKeyResponse;
export declare function PkiGenerateKmsKeyResponseToJSONTyped(value?: PkiGenerateKmsKeyResponse | null, ignoreDiscriminator?: boolean): any;