/** * 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 TransitGenerateRandomWithSourceAndBytesRequest */ export interface TransitGenerateRandomWithSourceAndBytesRequest { /** * The number of bytes to generate (POST body parameter). Defaults to 32 (256 bits). * @type {number} * @memberof TransitGenerateRandomWithSourceAndBytesRequest */ bytes?: number; /** * Encoding format to use. Can be "hex" or "base64". Defaults to "base64". * @type {string} * @memberof TransitGenerateRandomWithSourceAndBytesRequest */ format?: string; } /** * Check if a given object implements the TransitGenerateRandomWithSourceAndBytesRequest interface. */ export declare function instanceOfTransitGenerateRandomWithSourceAndBytesRequest(value: object): value is TransitGenerateRandomWithSourceAndBytesRequest; export declare function TransitGenerateRandomWithSourceAndBytesRequestFromJSON(json: any): TransitGenerateRandomWithSourceAndBytesRequest; export declare function TransitGenerateRandomWithSourceAndBytesRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransitGenerateRandomWithSourceAndBytesRequest; export declare function TransitGenerateRandomWithSourceAndBytesRequestToJSON(json: any): TransitGenerateRandomWithSourceAndBytesRequest; export declare function TransitGenerateRandomWithSourceAndBytesRequestToJSONTyped(value?: TransitGenerateRandomWithSourceAndBytesRequest | null, ignoreDiscriminator?: boolean): any;