kb-cloud-client-typescript 2.3.0-alpha.108 → 2.3.0-alpha.110

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.
@@ -41,10 +41,24 @@ export declare const ClusterLogApiAxiosParamCreator: (configuration?: Configurat
41
41
  * @param {SortType} [sortType]
42
42
  * @param {string} [groupBy]
43
43
  * @param {number} [topN]
44
+ * @param {number} [minExecutionTime] Minimum execution time in seconds. Decimal values are supported, for example 0.5.
45
+ * @param {number} [maxExecutionTime] Maximum execution time in seconds. Decimal values are supported, for example 0.5.
46
+ * @param {number} [minLockTime] Minimum lock time in seconds. Decimal values are supported, for example 0.001.
47
+ * @param {number} [maxLockTime] Maximum lock time in seconds. Decimal values are supported, for example 0.001.
48
+ * @param {number} [minRowsExamined]
49
+ * @param {number} [maxRowsExamined]
50
+ * @param {number} [minRowsSent]
51
+ * @param {number} [maxRowsSent]
52
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
53
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
54
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
55
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
56
+ * @param {string} [templateId]
57
+ * @param {boolean} [unclassifiedOnly]
44
58
  * @param {*} [options] Override http request option.
45
59
  * @throws {RequiredError}
46
60
  */
47
- aggregateSlowLogs: (orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, groupBy?: string, topN?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
61
+ aggregateSlowLogs: (orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, groupBy?: string, topN?: number, 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>;
48
62
  /**
49
63
  * Explain a concrete SQL from a slow log using the cluster default datasource.
50
64
  * @summary Explain cluster slow log SQL
@@ -88,21 +102,16 @@ export declare const ClusterLogApiAxiosParamCreator: (configuration?: Configurat
88
102
  * @param {number} [maxRowsExamined]
89
103
  * @param {number} [minRowsSent]
90
104
  * @param {number} [maxRowsSent]
91
- * @param {string} [dbName]
92
- * @param {string} [dbNameContains]
93
- * @param {string} [userName]
94
- * @param {string} [userNameContains]
95
- * @param {string} [clientIp]
96
- * @param {string} [clientIpContains]
97
- * @param {string} [clientIpCIDR]
98
- * @param {string} [appName]
99
- * @param {string} [appNameContains]
105
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
106
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
107
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
108
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
100
109
  * @param {string} [templateId]
101
110
  * @param {boolean} [unclassifiedOnly]
102
111
  * @param {*} [options] Override http request option.
103
112
  * @throws {RequiredError}
104
113
  */
105
- getSlowLogStats: (orgName: string, clusterName: string, startTime: string, endTime: 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, dbNameContains?: string, userName?: string, userNameContains?: string, clientIp?: string, clientIpContains?: string, clientIpCIDR?: string, appName?: string, appNameContains?: string, templateId?: string, unclassifiedOnly?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
114
+ getSlowLogStats: (orgName: string, clusterName: string, startTime: string, endTime: 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>;
106
115
  /**
107
116
  * Get a slow log template of a cluster (VictoriaLogs backend only)
108
117
  * @summary Get cluster slow log template
@@ -170,21 +179,16 @@ export declare const ClusterLogApiAxiosParamCreator: (configuration?: Configurat
170
179
  * @param {number} [maxRowsExamined]
171
180
  * @param {number} [minRowsSent]
172
181
  * @param {number} [maxRowsSent]
173
- * @param {string} [dbName]
174
- * @param {string} [dbNameContains]
175
- * @param {string} [userName]
176
- * @param {string} [userNameContains]
177
- * @param {string} [clientIp]
178
- * @param {string} [clientIpContains]
179
- * @param {string} [clientIpCIDR]
180
- * @param {string} [appName]
181
- * @param {string} [appNameContains]
182
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
183
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
184
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
185
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
182
186
  * @param {string} [templateId]
183
187
  * @param {boolean} [unclassifiedOnly]
184
188
  * @param {*} [options] Override http request option.
185
189
  * @throws {RequiredError}
186
190
  */
187
- 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, dbNameContains?: string, userName?: string, userNameContains?: string, clientIp?: string, clientIpContains?: string, clientIpCIDR?: string, appName?: string, appNameContains?: string, templateId?: string, unclassifiedOnly?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
191
+ 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>;
188
192
  /**
189
193
  * Query pod logs of a cluster
190
194
  * @summary Query cluster pod logs
@@ -239,20 +243,15 @@ export declare const ClusterLogApiAxiosParamCreator: (configuration?: Configurat
239
243
  * @param {number} [maxRowsExamined]
240
244
  * @param {number} [minRowsSent]
241
245
  * @param {number} [maxRowsSent]
242
- * @param {string} [dbName]
243
- * @param {string} [dbNameContains]
244
- * @param {string} [userName]
245
- * @param {string} [userNameContains]
246
- * @param {string} [clientIp]
247
- * @param {string} [clientIpContains]
248
- * @param {string} [clientIpCIDR]
249
- * @param {string} [appName]
250
- * @param {string} [appNameContains]
246
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
247
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
248
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
249
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
251
250
  * @param {boolean} [unclassifiedOnly]
252
251
  * @param {*} [options] Override http request option.
253
252
  * @throws {RequiredError}
254
253
  */
255
- querySlowLogTemplateSamples: (orgName: string, clusterName: string, templateId: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, dbNameContains?: string, userName?: string, userNameContains?: string, clientIp?: string, clientIpContains?: string, clientIpCIDR?: string, appName?: string, appNameContains?: string, unclassifiedOnly?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
254
+ querySlowLogTemplateSamples: (orgName: string, clusterName: string, templateId: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, userName?: string, clientIp?: string, appName?: string, unclassifiedOnly?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
256
255
  /**
257
256
  * Query slow log templates of a cluster (VictoriaLogs backend only)
258
257
  * @summary Query cluster slow log templates
@@ -274,19 +273,14 @@ export declare const ClusterLogApiAxiosParamCreator: (configuration?: Configurat
274
273
  * @param {number} [maxRowsExamined]
275
274
  * @param {number} [minRowsSent]
276
275
  * @param {number} [maxRowsSent]
277
- * @param {string} [dbName]
278
- * @param {string} [dbNameContains]
279
- * @param {string} [userName]
280
- * @param {string} [userNameContains]
281
- * @param {string} [clientIp]
282
- * @param {string} [clientIpContains]
283
- * @param {string} [clientIpCIDR]
284
- * @param {string} [appName]
285
- * @param {string} [appNameContains]
276
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
277
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
278
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
279
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
286
280
  * @param {*} [options] Override http request option.
287
281
  * @throws {RequiredError}
288
282
  */
289
- querySlowLogTemplates: (orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, topN?: number, sortBy?: string, sortType?: SortType, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, dbNameContains?: string, userName?: string, userNameContains?: string, clientIp?: string, clientIpContains?: string, clientIpCIDR?: string, appName?: string, appNameContains?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
283
+ querySlowLogTemplates: (orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, topN?: number, sortBy?: string, sortType?: SortType, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, userName?: string, clientIp?: string, appName?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
290
284
  /**
291
285
  * Query slow logs of a cluster
292
286
  * @summary Query cluster slow logs
@@ -307,21 +301,16 @@ export declare const ClusterLogApiAxiosParamCreator: (configuration?: Configurat
307
301
  * @param {number} [maxRowsExamined]
308
302
  * @param {number} [minRowsSent]
309
303
  * @param {number} [maxRowsSent]
310
- * @param {string} [dbName]
311
- * @param {string} [dbNameContains]
312
- * @param {string} [userName]
313
- * @param {string} [userNameContains]
314
- * @param {string} [clientIp]
315
- * @param {string} [clientIpContains]
316
- * @param {string} [clientIpCIDR]
317
- * @param {string} [appName]
318
- * @param {string} [appNameContains]
304
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
305
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
306
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
307
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
319
308
  * @param {string} [templateId]
320
309
  * @param {boolean} [unclassifiedOnly]
321
310
  * @param {*} [options] Override http request option.
322
311
  * @throws {RequiredError}
323
312
  */
324
- querySlowLogs: (orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, dbNameContains?: string, userName?: string, userNameContains?: string, clientIp?: string, clientIpContains?: string, clientIpCIDR?: string, appName?: string, appNameContains?: string, templateId?: string, unclassifiedOnly?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
313
+ querySlowLogs: (orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, 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>;
325
314
  };
326
315
  /**
327
316
  * ClusterLogApi - functional programming interface
@@ -342,10 +331,24 @@ export declare const ClusterLogApiFp: (configuration?: Configuration) => {
342
331
  * @param {SortType} [sortType]
343
332
  * @param {string} [groupBy]
344
333
  * @param {number} [topN]
334
+ * @param {number} [minExecutionTime] Minimum execution time in seconds. Decimal values are supported, for example 0.5.
335
+ * @param {number} [maxExecutionTime] Maximum execution time in seconds. Decimal values are supported, for example 0.5.
336
+ * @param {number} [minLockTime] Minimum lock time in seconds. Decimal values are supported, for example 0.001.
337
+ * @param {number} [maxLockTime] Maximum lock time in seconds. Decimal values are supported, for example 0.001.
338
+ * @param {number} [minRowsExamined]
339
+ * @param {number} [maxRowsExamined]
340
+ * @param {number} [minRowsSent]
341
+ * @param {number} [maxRowsSent]
342
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
343
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
344
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
345
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
346
+ * @param {string} [templateId]
347
+ * @param {boolean} [unclassifiedOnly]
345
348
  * @param {*} [options] Override http request option.
346
349
  * @throws {RequiredError}
347
350
  */
348
- aggregateSlowLogs(orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, groupBy?: string, topN?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterExecutionLogAggregateResponse>>;
351
+ aggregateSlowLogs(orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, groupBy?: string, topN?: number, 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<ClusterExecutionLogAggregateResponse>>;
349
352
  /**
350
353
  * Explain a concrete SQL from a slow log using the cluster default datasource.
351
354
  * @summary Explain cluster slow log SQL
@@ -389,21 +392,16 @@ export declare const ClusterLogApiFp: (configuration?: Configuration) => {
389
392
  * @param {number} [maxRowsExamined]
390
393
  * @param {number} [minRowsSent]
391
394
  * @param {number} [maxRowsSent]
392
- * @param {string} [dbName]
393
- * @param {string} [dbNameContains]
394
- * @param {string} [userName]
395
- * @param {string} [userNameContains]
396
- * @param {string} [clientIp]
397
- * @param {string} [clientIpContains]
398
- * @param {string} [clientIpCIDR]
399
- * @param {string} [appName]
400
- * @param {string} [appNameContains]
395
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
396
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
397
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
398
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
401
399
  * @param {string} [templateId]
402
400
  * @param {boolean} [unclassifiedOnly]
403
401
  * @param {*} [options] Override http request option.
404
402
  * @throws {RequiredError}
405
403
  */
406
- getSlowLogStats(orgName: string, clusterName: string, startTime: string, endTime: 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, dbNameContains?: string, userName?: string, userNameContains?: string, clientIp?: string, clientIpContains?: string, clientIpCIDR?: string, appName?: string, appNameContains?: string, templateId?: string, unclassifiedOnly?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterSlowLogStats>>;
404
+ getSlowLogStats(orgName: string, clusterName: string, startTime: string, endTime: 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<ClusterSlowLogStats>>;
407
405
  /**
408
406
  * Get a slow log template of a cluster (VictoriaLogs backend only)
409
407
  * @summary Get cluster slow log template
@@ -471,21 +469,16 @@ export declare const ClusterLogApiFp: (configuration?: Configuration) => {
471
469
  * @param {number} [maxRowsExamined]
472
470
  * @param {number} [minRowsSent]
473
471
  * @param {number} [maxRowsSent]
474
- * @param {string} [dbName]
475
- * @param {string} [dbNameContains]
476
- * @param {string} [userName]
477
- * @param {string} [userNameContains]
478
- * @param {string} [clientIp]
479
- * @param {string} [clientIpContains]
480
- * @param {string} [clientIpCIDR]
481
- * @param {string} [appName]
482
- * @param {string} [appNameContains]
472
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
473
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
474
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
475
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
483
476
  * @param {string} [templateId]
484
477
  * @param {boolean} [unclassifiedOnly]
485
478
  * @param {*} [options] Override http request option.
486
479
  * @throws {RequiredError}
487
480
  */
488
- 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, dbNameContains?: string, userName?: string, userNameContains?: string, clientIp?: string, clientIpContains?: string, clientIpCIDR?: string, appName?: string, appNameContains?: string, templateId?: string, unclassifiedOnly?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterLogHitsResponse>>;
481
+ 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>>;
489
482
  /**
490
483
  * Query pod logs of a cluster
491
484
  * @summary Query cluster pod logs
@@ -540,20 +533,15 @@ export declare const ClusterLogApiFp: (configuration?: Configuration) => {
540
533
  * @param {number} [maxRowsExamined]
541
534
  * @param {number} [minRowsSent]
542
535
  * @param {number} [maxRowsSent]
543
- * @param {string} [dbName]
544
- * @param {string} [dbNameContains]
545
- * @param {string} [userName]
546
- * @param {string} [userNameContains]
547
- * @param {string} [clientIp]
548
- * @param {string} [clientIpContains]
549
- * @param {string} [clientIpCIDR]
550
- * @param {string} [appName]
551
- * @param {string} [appNameContains]
536
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
537
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
538
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
539
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
552
540
  * @param {boolean} [unclassifiedOnly]
553
541
  * @param {*} [options] Override http request option.
554
542
  * @throws {RequiredError}
555
543
  */
556
- querySlowLogTemplateSamples(orgName: string, clusterName: string, templateId: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, dbNameContains?: string, userName?: string, userNameContains?: string, clientIp?: string, clientIpContains?: string, clientIpCIDR?: string, appName?: string, appNameContains?: string, unclassifiedOnly?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterExecutionLog>>;
544
+ querySlowLogTemplateSamples(orgName: string, clusterName: string, templateId: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, userName?: string, clientIp?: string, appName?: string, unclassifiedOnly?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterExecutionLog>>;
557
545
  /**
558
546
  * Query slow log templates of a cluster (VictoriaLogs backend only)
559
547
  * @summary Query cluster slow log templates
@@ -575,19 +563,14 @@ export declare const ClusterLogApiFp: (configuration?: Configuration) => {
575
563
  * @param {number} [maxRowsExamined]
576
564
  * @param {number} [minRowsSent]
577
565
  * @param {number} [maxRowsSent]
578
- * @param {string} [dbName]
579
- * @param {string} [dbNameContains]
580
- * @param {string} [userName]
581
- * @param {string} [userNameContains]
582
- * @param {string} [clientIp]
583
- * @param {string} [clientIpContains]
584
- * @param {string} [clientIpCIDR]
585
- * @param {string} [appName]
586
- * @param {string} [appNameContains]
566
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
567
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
568
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
569
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
587
570
  * @param {*} [options] Override http request option.
588
571
  * @throws {RequiredError}
589
572
  */
590
- querySlowLogTemplates(orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, topN?: number, sortBy?: string, sortType?: SortType, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, dbNameContains?: string, userName?: string, userNameContains?: string, clientIp?: string, clientIpContains?: string, clientIpCIDR?: string, appName?: string, appNameContains?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterSlowLogTemplateList>>;
573
+ querySlowLogTemplates(orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, topN?: number, sortBy?: string, sortType?: SortType, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, userName?: string, clientIp?: string, appName?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterSlowLogTemplateList>>;
591
574
  /**
592
575
  * Query slow logs of a cluster
593
576
  * @summary Query cluster slow logs
@@ -608,21 +591,16 @@ export declare const ClusterLogApiFp: (configuration?: Configuration) => {
608
591
  * @param {number} [maxRowsExamined]
609
592
  * @param {number} [minRowsSent]
610
593
  * @param {number} [maxRowsSent]
611
- * @param {string} [dbName]
612
- * @param {string} [dbNameContains]
613
- * @param {string} [userName]
614
- * @param {string} [userNameContains]
615
- * @param {string} [clientIp]
616
- * @param {string} [clientIpContains]
617
- * @param {string} [clientIpCIDR]
618
- * @param {string} [appName]
619
- * @param {string} [appNameContains]
594
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
595
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
596
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
597
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
620
598
  * @param {string} [templateId]
621
599
  * @param {boolean} [unclassifiedOnly]
622
600
  * @param {*} [options] Override http request option.
623
601
  * @throws {RequiredError}
624
602
  */
625
- querySlowLogs(orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, dbNameContains?: string, userName?: string, userNameContains?: string, clientIp?: string, clientIpContains?: string, clientIpCIDR?: string, appName?: string, appNameContains?: string, templateId?: string, unclassifiedOnly?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterExecutionLog>>;
603
+ querySlowLogs(orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, 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<ClusterExecutionLog>>;
626
604
  };
627
605
  /**
628
606
  * ClusterLogApi - factory interface
@@ -930,6 +908,90 @@ export interface ClusterLogApiAggregateSlowLogsRequest {
930
908
  * @memberof ClusterLogApiAggregateSlowLogs
931
909
  */
932
910
  readonly topN?: number;
911
+ /**
912
+ * Minimum execution time in seconds. Decimal values are supported, for example 0.5.
913
+ * @type {number}
914
+ * @memberof ClusterLogApiAggregateSlowLogs
915
+ */
916
+ readonly minExecutionTime?: number;
917
+ /**
918
+ * Maximum execution time in seconds. Decimal values are supported, for example 0.5.
919
+ * @type {number}
920
+ * @memberof ClusterLogApiAggregateSlowLogs
921
+ */
922
+ readonly maxExecutionTime?: number;
923
+ /**
924
+ * Minimum lock time in seconds. Decimal values are supported, for example 0.001.
925
+ * @type {number}
926
+ * @memberof ClusterLogApiAggregateSlowLogs
927
+ */
928
+ readonly minLockTime?: number;
929
+ /**
930
+ * Maximum lock time in seconds. Decimal values are supported, for example 0.001.
931
+ * @type {number}
932
+ * @memberof ClusterLogApiAggregateSlowLogs
933
+ */
934
+ readonly maxLockTime?: number;
935
+ /**
936
+ *
937
+ * @type {number}
938
+ * @memberof ClusterLogApiAggregateSlowLogs
939
+ */
940
+ readonly minRowsExamined?: number;
941
+ /**
942
+ *
943
+ * @type {number}
944
+ * @memberof ClusterLogApiAggregateSlowLogs
945
+ */
946
+ readonly maxRowsExamined?: number;
947
+ /**
948
+ *
949
+ * @type {number}
950
+ * @memberof ClusterLogApiAggregateSlowLogs
951
+ */
952
+ readonly minRowsSent?: number;
953
+ /**
954
+ *
955
+ * @type {number}
956
+ * @memberof ClusterLogApiAggregateSlowLogs
957
+ */
958
+ readonly maxRowsSent?: number;
959
+ /**
960
+ * Filter slow logs whose database name contains this value.
961
+ * @type {string}
962
+ * @memberof ClusterLogApiAggregateSlowLogs
963
+ */
964
+ readonly dbName?: string;
965
+ /**
966
+ * Filter slow logs whose user name contains this value.
967
+ * @type {string}
968
+ * @memberof ClusterLogApiAggregateSlowLogs
969
+ */
970
+ readonly userName?: string;
971
+ /**
972
+ * Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
973
+ * @type {string}
974
+ * @memberof ClusterLogApiAggregateSlowLogs
975
+ */
976
+ readonly clientIp?: string;
977
+ /**
978
+ * Filter slow logs whose application name contains this value.
979
+ * @type {string}
980
+ * @memberof ClusterLogApiAggregateSlowLogs
981
+ */
982
+ readonly appName?: string;
983
+ /**
984
+ *
985
+ * @type {string}
986
+ * @memberof ClusterLogApiAggregateSlowLogs
987
+ */
988
+ readonly templateId?: string;
989
+ /**
990
+ *
991
+ * @type {boolean}
992
+ * @memberof ClusterLogApiAggregateSlowLogs
993
+ */
994
+ readonly unclassifiedOnly?: boolean;
933
995
  }
934
996
  /**
935
997
  * Request parameters for explainSlowLog operation in ClusterLogApi.
@@ -1108,59 +1170,29 @@ export interface ClusterLogApiGetSlowLogStatsRequest {
1108
1170
  */
1109
1171
  readonly maxRowsSent?: number;
1110
1172
  /**
1111
- *
1173
+ * Filter slow logs whose database name contains this value.
1112
1174
  * @type {string}
1113
1175
  * @memberof ClusterLogApiGetSlowLogStats
1114
1176
  */
1115
1177
  readonly dbName?: string;
1116
1178
  /**
1117
- *
1118
- * @type {string}
1119
- * @memberof ClusterLogApiGetSlowLogStats
1120
- */
1121
- readonly dbNameContains?: string;
1122
- /**
1123
- *
1179
+ * Filter slow logs whose user name contains this value.
1124
1180
  * @type {string}
1125
1181
  * @memberof ClusterLogApiGetSlowLogStats
1126
1182
  */
1127
1183
  readonly userName?: string;
1128
1184
  /**
1129
- *
1130
- * @type {string}
1131
- * @memberof ClusterLogApiGetSlowLogStats
1132
- */
1133
- readonly userNameContains?: string;
1134
- /**
1135
- *
1185
+ * Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
1136
1186
  * @type {string}
1137
1187
  * @memberof ClusterLogApiGetSlowLogStats
1138
1188
  */
1139
1189
  readonly clientIp?: string;
1140
1190
  /**
1141
- *
1142
- * @type {string}
1143
- * @memberof ClusterLogApiGetSlowLogStats
1144
- */
1145
- readonly clientIpContains?: string;
1146
- /**
1147
- *
1148
- * @type {string}
1149
- * @memberof ClusterLogApiGetSlowLogStats
1150
- */
1151
- readonly clientIpCIDR?: string;
1152
- /**
1153
- *
1191
+ * Filter slow logs whose application name contains this value.
1154
1192
  * @type {string}
1155
1193
  * @memberof ClusterLogApiGetSlowLogStats
1156
1194
  */
1157
1195
  readonly appName?: string;
1158
- /**
1159
- *
1160
- * @type {string}
1161
- * @memberof ClusterLogApiGetSlowLogStats
1162
- */
1163
- readonly appNameContains?: string;
1164
1196
  /**
1165
1197
  *
1166
1198
  * @type {string}
@@ -1460,59 +1492,29 @@ export interface ClusterLogApiQueryLogHitsRequest {
1460
1492
  */
1461
1493
  readonly maxRowsSent?: number;
1462
1494
  /**
1463
- *
1495
+ * Filter slow logs whose database name contains this value.
1464
1496
  * @type {string}
1465
1497
  * @memberof ClusterLogApiQueryLogHits
1466
1498
  */
1467
1499
  readonly dbName?: string;
1468
1500
  /**
1469
- *
1470
- * @type {string}
1471
- * @memberof ClusterLogApiQueryLogHits
1472
- */
1473
- readonly dbNameContains?: string;
1474
- /**
1475
- *
1501
+ * Filter slow logs whose user name contains this value.
1476
1502
  * @type {string}
1477
1503
  * @memberof ClusterLogApiQueryLogHits
1478
1504
  */
1479
1505
  readonly userName?: string;
1480
1506
  /**
1481
- *
1482
- * @type {string}
1483
- * @memberof ClusterLogApiQueryLogHits
1484
- */
1485
- readonly userNameContains?: string;
1486
- /**
1487
- *
1507
+ * Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
1488
1508
  * @type {string}
1489
1509
  * @memberof ClusterLogApiQueryLogHits
1490
1510
  */
1491
1511
  readonly clientIp?: string;
1492
1512
  /**
1493
- *
1494
- * @type {string}
1495
- * @memberof ClusterLogApiQueryLogHits
1496
- */
1497
- readonly clientIpContains?: string;
1498
- /**
1499
- *
1500
- * @type {string}
1501
- * @memberof ClusterLogApiQueryLogHits
1502
- */
1503
- readonly clientIpCIDR?: string;
1504
- /**
1505
- *
1513
+ * Filter slow logs whose application name contains this value.
1506
1514
  * @type {string}
1507
1515
  * @memberof ClusterLogApiQueryLogHits
1508
1516
  */
1509
1517
  readonly appName?: string;
1510
- /**
1511
- *
1512
- * @type {string}
1513
- * @memberof ClusterLogApiQueryLogHits
1514
- */
1515
- readonly appNameContains?: string;
1516
1518
  /**
1517
1519
  *
1518
1520
  * @type {string}
@@ -1769,59 +1771,29 @@ export interface ClusterLogApiQuerySlowLogTemplateSamplesRequest {
1769
1771
  */
1770
1772
  readonly maxRowsSent?: number;
1771
1773
  /**
1772
- *
1774
+ * Filter slow logs whose database name contains this value.
1773
1775
  * @type {string}
1774
1776
  * @memberof ClusterLogApiQuerySlowLogTemplateSamples
1775
1777
  */
1776
1778
  readonly dbName?: string;
1777
1779
  /**
1778
- *
1779
- * @type {string}
1780
- * @memberof ClusterLogApiQuerySlowLogTemplateSamples
1781
- */
1782
- readonly dbNameContains?: string;
1783
- /**
1784
- *
1780
+ * Filter slow logs whose user name contains this value.
1785
1781
  * @type {string}
1786
1782
  * @memberof ClusterLogApiQuerySlowLogTemplateSamples
1787
1783
  */
1788
1784
  readonly userName?: string;
1789
1785
  /**
1790
- *
1791
- * @type {string}
1792
- * @memberof ClusterLogApiQuerySlowLogTemplateSamples
1793
- */
1794
- readonly userNameContains?: string;
1795
- /**
1796
- *
1786
+ * Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
1797
1787
  * @type {string}
1798
1788
  * @memberof ClusterLogApiQuerySlowLogTemplateSamples
1799
1789
  */
1800
1790
  readonly clientIp?: string;
1801
1791
  /**
1802
- *
1803
- * @type {string}
1804
- * @memberof ClusterLogApiQuerySlowLogTemplateSamples
1805
- */
1806
- readonly clientIpContains?: string;
1807
- /**
1808
- *
1809
- * @type {string}
1810
- * @memberof ClusterLogApiQuerySlowLogTemplateSamples
1811
- */
1812
- readonly clientIpCIDR?: string;
1813
- /**
1814
- *
1792
+ * Filter slow logs whose application name contains this value.
1815
1793
  * @type {string}
1816
1794
  * @memberof ClusterLogApiQuerySlowLogTemplateSamples
1817
1795
  */
1818
1796
  readonly appName?: string;
1819
- /**
1820
- *
1821
- * @type {string}
1822
- * @memberof ClusterLogApiQuerySlowLogTemplateSamples
1823
- */
1824
- readonly appNameContains?: string;
1825
1797
  /**
1826
1798
  *
1827
1799
  * @type {boolean}
@@ -1944,59 +1916,29 @@ export interface ClusterLogApiQuerySlowLogTemplatesRequest {
1944
1916
  */
1945
1917
  readonly maxRowsSent?: number;
1946
1918
  /**
1947
- *
1919
+ * Filter slow logs whose database name contains this value.
1948
1920
  * @type {string}
1949
1921
  * @memberof ClusterLogApiQuerySlowLogTemplates
1950
1922
  */
1951
1923
  readonly dbName?: string;
1952
1924
  /**
1953
- *
1954
- * @type {string}
1955
- * @memberof ClusterLogApiQuerySlowLogTemplates
1956
- */
1957
- readonly dbNameContains?: string;
1958
- /**
1959
- *
1925
+ * Filter slow logs whose user name contains this value.
1960
1926
  * @type {string}
1961
1927
  * @memberof ClusterLogApiQuerySlowLogTemplates
1962
1928
  */
1963
1929
  readonly userName?: string;
1964
1930
  /**
1965
- *
1966
- * @type {string}
1967
- * @memberof ClusterLogApiQuerySlowLogTemplates
1968
- */
1969
- readonly userNameContains?: string;
1970
- /**
1971
- *
1931
+ * Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
1972
1932
  * @type {string}
1973
1933
  * @memberof ClusterLogApiQuerySlowLogTemplates
1974
1934
  */
1975
1935
  readonly clientIp?: string;
1976
1936
  /**
1977
- *
1978
- * @type {string}
1979
- * @memberof ClusterLogApiQuerySlowLogTemplates
1980
- */
1981
- readonly clientIpContains?: string;
1982
- /**
1983
- *
1984
- * @type {string}
1985
- * @memberof ClusterLogApiQuerySlowLogTemplates
1986
- */
1987
- readonly clientIpCIDR?: string;
1988
- /**
1989
- *
1937
+ * Filter slow logs whose application name contains this value.
1990
1938
  * @type {string}
1991
1939
  * @memberof ClusterLogApiQuerySlowLogTemplates
1992
1940
  */
1993
1941
  readonly appName?: string;
1994
- /**
1995
- *
1996
- * @type {string}
1997
- * @memberof ClusterLogApiQuerySlowLogTemplates
1998
- */
1999
- readonly appNameContains?: string;
2000
1942
  }
2001
1943
  /**
2002
1944
  * Request parameters for querySlowLogs operation in ClusterLogApi.
@@ -2107,59 +2049,29 @@ export interface ClusterLogApiQuerySlowLogsRequest {
2107
2049
  */
2108
2050
  readonly maxRowsSent?: number;
2109
2051
  /**
2110
- *
2052
+ * Filter slow logs whose database name contains this value.
2111
2053
  * @type {string}
2112
2054
  * @memberof ClusterLogApiQuerySlowLogs
2113
2055
  */
2114
2056
  readonly dbName?: string;
2115
2057
  /**
2116
- *
2117
- * @type {string}
2118
- * @memberof ClusterLogApiQuerySlowLogs
2119
- */
2120
- readonly dbNameContains?: string;
2121
- /**
2122
- *
2058
+ * Filter slow logs whose user name contains this value.
2123
2059
  * @type {string}
2124
2060
  * @memberof ClusterLogApiQuerySlowLogs
2125
2061
  */
2126
2062
  readonly userName?: string;
2127
2063
  /**
2128
- *
2129
- * @type {string}
2130
- * @memberof ClusterLogApiQuerySlowLogs
2131
- */
2132
- readonly userNameContains?: string;
2133
- /**
2134
- *
2064
+ * Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
2135
2065
  * @type {string}
2136
2066
  * @memberof ClusterLogApiQuerySlowLogs
2137
2067
  */
2138
2068
  readonly clientIp?: string;
2139
2069
  /**
2140
- *
2141
- * @type {string}
2142
- * @memberof ClusterLogApiQuerySlowLogs
2143
- */
2144
- readonly clientIpContains?: string;
2145
- /**
2146
- *
2147
- * @type {string}
2148
- * @memberof ClusterLogApiQuerySlowLogs
2149
- */
2150
- readonly clientIpCIDR?: string;
2151
- /**
2152
- *
2070
+ * Filter slow logs whose application name contains this value.
2153
2071
  * @type {string}
2154
2072
  * @memberof ClusterLogApiQuerySlowLogs
2155
2073
  */
2156
2074
  readonly appName?: string;
2157
- /**
2158
- *
2159
- * @type {string}
2160
- * @memberof ClusterLogApiQuerySlowLogs
2161
- */
2162
- readonly appNameContains?: string;
2163
2075
  /**
2164
2076
  *
2165
2077
  * @type {string}