mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 06:37:02 +02:00
39 lines
1.8 KiB
TypeScript
39 lines
1.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 TransformExportDecodedTokenizationTokensRequest
|
|
*/
|
|
export interface TransformExportDecodedTokenizationTokensRequest {
|
|
/**
|
|
* The continuation value to resume an already started export.
|
|
* @type {string}
|
|
* @memberof TransformExportDecodedTokenizationTokensRequest
|
|
*/
|
|
continuation?: string;
|
|
/**
|
|
* The maximum number of tokenization entries to return. If more exist a continuation will be present on the response.
|
|
* @type {number}
|
|
* @memberof TransformExportDecodedTokenizationTokensRequest
|
|
*/
|
|
limit?: number;
|
|
}
|
|
/**
|
|
* Check if a given object implements the TransformExportDecodedTokenizationTokensRequest interface.
|
|
*/
|
|
export declare function instanceOfTransformExportDecodedTokenizationTokensRequest(value: object): value is TransformExportDecodedTokenizationTokensRequest;
|
|
export declare function TransformExportDecodedTokenizationTokensRequestFromJSON(json: any): TransformExportDecodedTokenizationTokensRequest;
|
|
export declare function TransformExportDecodedTokenizationTokensRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransformExportDecodedTokenizationTokensRequest;
|
|
export declare function TransformExportDecodedTokenizationTokensRequestToJSON(json: any): TransformExportDecodedTokenizationTokensRequest;
|
|
export declare function TransformExportDecodedTokenizationTokensRequestToJSONTyped(value?: TransformExportDecodedTokenizationTokensRequest | null, ignoreDiscriminator?: boolean): any;
|