/** * 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 TransformCheckTokenizedRequest */ export interface TransformCheckTokenizedRequest { /** * Specifies a list of items to be checked if tokenized or not in a single batch. If this parameter is set, the top-level parameters 'value', and 'transformation' will be ignored. Each batch item within the list can specify these parameters instead. * @type {Array} * @memberof TransformCheckTokenizedRequest */ batchInput?: Array; /** * For lookup, the specific expiration time of the token to retrieve. Can be omitted to look for a token with no expiration, or `any` for all tokens regardless of expiration. This and min/max expiration cannot be used simultaneously. * @type {string} * @memberof TransformCheckTokenizedRequest */ expiration?: string; /** * For ranged lookup of expirable tokens, the maximum expiration time of the token (in RFC3339 format), inclusive. This and expiration cannot be used simultaneously. * @type {string} * @memberof TransformCheckTokenizedRequest */ maxExpiration?: string; /** * For ranged lookup of expirable tokens, the minimum expiration time of the token (in RFC3339 format), inclusive. This and expiration cannot be used simultaneously. * @type {string} * @memberof TransformCheckTokenizedRequest */ minExpiration?: string; /** * Name of the transformation. * @type {string} * @memberof TransformCheckTokenizedRequest */ transformation?: string; /** * Plaintext value which needs to be checked if tokenized or not, or deleted. * @type {string} * @memberof TransformCheckTokenizedRequest */ value?: string; } /** * Check if a given object implements the TransformCheckTokenizedRequest interface. */ export declare function instanceOfTransformCheckTokenizedRequest(value: object): value is TransformCheckTokenizedRequest; export declare function TransformCheckTokenizedRequestFromJSON(json: any): TransformCheckTokenizedRequest; export declare function TransformCheckTokenizedRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransformCheckTokenizedRequest; export declare function TransformCheckTokenizedRequestToJSON(json: any): TransformCheckTokenizedRequest; export declare function TransformCheckTokenizedRequestToJSONTyped(value?: TransformCheckTokenizedRequest | null, ignoreDiscriminator?: boolean): any;