kb-cloud-client-typescript 2.3.0-alpha.97 → 2.3.0-alpha.98
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/adminapi/apis/cluster-log-api.d.ts +114 -2
- package/dist/adminapi/apis/cluster-log-api.d.ts.map +1 -1
- package/dist/adminapi/apis/cluster-log-api.js +75 -5
- package/dist/adminapi/apis/cluster-log-api.js.map +1 -1
- package/dist/adminapi/apis/shared-api.d.ts +114 -2
- package/dist/adminapi/apis/shared-api.d.ts.map +1 -1
- package/dist/adminapi/apis/shared-api.js +75 -5
- package/dist/adminapi/apis/shared-api.js.map +1 -1
- package/dist/adminapi/models/storage-create.d.ts +0 -6
- package/dist/adminapi/models/storage-create.d.ts.map +1 -1
- package/dist/adminapi/models/storage-update.d.ts +0 -6
- package/dist/adminapi/models/storage-update.d.ts.map +1 -1
- package/dist/adminapi/models/storage.d.ts +0 -6
- package/dist/adminapi/models/storage.d.ts.map +1 -1
- package/dist/internalapi/models/storage-create.d.ts +0 -6
- package/dist/internalapi/models/storage-create.d.ts.map +1 -1
- package/dist/internalapi/models/storage.d.ts +0 -6
- package/dist/internalapi/models/storage.d.ts.map +1 -1
- package/dist/openapi/apis/cluster-log-api.d.ts +114 -2
- package/dist/openapi/apis/cluster-log-api.d.ts.map +1 -1
- package/dist/openapi/apis/cluster-log-api.js +75 -5
- package/dist/openapi/apis/cluster-log-api.js.map +1 -1
- package/dist/openapi/apis/shared-api.d.ts +114 -2
- package/dist/openapi/apis/shared-api.d.ts.map +1 -1
- package/dist/openapi/apis/shared-api.js +75 -5
- package/dist/openapi/apis/shared-api.js.map +1 -1
- package/dist/openapi/models/storage.d.ts +0 -6
- package/dist/openapi/models/storage.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/adminapi/apis/cluster-log-api.ts +187 -5
- package/src/adminapi/apis/shared-api.ts +187 -5
- package/src/adminapi/models/storage-create.ts +0 -6
- package/src/adminapi/models/storage-update.ts +0 -6
- package/src/adminapi/models/storage.ts +0 -6
- package/src/adminapi.yaml +68 -12
- package/src/internalapi/models/storage-create.ts +0 -6
- package/src/internalapi/models/storage.ts +0 -6
- package/src/internalapi.yaml +0 -8
- package/src/openapi/apis/cluster-log-api.ts +187 -5
- package/src/openapi/apis/shared-api.ts +187 -5
- package/src/openapi/models/storage.ts +0 -6
- package/src/openapi.yaml +68 -4
|
@@ -2122,10 +2122,24 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2122
2122
|
* @param {string} [componentName]
|
|
2123
2123
|
* @param {string} [instanceName]
|
|
2124
2124
|
* @param {string} [query]
|
|
2125
|
+
* @param {number} [minExecutionTime] Minimum slow log execution time in seconds. Only applies when logType=slow.
|
|
2126
|
+
* @param {number} [maxExecutionTime] Maximum slow log execution time in seconds. Only applies when logType=slow.
|
|
2127
|
+
* @param {number} [minLockTime] Minimum slow log lock time in seconds. Only applies when logType=slow.
|
|
2128
|
+
* @param {number} [maxLockTime] Maximum slow log lock time in seconds. Only applies when logType=slow.
|
|
2129
|
+
* @param {number} [minRowsExamined]
|
|
2130
|
+
* @param {number} [maxRowsExamined]
|
|
2131
|
+
* @param {number} [minRowsSent]
|
|
2132
|
+
* @param {number} [maxRowsSent]
|
|
2133
|
+
* @param {string} [dbName]
|
|
2134
|
+
* @param {string} [userName]
|
|
2135
|
+
* @param {string} [clientIp]
|
|
2136
|
+
* @param {string} [appName]
|
|
2137
|
+
* @param {string} [templateId]
|
|
2138
|
+
* @param {boolean} [unclassifiedOnly]
|
|
2125
2139
|
* @param {*} [options] Override http request option.
|
|
2126
2140
|
* @throws {RequiredError}
|
|
2127
2141
|
*/
|
|
2128
|
-
queryLogHits: (orgName: string, clusterName: string, startTime: string, endTime: string, step: string, logType: string, componentName?: string, instanceName?: string, query?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2142
|
+
queryLogHits: (orgName: string, clusterName: string, startTime: string, endTime: string, step: string, logType: string, componentName?: string, instanceName?: string, query?: string, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, userName?: string, clientIp?: string, appName?: string, templateId?: string, unclassifiedOnly?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2129
2143
|
/**
|
|
2130
2144
|
* Query pod logs of a cluster
|
|
2131
2145
|
* @summary Query cluster pod logs
|
|
@@ -4628,10 +4642,24 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
|
|
|
4628
4642
|
* @param {string} [componentName]
|
|
4629
4643
|
* @param {string} [instanceName]
|
|
4630
4644
|
* @param {string} [query]
|
|
4645
|
+
* @param {number} [minExecutionTime] Minimum slow log execution time in seconds. Only applies when logType=slow.
|
|
4646
|
+
* @param {number} [maxExecutionTime] Maximum slow log execution time in seconds. Only applies when logType=slow.
|
|
4647
|
+
* @param {number} [minLockTime] Minimum slow log lock time in seconds. Only applies when logType=slow.
|
|
4648
|
+
* @param {number} [maxLockTime] Maximum slow log lock time in seconds. Only applies when logType=slow.
|
|
4649
|
+
* @param {number} [minRowsExamined]
|
|
4650
|
+
* @param {number} [maxRowsExamined]
|
|
4651
|
+
* @param {number} [minRowsSent]
|
|
4652
|
+
* @param {number} [maxRowsSent]
|
|
4653
|
+
* @param {string} [dbName]
|
|
4654
|
+
* @param {string} [userName]
|
|
4655
|
+
* @param {string} [clientIp]
|
|
4656
|
+
* @param {string} [appName]
|
|
4657
|
+
* @param {string} [templateId]
|
|
4658
|
+
* @param {boolean} [unclassifiedOnly]
|
|
4631
4659
|
* @param {*} [options] Override http request option.
|
|
4632
4660
|
* @throws {RequiredError}
|
|
4633
4661
|
*/
|
|
4634
|
-
queryLogHits(orgName: string, clusterName: string, startTime: string, endTime: string, step: string, logType: string, componentName?: string, instanceName?: string, query?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterLogHitsResponse>>;
|
|
4662
|
+
queryLogHits(orgName: string, clusterName: string, startTime: string, endTime: string, step: string, logType: string, componentName?: string, instanceName?: string, query?: string, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, userName?: string, clientIp?: string, appName?: string, templateId?: string, unclassifiedOnly?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterLogHitsResponse>>;
|
|
4635
4663
|
/**
|
|
4636
4664
|
* Query pod logs of a cluster
|
|
4637
4665
|
* @summary Query cluster pod logs
|
|
@@ -14178,6 +14206,90 @@ export interface SharedApiQueryLogHitsRequest {
|
|
|
14178
14206
|
* @memberof SharedApiQueryLogHits
|
|
14179
14207
|
*/
|
|
14180
14208
|
readonly query?: string;
|
|
14209
|
+
/**
|
|
14210
|
+
* Minimum slow log execution time in seconds. Only applies when logType=slow.
|
|
14211
|
+
* @type {number}
|
|
14212
|
+
* @memberof SharedApiQueryLogHits
|
|
14213
|
+
*/
|
|
14214
|
+
readonly minExecutionTime?: number;
|
|
14215
|
+
/**
|
|
14216
|
+
* Maximum slow log execution time in seconds. Only applies when logType=slow.
|
|
14217
|
+
* @type {number}
|
|
14218
|
+
* @memberof SharedApiQueryLogHits
|
|
14219
|
+
*/
|
|
14220
|
+
readonly maxExecutionTime?: number;
|
|
14221
|
+
/**
|
|
14222
|
+
* Minimum slow log lock time in seconds. Only applies when logType=slow.
|
|
14223
|
+
* @type {number}
|
|
14224
|
+
* @memberof SharedApiQueryLogHits
|
|
14225
|
+
*/
|
|
14226
|
+
readonly minLockTime?: number;
|
|
14227
|
+
/**
|
|
14228
|
+
* Maximum slow log lock time in seconds. Only applies when logType=slow.
|
|
14229
|
+
* @type {number}
|
|
14230
|
+
* @memberof SharedApiQueryLogHits
|
|
14231
|
+
*/
|
|
14232
|
+
readonly maxLockTime?: number;
|
|
14233
|
+
/**
|
|
14234
|
+
*
|
|
14235
|
+
* @type {number}
|
|
14236
|
+
* @memberof SharedApiQueryLogHits
|
|
14237
|
+
*/
|
|
14238
|
+
readonly minRowsExamined?: number;
|
|
14239
|
+
/**
|
|
14240
|
+
*
|
|
14241
|
+
* @type {number}
|
|
14242
|
+
* @memberof SharedApiQueryLogHits
|
|
14243
|
+
*/
|
|
14244
|
+
readonly maxRowsExamined?: number;
|
|
14245
|
+
/**
|
|
14246
|
+
*
|
|
14247
|
+
* @type {number}
|
|
14248
|
+
* @memberof SharedApiQueryLogHits
|
|
14249
|
+
*/
|
|
14250
|
+
readonly minRowsSent?: number;
|
|
14251
|
+
/**
|
|
14252
|
+
*
|
|
14253
|
+
* @type {number}
|
|
14254
|
+
* @memberof SharedApiQueryLogHits
|
|
14255
|
+
*/
|
|
14256
|
+
readonly maxRowsSent?: number;
|
|
14257
|
+
/**
|
|
14258
|
+
*
|
|
14259
|
+
* @type {string}
|
|
14260
|
+
* @memberof SharedApiQueryLogHits
|
|
14261
|
+
*/
|
|
14262
|
+
readonly dbName?: string;
|
|
14263
|
+
/**
|
|
14264
|
+
*
|
|
14265
|
+
* @type {string}
|
|
14266
|
+
* @memberof SharedApiQueryLogHits
|
|
14267
|
+
*/
|
|
14268
|
+
readonly userName?: string;
|
|
14269
|
+
/**
|
|
14270
|
+
*
|
|
14271
|
+
* @type {string}
|
|
14272
|
+
* @memberof SharedApiQueryLogHits
|
|
14273
|
+
*/
|
|
14274
|
+
readonly clientIp?: string;
|
|
14275
|
+
/**
|
|
14276
|
+
*
|
|
14277
|
+
* @type {string}
|
|
14278
|
+
* @memberof SharedApiQueryLogHits
|
|
14279
|
+
*/
|
|
14280
|
+
readonly appName?: string;
|
|
14281
|
+
/**
|
|
14282
|
+
*
|
|
14283
|
+
* @type {string}
|
|
14284
|
+
* @memberof SharedApiQueryLogHits
|
|
14285
|
+
*/
|
|
14286
|
+
readonly templateId?: string;
|
|
14287
|
+
/**
|
|
14288
|
+
*
|
|
14289
|
+
* @type {boolean}
|
|
14290
|
+
* @memberof SharedApiQueryLogHits
|
|
14291
|
+
*/
|
|
14292
|
+
readonly unclassifiedOnly?: boolean;
|
|
14181
14293
|
}
|
|
14182
14294
|
/**
|
|
14183
14295
|
* Request parameters for queryPodLogs operation in SharedApi.
|