mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 06:37:02 +02:00
33 lines
1.2 KiB
TypeScript
33 lines
1.2 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 AuditingCalculateHashResponse
|
|
*/
|
|
export interface AuditingCalculateHashResponse {
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof AuditingCalculateHashResponse
|
|
*/
|
|
hash?: string;
|
|
}
|
|
/**
|
|
* Check if a given object implements the AuditingCalculateHashResponse interface.
|
|
*/
|
|
export declare function instanceOfAuditingCalculateHashResponse(value: object): value is AuditingCalculateHashResponse;
|
|
export declare function AuditingCalculateHashResponseFromJSON(json: any): AuditingCalculateHashResponse;
|
|
export declare function AuditingCalculateHashResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuditingCalculateHashResponse;
|
|
export declare function AuditingCalculateHashResponseToJSON(json: any): AuditingCalculateHashResponse;
|
|
export declare function AuditingCalculateHashResponseToJSONTyped(value?: AuditingCalculateHashResponse | null, ignoreDiscriminator?: boolean): any;
|