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.
@@ -220,10 +220,24 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
220
220
  * @param {SortType} [sortType]
221
221
  * @param {string} [groupBy]
222
222
  * @param {number} [topN]
223
+ * @param {number} [minExecutionTime] Minimum execution time in seconds. Decimal values are supported, for example 0.5.
224
+ * @param {number} [maxExecutionTime] Maximum execution time in seconds. Decimal values are supported, for example 0.5.
225
+ * @param {number} [minLockTime] Minimum lock time in seconds. Decimal values are supported, for example 0.001.
226
+ * @param {number} [maxLockTime] Maximum lock time in seconds. Decimal values are supported, for example 0.001.
227
+ * @param {number} [minRowsExamined]
228
+ * @param {number} [maxRowsExamined]
229
+ * @param {number} [minRowsSent]
230
+ * @param {number} [maxRowsSent]
231
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
232
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
233
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
234
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
235
+ * @param {string} [templateId]
236
+ * @param {boolean} [unclassifiedOnly]
223
237
  * @param {*} [options] Override http request option.
224
238
  * @throws {RequiredError}
225
239
  */
226
- 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>;
240
+ 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>;
227
241
  /**
228
242
  * alert statistic
229
243
  * @summary alert statistic
@@ -1286,21 +1300,16 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
1286
1300
  * @param {number} [maxRowsExamined]
1287
1301
  * @param {number} [minRowsSent]
1288
1302
  * @param {number} [maxRowsSent]
1289
- * @param {string} [dbName]
1290
- * @param {string} [dbNameContains]
1291
- * @param {string} [userName]
1292
- * @param {string} [userNameContains]
1293
- * @param {string} [clientIp]
1294
- * @param {string} [clientIpContains]
1295
- * @param {string} [clientIpCIDR]
1296
- * @param {string} [appName]
1297
- * @param {string} [appNameContains]
1303
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
1304
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
1305
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
1306
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
1298
1307
  * @param {string} [templateId]
1299
1308
  * @param {boolean} [unclassifiedOnly]
1300
1309
  * @param {*} [options] Override http request option.
1301
1310
  * @throws {RequiredError}
1302
1311
  */
1303
- 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>;
1312
+ 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>;
1304
1313
  /**
1305
1314
  * Get a slow log template of a cluster (VictoriaLogs backend only)
1306
1315
  * @summary Get cluster slow log template
@@ -2163,21 +2172,16 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
2163
2172
  * @param {number} [maxRowsExamined]
2164
2173
  * @param {number} [minRowsSent]
2165
2174
  * @param {number} [maxRowsSent]
2166
- * @param {string} [dbName]
2167
- * @param {string} [dbNameContains]
2168
- * @param {string} [userName]
2169
- * @param {string} [userNameContains]
2170
- * @param {string} [clientIp]
2171
- * @param {string} [clientIpContains]
2172
- * @param {string} [clientIpCIDR]
2173
- * @param {string} [appName]
2174
- * @param {string} [appNameContains]
2175
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
2176
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
2177
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
2178
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
2175
2179
  * @param {string} [templateId]
2176
2180
  * @param {boolean} [unclassifiedOnly]
2177
2181
  * @param {*} [options] Override http request option.
2178
2182
  * @throws {RequiredError}
2179
2183
  */
2180
- 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>;
2184
+ 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>;
2181
2185
  /**
2182
2186
  * Query pod logs of a cluster
2183
2187
  * @summary Query cluster pod logs
@@ -2232,20 +2236,15 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
2232
2236
  * @param {number} [maxRowsExamined]
2233
2237
  * @param {number} [minRowsSent]
2234
2238
  * @param {number} [maxRowsSent]
2235
- * @param {string} [dbName]
2236
- * @param {string} [dbNameContains]
2237
- * @param {string} [userName]
2238
- * @param {string} [userNameContains]
2239
- * @param {string} [clientIp]
2240
- * @param {string} [clientIpContains]
2241
- * @param {string} [clientIpCIDR]
2242
- * @param {string} [appName]
2243
- * @param {string} [appNameContains]
2239
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
2240
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
2241
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
2242
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
2244
2243
  * @param {boolean} [unclassifiedOnly]
2245
2244
  * @param {*} [options] Override http request option.
2246
2245
  * @throws {RequiredError}
2247
2246
  */
2248
- 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>;
2247
+ 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>;
2249
2248
  /**
2250
2249
  * Query slow log templates of a cluster (VictoriaLogs backend only)
2251
2250
  * @summary Query cluster slow log templates
@@ -2267,19 +2266,14 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
2267
2266
  * @param {number} [maxRowsExamined]
2268
2267
  * @param {number} [minRowsSent]
2269
2268
  * @param {number} [maxRowsSent]
2270
- * @param {string} [dbName]
2271
- * @param {string} [dbNameContains]
2272
- * @param {string} [userName]
2273
- * @param {string} [userNameContains]
2274
- * @param {string} [clientIp]
2275
- * @param {string} [clientIpContains]
2276
- * @param {string} [clientIpCIDR]
2277
- * @param {string} [appName]
2278
- * @param {string} [appNameContains]
2269
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
2270
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
2271
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
2272
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
2279
2273
  * @param {*} [options] Override http request option.
2280
2274
  * @throws {RequiredError}
2281
2275
  */
2282
- 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>;
2276
+ 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>;
2283
2277
  /**
2284
2278
  * Query slow logs of a cluster
2285
2279
  * @summary Query cluster slow logs
@@ -2300,21 +2294,16 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
2300
2294
  * @param {number} [maxRowsExamined]
2301
2295
  * @param {number} [minRowsSent]
2302
2296
  * @param {number} [maxRowsSent]
2303
- * @param {string} [dbName]
2304
- * @param {string} [dbNameContains]
2305
- * @param {string} [userName]
2306
- * @param {string} [userNameContains]
2307
- * @param {string} [clientIp]
2308
- * @param {string} [clientIpContains]
2309
- * @param {string} [clientIpCIDR]
2310
- * @param {string} [appName]
2311
- * @param {string} [appNameContains]
2297
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
2298
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
2299
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
2300
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
2312
2301
  * @param {string} [templateId]
2313
2302
  * @param {boolean} [unclassifiedOnly]
2314
2303
  * @param {*} [options] Override http request option.
2315
2304
  * @throws {RequiredError}
2316
2305
  */
2317
- 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>;
2306
+ 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>;
2318
2307
  /**
2319
2308
  * Get feature
2320
2309
  * @summary Get feature
@@ -2806,10 +2795,24 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
2806
2795
  * @param {SortType} [sortType]
2807
2796
  * @param {string} [groupBy]
2808
2797
  * @param {number} [topN]
2798
+ * @param {number} [minExecutionTime] Minimum execution time in seconds. Decimal values are supported, for example 0.5.
2799
+ * @param {number} [maxExecutionTime] Maximum execution time in seconds. Decimal values are supported, for example 0.5.
2800
+ * @param {number} [minLockTime] Minimum lock time in seconds. Decimal values are supported, for example 0.001.
2801
+ * @param {number} [maxLockTime] Maximum lock time in seconds. Decimal values are supported, for example 0.001.
2802
+ * @param {number} [minRowsExamined]
2803
+ * @param {number} [maxRowsExamined]
2804
+ * @param {number} [minRowsSent]
2805
+ * @param {number} [maxRowsSent]
2806
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
2807
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
2808
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
2809
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
2810
+ * @param {string} [templateId]
2811
+ * @param {boolean} [unclassifiedOnly]
2809
2812
  * @param {*} [options] Override http request option.
2810
2813
  * @throws {RequiredError}
2811
2814
  */
2812
- 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>>;
2815
+ 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>>;
2813
2816
  /**
2814
2817
  * alert statistic
2815
2818
  * @summary alert statistic
@@ -3872,21 +3875,16 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
3872
3875
  * @param {number} [maxRowsExamined]
3873
3876
  * @param {number} [minRowsSent]
3874
3877
  * @param {number} [maxRowsSent]
3875
- * @param {string} [dbName]
3876
- * @param {string} [dbNameContains]
3877
- * @param {string} [userName]
3878
- * @param {string} [userNameContains]
3879
- * @param {string} [clientIp]
3880
- * @param {string} [clientIpContains]
3881
- * @param {string} [clientIpCIDR]
3882
- * @param {string} [appName]
3883
- * @param {string} [appNameContains]
3878
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
3879
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
3880
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
3881
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
3884
3882
  * @param {string} [templateId]
3885
3883
  * @param {boolean} [unclassifiedOnly]
3886
3884
  * @param {*} [options] Override http request option.
3887
3885
  * @throws {RequiredError}
3888
3886
  */
3889
- 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>>;
3887
+ 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>>;
3890
3888
  /**
3891
3889
  * Get a slow log template of a cluster (VictoriaLogs backend only)
3892
3890
  * @summary Get cluster slow log template
@@ -4749,21 +4747,16 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
4749
4747
  * @param {number} [maxRowsExamined]
4750
4748
  * @param {number} [minRowsSent]
4751
4749
  * @param {number} [maxRowsSent]
4752
- * @param {string} [dbName]
4753
- * @param {string} [dbNameContains]
4754
- * @param {string} [userName]
4755
- * @param {string} [userNameContains]
4756
- * @param {string} [clientIp]
4757
- * @param {string} [clientIpContains]
4758
- * @param {string} [clientIpCIDR]
4759
- * @param {string} [appName]
4760
- * @param {string} [appNameContains]
4750
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
4751
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
4752
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
4753
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
4761
4754
  * @param {string} [templateId]
4762
4755
  * @param {boolean} [unclassifiedOnly]
4763
4756
  * @param {*} [options] Override http request option.
4764
4757
  * @throws {RequiredError}
4765
4758
  */
4766
- 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>>;
4759
+ 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>>;
4767
4760
  /**
4768
4761
  * Query pod logs of a cluster
4769
4762
  * @summary Query cluster pod logs
@@ -4818,20 +4811,15 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
4818
4811
  * @param {number} [maxRowsExamined]
4819
4812
  * @param {number} [minRowsSent]
4820
4813
  * @param {number} [maxRowsSent]
4821
- * @param {string} [dbName]
4822
- * @param {string} [dbNameContains]
4823
- * @param {string} [userName]
4824
- * @param {string} [userNameContains]
4825
- * @param {string} [clientIp]
4826
- * @param {string} [clientIpContains]
4827
- * @param {string} [clientIpCIDR]
4828
- * @param {string} [appName]
4829
- * @param {string} [appNameContains]
4814
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
4815
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
4816
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
4817
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
4830
4818
  * @param {boolean} [unclassifiedOnly]
4831
4819
  * @param {*} [options] Override http request option.
4832
4820
  * @throws {RequiredError}
4833
4821
  */
4834
- 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>>;
4822
+ 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>>;
4835
4823
  /**
4836
4824
  * Query slow log templates of a cluster (VictoriaLogs backend only)
4837
4825
  * @summary Query cluster slow log templates
@@ -4853,19 +4841,14 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
4853
4841
  * @param {number} [maxRowsExamined]
4854
4842
  * @param {number} [minRowsSent]
4855
4843
  * @param {number} [maxRowsSent]
4856
- * @param {string} [dbName]
4857
- * @param {string} [dbNameContains]
4858
- * @param {string} [userName]
4859
- * @param {string} [userNameContains]
4860
- * @param {string} [clientIp]
4861
- * @param {string} [clientIpContains]
4862
- * @param {string} [clientIpCIDR]
4863
- * @param {string} [appName]
4864
- * @param {string} [appNameContains]
4844
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
4845
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
4846
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
4847
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
4865
4848
  * @param {*} [options] Override http request option.
4866
4849
  * @throws {RequiredError}
4867
4850
  */
4868
- 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>>;
4851
+ 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>>;
4869
4852
  /**
4870
4853
  * Query slow logs of a cluster
4871
4854
  * @summary Query cluster slow logs
@@ -4886,21 +4869,16 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
4886
4869
  * @param {number} [maxRowsExamined]
4887
4870
  * @param {number} [minRowsSent]
4888
4871
  * @param {number} [maxRowsSent]
4889
- * @param {string} [dbName]
4890
- * @param {string} [dbNameContains]
4891
- * @param {string} [userName]
4892
- * @param {string} [userNameContains]
4893
- * @param {string} [clientIp]
4894
- * @param {string} [clientIpContains]
4895
- * @param {string} [clientIpCIDR]
4896
- * @param {string} [appName]
4897
- * @param {string} [appNameContains]
4872
+ * @param {string} [dbName] Filter slow logs whose database name contains this value.
4873
+ * @param {string} [userName] Filter slow logs whose user name contains this value.
4874
+ * @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
4875
+ * @param {string} [appName] Filter slow logs whose application name contains this value.
4898
4876
  * @param {string} [templateId]
4899
4877
  * @param {boolean} [unclassifiedOnly]
4900
4878
  * @param {*} [options] Override http request option.
4901
4879
  * @throws {RequiredError}
4902
4880
  */
4903
- 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>>;
4881
+ 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>>;
4904
4882
  /**
4905
4883
  * Get feature
4906
4884
  * @summary Get feature
@@ -9536,6 +9514,90 @@ export interface SharedApiAggregateSlowLogsRequest {
9536
9514
  * @memberof SharedApiAggregateSlowLogs
9537
9515
  */
9538
9516
  readonly topN?: number;
9517
+ /**
9518
+ * Minimum execution time in seconds. Decimal values are supported, for example 0.5.
9519
+ * @type {number}
9520
+ * @memberof SharedApiAggregateSlowLogs
9521
+ */
9522
+ readonly minExecutionTime?: number;
9523
+ /**
9524
+ * Maximum execution time in seconds. Decimal values are supported, for example 0.5.
9525
+ * @type {number}
9526
+ * @memberof SharedApiAggregateSlowLogs
9527
+ */
9528
+ readonly maxExecutionTime?: number;
9529
+ /**
9530
+ * Minimum lock time in seconds. Decimal values are supported, for example 0.001.
9531
+ * @type {number}
9532
+ * @memberof SharedApiAggregateSlowLogs
9533
+ */
9534
+ readonly minLockTime?: number;
9535
+ /**
9536
+ * Maximum lock time in seconds. Decimal values are supported, for example 0.001.
9537
+ * @type {number}
9538
+ * @memberof SharedApiAggregateSlowLogs
9539
+ */
9540
+ readonly maxLockTime?: number;
9541
+ /**
9542
+ *
9543
+ * @type {number}
9544
+ * @memberof SharedApiAggregateSlowLogs
9545
+ */
9546
+ readonly minRowsExamined?: number;
9547
+ /**
9548
+ *
9549
+ * @type {number}
9550
+ * @memberof SharedApiAggregateSlowLogs
9551
+ */
9552
+ readonly maxRowsExamined?: number;
9553
+ /**
9554
+ *
9555
+ * @type {number}
9556
+ * @memberof SharedApiAggregateSlowLogs
9557
+ */
9558
+ readonly minRowsSent?: number;
9559
+ /**
9560
+ *
9561
+ * @type {number}
9562
+ * @memberof SharedApiAggregateSlowLogs
9563
+ */
9564
+ readonly maxRowsSent?: number;
9565
+ /**
9566
+ * Filter slow logs whose database name contains this value.
9567
+ * @type {string}
9568
+ * @memberof SharedApiAggregateSlowLogs
9569
+ */
9570
+ readonly dbName?: string;
9571
+ /**
9572
+ * Filter slow logs whose user name contains this value.
9573
+ * @type {string}
9574
+ * @memberof SharedApiAggregateSlowLogs
9575
+ */
9576
+ readonly userName?: string;
9577
+ /**
9578
+ * Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
9579
+ * @type {string}
9580
+ * @memberof SharedApiAggregateSlowLogs
9581
+ */
9582
+ readonly clientIp?: string;
9583
+ /**
9584
+ * Filter slow logs whose application name contains this value.
9585
+ * @type {string}
9586
+ * @memberof SharedApiAggregateSlowLogs
9587
+ */
9588
+ readonly appName?: string;
9589
+ /**
9590
+ *
9591
+ * @type {string}
9592
+ * @memberof SharedApiAggregateSlowLogs
9593
+ */
9594
+ readonly templateId?: string;
9595
+ /**
9596
+ *
9597
+ * @type {boolean}
9598
+ * @memberof SharedApiAggregateSlowLogs
9599
+ */
9600
+ readonly unclassifiedOnly?: boolean;
9539
9601
  }
9540
9602
  /**
9541
9603
  * Request parameters for alterParameter operation in SharedApi.
@@ -12280,59 +12342,29 @@ export interface SharedApiGetSlowLogStatsRequest {
12280
12342
  */
12281
12343
  readonly maxRowsSent?: number;
12282
12344
  /**
12283
- *
12345
+ * Filter slow logs whose database name contains this value.
12284
12346
  * @type {string}
12285
12347
  * @memberof SharedApiGetSlowLogStats
12286
12348
  */
12287
12349
  readonly dbName?: string;
12288
12350
  /**
12289
- *
12290
- * @type {string}
12291
- * @memberof SharedApiGetSlowLogStats
12292
- */
12293
- readonly dbNameContains?: string;
12294
- /**
12295
- *
12351
+ * Filter slow logs whose user name contains this value.
12296
12352
  * @type {string}
12297
12353
  * @memberof SharedApiGetSlowLogStats
12298
12354
  */
12299
12355
  readonly userName?: string;
12300
12356
  /**
12301
- *
12302
- * @type {string}
12303
- * @memberof SharedApiGetSlowLogStats
12304
- */
12305
- readonly userNameContains?: string;
12306
- /**
12307
- *
12357
+ * Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
12308
12358
  * @type {string}
12309
12359
  * @memberof SharedApiGetSlowLogStats
12310
12360
  */
12311
12361
  readonly clientIp?: string;
12312
12362
  /**
12313
- *
12314
- * @type {string}
12315
- * @memberof SharedApiGetSlowLogStats
12316
- */
12317
- readonly clientIpContains?: string;
12318
- /**
12319
- *
12320
- * @type {string}
12321
- * @memberof SharedApiGetSlowLogStats
12322
- */
12323
- readonly clientIpCIDR?: string;
12324
- /**
12325
- *
12363
+ * Filter slow logs whose application name contains this value.
12326
12364
  * @type {string}
12327
12365
  * @memberof SharedApiGetSlowLogStats
12328
12366
  */
12329
12367
  readonly appName?: string;
12330
- /**
12331
- *
12332
- * @type {string}
12333
- * @memberof SharedApiGetSlowLogStats
12334
- */
12335
- readonly appNameContains?: string;
12336
12368
  /**
12337
12369
  *
12338
12370
  * @type {string}
@@ -14561,59 +14593,29 @@ export interface SharedApiQueryLogHitsRequest {
14561
14593
  */
14562
14594
  readonly maxRowsSent?: number;
14563
14595
  /**
14564
- *
14596
+ * Filter slow logs whose database name contains this value.
14565
14597
  * @type {string}
14566
14598
  * @memberof SharedApiQueryLogHits
14567
14599
  */
14568
14600
  readonly dbName?: string;
14569
14601
  /**
14570
- *
14571
- * @type {string}
14572
- * @memberof SharedApiQueryLogHits
14573
- */
14574
- readonly dbNameContains?: string;
14575
- /**
14576
- *
14602
+ * Filter slow logs whose user name contains this value.
14577
14603
  * @type {string}
14578
14604
  * @memberof SharedApiQueryLogHits
14579
14605
  */
14580
14606
  readonly userName?: string;
14581
14607
  /**
14582
- *
14583
- * @type {string}
14584
- * @memberof SharedApiQueryLogHits
14585
- */
14586
- readonly userNameContains?: string;
14587
- /**
14588
- *
14608
+ * Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
14589
14609
  * @type {string}
14590
14610
  * @memberof SharedApiQueryLogHits
14591
14611
  */
14592
14612
  readonly clientIp?: string;
14593
14613
  /**
14594
- *
14595
- * @type {string}
14596
- * @memberof SharedApiQueryLogHits
14597
- */
14598
- readonly clientIpContains?: string;
14599
- /**
14600
- *
14601
- * @type {string}
14602
- * @memberof SharedApiQueryLogHits
14603
- */
14604
- readonly clientIpCIDR?: string;
14605
- /**
14606
- *
14614
+ * Filter slow logs whose application name contains this value.
14607
14615
  * @type {string}
14608
14616
  * @memberof SharedApiQueryLogHits
14609
14617
  */
14610
14618
  readonly appName?: string;
14611
- /**
14612
- *
14613
- * @type {string}
14614
- * @memberof SharedApiQueryLogHits
14615
- */
14616
- readonly appNameContains?: string;
14617
14619
  /**
14618
14620
  *
14619
14621
  * @type {string}
@@ -14870,59 +14872,29 @@ export interface SharedApiQuerySlowLogTemplateSamplesRequest {
14870
14872
  */
14871
14873
  readonly maxRowsSent?: number;
14872
14874
  /**
14873
- *
14875
+ * Filter slow logs whose database name contains this value.
14874
14876
  * @type {string}
14875
14877
  * @memberof SharedApiQuerySlowLogTemplateSamples
14876
14878
  */
14877
14879
  readonly dbName?: string;
14878
14880
  /**
14879
- *
14880
- * @type {string}
14881
- * @memberof SharedApiQuerySlowLogTemplateSamples
14882
- */
14883
- readonly dbNameContains?: string;
14884
- /**
14885
- *
14881
+ * Filter slow logs whose user name contains this value.
14886
14882
  * @type {string}
14887
14883
  * @memberof SharedApiQuerySlowLogTemplateSamples
14888
14884
  */
14889
14885
  readonly userName?: string;
14890
14886
  /**
14891
- *
14892
- * @type {string}
14893
- * @memberof SharedApiQuerySlowLogTemplateSamples
14894
- */
14895
- readonly userNameContains?: string;
14896
- /**
14897
- *
14887
+ * Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
14898
14888
  * @type {string}
14899
14889
  * @memberof SharedApiQuerySlowLogTemplateSamples
14900
14890
  */
14901
14891
  readonly clientIp?: string;
14902
14892
  /**
14903
- *
14904
- * @type {string}
14905
- * @memberof SharedApiQuerySlowLogTemplateSamples
14906
- */
14907
- readonly clientIpContains?: string;
14908
- /**
14909
- *
14910
- * @type {string}
14911
- * @memberof SharedApiQuerySlowLogTemplateSamples
14912
- */
14913
- readonly clientIpCIDR?: string;
14914
- /**
14915
- *
14893
+ * Filter slow logs whose application name contains this value.
14916
14894
  * @type {string}
14917
14895
  * @memberof SharedApiQuerySlowLogTemplateSamples
14918
14896
  */
14919
14897
  readonly appName?: string;
14920
- /**
14921
- *
14922
- * @type {string}
14923
- * @memberof SharedApiQuerySlowLogTemplateSamples
14924
- */
14925
- readonly appNameContains?: string;
14926
14898
  /**
14927
14899
  *
14928
14900
  * @type {boolean}
@@ -15045,59 +15017,29 @@ export interface SharedApiQuerySlowLogTemplatesRequest {
15045
15017
  */
15046
15018
  readonly maxRowsSent?: number;
15047
15019
  /**
15048
- *
15020
+ * Filter slow logs whose database name contains this value.
15049
15021
  * @type {string}
15050
15022
  * @memberof SharedApiQuerySlowLogTemplates
15051
15023
  */
15052
15024
  readonly dbName?: string;
15053
15025
  /**
15054
- *
15055
- * @type {string}
15056
- * @memberof SharedApiQuerySlowLogTemplates
15057
- */
15058
- readonly dbNameContains?: string;
15059
- /**
15060
- *
15026
+ * Filter slow logs whose user name contains this value.
15061
15027
  * @type {string}
15062
15028
  * @memberof SharedApiQuerySlowLogTemplates
15063
15029
  */
15064
15030
  readonly userName?: string;
15065
15031
  /**
15066
- *
15067
- * @type {string}
15068
- * @memberof SharedApiQuerySlowLogTemplates
15069
- */
15070
- readonly userNameContains?: string;
15071
- /**
15072
- *
15032
+ * Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
15073
15033
  * @type {string}
15074
15034
  * @memberof SharedApiQuerySlowLogTemplates
15075
15035
  */
15076
15036
  readonly clientIp?: string;
15077
15037
  /**
15078
- *
15079
- * @type {string}
15080
- * @memberof SharedApiQuerySlowLogTemplates
15081
- */
15082
- readonly clientIpContains?: string;
15083
- /**
15084
- *
15085
- * @type {string}
15086
- * @memberof SharedApiQuerySlowLogTemplates
15087
- */
15088
- readonly clientIpCIDR?: string;
15089
- /**
15090
- *
15038
+ * Filter slow logs whose application name contains this value.
15091
15039
  * @type {string}
15092
15040
  * @memberof SharedApiQuerySlowLogTemplates
15093
15041
  */
15094
15042
  readonly appName?: string;
15095
- /**
15096
- *
15097
- * @type {string}
15098
- * @memberof SharedApiQuerySlowLogTemplates
15099
- */
15100
- readonly appNameContains?: string;
15101
15043
  }
15102
15044
  /**
15103
15045
  * Request parameters for querySlowLogs operation in SharedApi.
@@ -15208,59 +15150,29 @@ export interface SharedApiQuerySlowLogsRequest {
15208
15150
  */
15209
15151
  readonly maxRowsSent?: number;
15210
15152
  /**
15211
- *
15153
+ * Filter slow logs whose database name contains this value.
15212
15154
  * @type {string}
15213
15155
  * @memberof SharedApiQuerySlowLogs
15214
15156
  */
15215
15157
  readonly dbName?: string;
15216
15158
  /**
15217
- *
15218
- * @type {string}
15219
- * @memberof SharedApiQuerySlowLogs
15220
- */
15221
- readonly dbNameContains?: string;
15222
- /**
15223
- *
15159
+ * Filter slow logs whose user name contains this value.
15224
15160
  * @type {string}
15225
15161
  * @memberof SharedApiQuerySlowLogs
15226
15162
  */
15227
15163
  readonly userName?: string;
15228
15164
  /**
15229
- *
15230
- * @type {string}
15231
- * @memberof SharedApiQuerySlowLogs
15232
- */
15233
- readonly userNameContains?: string;
15234
- /**
15235
- *
15165
+ * Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
15236
15166
  * @type {string}
15237
15167
  * @memberof SharedApiQuerySlowLogs
15238
15168
  */
15239
15169
  readonly clientIp?: string;
15240
15170
  /**
15241
- *
15242
- * @type {string}
15243
- * @memberof SharedApiQuerySlowLogs
15244
- */
15245
- readonly clientIpContains?: string;
15246
- /**
15247
- *
15248
- * @type {string}
15249
- * @memberof SharedApiQuerySlowLogs
15250
- */
15251
- readonly clientIpCIDR?: string;
15252
- /**
15253
- *
15171
+ * Filter slow logs whose application name contains this value.
15254
15172
  * @type {string}
15255
15173
  * @memberof SharedApiQuerySlowLogs
15256
15174
  */
15257
15175
  readonly appName?: string;
15258
- /**
15259
- *
15260
- * @type {string}
15261
- * @memberof SharedApiQuerySlowLogs
15262
- */
15263
- readonly appNameContains?: string;
15264
15176
  /**
15265
15177
  *
15266
15178
  * @type {string}