mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 06:37:02 +02:00
51 lines
2.1 KiB
TypeScript
51 lines
2.1 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 TransformDecodeWithFormatRequest
|
|
*/
|
|
export interface TransformDecodeWithFormatRequest {
|
|
/**
|
|
* 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<object>}
|
|
* @memberof TransformDecodeWithFormatRequest
|
|
*/
|
|
batchInput?: Array<object>;
|
|
/**
|
|
* 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 TransformDecodeWithFormatRequest
|
|
*/
|
|
transformation?: string;
|
|
/**
|
|
* The tweak value to use. Only applicable for FPE transformations
|
|
* @type {string}
|
|
* @memberof TransformDecodeWithFormatRequest
|
|
*/
|
|
tweak?: string;
|
|
/**
|
|
* The value in which to decode.
|
|
* @type {string}
|
|
* @memberof TransformDecodeWithFormatRequest
|
|
*/
|
|
value?: string;
|
|
}
|
|
/**
|
|
* Check if a given object implements the TransformDecodeWithFormatRequest interface.
|
|
*/
|
|
export declare function instanceOfTransformDecodeWithFormatRequest(value: object): value is TransformDecodeWithFormatRequest;
|
|
export declare function TransformDecodeWithFormatRequestFromJSON(json: any): TransformDecodeWithFormatRequest;
|
|
export declare function TransformDecodeWithFormatRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransformDecodeWithFormatRequest;
|
|
export declare function TransformDecodeWithFormatRequestToJSON(json: any): TransformDecodeWithFormatRequest;
|
|
export declare function TransformDecodeWithFormatRequestToJSONTyped(value?: TransformDecodeWithFormatRequest | null, ignoreDiscriminator?: boolean): any;
|