/** * 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.20.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} * @memberof AuthReadTuningInformationResponse */ allowedManagedKeys?: Array; /** * * @type {Array} * @memberof AuthReadTuningInformationResponse */ allowedResponseHeaders?: Array; /** * * @type {Array} * @memberof AuthReadTuningInformationResponse */ auditNonHmacRequestKeys?: Array; /** * * @type {Array} * @memberof AuthReadTuningInformationResponse */ auditNonHmacResponseKeys?: Array; /** * * @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} * @memberof AuthReadTuningInformationResponse */ passthroughRequestHeaders?: Array; /** * * @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;