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.
@@ -231,10 +231,24 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
231
231
  * @param {SortType} [sortType]
232
232
  * @param {string} [groupBy]
233
233
  * @param {number} [topN]
234
+ * @param {number} [minExecutionTime] Minimum execution time in seconds. Decimal values are supported, for example 0.5.
235
+ * @param {number} [maxExecutionTime] Maximum execution time in seconds. Decimal values are supported, for example 0.5.
236
+ * @param {number} [minLockTime] Minimum lock time in seconds. Decimal values are supported, for example 0.001.
237
+ * @param {number} [maxLockTime] Maximum lock time in seconds. Decimal values are supported, for example 0.001.
238
+ * @param {number} [minRowsExamined]
239
+ * @param {number} [maxRowsExamined]
240
+ * @param {number} [minRowsSent]
241
+ * @param {number} [maxRowsSent]
242
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
243
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
244
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
245
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
246
+ * @param {string} [templateId]
247
+ * @param {boolean} [unclassifiedOnly]
234
248
  * @param {*} [options] Override http request option.
235
249
  * @throws {RequiredError}
236
250
  */
237
- 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>;
251
+ 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>;
238
252
  /**
239
253
  *
240
254
  * @summary alter cluster parameter
@@ -900,22 +914,17 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
900
914
  * @param {number} [maxRowsExamined]
901
915
  * @param {number} [minRowsSent]
902
916
  * @param {number} [maxRowsSent]
903
- * @param {string} [dbName]
904
- * @param {string} [dbNameContains]
905
- * @param {string} [userName]
906
- * @param {string} [userNameContains]
907
- * @param {string} [clientIp]
908
- * @param {string} [clientIpContains]
909
- * @param {string} [clientIpCIDR]
910
- * @param {string} [appName]
911
- * @param {string} [appNameContains]
917
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
918
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
919
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
920
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
912
921
  * @param {string} [templateId]
913
922
  * @param {boolean} [unclassifiedOnly]
914
923
  * @param {number} [maxLines] Maximum number of lines to export. Defaults to 100000 if omitted
915
924
  * @param {*} [options] Override http request option.
916
925
  * @throws {RequiredError}
917
926
  */
918
- exportClusterLogs: (orgName: string, clusterName: string, logType: string, startTime?: number, endTime?: number, format?: string, query?: string, filename?: string, componentName?: string, instanceName?: 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, maxLines?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
927
+ exportClusterLogs: (orgName: string, clusterName: string, logType: string, startTime?: number, endTime?: number, format?: string, query?: string, filename?: string, componentName?: string, instanceName?: 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, maxLines?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
919
928
  /**
920
929
  *
921
930
  * @summary Export parameter template from cluster
@@ -1383,21 +1392,16 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
1383
1392
  * @param {number} [maxRowsExamined]
1384
1393
  * @param {number} [minRowsSent]
1385
1394
  * @param {number} [maxRowsSent]
1386
- * @param {string} [dbName]
1387
- * @param {string} [dbNameContains]
1388
- * @param {string} [userName]
1389
- * @param {string} [userNameContains]
1390
- * @param {string} [clientIp]
1391
- * @param {string} [clientIpContains]
1392
- * @param {string} [clientIpCIDR]
1393
- * @param {string} [appName]
1394
- * @param {string} [appNameContains]
1395
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
1396
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
1397
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
1398
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
1395
1399
  * @param {string} [templateId]
1396
1400
  * @param {boolean} [unclassifiedOnly]
1397
1401
  * @param {*} [options] Override http request option.
1398
1402
  * @throws {RequiredError}
1399
1403
  */
1400
- 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>;
1404
+ 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>;
1401
1405
  /**
1402
1406
  * Get a slow log template of a cluster (VictoriaLogs backend only)
1403
1407
  * @summary Get cluster slow log template
@@ -2210,21 +2214,16 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
2210
2214
  * @param {number} [maxRowsExamined]
2211
2215
  * @param {number} [minRowsSent]
2212
2216
  * @param {number} [maxRowsSent]
2213
- * @param {string} [dbName]
2214
- * @param {string} [dbNameContains]
2215
- * @param {string} [userName]
2216
- * @param {string} [userNameContains]
2217
- * @param {string} [clientIp]
2218
- * @param {string} [clientIpContains]
2219
- * @param {string} [clientIpCIDR]
2220
- * @param {string} [appName]
2221
- * @param {string} [appNameContains]
2217
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
2218
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
2219
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
2220
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
2222
2221
  * @param {string} [templateId]
2223
2222
  * @param {boolean} [unclassifiedOnly]
2224
2223
  * @param {*} [options] Override http request option.
2225
2224
  * @throws {RequiredError}
2226
2225
  */
2227
- 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>;
2226
+ 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>;
2228
2227
  /**
2229
2228
  * Query pod logs of a cluster
2230
2229
  * @summary Query cluster pod logs
@@ -2279,20 +2278,15 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
2279
2278
  * @param {number} [maxRowsExamined]
2280
2279
  * @param {number} [minRowsSent]
2281
2280
  * @param {number} [maxRowsSent]
2282
- * @param {string} [dbName]
2283
- * @param {string} [dbNameContains]
2284
- * @param {string} [userName]
2285
- * @param {string} [userNameContains]
2286
- * @param {string} [clientIp]
2287
- * @param {string} [clientIpContains]
2288
- * @param {string} [clientIpCIDR]
2289
- * @param {string} [appName]
2290
- * @param {string} [appNameContains]
2281
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
2282
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
2283
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
2284
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
2291
2285
  * @param {boolean} [unclassifiedOnly]
2292
2286
  * @param {*} [options] Override http request option.
2293
2287
  * @throws {RequiredError}
2294
2288
  */
2295
- 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>;
2289
+ 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>;
2296
2290
  /**
2297
2291
  * Query slow log templates of a cluster (VictoriaLogs backend only)
2298
2292
  * @summary Query cluster slow log templates
@@ -2314,19 +2308,14 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
2314
2308
  * @param {number} [maxRowsExamined]
2315
2309
  * @param {number} [minRowsSent]
2316
2310
  * @param {number} [maxRowsSent]
2317
- * @param {string} [dbName]
2318
- * @param {string} [dbNameContains]
2319
- * @param {string} [userName]
2320
- * @param {string} [userNameContains]
2321
- * @param {string} [clientIp]
2322
- * @param {string} [clientIpContains]
2323
- * @param {string} [clientIpCIDR]
2324
- * @param {string} [appName]
2325
- * @param {string} [appNameContains]
2311
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
2312
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
2313
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
2314
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
2326
2315
  * @param {*} [options] Override http request option.
2327
2316
  * @throws {RequiredError}
2328
2317
  */
2329
- 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>;
2318
+ 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>;
2330
2319
  /**
2331
2320
  * Query slow logs of a cluster
2332
2321
  * @summary Query cluster slow logs
@@ -2347,21 +2336,16 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
2347
2336
  * @param {number} [maxRowsExamined]
2348
2337
  * @param {number} [minRowsSent]
2349
2338
  * @param {number} [maxRowsSent]
2350
- * @param {string} [dbName]
2351
- * @param {string} [dbNameContains]
2352
- * @param {string} [userName]
2353
- * @param {string} [userNameContains]
2354
- * @param {string} [clientIp]
2355
- * @param {string} [clientIpContains]
2356
- * @param {string} [clientIpCIDR]
2357
- * @param {string} [appName]
2358
- * @param {string} [appNameContains]
2339
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
2340
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
2341
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
2342
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
2359
2343
  * @param {string} [templateId]
2360
2344
  * @param {boolean} [unclassifiedOnly]
2361
2345
  * @param {*} [options] Override http request option.
2362
2346
  * @throws {RequiredError}
2363
2347
  */
2364
- 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>;
2348
+ 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>;
2365
2349
  /**
2366
2350
  * Get feature
2367
2351
  * @summary Get feature
@@ -2932,10 +2916,24 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
2932
2916
  * @param {SortType} [sortType]
2933
2917
  * @param {string} [groupBy]
2934
2918
  * @param {number} [topN]
2919
+ * @param {number} [minExecutionTime] Minimum execution time in seconds. Decimal values are supported, for example 0.5.
2920
+ * @param {number} [maxExecutionTime] Maximum execution time in seconds. Decimal values are supported, for example 0.5.
2921
+ * @param {number} [minLockTime] Minimum lock time in seconds. Decimal values are supported, for example 0.001.
2922
+ * @param {number} [maxLockTime] Maximum lock time in seconds. Decimal values are supported, for example 0.001.
2923
+ * @param {number} [minRowsExamined]
2924
+ * @param {number} [maxRowsExamined]
2925
+ * @param {number} [minRowsSent]
2926
+ * @param {number} [maxRowsSent]
2927
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
2928
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
2929
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
2930
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
2931
+ * @param {string} [templateId]
2932
+ * @param {boolean} [unclassifiedOnly]
2935
2933
  * @param {*} [options] Override http request option.
2936
2934
  * @throws {RequiredError}
2937
2935
  */
2938
- 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>>;
2936
+ 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>>;
2939
2937
  /**
2940
2938
  *
2941
2939
  * @summary alter cluster parameter
@@ -3601,22 +3599,17 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
3601
3599
  * @param {number} [maxRowsExamined]
3602
3600
  * @param {number} [minRowsSent]
3603
3601
  * @param {number} [maxRowsSent]
3604
- * @param {string} [dbName]
3605
- * @param {string} [dbNameContains]
3606
- * @param {string} [userName]
3607
- * @param {string} [userNameContains]
3608
- * @param {string} [clientIp]
3609
- * @param {string} [clientIpContains]
3610
- * @param {string} [clientIpCIDR]
3611
- * @param {string} [appName]
3612
- * @param {string} [appNameContains]
3602
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
3603
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
3604
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
3605
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
3613
3606
  * @param {string} [templateId]
3614
3607
  * @param {boolean} [unclassifiedOnly]
3615
3608
  * @param {number} [maxLines] Maximum number of lines to export. Defaults to 100000 if omitted
3616
3609
  * @param {*} [options] Override http request option.
3617
3610
  * @throws {RequiredError}
3618
3611
  */
3619
- exportClusterLogs(orgName: string, clusterName: string, logType: string, startTime?: number, endTime?: number, format?: string, query?: string, filename?: string, componentName?: string, instanceName?: 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, maxLines?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
3612
+ exportClusterLogs(orgName: string, clusterName: string, logType: string, startTime?: number, endTime?: number, format?: string, query?: string, filename?: string, componentName?: string, instanceName?: 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, maxLines?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
3620
3613
  /**
3621
3614
  *
3622
3615
  * @summary Export parameter template from cluster
@@ -4084,21 +4077,16 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
4084
4077
  * @param {number} [maxRowsExamined]
4085
4078
  * @param {number} [minRowsSent]
4086
4079
  * @param {number} [maxRowsSent]
4087
- * @param {string} [dbName]
4088
- * @param {string} [dbNameContains]
4089
- * @param {string} [userName]
4090
- * @param {string} [userNameContains]
4091
- * @param {string} [clientIp]
4092
- * @param {string} [clientIpContains]
4093
- * @param {string} [clientIpCIDR]
4094
- * @param {string} [appName]
4095
- * @param {string} [appNameContains]
4080
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
4081
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
4082
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
4083
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
4096
4084
  * @param {string} [templateId]
4097
4085
  * @param {boolean} [unclassifiedOnly]
4098
4086
  * @param {*} [options] Override http request option.
4099
4087
  * @throws {RequiredError}
4100
4088
  */
4101
- 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>>;
4089
+ 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>>;
4102
4090
  /**
4103
4091
  * Get a slow log template of a cluster (VictoriaLogs backend only)
4104
4092
  * @summary Get cluster slow log template
@@ -4911,21 +4899,16 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
4911
4899
  * @param {number} [maxRowsExamined]
4912
4900
  * @param {number} [minRowsSent]
4913
4901
  * @param {number} [maxRowsSent]
4914
- * @param {string} [dbName]
4915
- * @param {string} [dbNameContains]
4916
- * @param {string} [userName]
4917
- * @param {string} [userNameContains]
4918
- * @param {string} [clientIp]
4919
- * @param {string} [clientIpContains]
4920
- * @param {string} [clientIpCIDR]
4921
- * @param {string} [appName]
4922
- * @param {string} [appNameContains]
4902
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
4903
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
4904
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
4905
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
4923
4906
  * @param {string} [templateId]
4924
4907
  * @param {boolean} [unclassifiedOnly]
4925
4908
  * @param {*} [options] Override http request option.
4926
4909
  * @throws {RequiredError}
4927
4910
  */
4928
- 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>>;
4911
+ 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>>;
4929
4912
  /**
4930
4913
  * Query pod logs of a cluster
4931
4914
  * @summary Query cluster pod logs
@@ -4980,20 +4963,15 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
4980
4963
  * @param {number} [maxRowsExamined]
4981
4964
  * @param {number} [minRowsSent]
4982
4965
  * @param {number} [maxRowsSent]
4983
- * @param {string} [dbName]
4984
- * @param {string} [dbNameContains]
4985
- * @param {string} [userName]
4986
- * @param {string} [userNameContains]
4987
- * @param {string} [clientIp]
4988
- * @param {string} [clientIpContains]
4989
- * @param {string} [clientIpCIDR]
4990
- * @param {string} [appName]
4991
- * @param {string} [appNameContains]
4966
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
4967
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
4968
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
4969
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
4992
4970
  * @param {boolean} [unclassifiedOnly]
4993
4971
  * @param {*} [options] Override http request option.
4994
4972
  * @throws {RequiredError}
4995
4973
  */
4996
- 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>>;
4974
+ 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>>;
4997
4975
  /**
4998
4976
  * Query slow log templates of a cluster (VictoriaLogs backend only)
4999
4977
  * @summary Query cluster slow log templates
@@ -5015,19 +4993,14 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
5015
4993
  * @param {number} [maxRowsExamined]
5016
4994
  * @param {number} [minRowsSent]
5017
4995
  * @param {number} [maxRowsSent]
5018
- * @param {string} [dbName]
5019
- * @param {string} [dbNameContains]
5020
- * @param {string} [userName]
5021
- * @param {string} [userNameContains]
5022
- * @param {string} [clientIp]
5023
- * @param {string} [clientIpContains]
5024
- * @param {string} [clientIpCIDR]
5025
- * @param {string} [appName]
5026
- * @param {string} [appNameContains]
4996
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
4997
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
4998
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
4999
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
5027
5000
  * @param {*} [options] Override http request option.
5028
5001
  * @throws {RequiredError}
5029
5002
  */
5030
- 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>>;
5003
+ 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>>;
5031
5004
  /**
5032
5005
  * Query slow logs of a cluster
5033
5006
  * @summary Query cluster slow logs
@@ -5048,21 +5021,16 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
5048
5021
  * @param {number} [maxRowsExamined]
5049
5022
  * @param {number} [minRowsSent]
5050
5023
  * @param {number} [maxRowsSent]
5051
- * @param {string} [dbName]
5052
- * @param {string} [dbNameContains]
5053
- * @param {string} [userName]
5054
- * @param {string} [userNameContains]
5055
- * @param {string} [clientIp]
5056
- * @param {string} [clientIpContains]
5057
- * @param {string} [clientIpCIDR]
5058
- * @param {string} [appName]
5059
- * @param {string} [appNameContains]
5024
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
5025
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
5026
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
5027
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
5060
5028
  * @param {string} [templateId]
5061
5029
  * @param {boolean} [unclassifiedOnly]
5062
5030
  * @param {*} [options] Override http request option.
5063
5031
  * @throws {RequiredError}
5064
5032
  */
5065
- 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>>;
5033
+ 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>>;
5066
5034
  /**
5067
5035
  * Get feature
5068
5036
  * @summary Get feature
@@ -9955,6 +9923,90 @@ export interface SharedApiAggregateSlowLogsRequest {
9955
9923
  * @memberof SharedApiAggregateSlowLogs
9956
9924
  */
9957
9925
  readonly topN?: number;
9926
+ /**
9927
+ * Minimum execution time in seconds. Decimal values are supported, for example 0.5.
9928
+ * @type {number}
9929
+ * @memberof SharedApiAggregateSlowLogs
9930
+ */
9931
+ readonly minExecutionTime?: number;
9932
+ /**
9933
+ * Maximum execution time in seconds. Decimal values are supported, for example 0.5.
9934
+ * @type {number}
9935
+ * @memberof SharedApiAggregateSlowLogs
9936
+ */
9937
+ readonly maxExecutionTime?: number;
9938
+ /**
9939
+ * Minimum lock time in seconds. Decimal values are supported, for example 0.001.
9940
+ * @type {number}
9941
+ * @memberof SharedApiAggregateSlowLogs
9942
+ */
9943
+ readonly minLockTime?: number;
9944
+ /**
9945
+ * Maximum lock time in seconds. Decimal values are supported, for example 0.001.
9946
+ * @type {number}
9947
+ * @memberof SharedApiAggregateSlowLogs
9948
+ */
9949
+ readonly maxLockTime?: number;
9950
+ /**
9951
+ *
9952
+ * @type {number}
9953
+ * @memberof SharedApiAggregateSlowLogs
9954
+ */
9955
+ readonly minRowsExamined?: number;
9956
+ /**
9957
+ *
9958
+ * @type {number}
9959
+ * @memberof SharedApiAggregateSlowLogs
9960
+ */
9961
+ readonly maxRowsExamined?: number;
9962
+ /**
9963
+ *
9964
+ * @type {number}
9965
+ * @memberof SharedApiAggregateSlowLogs
9966
+ */
9967
+ readonly minRowsSent?: number;
9968
+ /**
9969
+ *
9970
+ * @type {number}
9971
+ * @memberof SharedApiAggregateSlowLogs
9972
+ */
9973
+ readonly maxRowsSent?: number;
9974
+ /**
9975
+ * Filter slow logs whose database name contains this value.
9976
+ * @type {string}
9977
+ * @memberof SharedApiAggregateSlowLogs
9978
+ */
9979
+ readonly dbName?: string;
9980
+ /**
9981
+ * Filter slow logs whose user name contains this value.
9982
+ * @type {string}
9983
+ * @memberof SharedApiAggregateSlowLogs
9984
+ */
9985
+ readonly userName?: string;
9986
+ /**
9987
+ * Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
9988
+ * @type {string}
9989
+ * @memberof SharedApiAggregateSlowLogs
9990
+ */
9991
+ readonly clientIp?: string;
9992
+ /**
9993
+ * Filter slow logs whose application name contains this value.
9994
+ * @type {string}
9995
+ * @memberof SharedApiAggregateSlowLogs
9996
+ */
9997
+ readonly appName?: string;
9998
+ /**
9999
+ *
10000
+ * @type {string}
10001
+ * @memberof SharedApiAggregateSlowLogs
10002
+ */
10003
+ readonly templateId?: string;
10004
+ /**
10005
+ *
10006
+ * @type {boolean}
10007
+ * @memberof SharedApiAggregateSlowLogs
10008
+ */
10009
+ readonly unclassifiedOnly?: boolean;
9958
10010
  }
9959
10011
  /**
9960
10012
  * Request parameters for alterParameter operation in SharedApi.
@@ -11689,59 +11741,29 @@ export interface SharedApiExportClusterLogsRequest {
11689
11741
  */
11690
11742
  readonly maxRowsSent?: number;
11691
11743
  /**
11692
- *
11744
+ * Filter slow logs whose database name contains this value.
11693
11745
  * @type {string}
11694
11746
  * @memberof SharedApiExportClusterLogs
11695
11747
  */
11696
11748
  readonly dbName?: string;
11697
11749
  /**
11698
- *
11699
- * @type {string}
11700
- * @memberof SharedApiExportClusterLogs
11701
- */
11702
- readonly dbNameContains?: string;
11703
- /**
11704
- *
11750
+ * Filter slow logs whose user name contains this value.
11705
11751
  * @type {string}
11706
11752
  * @memberof SharedApiExportClusterLogs
11707
11753
  */
11708
11754
  readonly userName?: string;
11709
11755
  /**
11710
- *
11711
- * @type {string}
11712
- * @memberof SharedApiExportClusterLogs
11713
- */
11714
- readonly userNameContains?: string;
11715
- /**
11716
- *
11756
+ * Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
11717
11757
  * @type {string}
11718
11758
  * @memberof SharedApiExportClusterLogs
11719
11759
  */
11720
11760
  readonly clientIp?: string;
11721
11761
  /**
11722
- *
11723
- * @type {string}
11724
- * @memberof SharedApiExportClusterLogs
11725
- */
11726
- readonly clientIpContains?: string;
11727
- /**
11728
- *
11729
- * @type {string}
11730
- * @memberof SharedApiExportClusterLogs
11731
- */
11732
- readonly clientIpCIDR?: string;
11733
- /**
11734
- *
11762
+ * Filter slow logs whose application name contains this value.
11735
11763
  * @type {string}
11736
11764
  * @memberof SharedApiExportClusterLogs
11737
11765
  */
11738
11766
  readonly appName?: string;
11739
- /**
11740
- *
11741
- * @type {string}
11742
- * @memberof SharedApiExportClusterLogs
11743
- */
11744
- readonly appNameContains?: string;
11745
11767
  /**
11746
11768
  *
11747
11769
  * @type {string}
@@ -13018,59 +13040,29 @@ export interface SharedApiGetSlowLogStatsRequest {
13018
13040
  */
13019
13041
  readonly maxRowsSent?: number;
13020
13042
  /**
13021
- *
13043
+ * Filter slow logs whose database name contains this value.
13022
13044
  * @type {string}
13023
13045
  * @memberof SharedApiGetSlowLogStats
13024
13046
  */
13025
13047
  readonly dbName?: string;
13026
13048
  /**
13027
- *
13028
- * @type {string}
13029
- * @memberof SharedApiGetSlowLogStats
13030
- */
13031
- readonly dbNameContains?: string;
13032
- /**
13033
- *
13049
+ * Filter slow logs whose user name contains this value.
13034
13050
  * @type {string}
13035
13051
  * @memberof SharedApiGetSlowLogStats
13036
13052
  */
13037
13053
  readonly userName?: string;
13038
13054
  /**
13039
- *
13040
- * @type {string}
13041
- * @memberof SharedApiGetSlowLogStats
13042
- */
13043
- readonly userNameContains?: string;
13044
- /**
13045
- *
13055
+ * Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
13046
13056
  * @type {string}
13047
13057
  * @memberof SharedApiGetSlowLogStats
13048
13058
  */
13049
13059
  readonly clientIp?: string;
13050
13060
  /**
13051
- *
13052
- * @type {string}
13053
- * @memberof SharedApiGetSlowLogStats
13054
- */
13055
- readonly clientIpContains?: string;
13056
- /**
13057
- *
13058
- * @type {string}
13059
- * @memberof SharedApiGetSlowLogStats
13060
- */
13061
- readonly clientIpCIDR?: string;
13062
- /**
13063
- *
13061
+ * Filter slow logs whose application name contains this value.
13064
13062
  * @type {string}
13065
13063
  * @memberof SharedApiGetSlowLogStats
13066
13064
  */
13067
13065
  readonly appName?: string;
13068
- /**
13069
- *
13070
- * @type {string}
13071
- * @memberof SharedApiGetSlowLogStats
13072
- */
13073
- readonly appNameContains?: string;
13074
13066
  /**
13075
13067
  *
13076
13068
  * @type {string}
@@ -15223,59 +15215,29 @@ export interface SharedApiQueryLogHitsRequest {
15223
15215
  */
15224
15216
  readonly maxRowsSent?: number;
15225
15217
  /**
15226
- *
15218
+ * Filter slow logs whose database name contains this value.
15227
15219
  * @type {string}
15228
15220
  * @memberof SharedApiQueryLogHits
15229
15221
  */
15230
15222
  readonly dbName?: string;
15231
15223
  /**
15232
- *
15233
- * @type {string}
15234
- * @memberof SharedApiQueryLogHits
15235
- */
15236
- readonly dbNameContains?: string;
15237
- /**
15238
- *
15224
+ * Filter slow logs whose user name contains this value.
15239
15225
  * @type {string}
15240
15226
  * @memberof SharedApiQueryLogHits
15241
15227
  */
15242
15228
  readonly userName?: string;
15243
15229
  /**
15244
- *
15245
- * @type {string}
15246
- * @memberof SharedApiQueryLogHits
15247
- */
15248
- readonly userNameContains?: string;
15249
- /**
15250
- *
15230
+ * Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
15251
15231
  * @type {string}
15252
15232
  * @memberof SharedApiQueryLogHits
15253
15233
  */
15254
15234
  readonly clientIp?: string;
15255
15235
  /**
15256
- *
15257
- * @type {string}
15258
- * @memberof SharedApiQueryLogHits
15259
- */
15260
- readonly clientIpContains?: string;
15261
- /**
15262
- *
15263
- * @type {string}
15264
- * @memberof SharedApiQueryLogHits
15265
- */
15266
- readonly clientIpCIDR?: string;
15267
- /**
15268
- *
15236
+ * Filter slow logs whose application name contains this value.
15269
15237
  * @type {string}
15270
15238
  * @memberof SharedApiQueryLogHits
15271
15239
  */
15272
15240
  readonly appName?: string;
15273
- /**
15274
- *
15275
- * @type {string}
15276
- * @memberof SharedApiQueryLogHits
15277
- */
15278
- readonly appNameContains?: string;
15279
15241
  /**
15280
15242
  *
15281
15243
  * @type {string}
@@ -15532,59 +15494,29 @@ export interface SharedApiQuerySlowLogTemplateSamplesRequest {
15532
15494
  */
15533
15495
  readonly maxRowsSent?: number;
15534
15496
  /**
15535
- *
15497
+ * Filter slow logs whose database name contains this value.
15536
15498
  * @type {string}
15537
15499
  * @memberof SharedApiQuerySlowLogTemplateSamples
15538
15500
  */
15539
15501
  readonly dbName?: string;
15540
15502
  /**
15541
- *
15542
- * @type {string}
15543
- * @memberof SharedApiQuerySlowLogTemplateSamples
15544
- */
15545
- readonly dbNameContains?: string;
15546
- /**
15547
- *
15503
+ * Filter slow logs whose user name contains this value.
15548
15504
  * @type {string}
15549
15505
  * @memberof SharedApiQuerySlowLogTemplateSamples
15550
15506
  */
15551
15507
  readonly userName?: string;
15552
15508
  /**
15553
- *
15554
- * @type {string}
15555
- * @memberof SharedApiQuerySlowLogTemplateSamples
15556
- */
15557
- readonly userNameContains?: string;
15558
- /**
15559
- *
15509
+ * Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
15560
15510
  * @type {string}
15561
15511
  * @memberof SharedApiQuerySlowLogTemplateSamples
15562
15512
  */
15563
15513
  readonly clientIp?: string;
15564
15514
  /**
15565
- *
15566
- * @type {string}
15567
- * @memberof SharedApiQuerySlowLogTemplateSamples
15568
- */
15569
- readonly clientIpContains?: string;
15570
- /**
15571
- *
15572
- * @type {string}
15573
- * @memberof SharedApiQuerySlowLogTemplateSamples
15574
- */
15575
- readonly clientIpCIDR?: string;
15576
- /**
15577
- *
15515
+ * Filter slow logs whose application name contains this value.
15578
15516
  * @type {string}
15579
15517
  * @memberof SharedApiQuerySlowLogTemplateSamples
15580
15518
  */
15581
15519
  readonly appName?: string;
15582
- /**
15583
- *
15584
- * @type {string}
15585
- * @memberof SharedApiQuerySlowLogTemplateSamples
15586
- */
15587
- readonly appNameContains?: string;
15588
15520
  /**
15589
15521
  *
15590
15522
  * @type {boolean}
@@ -15707,59 +15639,29 @@ export interface SharedApiQuerySlowLogTemplatesRequest {
15707
15639
  */
15708
15640
  readonly maxRowsSent?: number;
15709
15641
  /**
15710
- *
15642
+ * Filter slow logs whose database name contains this value.
15711
15643
  * @type {string}
15712
15644
  * @memberof SharedApiQuerySlowLogTemplates
15713
15645
  */
15714
15646
  readonly dbName?: string;
15715
15647
  /**
15716
- *
15717
- * @type {string}
15718
- * @memberof SharedApiQuerySlowLogTemplates
15719
- */
15720
- readonly dbNameContains?: string;
15721
- /**
15722
- *
15648
+ * Filter slow logs whose user name contains this value.
15723
15649
  * @type {string}
15724
15650
  * @memberof SharedApiQuerySlowLogTemplates
15725
15651
  */
15726
15652
  readonly userName?: string;
15727
15653
  /**
15728
- *
15729
- * @type {string}
15730
- * @memberof SharedApiQuerySlowLogTemplates
15731
- */
15732
- readonly userNameContains?: string;
15733
- /**
15734
- *
15654
+ * Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
15735
15655
  * @type {string}
15736
15656
  * @memberof SharedApiQuerySlowLogTemplates
15737
15657
  */
15738
15658
  readonly clientIp?: string;
15739
15659
  /**
15740
- *
15741
- * @type {string}
15742
- * @memberof SharedApiQuerySlowLogTemplates
15743
- */
15744
- readonly clientIpContains?: string;
15745
- /**
15746
- *
15747
- * @type {string}
15748
- * @memberof SharedApiQuerySlowLogTemplates
15749
- */
15750
- readonly clientIpCIDR?: string;
15751
- /**
15752
- *
15660
+ * Filter slow logs whose application name contains this value.
15753
15661
  * @type {string}
15754
15662
  * @memberof SharedApiQuerySlowLogTemplates
15755
15663
  */
15756
15664
  readonly appName?: string;
15757
- /**
15758
- *
15759
- * @type {string}
15760
- * @memberof SharedApiQuerySlowLogTemplates
15761
- */
15762
- readonly appNameContains?: string;
15763
15665
  }
15764
15666
  /**
15765
15667
  * Request parameters for querySlowLogs operation in SharedApi.
@@ -15870,59 +15772,29 @@ export interface SharedApiQuerySlowLogsRequest {
15870
15772
  */
15871
15773
  readonly maxRowsSent?: number;
15872
15774
  /**
15873
- *
15775
+ * Filter slow logs whose database name contains this value.
15874
15776
  * @type {string}
15875
15777
  * @memberof SharedApiQuerySlowLogs
15876
15778
  */
15877
15779
  readonly dbName?: string;
15878
15780
  /**
15879
- *
15880
- * @type {string}
15881
- * @memberof SharedApiQuerySlowLogs
15882
- */
15883
- readonly dbNameContains?: string;
15884
- /**
15885
- *
15781
+ * Filter slow logs whose user name contains this value.
15886
15782
  * @type {string}
15887
15783
  * @memberof SharedApiQuerySlowLogs
15888
15784
  */
15889
15785
  readonly userName?: string;
15890
15786
  /**
15891
- *
15892
- * @type {string}
15893
- * @memberof SharedApiQuerySlowLogs
15894
- */
15895
- readonly userNameContains?: string;
15896
- /**
15897
- *
15787
+ * Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
15898
15788
  * @type {string}
15899
15789
  * @memberof SharedApiQuerySlowLogs
15900
15790
  */
15901
15791
  readonly clientIp?: string;
15902
15792
  /**
15903
- *
15904
- * @type {string}
15905
- * @memberof SharedApiQuerySlowLogs
15906
- */
15907
- readonly clientIpContains?: string;
15908
- /**
15909
- *
15910
- * @type {string}
15911
- * @memberof SharedApiQuerySlowLogs
15912
- */
15913
- readonly clientIpCIDR?: string;
15914
- /**
15915
- *
15793
+ * Filter slow logs whose application name contains this value.
15916
15794
  * @type {string}
15917
15795
  * @memberof SharedApiQuerySlowLogs
15918
15796
  */
15919
15797
  readonly appName?: string;
15920
- /**
15921
- *
15922
- * @type {string}
15923
- * @memberof SharedApiQuerySlowLogs
15924
- */
15925
- readonly appNameContains?: string;
15926
15798
  /**
15927
15799
  *
15928
15800
  * @type {string}