mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 14:47:01 +02:00
39 lines
1.7 KiB
TypeScript
39 lines
1.7 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 GenerateRandomWithSourceAndBytesRequest
|
|
*/
|
|
export interface GenerateRandomWithSourceAndBytesRequest {
|
|
/**
|
|
* The number of bytes to generate (POST body parameter). Defaults to 32 (256 bits).
|
|
* @type {number}
|
|
* @memberof GenerateRandomWithSourceAndBytesRequest
|
|
*/
|
|
bytes?: number;
|
|
/**
|
|
* Encoding format to use. Can be "hex" or "base64". Defaults to "base64".
|
|
* @type {string}
|
|
* @memberof GenerateRandomWithSourceAndBytesRequest
|
|
*/
|
|
format?: string;
|
|
}
|
|
/**
|
|
* Check if a given object implements the GenerateRandomWithSourceAndBytesRequest interface.
|
|
*/
|
|
export declare function instanceOfGenerateRandomWithSourceAndBytesRequest(value: object): value is GenerateRandomWithSourceAndBytesRequest;
|
|
export declare function GenerateRandomWithSourceAndBytesRequestFromJSON(json: any): GenerateRandomWithSourceAndBytesRequest;
|
|
export declare function GenerateRandomWithSourceAndBytesRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GenerateRandomWithSourceAndBytesRequest;
|
|
export declare function GenerateRandomWithSourceAndBytesRequestToJSON(json: any): GenerateRandomWithSourceAndBytesRequest;
|
|
export declare function GenerateRandomWithSourceAndBytesRequestToJSONTyped(value?: GenerateRandomWithSourceAndBytesRequest | null, ignoreDiscriminator?: boolean): any;
|