mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-25 00:21:07 +02:00
87 lines
2.2 KiB
TypeScript
87 lines
2.2 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.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 RateLimitQuotasReadResponse
|
|
*/
|
|
export interface RateLimitQuotasReadResponse {
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof RateLimitQuotasReadResponse
|
|
*/
|
|
blockInterval?: number;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof RateLimitQuotasReadResponse
|
|
*/
|
|
groupBy?: string;
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof RateLimitQuotasReadResponse
|
|
*/
|
|
inheritable?: boolean;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof RateLimitQuotasReadResponse
|
|
*/
|
|
interval?: number;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof RateLimitQuotasReadResponse
|
|
*/
|
|
name?: string;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof RateLimitQuotasReadResponse
|
|
*/
|
|
path?: string;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof RateLimitQuotasReadResponse
|
|
*/
|
|
rate?: number;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof RateLimitQuotasReadResponse
|
|
*/
|
|
role?: string;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof RateLimitQuotasReadResponse
|
|
*/
|
|
secondaryRate?: number;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof RateLimitQuotasReadResponse
|
|
*/
|
|
type?: string;
|
|
}
|
|
/**
|
|
* Check if a given object implements the RateLimitQuotasReadResponse interface.
|
|
*/
|
|
export declare function instanceOfRateLimitQuotasReadResponse(value: object): value is RateLimitQuotasReadResponse;
|
|
export declare function RateLimitQuotasReadResponseFromJSON(json: any): RateLimitQuotasReadResponse;
|
|
export declare function RateLimitQuotasReadResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): RateLimitQuotasReadResponse;
|
|
export declare function RateLimitQuotasReadResponseToJSON(json: any): RateLimitQuotasReadResponse;
|
|
export declare function RateLimitQuotasReadResponseToJSONTyped(value?: RateLimitQuotasReadResponse | null, ignoreDiscriminator?: boolean): any;
|