/** * 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 TransformDecodeRequest */ export interface TransformDecodeRequest { /** * Specifies a list of items to be decoded in a single batch. If this parameter is set, the top-level parameters 'value', 'transformation' and 'tweak' will be ignored. Each batch item within the list can specify these parameters instead. * @type {Array} * @memberof TransformDecodeRequest */ batchInput?: Array; /** * The transformation to perform. If no value is provided and the role contains a single transformation, this value will be inferred from the role. * @type {string} * @memberof TransformDecodeRequest */ transformation?: string; /** * The tweak value to use. Only applicable for FPE transformations * @type {string} * @memberof TransformDecodeRequest */ tweak?: string; /** * The value in which to decode. * @type {string} * @memberof TransformDecodeRequest */ value?: string; } /** * Check if a given object implements the TransformDecodeRequest interface. */ export declare function instanceOfTransformDecodeRequest(value: object): value is TransformDecodeRequest; export declare function TransformDecodeRequestFromJSON(json: any): TransformDecodeRequest; export declare function TransformDecodeRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransformDecodeRequest; export declare function TransformDecodeRequestToJSON(json: any): TransformDecodeRequest; export declare function TransformDecodeRequestToJSONTyped(value?: TransformDecodeRequest | null, ignoreDiscriminator?: boolean): any;