kb-cloud-client-typescript 2.3.0-alpha.109 → 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.
- package/dist/adminapi/apis/cluster-log-api.d.ts +84 -324
- package/dist/adminapi/apis/cluster-log-api.d.ts.map +1 -1
- package/dist/adminapi/apis/cluster-log-api.js +78 -228
- package/dist/adminapi/apis/cluster-log-api.js.map +1 -1
- package/dist/adminapi/apis/shared-api.d.ts +84 -324
- package/dist/adminapi/apis/shared-api.d.ts.map +1 -1
- package/dist/adminapi/apis/shared-api.js +78 -228
- package/dist/adminapi/apis/shared-api.js.map +1 -1
- package/dist/openapi/apis/cluster-log-api.d.ts +98 -378
- package/dist/openapi/apis/cluster-log-api.d.ts.map +1 -1
- package/dist/openapi/apis/cluster-log-api.js +91 -266
- package/dist/openapi/apis/cluster-log-api.js.map +1 -1
- package/dist/openapi/apis/shared-api.d.ts +98 -378
- package/dist/openapi/apis/shared-api.d.ts.map +1 -1
- package/dist/openapi/apis/shared-api.js +91 -266
- package/dist/openapi/apis/shared-api.js.map +1 -1
- package/package.json +1 -6
- package/src/adminapi/apis/cluster-log-api.ts +102 -492
- package/src/adminapi/apis/shared-api.ts +102 -492
- package/src/adminapi.yaml +24 -120
- package/src/openapi/apis/cluster-log-api.ts +119 -574
- package/src/openapi/apis/shared-api.ts +119 -574
- package/src/openapi.yaml +28 -140
|
@@ -228,21 +228,16 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
228
228
|
* @param {number} [maxRowsExamined]
|
|
229
229
|
* @param {number} [minRowsSent]
|
|
230
230
|
* @param {number} [maxRowsSent]
|
|
231
|
-
* @param {string} [dbName]
|
|
232
|
-
* @param {string} [
|
|
233
|
-
* @param {string} [
|
|
234
|
-
* @param {string} [
|
|
235
|
-
* @param {string} [clientIp]
|
|
236
|
-
* @param {string} [clientIpContains]
|
|
237
|
-
* @param {string} [clientIpCIDR]
|
|
238
|
-
* @param {string} [appName]
|
|
239
|
-
* @param {string} [appNameContains]
|
|
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.
|
|
240
235
|
* @param {string} [templateId]
|
|
241
236
|
* @param {boolean} [unclassifiedOnly]
|
|
242
237
|
* @param {*} [options] Override http request option.
|
|
243
238
|
* @throws {RequiredError}
|
|
244
239
|
*/
|
|
245
|
-
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,
|
|
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>;
|
|
246
241
|
/**
|
|
247
242
|
* alert statistic
|
|
248
243
|
* @summary alert statistic
|
|
@@ -1305,21 +1300,16 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1305
1300
|
* @param {number} [maxRowsExamined]
|
|
1306
1301
|
* @param {number} [minRowsSent]
|
|
1307
1302
|
* @param {number} [maxRowsSent]
|
|
1308
|
-
* @param {string} [dbName]
|
|
1309
|
-
* @param {string} [
|
|
1310
|
-
* @param {string} [
|
|
1311
|
-
* @param {string} [
|
|
1312
|
-
* @param {string} [clientIp]
|
|
1313
|
-
* @param {string} [clientIpContains]
|
|
1314
|
-
* @param {string} [clientIpCIDR]
|
|
1315
|
-
* @param {string} [appName]
|
|
1316
|
-
* @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.
|
|
1317
1307
|
* @param {string} [templateId]
|
|
1318
1308
|
* @param {boolean} [unclassifiedOnly]
|
|
1319
1309
|
* @param {*} [options] Override http request option.
|
|
1320
1310
|
* @throws {RequiredError}
|
|
1321
1311
|
*/
|
|
1322
|
-
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,
|
|
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>;
|
|
1323
1313
|
/**
|
|
1324
1314
|
* Get a slow log template of a cluster (VictoriaLogs backend only)
|
|
1325
1315
|
* @summary Get cluster slow log template
|
|
@@ -2182,21 +2172,16 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2182
2172
|
* @param {number} [maxRowsExamined]
|
|
2183
2173
|
* @param {number} [minRowsSent]
|
|
2184
2174
|
* @param {number} [maxRowsSent]
|
|
2185
|
-
* @param {string} [dbName]
|
|
2186
|
-
* @param {string} [
|
|
2187
|
-
* @param {string} [
|
|
2188
|
-
* @param {string} [
|
|
2189
|
-
* @param {string} [clientIp]
|
|
2190
|
-
* @param {string} [clientIpContains]
|
|
2191
|
-
* @param {string} [clientIpCIDR]
|
|
2192
|
-
* @param {string} [appName]
|
|
2193
|
-
* @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.
|
|
2194
2179
|
* @param {string} [templateId]
|
|
2195
2180
|
* @param {boolean} [unclassifiedOnly]
|
|
2196
2181
|
* @param {*} [options] Override http request option.
|
|
2197
2182
|
* @throws {RequiredError}
|
|
2198
2183
|
*/
|
|
2199
|
-
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,
|
|
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>;
|
|
2200
2185
|
/**
|
|
2201
2186
|
* Query pod logs of a cluster
|
|
2202
2187
|
* @summary Query cluster pod logs
|
|
@@ -2251,20 +2236,15 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2251
2236
|
* @param {number} [maxRowsExamined]
|
|
2252
2237
|
* @param {number} [minRowsSent]
|
|
2253
2238
|
* @param {number} [maxRowsSent]
|
|
2254
|
-
* @param {string} [dbName]
|
|
2255
|
-
* @param {string} [
|
|
2256
|
-
* @param {string} [
|
|
2257
|
-
* @param {string} [
|
|
2258
|
-
* @param {string} [clientIp]
|
|
2259
|
-
* @param {string} [clientIpContains]
|
|
2260
|
-
* @param {string} [clientIpCIDR]
|
|
2261
|
-
* @param {string} [appName]
|
|
2262
|
-
* @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.
|
|
2263
2243
|
* @param {boolean} [unclassifiedOnly]
|
|
2264
2244
|
* @param {*} [options] Override http request option.
|
|
2265
2245
|
* @throws {RequiredError}
|
|
2266
2246
|
*/
|
|
2267
|
-
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,
|
|
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>;
|
|
2268
2248
|
/**
|
|
2269
2249
|
* Query slow log templates of a cluster (VictoriaLogs backend only)
|
|
2270
2250
|
* @summary Query cluster slow log templates
|
|
@@ -2286,19 +2266,14 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2286
2266
|
* @param {number} [maxRowsExamined]
|
|
2287
2267
|
* @param {number} [minRowsSent]
|
|
2288
2268
|
* @param {number} [maxRowsSent]
|
|
2289
|
-
* @param {string} [dbName]
|
|
2290
|
-
* @param {string} [
|
|
2291
|
-
* @param {string} [
|
|
2292
|
-
* @param {string} [
|
|
2293
|
-
* @param {string} [clientIp]
|
|
2294
|
-
* @param {string} [clientIpContains]
|
|
2295
|
-
* @param {string} [clientIpCIDR]
|
|
2296
|
-
* @param {string} [appName]
|
|
2297
|
-
* @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.
|
|
2298
2273
|
* @param {*} [options] Override http request option.
|
|
2299
2274
|
* @throws {RequiredError}
|
|
2300
2275
|
*/
|
|
2301
|
-
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,
|
|
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>;
|
|
2302
2277
|
/**
|
|
2303
2278
|
* Query slow logs of a cluster
|
|
2304
2279
|
* @summary Query cluster slow logs
|
|
@@ -2319,21 +2294,16 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2319
2294
|
* @param {number} [maxRowsExamined]
|
|
2320
2295
|
* @param {number} [minRowsSent]
|
|
2321
2296
|
* @param {number} [maxRowsSent]
|
|
2322
|
-
* @param {string} [dbName]
|
|
2323
|
-
* @param {string} [
|
|
2324
|
-
* @param {string} [
|
|
2325
|
-
* @param {string} [
|
|
2326
|
-
* @param {string} [clientIp]
|
|
2327
|
-
* @param {string} [clientIpContains]
|
|
2328
|
-
* @param {string} [clientIpCIDR]
|
|
2329
|
-
* @param {string} [appName]
|
|
2330
|
-
* @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.
|
|
2331
2301
|
* @param {string} [templateId]
|
|
2332
2302
|
* @param {boolean} [unclassifiedOnly]
|
|
2333
2303
|
* @param {*} [options] Override http request option.
|
|
2334
2304
|
* @throws {RequiredError}
|
|
2335
2305
|
*/
|
|
2336
|
-
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,
|
|
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>;
|
|
2337
2307
|
/**
|
|
2338
2308
|
* Get feature
|
|
2339
2309
|
* @summary Get feature
|
|
@@ -2833,21 +2803,16 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
|
|
|
2833
2803
|
* @param {number} [maxRowsExamined]
|
|
2834
2804
|
* @param {number} [minRowsSent]
|
|
2835
2805
|
* @param {number} [maxRowsSent]
|
|
2836
|
-
* @param {string} [dbName]
|
|
2837
|
-
* @param {string} [
|
|
2838
|
-
* @param {string} [
|
|
2839
|
-
* @param {string} [
|
|
2840
|
-
* @param {string} [clientIp]
|
|
2841
|
-
* @param {string} [clientIpContains]
|
|
2842
|
-
* @param {string} [clientIpCIDR]
|
|
2843
|
-
* @param {string} [appName]
|
|
2844
|
-
* @param {string} [appNameContains]
|
|
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.
|
|
2845
2810
|
* @param {string} [templateId]
|
|
2846
2811
|
* @param {boolean} [unclassifiedOnly]
|
|
2847
2812
|
* @param {*} [options] Override http request option.
|
|
2848
2813
|
* @throws {RequiredError}
|
|
2849
2814
|
*/
|
|
2850
|
-
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,
|
|
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>>;
|
|
2851
2816
|
/**
|
|
2852
2817
|
* alert statistic
|
|
2853
2818
|
* @summary alert statistic
|
|
@@ -3910,21 +3875,16 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
|
|
|
3910
3875
|
* @param {number} [maxRowsExamined]
|
|
3911
3876
|
* @param {number} [minRowsSent]
|
|
3912
3877
|
* @param {number} [maxRowsSent]
|
|
3913
|
-
* @param {string} [dbName]
|
|
3914
|
-
* @param {string} [
|
|
3915
|
-
* @param {string} [
|
|
3916
|
-
* @param {string} [
|
|
3917
|
-
* @param {string} [clientIp]
|
|
3918
|
-
* @param {string} [clientIpContains]
|
|
3919
|
-
* @param {string} [clientIpCIDR]
|
|
3920
|
-
* @param {string} [appName]
|
|
3921
|
-
* @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.
|
|
3922
3882
|
* @param {string} [templateId]
|
|
3923
3883
|
* @param {boolean} [unclassifiedOnly]
|
|
3924
3884
|
* @param {*} [options] Override http request option.
|
|
3925
3885
|
* @throws {RequiredError}
|
|
3926
3886
|
*/
|
|
3927
|
-
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,
|
|
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>>;
|
|
3928
3888
|
/**
|
|
3929
3889
|
* Get a slow log template of a cluster (VictoriaLogs backend only)
|
|
3930
3890
|
* @summary Get cluster slow log template
|
|
@@ -4787,21 +4747,16 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
|
|
|
4787
4747
|
* @param {number} [maxRowsExamined]
|
|
4788
4748
|
* @param {number} [minRowsSent]
|
|
4789
4749
|
* @param {number} [maxRowsSent]
|
|
4790
|
-
* @param {string} [dbName]
|
|
4791
|
-
* @param {string} [
|
|
4792
|
-
* @param {string} [
|
|
4793
|
-
* @param {string} [
|
|
4794
|
-
* @param {string} [clientIp]
|
|
4795
|
-
* @param {string} [clientIpContains]
|
|
4796
|
-
* @param {string} [clientIpCIDR]
|
|
4797
|
-
* @param {string} [appName]
|
|
4798
|
-
* @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.
|
|
4799
4754
|
* @param {string} [templateId]
|
|
4800
4755
|
* @param {boolean} [unclassifiedOnly]
|
|
4801
4756
|
* @param {*} [options] Override http request option.
|
|
4802
4757
|
* @throws {RequiredError}
|
|
4803
4758
|
*/
|
|
4804
|
-
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,
|
|
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>>;
|
|
4805
4760
|
/**
|
|
4806
4761
|
* Query pod logs of a cluster
|
|
4807
4762
|
* @summary Query cluster pod logs
|
|
@@ -4856,20 +4811,15 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
|
|
|
4856
4811
|
* @param {number} [maxRowsExamined]
|
|
4857
4812
|
* @param {number} [minRowsSent]
|
|
4858
4813
|
* @param {number} [maxRowsSent]
|
|
4859
|
-
* @param {string} [dbName]
|
|
4860
|
-
* @param {string} [
|
|
4861
|
-
* @param {string} [
|
|
4862
|
-
* @param {string} [
|
|
4863
|
-
* @param {string} [clientIp]
|
|
4864
|
-
* @param {string} [clientIpContains]
|
|
4865
|
-
* @param {string} [clientIpCIDR]
|
|
4866
|
-
* @param {string} [appName]
|
|
4867
|
-
* @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.
|
|
4868
4818
|
* @param {boolean} [unclassifiedOnly]
|
|
4869
4819
|
* @param {*} [options] Override http request option.
|
|
4870
4820
|
* @throws {RequiredError}
|
|
4871
4821
|
*/
|
|
4872
|
-
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,
|
|
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>>;
|
|
4873
4823
|
/**
|
|
4874
4824
|
* Query slow log templates of a cluster (VictoriaLogs backend only)
|
|
4875
4825
|
* @summary Query cluster slow log templates
|
|
@@ -4891,19 +4841,14 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
|
|
|
4891
4841
|
* @param {number} [maxRowsExamined]
|
|
4892
4842
|
* @param {number} [minRowsSent]
|
|
4893
4843
|
* @param {number} [maxRowsSent]
|
|
4894
|
-
* @param {string} [dbName]
|
|
4895
|
-
* @param {string} [
|
|
4896
|
-
* @param {string} [
|
|
4897
|
-
* @param {string} [
|
|
4898
|
-
* @param {string} [clientIp]
|
|
4899
|
-
* @param {string} [clientIpContains]
|
|
4900
|
-
* @param {string} [clientIpCIDR]
|
|
4901
|
-
* @param {string} [appName]
|
|
4902
|
-
* @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.
|
|
4903
4848
|
* @param {*} [options] Override http request option.
|
|
4904
4849
|
* @throws {RequiredError}
|
|
4905
4850
|
*/
|
|
4906
|
-
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,
|
|
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>>;
|
|
4907
4852
|
/**
|
|
4908
4853
|
* Query slow logs of a cluster
|
|
4909
4854
|
* @summary Query cluster slow logs
|
|
@@ -4924,21 +4869,16 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
|
|
|
4924
4869
|
* @param {number} [maxRowsExamined]
|
|
4925
4870
|
* @param {number} [minRowsSent]
|
|
4926
4871
|
* @param {number} [maxRowsSent]
|
|
4927
|
-
* @param {string} [dbName]
|
|
4928
|
-
* @param {string} [
|
|
4929
|
-
* @param {string} [
|
|
4930
|
-
* @param {string} [
|
|
4931
|
-
* @param {string} [clientIp]
|
|
4932
|
-
* @param {string} [clientIpContains]
|
|
4933
|
-
* @param {string} [clientIpCIDR]
|
|
4934
|
-
* @param {string} [appName]
|
|
4935
|
-
* @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.
|
|
4936
4876
|
* @param {string} [templateId]
|
|
4937
4877
|
* @param {boolean} [unclassifiedOnly]
|
|
4938
4878
|
* @param {*} [options] Override http request option.
|
|
4939
4879
|
* @throws {RequiredError}
|
|
4940
4880
|
*/
|
|
4941
|
-
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,
|
|
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>>;
|
|
4942
4882
|
/**
|
|
4943
4883
|
* Get feature
|
|
4944
4884
|
* @summary Get feature
|
|
@@ -9623,59 +9563,29 @@ export interface SharedApiAggregateSlowLogsRequest {
|
|
|
9623
9563
|
*/
|
|
9624
9564
|
readonly maxRowsSent?: number;
|
|
9625
9565
|
/**
|
|
9626
|
-
*
|
|
9566
|
+
* Filter slow logs whose database name contains this value.
|
|
9627
9567
|
* @type {string}
|
|
9628
9568
|
* @memberof SharedApiAggregateSlowLogs
|
|
9629
9569
|
*/
|
|
9630
9570
|
readonly dbName?: string;
|
|
9631
9571
|
/**
|
|
9632
|
-
*
|
|
9633
|
-
* @type {string}
|
|
9634
|
-
* @memberof SharedApiAggregateSlowLogs
|
|
9635
|
-
*/
|
|
9636
|
-
readonly dbNameContains?: string;
|
|
9637
|
-
/**
|
|
9638
|
-
*
|
|
9572
|
+
* Filter slow logs whose user name contains this value.
|
|
9639
9573
|
* @type {string}
|
|
9640
9574
|
* @memberof SharedApiAggregateSlowLogs
|
|
9641
9575
|
*/
|
|
9642
9576
|
readonly userName?: string;
|
|
9643
9577
|
/**
|
|
9644
|
-
*
|
|
9645
|
-
* @type {string}
|
|
9646
|
-
* @memberof SharedApiAggregateSlowLogs
|
|
9647
|
-
*/
|
|
9648
|
-
readonly userNameContains?: string;
|
|
9649
|
-
/**
|
|
9650
|
-
*
|
|
9578
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
9651
9579
|
* @type {string}
|
|
9652
9580
|
* @memberof SharedApiAggregateSlowLogs
|
|
9653
9581
|
*/
|
|
9654
9582
|
readonly clientIp?: string;
|
|
9655
9583
|
/**
|
|
9656
|
-
*
|
|
9657
|
-
* @type {string}
|
|
9658
|
-
* @memberof SharedApiAggregateSlowLogs
|
|
9659
|
-
*/
|
|
9660
|
-
readonly clientIpContains?: string;
|
|
9661
|
-
/**
|
|
9662
|
-
*
|
|
9663
|
-
* @type {string}
|
|
9664
|
-
* @memberof SharedApiAggregateSlowLogs
|
|
9665
|
-
*/
|
|
9666
|
-
readonly clientIpCIDR?: string;
|
|
9667
|
-
/**
|
|
9668
|
-
*
|
|
9584
|
+
* Filter slow logs whose application name contains this value.
|
|
9669
9585
|
* @type {string}
|
|
9670
9586
|
* @memberof SharedApiAggregateSlowLogs
|
|
9671
9587
|
*/
|
|
9672
9588
|
readonly appName?: string;
|
|
9673
|
-
/**
|
|
9674
|
-
*
|
|
9675
|
-
* @type {string}
|
|
9676
|
-
* @memberof SharedApiAggregateSlowLogs
|
|
9677
|
-
*/
|
|
9678
|
-
readonly appNameContains?: string;
|
|
9679
9589
|
/**
|
|
9680
9590
|
*
|
|
9681
9591
|
* @type {string}
|
|
@@ -12432,59 +12342,29 @@ export interface SharedApiGetSlowLogStatsRequest {
|
|
|
12432
12342
|
*/
|
|
12433
12343
|
readonly maxRowsSent?: number;
|
|
12434
12344
|
/**
|
|
12435
|
-
*
|
|
12345
|
+
* Filter slow logs whose database name contains this value.
|
|
12436
12346
|
* @type {string}
|
|
12437
12347
|
* @memberof SharedApiGetSlowLogStats
|
|
12438
12348
|
*/
|
|
12439
12349
|
readonly dbName?: string;
|
|
12440
12350
|
/**
|
|
12441
|
-
*
|
|
12442
|
-
* @type {string}
|
|
12443
|
-
* @memberof SharedApiGetSlowLogStats
|
|
12444
|
-
*/
|
|
12445
|
-
readonly dbNameContains?: string;
|
|
12446
|
-
/**
|
|
12447
|
-
*
|
|
12351
|
+
* Filter slow logs whose user name contains this value.
|
|
12448
12352
|
* @type {string}
|
|
12449
12353
|
* @memberof SharedApiGetSlowLogStats
|
|
12450
12354
|
*/
|
|
12451
12355
|
readonly userName?: string;
|
|
12452
12356
|
/**
|
|
12453
|
-
*
|
|
12454
|
-
* @type {string}
|
|
12455
|
-
* @memberof SharedApiGetSlowLogStats
|
|
12456
|
-
*/
|
|
12457
|
-
readonly userNameContains?: string;
|
|
12458
|
-
/**
|
|
12459
|
-
*
|
|
12357
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
12460
12358
|
* @type {string}
|
|
12461
12359
|
* @memberof SharedApiGetSlowLogStats
|
|
12462
12360
|
*/
|
|
12463
12361
|
readonly clientIp?: string;
|
|
12464
12362
|
/**
|
|
12465
|
-
*
|
|
12466
|
-
* @type {string}
|
|
12467
|
-
* @memberof SharedApiGetSlowLogStats
|
|
12468
|
-
*/
|
|
12469
|
-
readonly clientIpContains?: string;
|
|
12470
|
-
/**
|
|
12471
|
-
*
|
|
12472
|
-
* @type {string}
|
|
12473
|
-
* @memberof SharedApiGetSlowLogStats
|
|
12474
|
-
*/
|
|
12475
|
-
readonly clientIpCIDR?: string;
|
|
12476
|
-
/**
|
|
12477
|
-
*
|
|
12363
|
+
* Filter slow logs whose application name contains this value.
|
|
12478
12364
|
* @type {string}
|
|
12479
12365
|
* @memberof SharedApiGetSlowLogStats
|
|
12480
12366
|
*/
|
|
12481
12367
|
readonly appName?: string;
|
|
12482
|
-
/**
|
|
12483
|
-
*
|
|
12484
|
-
* @type {string}
|
|
12485
|
-
* @memberof SharedApiGetSlowLogStats
|
|
12486
|
-
*/
|
|
12487
|
-
readonly appNameContains?: string;
|
|
12488
12368
|
/**
|
|
12489
12369
|
*
|
|
12490
12370
|
* @type {string}
|
|
@@ -14713,59 +14593,29 @@ export interface SharedApiQueryLogHitsRequest {
|
|
|
14713
14593
|
*/
|
|
14714
14594
|
readonly maxRowsSent?: number;
|
|
14715
14595
|
/**
|
|
14716
|
-
*
|
|
14596
|
+
* Filter slow logs whose database name contains this value.
|
|
14717
14597
|
* @type {string}
|
|
14718
14598
|
* @memberof SharedApiQueryLogHits
|
|
14719
14599
|
*/
|
|
14720
14600
|
readonly dbName?: string;
|
|
14721
14601
|
/**
|
|
14722
|
-
*
|
|
14723
|
-
* @type {string}
|
|
14724
|
-
* @memberof SharedApiQueryLogHits
|
|
14725
|
-
*/
|
|
14726
|
-
readonly dbNameContains?: string;
|
|
14727
|
-
/**
|
|
14728
|
-
*
|
|
14602
|
+
* Filter slow logs whose user name contains this value.
|
|
14729
14603
|
* @type {string}
|
|
14730
14604
|
* @memberof SharedApiQueryLogHits
|
|
14731
14605
|
*/
|
|
14732
14606
|
readonly userName?: string;
|
|
14733
14607
|
/**
|
|
14734
|
-
*
|
|
14735
|
-
* @type {string}
|
|
14736
|
-
* @memberof SharedApiQueryLogHits
|
|
14737
|
-
*/
|
|
14738
|
-
readonly userNameContains?: string;
|
|
14739
|
-
/**
|
|
14740
|
-
*
|
|
14608
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
14741
14609
|
* @type {string}
|
|
14742
14610
|
* @memberof SharedApiQueryLogHits
|
|
14743
14611
|
*/
|
|
14744
14612
|
readonly clientIp?: string;
|
|
14745
14613
|
/**
|
|
14746
|
-
*
|
|
14747
|
-
* @type {string}
|
|
14748
|
-
* @memberof SharedApiQueryLogHits
|
|
14749
|
-
*/
|
|
14750
|
-
readonly clientIpContains?: string;
|
|
14751
|
-
/**
|
|
14752
|
-
*
|
|
14753
|
-
* @type {string}
|
|
14754
|
-
* @memberof SharedApiQueryLogHits
|
|
14755
|
-
*/
|
|
14756
|
-
readonly clientIpCIDR?: string;
|
|
14757
|
-
/**
|
|
14758
|
-
*
|
|
14614
|
+
* Filter slow logs whose application name contains this value.
|
|
14759
14615
|
* @type {string}
|
|
14760
14616
|
* @memberof SharedApiQueryLogHits
|
|
14761
14617
|
*/
|
|
14762
14618
|
readonly appName?: string;
|
|
14763
|
-
/**
|
|
14764
|
-
*
|
|
14765
|
-
* @type {string}
|
|
14766
|
-
* @memberof SharedApiQueryLogHits
|
|
14767
|
-
*/
|
|
14768
|
-
readonly appNameContains?: string;
|
|
14769
14619
|
/**
|
|
14770
14620
|
*
|
|
14771
14621
|
* @type {string}
|
|
@@ -15022,59 +14872,29 @@ export interface SharedApiQuerySlowLogTemplateSamplesRequest {
|
|
|
15022
14872
|
*/
|
|
15023
14873
|
readonly maxRowsSent?: number;
|
|
15024
14874
|
/**
|
|
15025
|
-
*
|
|
14875
|
+
* Filter slow logs whose database name contains this value.
|
|
15026
14876
|
* @type {string}
|
|
15027
14877
|
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
15028
14878
|
*/
|
|
15029
14879
|
readonly dbName?: string;
|
|
15030
14880
|
/**
|
|
15031
|
-
*
|
|
15032
|
-
* @type {string}
|
|
15033
|
-
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
15034
|
-
*/
|
|
15035
|
-
readonly dbNameContains?: string;
|
|
15036
|
-
/**
|
|
15037
|
-
*
|
|
14881
|
+
* Filter slow logs whose user name contains this value.
|
|
15038
14882
|
* @type {string}
|
|
15039
14883
|
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
15040
14884
|
*/
|
|
15041
14885
|
readonly userName?: string;
|
|
15042
14886
|
/**
|
|
15043
|
-
*
|
|
15044
|
-
* @type {string}
|
|
15045
|
-
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
15046
|
-
*/
|
|
15047
|
-
readonly userNameContains?: string;
|
|
15048
|
-
/**
|
|
15049
|
-
*
|
|
14887
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
15050
14888
|
* @type {string}
|
|
15051
14889
|
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
15052
14890
|
*/
|
|
15053
14891
|
readonly clientIp?: string;
|
|
15054
14892
|
/**
|
|
15055
|
-
*
|
|
15056
|
-
* @type {string}
|
|
15057
|
-
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
15058
|
-
*/
|
|
15059
|
-
readonly clientIpContains?: string;
|
|
15060
|
-
/**
|
|
15061
|
-
*
|
|
15062
|
-
* @type {string}
|
|
15063
|
-
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
15064
|
-
*/
|
|
15065
|
-
readonly clientIpCIDR?: string;
|
|
15066
|
-
/**
|
|
15067
|
-
*
|
|
14893
|
+
* Filter slow logs whose application name contains this value.
|
|
15068
14894
|
* @type {string}
|
|
15069
14895
|
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
15070
14896
|
*/
|
|
15071
14897
|
readonly appName?: string;
|
|
15072
|
-
/**
|
|
15073
|
-
*
|
|
15074
|
-
* @type {string}
|
|
15075
|
-
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
15076
|
-
*/
|
|
15077
|
-
readonly appNameContains?: string;
|
|
15078
14898
|
/**
|
|
15079
14899
|
*
|
|
15080
14900
|
* @type {boolean}
|
|
@@ -15197,59 +15017,29 @@ export interface SharedApiQuerySlowLogTemplatesRequest {
|
|
|
15197
15017
|
*/
|
|
15198
15018
|
readonly maxRowsSent?: number;
|
|
15199
15019
|
/**
|
|
15200
|
-
*
|
|
15020
|
+
* Filter slow logs whose database name contains this value.
|
|
15201
15021
|
* @type {string}
|
|
15202
15022
|
* @memberof SharedApiQuerySlowLogTemplates
|
|
15203
15023
|
*/
|
|
15204
15024
|
readonly dbName?: string;
|
|
15205
15025
|
/**
|
|
15206
|
-
*
|
|
15207
|
-
* @type {string}
|
|
15208
|
-
* @memberof SharedApiQuerySlowLogTemplates
|
|
15209
|
-
*/
|
|
15210
|
-
readonly dbNameContains?: string;
|
|
15211
|
-
/**
|
|
15212
|
-
*
|
|
15026
|
+
* Filter slow logs whose user name contains this value.
|
|
15213
15027
|
* @type {string}
|
|
15214
15028
|
* @memberof SharedApiQuerySlowLogTemplates
|
|
15215
15029
|
*/
|
|
15216
15030
|
readonly userName?: string;
|
|
15217
15031
|
/**
|
|
15218
|
-
*
|
|
15219
|
-
* @type {string}
|
|
15220
|
-
* @memberof SharedApiQuerySlowLogTemplates
|
|
15221
|
-
*/
|
|
15222
|
-
readonly userNameContains?: string;
|
|
15223
|
-
/**
|
|
15224
|
-
*
|
|
15032
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
15225
15033
|
* @type {string}
|
|
15226
15034
|
* @memberof SharedApiQuerySlowLogTemplates
|
|
15227
15035
|
*/
|
|
15228
15036
|
readonly clientIp?: string;
|
|
15229
15037
|
/**
|
|
15230
|
-
*
|
|
15231
|
-
* @type {string}
|
|
15232
|
-
* @memberof SharedApiQuerySlowLogTemplates
|
|
15233
|
-
*/
|
|
15234
|
-
readonly clientIpContains?: string;
|
|
15235
|
-
/**
|
|
15236
|
-
*
|
|
15237
|
-
* @type {string}
|
|
15238
|
-
* @memberof SharedApiQuerySlowLogTemplates
|
|
15239
|
-
*/
|
|
15240
|
-
readonly clientIpCIDR?: string;
|
|
15241
|
-
/**
|
|
15242
|
-
*
|
|
15038
|
+
* Filter slow logs whose application name contains this value.
|
|
15243
15039
|
* @type {string}
|
|
15244
15040
|
* @memberof SharedApiQuerySlowLogTemplates
|
|
15245
15041
|
*/
|
|
15246
15042
|
readonly appName?: string;
|
|
15247
|
-
/**
|
|
15248
|
-
*
|
|
15249
|
-
* @type {string}
|
|
15250
|
-
* @memberof SharedApiQuerySlowLogTemplates
|
|
15251
|
-
*/
|
|
15252
|
-
readonly appNameContains?: string;
|
|
15253
15043
|
}
|
|
15254
15044
|
/**
|
|
15255
15045
|
* Request parameters for querySlowLogs operation in SharedApi.
|
|
@@ -15360,59 +15150,29 @@ export interface SharedApiQuerySlowLogsRequest {
|
|
|
15360
15150
|
*/
|
|
15361
15151
|
readonly maxRowsSent?: number;
|
|
15362
15152
|
/**
|
|
15363
|
-
*
|
|
15153
|
+
* Filter slow logs whose database name contains this value.
|
|
15364
15154
|
* @type {string}
|
|
15365
15155
|
* @memberof SharedApiQuerySlowLogs
|
|
15366
15156
|
*/
|
|
15367
15157
|
readonly dbName?: string;
|
|
15368
15158
|
/**
|
|
15369
|
-
*
|
|
15370
|
-
* @type {string}
|
|
15371
|
-
* @memberof SharedApiQuerySlowLogs
|
|
15372
|
-
*/
|
|
15373
|
-
readonly dbNameContains?: string;
|
|
15374
|
-
/**
|
|
15375
|
-
*
|
|
15159
|
+
* Filter slow logs whose user name contains this value.
|
|
15376
15160
|
* @type {string}
|
|
15377
15161
|
* @memberof SharedApiQuerySlowLogs
|
|
15378
15162
|
*/
|
|
15379
15163
|
readonly userName?: string;
|
|
15380
15164
|
/**
|
|
15381
|
-
*
|
|
15382
|
-
* @type {string}
|
|
15383
|
-
* @memberof SharedApiQuerySlowLogs
|
|
15384
|
-
*/
|
|
15385
|
-
readonly userNameContains?: string;
|
|
15386
|
-
/**
|
|
15387
|
-
*
|
|
15165
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
15388
15166
|
* @type {string}
|
|
15389
15167
|
* @memberof SharedApiQuerySlowLogs
|
|
15390
15168
|
*/
|
|
15391
15169
|
readonly clientIp?: string;
|
|
15392
15170
|
/**
|
|
15393
|
-
*
|
|
15394
|
-
* @type {string}
|
|
15395
|
-
* @memberof SharedApiQuerySlowLogs
|
|
15396
|
-
*/
|
|
15397
|
-
readonly clientIpContains?: string;
|
|
15398
|
-
/**
|
|
15399
|
-
*
|
|
15400
|
-
* @type {string}
|
|
15401
|
-
* @memberof SharedApiQuerySlowLogs
|
|
15402
|
-
*/
|
|
15403
|
-
readonly clientIpCIDR?: string;
|
|
15404
|
-
/**
|
|
15405
|
-
*
|
|
15171
|
+
* Filter slow logs whose application name contains this value.
|
|
15406
15172
|
* @type {string}
|
|
15407
15173
|
* @memberof SharedApiQuerySlowLogs
|
|
15408
15174
|
*/
|
|
15409
15175
|
readonly appName?: string;
|
|
15410
|
-
/**
|
|
15411
|
-
*
|
|
15412
|
-
* @type {string}
|
|
15413
|
-
* @memberof SharedApiQuerySlowLogs
|
|
15414
|
-
*/
|
|
15415
|
-
readonly appNameContains?: string;
|
|
15416
15176
|
/**
|
|
15417
15177
|
*
|
|
15418
15178
|
* @type {string}
|