kb-cloud-client-typescript 2.3.0-alpha.109 → 2.3.0-alpha.111
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/api.d.ts +1 -0
- package/dist/adminapi/api.d.ts.map +1 -1
- package/dist/adminapi/api.js +1 -0
- package/dist/adminapi/api.js.map +1 -1
- 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/database-parameters-api.d.ts +11 -11
- package/dist/adminapi/apis/database-parameters-api.d.ts.map +1 -1
- package/dist/adminapi/apis/database-parameters-api.js +10 -6
- package/dist/adminapi/apis/database-parameters-api.js.map +1 -1
- package/dist/adminapi/apis/diagnostics-api.d.ts +120 -0
- package/dist/adminapi/apis/diagnostics-api.d.ts.map +1 -0
- package/dist/adminapi/apis/diagnostics-api.js +143 -0
- package/dist/adminapi/apis/diagnostics-api.js.map +1 -0
- 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/adminapi/models/index.d.ts +1 -0
- package/dist/adminapi/models/index.d.ts.map +1 -1
- package/dist/adminapi/models/index.js +1 -0
- package/dist/adminapi/models/index.js.map +1 -1
- package/dist/adminapi/models/postgresql-session.d.ts +121 -0
- package/dist/adminapi/models/postgresql-session.d.ts.map +1 -0
- package/dist/adminapi/models/postgresql-session.js +16 -0
- package/dist/adminapi/models/postgresql-session.js.map +1 -0
- package/dist/openapi/api.d.ts +1 -0
- package/dist/openapi/api.d.ts.map +1 -1
- package/dist/openapi/api.js +1 -0
- package/dist/openapi/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/diagnostics-api.d.ts +120 -0
- package/dist/openapi/apis/diagnostics-api.d.ts.map +1 -0
- package/dist/openapi/apis/diagnostics-api.js +143 -0
- package/dist/openapi/apis/diagnostics-api.js.map +1 -0
- 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/dist/openapi/models/index.d.ts +1 -0
- package/dist/openapi/models/index.d.ts.map +1 -1
- package/dist/openapi/models/index.js +1 -0
- package/dist/openapi/models/index.js.map +1 -1
- package/dist/openapi/models/postgresql-session.d.ts +121 -0
- package/dist/openapi/models/postgresql-session.d.ts.map +1 -0
- package/dist/openapi/models/postgresql-session.js +16 -0
- package/dist/openapi/models/postgresql-session.js.map +1 -0
- package/package.json +1 -6
- package/src/adminapi/.openapi-generator/FILES +2 -0
- package/src/adminapi/api.ts +1 -0
- package/src/adminapi/apis/cluster-log-api.ts +102 -492
- package/src/adminapi/apis/database-parameters-api.ts +15 -11
- package/src/adminapi/apis/diagnostics-api.ts +196 -0
- package/src/adminapi/apis/shared-api.ts +102 -492
- package/src/adminapi/models/index.ts +1 -0
- package/src/adminapi/models/postgresql-session.ts +126 -0
- package/src/adminapi.yaml +134 -120
- package/src/openapi/.openapi-generator/FILES +2 -0
- package/src/openapi/api.ts +1 -0
- package/src/openapi/apis/cluster-log-api.ts +119 -574
- package/src/openapi/apis/diagnostics-api.ts +196 -0
- package/src/openapi/apis/shared-api.ts +119 -574
- package/src/openapi/models/index.ts +1 -0
- package/src/openapi/models/postgresql-session.ts +126 -0
- package/src/openapi.yaml +131 -140
|
@@ -239,21 +239,16 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
239
239
|
* @param {number} [maxRowsExamined]
|
|
240
240
|
* @param {number} [minRowsSent]
|
|
241
241
|
* @param {number} [maxRowsSent]
|
|
242
|
-
* @param {string} [dbName]
|
|
243
|
-
* @param {string} [
|
|
244
|
-
* @param {string} [
|
|
245
|
-
* @param {string} [
|
|
246
|
-
* @param {string} [clientIp]
|
|
247
|
-
* @param {string} [clientIpContains]
|
|
248
|
-
* @param {string} [clientIpCIDR]
|
|
249
|
-
* @param {string} [appName]
|
|
250
|
-
* @param {string} [appNameContains]
|
|
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.
|
|
251
246
|
* @param {string} [templateId]
|
|
252
247
|
* @param {boolean} [unclassifiedOnly]
|
|
253
248
|
* @param {*} [options] Override http request option.
|
|
254
249
|
* @throws {RequiredError}
|
|
255
250
|
*/
|
|
256
|
-
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,
|
|
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>;
|
|
257
252
|
/**
|
|
258
253
|
*
|
|
259
254
|
* @summary alter cluster parameter
|
|
@@ -919,22 +914,17 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
919
914
|
* @param {number} [maxRowsExamined]
|
|
920
915
|
* @param {number} [minRowsSent]
|
|
921
916
|
* @param {number} [maxRowsSent]
|
|
922
|
-
* @param {string} [dbName]
|
|
923
|
-
* @param {string} [
|
|
924
|
-
* @param {string} [
|
|
925
|
-
* @param {string} [
|
|
926
|
-
* @param {string} [clientIp]
|
|
927
|
-
* @param {string} [clientIpContains]
|
|
928
|
-
* @param {string} [clientIpCIDR]
|
|
929
|
-
* @param {string} [appName]
|
|
930
|
-
* @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.
|
|
931
921
|
* @param {string} [templateId]
|
|
932
922
|
* @param {boolean} [unclassifiedOnly]
|
|
933
923
|
* @param {number} [maxLines] Maximum number of lines to export. Defaults to 100000 if omitted
|
|
934
924
|
* @param {*} [options] Override http request option.
|
|
935
925
|
* @throws {RequiredError}
|
|
936
926
|
*/
|
|
937
|
-
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,
|
|
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>;
|
|
938
928
|
/**
|
|
939
929
|
*
|
|
940
930
|
* @summary Export parameter template from cluster
|
|
@@ -1402,21 +1392,16 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1402
1392
|
* @param {number} [maxRowsExamined]
|
|
1403
1393
|
* @param {number} [minRowsSent]
|
|
1404
1394
|
* @param {number} [maxRowsSent]
|
|
1405
|
-
* @param {string} [dbName]
|
|
1406
|
-
* @param {string} [
|
|
1407
|
-
* @param {string} [
|
|
1408
|
-
* @param {string} [
|
|
1409
|
-
* @param {string} [clientIp]
|
|
1410
|
-
* @param {string} [clientIpContains]
|
|
1411
|
-
* @param {string} [clientIpCIDR]
|
|
1412
|
-
* @param {string} [appName]
|
|
1413
|
-
* @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.
|
|
1414
1399
|
* @param {string} [templateId]
|
|
1415
1400
|
* @param {boolean} [unclassifiedOnly]
|
|
1416
1401
|
* @param {*} [options] Override http request option.
|
|
1417
1402
|
* @throws {RequiredError}
|
|
1418
1403
|
*/
|
|
1419
|
-
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,
|
|
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>;
|
|
1420
1405
|
/**
|
|
1421
1406
|
* Get a slow log template of a cluster (VictoriaLogs backend only)
|
|
1422
1407
|
* @summary Get cluster slow log template
|
|
@@ -2229,21 +2214,16 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2229
2214
|
* @param {number} [maxRowsExamined]
|
|
2230
2215
|
* @param {number} [minRowsSent]
|
|
2231
2216
|
* @param {number} [maxRowsSent]
|
|
2232
|
-
* @param {string} [dbName]
|
|
2233
|
-
* @param {string} [
|
|
2234
|
-
* @param {string} [
|
|
2235
|
-
* @param {string} [
|
|
2236
|
-
* @param {string} [clientIp]
|
|
2237
|
-
* @param {string} [clientIpContains]
|
|
2238
|
-
* @param {string} [clientIpCIDR]
|
|
2239
|
-
* @param {string} [appName]
|
|
2240
|
-
* @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.
|
|
2241
2221
|
* @param {string} [templateId]
|
|
2242
2222
|
* @param {boolean} [unclassifiedOnly]
|
|
2243
2223
|
* @param {*} [options] Override http request option.
|
|
2244
2224
|
* @throws {RequiredError}
|
|
2245
2225
|
*/
|
|
2246
|
-
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,
|
|
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>;
|
|
2247
2227
|
/**
|
|
2248
2228
|
* Query pod logs of a cluster
|
|
2249
2229
|
* @summary Query cluster pod logs
|
|
@@ -2298,20 +2278,15 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2298
2278
|
* @param {number} [maxRowsExamined]
|
|
2299
2279
|
* @param {number} [minRowsSent]
|
|
2300
2280
|
* @param {number} [maxRowsSent]
|
|
2301
|
-
* @param {string} [dbName]
|
|
2302
|
-
* @param {string} [
|
|
2303
|
-
* @param {string} [
|
|
2304
|
-
* @param {string} [
|
|
2305
|
-
* @param {string} [clientIp]
|
|
2306
|
-
* @param {string} [clientIpContains]
|
|
2307
|
-
* @param {string} [clientIpCIDR]
|
|
2308
|
-
* @param {string} [appName]
|
|
2309
|
-
* @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.
|
|
2310
2285
|
* @param {boolean} [unclassifiedOnly]
|
|
2311
2286
|
* @param {*} [options] Override http request option.
|
|
2312
2287
|
* @throws {RequiredError}
|
|
2313
2288
|
*/
|
|
2314
|
-
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,
|
|
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>;
|
|
2315
2290
|
/**
|
|
2316
2291
|
* Query slow log templates of a cluster (VictoriaLogs backend only)
|
|
2317
2292
|
* @summary Query cluster slow log templates
|
|
@@ -2333,19 +2308,14 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2333
2308
|
* @param {number} [maxRowsExamined]
|
|
2334
2309
|
* @param {number} [minRowsSent]
|
|
2335
2310
|
* @param {number} [maxRowsSent]
|
|
2336
|
-
* @param {string} [dbName]
|
|
2337
|
-
* @param {string} [
|
|
2338
|
-
* @param {string} [
|
|
2339
|
-
* @param {string} [
|
|
2340
|
-
* @param {string} [clientIp]
|
|
2341
|
-
* @param {string} [clientIpContains]
|
|
2342
|
-
* @param {string} [clientIpCIDR]
|
|
2343
|
-
* @param {string} [appName]
|
|
2344
|
-
* @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.
|
|
2345
2315
|
* @param {*} [options] Override http request option.
|
|
2346
2316
|
* @throws {RequiredError}
|
|
2347
2317
|
*/
|
|
2348
|
-
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,
|
|
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>;
|
|
2349
2319
|
/**
|
|
2350
2320
|
* Query slow logs of a cluster
|
|
2351
2321
|
* @summary Query cluster slow logs
|
|
@@ -2366,21 +2336,16 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2366
2336
|
* @param {number} [maxRowsExamined]
|
|
2367
2337
|
* @param {number} [minRowsSent]
|
|
2368
2338
|
* @param {number} [maxRowsSent]
|
|
2369
|
-
* @param {string} [dbName]
|
|
2370
|
-
* @param {string} [
|
|
2371
|
-
* @param {string} [
|
|
2372
|
-
* @param {string} [
|
|
2373
|
-
* @param {string} [clientIp]
|
|
2374
|
-
* @param {string} [clientIpContains]
|
|
2375
|
-
* @param {string} [clientIpCIDR]
|
|
2376
|
-
* @param {string} [appName]
|
|
2377
|
-
* @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.
|
|
2378
2343
|
* @param {string} [templateId]
|
|
2379
2344
|
* @param {boolean} [unclassifiedOnly]
|
|
2380
2345
|
* @param {*} [options] Override http request option.
|
|
2381
2346
|
* @throws {RequiredError}
|
|
2382
2347
|
*/
|
|
2383
|
-
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,
|
|
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>;
|
|
2384
2349
|
/**
|
|
2385
2350
|
* Get feature
|
|
2386
2351
|
* @summary Get feature
|
|
@@ -2959,21 +2924,16 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
|
|
|
2959
2924
|
* @param {number} [maxRowsExamined]
|
|
2960
2925
|
* @param {number} [minRowsSent]
|
|
2961
2926
|
* @param {number} [maxRowsSent]
|
|
2962
|
-
* @param {string} [dbName]
|
|
2963
|
-
* @param {string} [
|
|
2964
|
-
* @param {string} [
|
|
2965
|
-
* @param {string} [
|
|
2966
|
-
* @param {string} [clientIp]
|
|
2967
|
-
* @param {string} [clientIpContains]
|
|
2968
|
-
* @param {string} [clientIpCIDR]
|
|
2969
|
-
* @param {string} [appName]
|
|
2970
|
-
* @param {string} [appNameContains]
|
|
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.
|
|
2971
2931
|
* @param {string} [templateId]
|
|
2972
2932
|
* @param {boolean} [unclassifiedOnly]
|
|
2973
2933
|
* @param {*} [options] Override http request option.
|
|
2974
2934
|
* @throws {RequiredError}
|
|
2975
2935
|
*/
|
|
2976
|
-
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,
|
|
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>>;
|
|
2977
2937
|
/**
|
|
2978
2938
|
*
|
|
2979
2939
|
* @summary alter cluster parameter
|
|
@@ -3639,22 +3599,17 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
|
|
|
3639
3599
|
* @param {number} [maxRowsExamined]
|
|
3640
3600
|
* @param {number} [minRowsSent]
|
|
3641
3601
|
* @param {number} [maxRowsSent]
|
|
3642
|
-
* @param {string} [dbName]
|
|
3643
|
-
* @param {string} [
|
|
3644
|
-
* @param {string} [
|
|
3645
|
-
* @param {string} [
|
|
3646
|
-
* @param {string} [clientIp]
|
|
3647
|
-
* @param {string} [clientIpContains]
|
|
3648
|
-
* @param {string} [clientIpCIDR]
|
|
3649
|
-
* @param {string} [appName]
|
|
3650
|
-
* @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.
|
|
3651
3606
|
* @param {string} [templateId]
|
|
3652
3607
|
* @param {boolean} [unclassifiedOnly]
|
|
3653
3608
|
* @param {number} [maxLines] Maximum number of lines to export. Defaults to 100000 if omitted
|
|
3654
3609
|
* @param {*} [options] Override http request option.
|
|
3655
3610
|
* @throws {RequiredError}
|
|
3656
3611
|
*/
|
|
3657
|
-
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,
|
|
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>>;
|
|
3658
3613
|
/**
|
|
3659
3614
|
*
|
|
3660
3615
|
* @summary Export parameter template from cluster
|
|
@@ -4122,21 +4077,16 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
|
|
|
4122
4077
|
* @param {number} [maxRowsExamined]
|
|
4123
4078
|
* @param {number} [minRowsSent]
|
|
4124
4079
|
* @param {number} [maxRowsSent]
|
|
4125
|
-
* @param {string} [dbName]
|
|
4126
|
-
* @param {string} [
|
|
4127
|
-
* @param {string} [
|
|
4128
|
-
* @param {string} [
|
|
4129
|
-
* @param {string} [clientIp]
|
|
4130
|
-
* @param {string} [clientIpContains]
|
|
4131
|
-
* @param {string} [clientIpCIDR]
|
|
4132
|
-
* @param {string} [appName]
|
|
4133
|
-
* @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.
|
|
4134
4084
|
* @param {string} [templateId]
|
|
4135
4085
|
* @param {boolean} [unclassifiedOnly]
|
|
4136
4086
|
* @param {*} [options] Override http request option.
|
|
4137
4087
|
* @throws {RequiredError}
|
|
4138
4088
|
*/
|
|
4139
|
-
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,
|
|
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>>;
|
|
4140
4090
|
/**
|
|
4141
4091
|
* Get a slow log template of a cluster (VictoriaLogs backend only)
|
|
4142
4092
|
* @summary Get cluster slow log template
|
|
@@ -4949,21 +4899,16 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
|
|
|
4949
4899
|
* @param {number} [maxRowsExamined]
|
|
4950
4900
|
* @param {number} [minRowsSent]
|
|
4951
4901
|
* @param {number} [maxRowsSent]
|
|
4952
|
-
* @param {string} [dbName]
|
|
4953
|
-
* @param {string} [
|
|
4954
|
-
* @param {string} [
|
|
4955
|
-
* @param {string} [
|
|
4956
|
-
* @param {string} [clientIp]
|
|
4957
|
-
* @param {string} [clientIpContains]
|
|
4958
|
-
* @param {string} [clientIpCIDR]
|
|
4959
|
-
* @param {string} [appName]
|
|
4960
|
-
* @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.
|
|
4961
4906
|
* @param {string} [templateId]
|
|
4962
4907
|
* @param {boolean} [unclassifiedOnly]
|
|
4963
4908
|
* @param {*} [options] Override http request option.
|
|
4964
4909
|
* @throws {RequiredError}
|
|
4965
4910
|
*/
|
|
4966
|
-
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,
|
|
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>>;
|
|
4967
4912
|
/**
|
|
4968
4913
|
* Query pod logs of a cluster
|
|
4969
4914
|
* @summary Query cluster pod logs
|
|
@@ -5018,20 +4963,15 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
|
|
|
5018
4963
|
* @param {number} [maxRowsExamined]
|
|
5019
4964
|
* @param {number} [minRowsSent]
|
|
5020
4965
|
* @param {number} [maxRowsSent]
|
|
5021
|
-
* @param {string} [dbName]
|
|
5022
|
-
* @param {string} [
|
|
5023
|
-
* @param {string} [
|
|
5024
|
-
* @param {string} [
|
|
5025
|
-
* @param {string} [clientIp]
|
|
5026
|
-
* @param {string} [clientIpContains]
|
|
5027
|
-
* @param {string} [clientIpCIDR]
|
|
5028
|
-
* @param {string} [appName]
|
|
5029
|
-
* @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.
|
|
5030
4970
|
* @param {boolean} [unclassifiedOnly]
|
|
5031
4971
|
* @param {*} [options] Override http request option.
|
|
5032
4972
|
* @throws {RequiredError}
|
|
5033
4973
|
*/
|
|
5034
|
-
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,
|
|
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>>;
|
|
5035
4975
|
/**
|
|
5036
4976
|
* Query slow log templates of a cluster (VictoriaLogs backend only)
|
|
5037
4977
|
* @summary Query cluster slow log templates
|
|
@@ -5053,19 +4993,14 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
|
|
|
5053
4993
|
* @param {number} [maxRowsExamined]
|
|
5054
4994
|
* @param {number} [minRowsSent]
|
|
5055
4995
|
* @param {number} [maxRowsSent]
|
|
5056
|
-
* @param {string} [dbName]
|
|
5057
|
-
* @param {string} [
|
|
5058
|
-
* @param {string} [
|
|
5059
|
-
* @param {string} [
|
|
5060
|
-
* @param {string} [clientIp]
|
|
5061
|
-
* @param {string} [clientIpContains]
|
|
5062
|
-
* @param {string} [clientIpCIDR]
|
|
5063
|
-
* @param {string} [appName]
|
|
5064
|
-
* @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.
|
|
5065
5000
|
* @param {*} [options] Override http request option.
|
|
5066
5001
|
* @throws {RequiredError}
|
|
5067
5002
|
*/
|
|
5068
|
-
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,
|
|
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>>;
|
|
5069
5004
|
/**
|
|
5070
5005
|
* Query slow logs of a cluster
|
|
5071
5006
|
* @summary Query cluster slow logs
|
|
@@ -5086,21 +5021,16 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
|
|
|
5086
5021
|
* @param {number} [maxRowsExamined]
|
|
5087
5022
|
* @param {number} [minRowsSent]
|
|
5088
5023
|
* @param {number} [maxRowsSent]
|
|
5089
|
-
* @param {string} [dbName]
|
|
5090
|
-
* @param {string} [
|
|
5091
|
-
* @param {string} [
|
|
5092
|
-
* @param {string} [
|
|
5093
|
-
* @param {string} [clientIp]
|
|
5094
|
-
* @param {string} [clientIpContains]
|
|
5095
|
-
* @param {string} [clientIpCIDR]
|
|
5096
|
-
* @param {string} [appName]
|
|
5097
|
-
* @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.
|
|
5098
5028
|
* @param {string} [templateId]
|
|
5099
5029
|
* @param {boolean} [unclassifiedOnly]
|
|
5100
5030
|
* @param {*} [options] Override http request option.
|
|
5101
5031
|
* @throws {RequiredError}
|
|
5102
5032
|
*/
|
|
5103
|
-
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,
|
|
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>>;
|
|
5104
5034
|
/**
|
|
5105
5035
|
* Get feature
|
|
5106
5036
|
* @summary Get feature
|
|
@@ -10042,59 +9972,29 @@ export interface SharedApiAggregateSlowLogsRequest {
|
|
|
10042
9972
|
*/
|
|
10043
9973
|
readonly maxRowsSent?: number;
|
|
10044
9974
|
/**
|
|
10045
|
-
*
|
|
9975
|
+
* Filter slow logs whose database name contains this value.
|
|
10046
9976
|
* @type {string}
|
|
10047
9977
|
* @memberof SharedApiAggregateSlowLogs
|
|
10048
9978
|
*/
|
|
10049
9979
|
readonly dbName?: string;
|
|
10050
9980
|
/**
|
|
10051
|
-
*
|
|
10052
|
-
* @type {string}
|
|
10053
|
-
* @memberof SharedApiAggregateSlowLogs
|
|
10054
|
-
*/
|
|
10055
|
-
readonly dbNameContains?: string;
|
|
10056
|
-
/**
|
|
10057
|
-
*
|
|
9981
|
+
* Filter slow logs whose user name contains this value.
|
|
10058
9982
|
* @type {string}
|
|
10059
9983
|
* @memberof SharedApiAggregateSlowLogs
|
|
10060
9984
|
*/
|
|
10061
9985
|
readonly userName?: string;
|
|
10062
9986
|
/**
|
|
10063
|
-
*
|
|
10064
|
-
* @type {string}
|
|
10065
|
-
* @memberof SharedApiAggregateSlowLogs
|
|
10066
|
-
*/
|
|
10067
|
-
readonly userNameContains?: string;
|
|
10068
|
-
/**
|
|
10069
|
-
*
|
|
9987
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
10070
9988
|
* @type {string}
|
|
10071
9989
|
* @memberof SharedApiAggregateSlowLogs
|
|
10072
9990
|
*/
|
|
10073
9991
|
readonly clientIp?: string;
|
|
10074
9992
|
/**
|
|
10075
|
-
*
|
|
10076
|
-
* @type {string}
|
|
10077
|
-
* @memberof SharedApiAggregateSlowLogs
|
|
10078
|
-
*/
|
|
10079
|
-
readonly clientIpContains?: string;
|
|
10080
|
-
/**
|
|
10081
|
-
*
|
|
10082
|
-
* @type {string}
|
|
10083
|
-
* @memberof SharedApiAggregateSlowLogs
|
|
10084
|
-
*/
|
|
10085
|
-
readonly clientIpCIDR?: string;
|
|
10086
|
-
/**
|
|
10087
|
-
*
|
|
9993
|
+
* Filter slow logs whose application name contains this value.
|
|
10088
9994
|
* @type {string}
|
|
10089
9995
|
* @memberof SharedApiAggregateSlowLogs
|
|
10090
9996
|
*/
|
|
10091
9997
|
readonly appName?: string;
|
|
10092
|
-
/**
|
|
10093
|
-
*
|
|
10094
|
-
* @type {string}
|
|
10095
|
-
* @memberof SharedApiAggregateSlowLogs
|
|
10096
|
-
*/
|
|
10097
|
-
readonly appNameContains?: string;
|
|
10098
9998
|
/**
|
|
10099
9999
|
*
|
|
10100
10000
|
* @type {string}
|
|
@@ -11841,59 +11741,29 @@ export interface SharedApiExportClusterLogsRequest {
|
|
|
11841
11741
|
*/
|
|
11842
11742
|
readonly maxRowsSent?: number;
|
|
11843
11743
|
/**
|
|
11844
|
-
*
|
|
11744
|
+
* Filter slow logs whose database name contains this value.
|
|
11845
11745
|
* @type {string}
|
|
11846
11746
|
* @memberof SharedApiExportClusterLogs
|
|
11847
11747
|
*/
|
|
11848
11748
|
readonly dbName?: string;
|
|
11849
11749
|
/**
|
|
11850
|
-
*
|
|
11851
|
-
* @type {string}
|
|
11852
|
-
* @memberof SharedApiExportClusterLogs
|
|
11853
|
-
*/
|
|
11854
|
-
readonly dbNameContains?: string;
|
|
11855
|
-
/**
|
|
11856
|
-
*
|
|
11750
|
+
* Filter slow logs whose user name contains this value.
|
|
11857
11751
|
* @type {string}
|
|
11858
11752
|
* @memberof SharedApiExportClusterLogs
|
|
11859
11753
|
*/
|
|
11860
11754
|
readonly userName?: string;
|
|
11861
11755
|
/**
|
|
11862
|
-
*
|
|
11863
|
-
* @type {string}
|
|
11864
|
-
* @memberof SharedApiExportClusterLogs
|
|
11865
|
-
*/
|
|
11866
|
-
readonly userNameContains?: string;
|
|
11867
|
-
/**
|
|
11868
|
-
*
|
|
11756
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
11869
11757
|
* @type {string}
|
|
11870
11758
|
* @memberof SharedApiExportClusterLogs
|
|
11871
11759
|
*/
|
|
11872
11760
|
readonly clientIp?: string;
|
|
11873
11761
|
/**
|
|
11874
|
-
*
|
|
11875
|
-
* @type {string}
|
|
11876
|
-
* @memberof SharedApiExportClusterLogs
|
|
11877
|
-
*/
|
|
11878
|
-
readonly clientIpContains?: string;
|
|
11879
|
-
/**
|
|
11880
|
-
*
|
|
11881
|
-
* @type {string}
|
|
11882
|
-
* @memberof SharedApiExportClusterLogs
|
|
11883
|
-
*/
|
|
11884
|
-
readonly clientIpCIDR?: string;
|
|
11885
|
-
/**
|
|
11886
|
-
*
|
|
11762
|
+
* Filter slow logs whose application name contains this value.
|
|
11887
11763
|
* @type {string}
|
|
11888
11764
|
* @memberof SharedApiExportClusterLogs
|
|
11889
11765
|
*/
|
|
11890
11766
|
readonly appName?: string;
|
|
11891
|
-
/**
|
|
11892
|
-
*
|
|
11893
|
-
* @type {string}
|
|
11894
|
-
* @memberof SharedApiExportClusterLogs
|
|
11895
|
-
*/
|
|
11896
|
-
readonly appNameContains?: string;
|
|
11897
11767
|
/**
|
|
11898
11768
|
*
|
|
11899
11769
|
* @type {string}
|
|
@@ -13170,59 +13040,29 @@ export interface SharedApiGetSlowLogStatsRequest {
|
|
|
13170
13040
|
*/
|
|
13171
13041
|
readonly maxRowsSent?: number;
|
|
13172
13042
|
/**
|
|
13173
|
-
*
|
|
13043
|
+
* Filter slow logs whose database name contains this value.
|
|
13174
13044
|
* @type {string}
|
|
13175
13045
|
* @memberof SharedApiGetSlowLogStats
|
|
13176
13046
|
*/
|
|
13177
13047
|
readonly dbName?: string;
|
|
13178
13048
|
/**
|
|
13179
|
-
*
|
|
13180
|
-
* @type {string}
|
|
13181
|
-
* @memberof SharedApiGetSlowLogStats
|
|
13182
|
-
*/
|
|
13183
|
-
readonly dbNameContains?: string;
|
|
13184
|
-
/**
|
|
13185
|
-
*
|
|
13049
|
+
* Filter slow logs whose user name contains this value.
|
|
13186
13050
|
* @type {string}
|
|
13187
13051
|
* @memberof SharedApiGetSlowLogStats
|
|
13188
13052
|
*/
|
|
13189
13053
|
readonly userName?: string;
|
|
13190
13054
|
/**
|
|
13191
|
-
*
|
|
13192
|
-
* @type {string}
|
|
13193
|
-
* @memberof SharedApiGetSlowLogStats
|
|
13194
|
-
*/
|
|
13195
|
-
readonly userNameContains?: string;
|
|
13196
|
-
/**
|
|
13197
|
-
*
|
|
13055
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
13198
13056
|
* @type {string}
|
|
13199
13057
|
* @memberof SharedApiGetSlowLogStats
|
|
13200
13058
|
*/
|
|
13201
13059
|
readonly clientIp?: string;
|
|
13202
13060
|
/**
|
|
13203
|
-
*
|
|
13204
|
-
* @type {string}
|
|
13205
|
-
* @memberof SharedApiGetSlowLogStats
|
|
13206
|
-
*/
|
|
13207
|
-
readonly clientIpContains?: string;
|
|
13208
|
-
/**
|
|
13209
|
-
*
|
|
13210
|
-
* @type {string}
|
|
13211
|
-
* @memberof SharedApiGetSlowLogStats
|
|
13212
|
-
*/
|
|
13213
|
-
readonly clientIpCIDR?: string;
|
|
13214
|
-
/**
|
|
13215
|
-
*
|
|
13061
|
+
* Filter slow logs whose application name contains this value.
|
|
13216
13062
|
* @type {string}
|
|
13217
13063
|
* @memberof SharedApiGetSlowLogStats
|
|
13218
13064
|
*/
|
|
13219
13065
|
readonly appName?: string;
|
|
13220
|
-
/**
|
|
13221
|
-
*
|
|
13222
|
-
* @type {string}
|
|
13223
|
-
* @memberof SharedApiGetSlowLogStats
|
|
13224
|
-
*/
|
|
13225
|
-
readonly appNameContains?: string;
|
|
13226
13066
|
/**
|
|
13227
13067
|
*
|
|
13228
13068
|
* @type {string}
|
|
@@ -15375,59 +15215,29 @@ export interface SharedApiQueryLogHitsRequest {
|
|
|
15375
15215
|
*/
|
|
15376
15216
|
readonly maxRowsSent?: number;
|
|
15377
15217
|
/**
|
|
15378
|
-
*
|
|
15218
|
+
* Filter slow logs whose database name contains this value.
|
|
15379
15219
|
* @type {string}
|
|
15380
15220
|
* @memberof SharedApiQueryLogHits
|
|
15381
15221
|
*/
|
|
15382
15222
|
readonly dbName?: string;
|
|
15383
15223
|
/**
|
|
15384
|
-
*
|
|
15385
|
-
* @type {string}
|
|
15386
|
-
* @memberof SharedApiQueryLogHits
|
|
15387
|
-
*/
|
|
15388
|
-
readonly dbNameContains?: string;
|
|
15389
|
-
/**
|
|
15390
|
-
*
|
|
15224
|
+
* Filter slow logs whose user name contains this value.
|
|
15391
15225
|
* @type {string}
|
|
15392
15226
|
* @memberof SharedApiQueryLogHits
|
|
15393
15227
|
*/
|
|
15394
15228
|
readonly userName?: string;
|
|
15395
15229
|
/**
|
|
15396
|
-
*
|
|
15397
|
-
* @type {string}
|
|
15398
|
-
* @memberof SharedApiQueryLogHits
|
|
15399
|
-
*/
|
|
15400
|
-
readonly userNameContains?: string;
|
|
15401
|
-
/**
|
|
15402
|
-
*
|
|
15230
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
15403
15231
|
* @type {string}
|
|
15404
15232
|
* @memberof SharedApiQueryLogHits
|
|
15405
15233
|
*/
|
|
15406
15234
|
readonly clientIp?: string;
|
|
15407
15235
|
/**
|
|
15408
|
-
*
|
|
15409
|
-
* @type {string}
|
|
15410
|
-
* @memberof SharedApiQueryLogHits
|
|
15411
|
-
*/
|
|
15412
|
-
readonly clientIpContains?: string;
|
|
15413
|
-
/**
|
|
15414
|
-
*
|
|
15415
|
-
* @type {string}
|
|
15416
|
-
* @memberof SharedApiQueryLogHits
|
|
15417
|
-
*/
|
|
15418
|
-
readonly clientIpCIDR?: string;
|
|
15419
|
-
/**
|
|
15420
|
-
*
|
|
15236
|
+
* Filter slow logs whose application name contains this value.
|
|
15421
15237
|
* @type {string}
|
|
15422
15238
|
* @memberof SharedApiQueryLogHits
|
|
15423
15239
|
*/
|
|
15424
15240
|
readonly appName?: string;
|
|
15425
|
-
/**
|
|
15426
|
-
*
|
|
15427
|
-
* @type {string}
|
|
15428
|
-
* @memberof SharedApiQueryLogHits
|
|
15429
|
-
*/
|
|
15430
|
-
readonly appNameContains?: string;
|
|
15431
15241
|
/**
|
|
15432
15242
|
*
|
|
15433
15243
|
* @type {string}
|
|
@@ -15684,59 +15494,29 @@ export interface SharedApiQuerySlowLogTemplateSamplesRequest {
|
|
|
15684
15494
|
*/
|
|
15685
15495
|
readonly maxRowsSent?: number;
|
|
15686
15496
|
/**
|
|
15687
|
-
*
|
|
15497
|
+
* Filter slow logs whose database name contains this value.
|
|
15688
15498
|
* @type {string}
|
|
15689
15499
|
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
15690
15500
|
*/
|
|
15691
15501
|
readonly dbName?: string;
|
|
15692
15502
|
/**
|
|
15693
|
-
*
|
|
15694
|
-
* @type {string}
|
|
15695
|
-
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
15696
|
-
*/
|
|
15697
|
-
readonly dbNameContains?: string;
|
|
15698
|
-
/**
|
|
15699
|
-
*
|
|
15503
|
+
* Filter slow logs whose user name contains this value.
|
|
15700
15504
|
* @type {string}
|
|
15701
15505
|
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
15702
15506
|
*/
|
|
15703
15507
|
readonly userName?: string;
|
|
15704
15508
|
/**
|
|
15705
|
-
*
|
|
15706
|
-
* @type {string}
|
|
15707
|
-
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
15708
|
-
*/
|
|
15709
|
-
readonly userNameContains?: string;
|
|
15710
|
-
/**
|
|
15711
|
-
*
|
|
15509
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
15712
15510
|
* @type {string}
|
|
15713
15511
|
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
15714
15512
|
*/
|
|
15715
15513
|
readonly clientIp?: string;
|
|
15716
15514
|
/**
|
|
15717
|
-
*
|
|
15718
|
-
* @type {string}
|
|
15719
|
-
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
15720
|
-
*/
|
|
15721
|
-
readonly clientIpContains?: string;
|
|
15722
|
-
/**
|
|
15723
|
-
*
|
|
15724
|
-
* @type {string}
|
|
15725
|
-
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
15726
|
-
*/
|
|
15727
|
-
readonly clientIpCIDR?: string;
|
|
15728
|
-
/**
|
|
15729
|
-
*
|
|
15515
|
+
* Filter slow logs whose application name contains this value.
|
|
15730
15516
|
* @type {string}
|
|
15731
15517
|
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
15732
15518
|
*/
|
|
15733
15519
|
readonly appName?: string;
|
|
15734
|
-
/**
|
|
15735
|
-
*
|
|
15736
|
-
* @type {string}
|
|
15737
|
-
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
15738
|
-
*/
|
|
15739
|
-
readonly appNameContains?: string;
|
|
15740
15520
|
/**
|
|
15741
15521
|
*
|
|
15742
15522
|
* @type {boolean}
|
|
@@ -15859,59 +15639,29 @@ export interface SharedApiQuerySlowLogTemplatesRequest {
|
|
|
15859
15639
|
*/
|
|
15860
15640
|
readonly maxRowsSent?: number;
|
|
15861
15641
|
/**
|
|
15862
|
-
*
|
|
15642
|
+
* Filter slow logs whose database name contains this value.
|
|
15863
15643
|
* @type {string}
|
|
15864
15644
|
* @memberof SharedApiQuerySlowLogTemplates
|
|
15865
15645
|
*/
|
|
15866
15646
|
readonly dbName?: string;
|
|
15867
15647
|
/**
|
|
15868
|
-
*
|
|
15869
|
-
* @type {string}
|
|
15870
|
-
* @memberof SharedApiQuerySlowLogTemplates
|
|
15871
|
-
*/
|
|
15872
|
-
readonly dbNameContains?: string;
|
|
15873
|
-
/**
|
|
15874
|
-
*
|
|
15648
|
+
* Filter slow logs whose user name contains this value.
|
|
15875
15649
|
* @type {string}
|
|
15876
15650
|
* @memberof SharedApiQuerySlowLogTemplates
|
|
15877
15651
|
*/
|
|
15878
15652
|
readonly userName?: string;
|
|
15879
15653
|
/**
|
|
15880
|
-
*
|
|
15881
|
-
* @type {string}
|
|
15882
|
-
* @memberof SharedApiQuerySlowLogTemplates
|
|
15883
|
-
*/
|
|
15884
|
-
readonly userNameContains?: string;
|
|
15885
|
-
/**
|
|
15886
|
-
*
|
|
15654
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
15887
15655
|
* @type {string}
|
|
15888
15656
|
* @memberof SharedApiQuerySlowLogTemplates
|
|
15889
15657
|
*/
|
|
15890
15658
|
readonly clientIp?: string;
|
|
15891
15659
|
/**
|
|
15892
|
-
*
|
|
15893
|
-
* @type {string}
|
|
15894
|
-
* @memberof SharedApiQuerySlowLogTemplates
|
|
15895
|
-
*/
|
|
15896
|
-
readonly clientIpContains?: string;
|
|
15897
|
-
/**
|
|
15898
|
-
*
|
|
15899
|
-
* @type {string}
|
|
15900
|
-
* @memberof SharedApiQuerySlowLogTemplates
|
|
15901
|
-
*/
|
|
15902
|
-
readonly clientIpCIDR?: string;
|
|
15903
|
-
/**
|
|
15904
|
-
*
|
|
15660
|
+
* Filter slow logs whose application name contains this value.
|
|
15905
15661
|
* @type {string}
|
|
15906
15662
|
* @memberof SharedApiQuerySlowLogTemplates
|
|
15907
15663
|
*/
|
|
15908
15664
|
readonly appName?: string;
|
|
15909
|
-
/**
|
|
15910
|
-
*
|
|
15911
|
-
* @type {string}
|
|
15912
|
-
* @memberof SharedApiQuerySlowLogTemplates
|
|
15913
|
-
*/
|
|
15914
|
-
readonly appNameContains?: string;
|
|
15915
15665
|
}
|
|
15916
15666
|
/**
|
|
15917
15667
|
* Request parameters for querySlowLogs operation in SharedApi.
|
|
@@ -16022,59 +15772,29 @@ export interface SharedApiQuerySlowLogsRequest {
|
|
|
16022
15772
|
*/
|
|
16023
15773
|
readonly maxRowsSent?: number;
|
|
16024
15774
|
/**
|
|
16025
|
-
*
|
|
15775
|
+
* Filter slow logs whose database name contains this value.
|
|
16026
15776
|
* @type {string}
|
|
16027
15777
|
* @memberof SharedApiQuerySlowLogs
|
|
16028
15778
|
*/
|
|
16029
15779
|
readonly dbName?: string;
|
|
16030
15780
|
/**
|
|
16031
|
-
*
|
|
16032
|
-
* @type {string}
|
|
16033
|
-
* @memberof SharedApiQuerySlowLogs
|
|
16034
|
-
*/
|
|
16035
|
-
readonly dbNameContains?: string;
|
|
16036
|
-
/**
|
|
16037
|
-
*
|
|
15781
|
+
* Filter slow logs whose user name contains this value.
|
|
16038
15782
|
* @type {string}
|
|
16039
15783
|
* @memberof SharedApiQuerySlowLogs
|
|
16040
15784
|
*/
|
|
16041
15785
|
readonly userName?: string;
|
|
16042
15786
|
/**
|
|
16043
|
-
*
|
|
16044
|
-
* @type {string}
|
|
16045
|
-
* @memberof SharedApiQuerySlowLogs
|
|
16046
|
-
*/
|
|
16047
|
-
readonly userNameContains?: string;
|
|
16048
|
-
/**
|
|
16049
|
-
*
|
|
15787
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
16050
15788
|
* @type {string}
|
|
16051
15789
|
* @memberof SharedApiQuerySlowLogs
|
|
16052
15790
|
*/
|
|
16053
15791
|
readonly clientIp?: string;
|
|
16054
15792
|
/**
|
|
16055
|
-
*
|
|
16056
|
-
* @type {string}
|
|
16057
|
-
* @memberof SharedApiQuerySlowLogs
|
|
16058
|
-
*/
|
|
16059
|
-
readonly clientIpContains?: string;
|
|
16060
|
-
/**
|
|
16061
|
-
*
|
|
16062
|
-
* @type {string}
|
|
16063
|
-
* @memberof SharedApiQuerySlowLogs
|
|
16064
|
-
*/
|
|
16065
|
-
readonly clientIpCIDR?: string;
|
|
16066
|
-
/**
|
|
16067
|
-
*
|
|
15793
|
+
* Filter slow logs whose application name contains this value.
|
|
16068
15794
|
* @type {string}
|
|
16069
15795
|
* @memberof SharedApiQuerySlowLogs
|
|
16070
15796
|
*/
|
|
16071
15797
|
readonly appName?: string;
|
|
16072
|
-
/**
|
|
16073
|
-
*
|
|
16074
|
-
* @type {string}
|
|
16075
|
-
* @memberof SharedApiQuerySlowLogs
|
|
16076
|
-
*/
|
|
16077
|
-
readonly appNameContains?: string;
|
|
16078
15798
|
/**
|
|
16079
15799
|
*
|
|
16080
15800
|
* @type {string}
|