mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 14:47:01 +02:00
45 lines
1.7 KiB
TypeScript
45 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 EncryptionKeyReadRotationConfigurationResponse
|
|
*/
|
|
export interface EncryptionKeyReadRotationConfigurationResponse {
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof EncryptionKeyReadRotationConfigurationResponse
|
|
*/
|
|
enabled?: boolean;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof EncryptionKeyReadRotationConfigurationResponse
|
|
*/
|
|
interval?: string;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof EncryptionKeyReadRotationConfigurationResponse
|
|
*/
|
|
maxOperations?: number;
|
|
}
|
|
/**
|
|
* Check if a given object implements the EncryptionKeyReadRotationConfigurationResponse interface.
|
|
*/
|
|
export declare function instanceOfEncryptionKeyReadRotationConfigurationResponse(value: object): value is EncryptionKeyReadRotationConfigurationResponse;
|
|
export declare function EncryptionKeyReadRotationConfigurationResponseFromJSON(json: any): EncryptionKeyReadRotationConfigurationResponse;
|
|
export declare function EncryptionKeyReadRotationConfigurationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): EncryptionKeyReadRotationConfigurationResponse;
|
|
export declare function EncryptionKeyReadRotationConfigurationResponseToJSON(json: any): EncryptionKeyReadRotationConfigurationResponse;
|
|
export declare function EncryptionKeyReadRotationConfigurationResponseToJSONTyped(value?: EncryptionKeyReadRotationConfigurationResponse | null, ignoreDiscriminator?: boolean): any;
|