1
0
Fork 0
toolkit/packages/warp-cache/src/internal/warpcache-ts-sdk/models/commons-get-cache-stats-req...

55 lines
1.1 KiB
TypeScript

/* tslint:disable */
/* eslint-disable */
/**
* WarpCache
* Caching server for WarpBuild
*
* The version of the OpenAPI document: 0.1.0
* Contact: suppport@warpbuild.com
*
* 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 CommonsGetCacheStatsRequest
*/
export interface CommonsGetCacheStatsRequest {
/**
*
* @type {string}
* @memberof CommonsGetCacheStatsRequest
*/
'search_text'?: string;
/**
*
* @type {string}
* @memberof CommonsGetCacheStatsRequest
*/
'stats_from_time'?: string;
/**
*
* @type {string}
* @memberof CommonsGetCacheStatsRequest
*/
'stats_to_time'?: string;
/**
*
* @type {Array<string>}
* @memberof CommonsGetCacheStatsRequest
*/
'vcs_refs'?: Array<string>;
/**
*
* @type {Array<string>}
* @memberof CommonsGetCacheStatsRequest
*/
'vcs_repositories'?: Array<string>;
}