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

39 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 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 SystemWriteUtilizationRequest
*/
export interface SystemWriteUtilizationRequest {
/**
* Provides context about the conditions under which the report was generated and submitted. This message is not included in the license utilization bundle but will be included in the vault server logs.
* @type {string}
* @memberof SystemWriteUtilizationRequest
*/
message?: string;
/**
* If set to true, includes only todays snapshot data in response, no historical snapshot data. If not set, response includes all persisted snapshot data.
* @type {boolean}
* @memberof SystemWriteUtilizationRequest
*/
todayOnly?: boolean;
}
/**
* Check if a given object implements the SystemWriteUtilizationRequest interface.
*/
export declare function instanceOfSystemWriteUtilizationRequest(value: object): value is SystemWriteUtilizationRequest;
export declare function SystemWriteUtilizationRequestFromJSON(json: any): SystemWriteUtilizationRequest;
export declare function SystemWriteUtilizationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemWriteUtilizationRequest;
export declare function SystemWriteUtilizationRequestToJSON(json: any): SystemWriteUtilizationRequest;
export declare function SystemWriteUtilizationRequestToJSONTyped(value?: SystemWriteUtilizationRequest | null, ignoreDiscriminator?: boolean): any;