/** * 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 TransitConfigureKeysRequest */ export interface TransitConfigureKeysRequest { /** * Whether to allow automatic upserting (creation) of keys on the encrypt endpoint. * @type {boolean} * @memberof TransitConfigureKeysRequest */ disableUpsert?: boolean; } /** * Check if a given object implements the TransitConfigureKeysRequest interface. */ export declare function instanceOfTransitConfigureKeysRequest(value: object): value is TransitConfigureKeysRequest; export declare function TransitConfigureKeysRequestFromJSON(json: any): TransitConfigureKeysRequest; export declare function TransitConfigureKeysRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransitConfigureKeysRequest; export declare function TransitConfigureKeysRequestToJSON(json: any): TransitConfigureKeysRequest; export declare function TransitConfigureKeysRequestToJSONTyped(value?: TransitConfigureKeysRequest | null, ignoreDiscriminator?: boolean): any;