vault/ui/api-client/dist/esm/models/TransformSnapshotTokenizationStateRequest.d.ts

39 lines
1.7 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 TransformSnapshotTokenizationStateRequest
*/
export interface TransformSnapshotTokenizationStateRequest {
/**
* The continuation value to resume an already started snapshot.
* @type {string}
* @memberof TransformSnapshotTokenizationStateRequest
*/
continuation?: string;
/**
* The maximum number of tokenization entries to return. If more exist a continuation will be present on the response.
* @type {number}
* @memberof TransformSnapshotTokenizationStateRequest
*/
limit?: number;
}
/**
* Check if a given object implements the TransformSnapshotTokenizationStateRequest interface.
*/
export declare function instanceOfTransformSnapshotTokenizationStateRequest(value: object): value is TransformSnapshotTokenizationStateRequest;
export declare function TransformSnapshotTokenizationStateRequestFromJSON(json: any): TransformSnapshotTokenizationStateRequest;
export declare function TransformSnapshotTokenizationStateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransformSnapshotTokenizationStateRequest;
export declare function TransformSnapshotTokenizationStateRequestToJSON(json: any): TransformSnapshotTokenizationStateRequest;
export declare function TransformSnapshotTokenizationStateRequestToJSONTyped(value?: TransformSnapshotTokenizationStateRequest | null, ignoreDiscriminator?: boolean): any;