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

45 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 TransformWriteMaskingTransformationRequest
*/
export interface TransformWriteMaskingTransformationRequest {
/**
* The set of roles allowed to perform this transformation.
* @type {Array<string>}
* @memberof TransformWriteMaskingTransformationRequest
*/
allowedRoles?: Array<string>;
/**
* The character used to replace data when in masking mode
* @type {string}
* @memberof TransformWriteMaskingTransformationRequest
*/
maskingCharacter?: string;
/**
* The name of the template to use.
* @type {string}
* @memberof TransformWriteMaskingTransformationRequest
*/
template?: string;
}
/**
* Check if a given object implements the TransformWriteMaskingTransformationRequest interface.
*/
export declare function instanceOfTransformWriteMaskingTransformationRequest(value: object): value is TransformWriteMaskingTransformationRequest;
export declare function TransformWriteMaskingTransformationRequestFromJSON(json: any): TransformWriteMaskingTransformationRequest;
export declare function TransformWriteMaskingTransformationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransformWriteMaskingTransformationRequest;
export declare function TransformWriteMaskingTransformationRequestToJSON(json: any): TransformWriteMaskingTransformationRequest;
export declare function TransformWriteMaskingTransformationRequestToJSONTyped(value?: TransformWriteMaskingTransformationRequest | null, ignoreDiscriminator?: boolean): any;