mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 22:57:02 +02:00
147 lines
3.8 KiB
TypeScript
147 lines
3.8 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 AuthReadTuningInformationResponse
|
|
*/
|
|
export interface AuthReadTuningInformationResponse {
|
|
/**
|
|
*
|
|
* @type {Array<string>}
|
|
* @memberof AuthReadTuningInformationResponse
|
|
*/
|
|
allowedManagedKeys?: Array<string>;
|
|
/**
|
|
*
|
|
* @type {Array<string>}
|
|
* @memberof AuthReadTuningInformationResponse
|
|
*/
|
|
allowedResponseHeaders?: Array<string>;
|
|
/**
|
|
*
|
|
* @type {Array<string>}
|
|
* @memberof AuthReadTuningInformationResponse
|
|
*/
|
|
auditNonHmacRequestKeys?: Array<string>;
|
|
/**
|
|
*
|
|
* @type {Array<string>}
|
|
* @memberof AuthReadTuningInformationResponse
|
|
*/
|
|
auditNonHmacResponseKeys?: Array<string>;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof AuthReadTuningInformationResponse
|
|
*/
|
|
defaultLeaseTtl?: number;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof AuthReadTuningInformationResponse
|
|
*/
|
|
description?: string;
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof AuthReadTuningInformationResponse
|
|
*/
|
|
externalEntropyAccess?: boolean;
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof AuthReadTuningInformationResponse
|
|
*/
|
|
forceNoCache?: boolean;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof AuthReadTuningInformationResponse
|
|
*/
|
|
identityTokenKey?: string;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof AuthReadTuningInformationResponse
|
|
*/
|
|
listingVisibility?: string;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof AuthReadTuningInformationResponse
|
|
*/
|
|
maxLeaseTtl?: number;
|
|
/**
|
|
*
|
|
* @type {object}
|
|
* @memberof AuthReadTuningInformationResponse
|
|
*/
|
|
options?: object;
|
|
/**
|
|
*
|
|
* @type {Array<string>}
|
|
* @memberof AuthReadTuningInformationResponse
|
|
*/
|
|
passthroughRequestHeaders?: Array<string>;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof AuthReadTuningInformationResponse
|
|
*/
|
|
pluginVersion?: string;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof AuthReadTuningInformationResponse
|
|
*/
|
|
tokenType?: string;
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof AuthReadTuningInformationResponse
|
|
*/
|
|
trimRequestTrailingSlashes?: boolean;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof AuthReadTuningInformationResponse
|
|
*/
|
|
userLockoutCounterResetDuration?: number;
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof AuthReadTuningInformationResponse
|
|
*/
|
|
userLockoutDisable?: boolean;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof AuthReadTuningInformationResponse
|
|
*/
|
|
userLockoutDuration?: number;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof AuthReadTuningInformationResponse
|
|
*/
|
|
userLockoutThreshold?: number;
|
|
}
|
|
/**
|
|
* Check if a given object implements the AuthReadTuningInformationResponse interface.
|
|
*/
|
|
export declare function instanceOfAuthReadTuningInformationResponse(value: object): value is AuthReadTuningInformationResponse;
|
|
export declare function AuthReadTuningInformationResponseFromJSON(json: any): AuthReadTuningInformationResponse;
|
|
export declare function AuthReadTuningInformationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthReadTuningInformationResponse;
|
|
export declare function AuthReadTuningInformationResponseToJSON(json: any): AuthReadTuningInformationResponse;
|
|
export declare function AuthReadTuningInformationResponseToJSONTyped(value?: AuthReadTuningInformationResponse | null, ignoreDiscriminator?: boolean): any;
|