mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 06:37:02 +02:00
45 lines
1.5 KiB
TypeScript
45 lines
1.5 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 RekeyReadBackupRecoveryKeyResponse
|
|
*/
|
|
export interface RekeyReadBackupRecoveryKeyResponse {
|
|
/**
|
|
*
|
|
* @type {object}
|
|
* @memberof RekeyReadBackupRecoveryKeyResponse
|
|
*/
|
|
keys?: object;
|
|
/**
|
|
*
|
|
* @type {object}
|
|
* @memberof RekeyReadBackupRecoveryKeyResponse
|
|
*/
|
|
keysBase64?: object;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof RekeyReadBackupRecoveryKeyResponse
|
|
*/
|
|
nonce?: string;
|
|
}
|
|
/**
|
|
* Check if a given object implements the RekeyReadBackupRecoveryKeyResponse interface.
|
|
*/
|
|
export declare function instanceOfRekeyReadBackupRecoveryKeyResponse(value: object): value is RekeyReadBackupRecoveryKeyResponse;
|
|
export declare function RekeyReadBackupRecoveryKeyResponseFromJSON(json: any): RekeyReadBackupRecoveryKeyResponse;
|
|
export declare function RekeyReadBackupRecoveryKeyResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): RekeyReadBackupRecoveryKeyResponse;
|
|
export declare function RekeyReadBackupRecoveryKeyResponseToJSON(json: any): RekeyReadBackupRecoveryKeyResponse;
|
|
export declare function RekeyReadBackupRecoveryKeyResponseToJSONTyped(value?: RekeyReadBackupRecoveryKeyResponse | null, ignoreDiscriminator?: boolean): any;
|