/** * 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.20.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 CollectHostInformationResponse */ export interface CollectHostInformationResponse { /** * * @type {Array} * @memberof CollectHostInformationResponse */ cpu?: Array; /** * * @type {Array} * @memberof CollectHostInformationResponse */ cpuTimes?: Array; /** * * @type {Array} * @memberof CollectHostInformationResponse */ disk?: Array; /** * * @type {object} * @memberof CollectHostInformationResponse */ host?: object; /** * * @type {object} * @memberof CollectHostInformationResponse */ memory?: object; /** * * @type {Date} * @memberof CollectHostInformationResponse */ timestamp?: Date; } /** * Check if a given object implements the CollectHostInformationResponse interface. */ export declare function instanceOfCollectHostInformationResponse(value: object): value is CollectHostInformationResponse; export declare function CollectHostInformationResponseFromJSON(json: any): CollectHostInformationResponse; export declare function CollectHostInformationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CollectHostInformationResponse; export declare function CollectHostInformationResponseToJSON(json: any): CollectHostInformationResponse; export declare function CollectHostInformationResponseToJSONTyped(value?: CollectHostInformationResponse | null, ignoreDiscriminator?: boolean): any;