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
|
@@ -460,21 +460,16 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
460
460
|
* @param {number} [maxRowsExamined]
|
|
461
461
|
* @param {number} [minRowsSent]
|
|
462
462
|
* @param {number} [maxRowsSent]
|
|
463
|
-
* @param {string} [dbName]
|
|
464
|
-
* @param {string} [
|
|
465
|
-
* @param {string} [
|
|
466
|
-
* @param {string} [
|
|
467
|
-
* @param {string} [clientIp]
|
|
468
|
-
* @param {string} [clientIpContains]
|
|
469
|
-
* @param {string} [clientIpCIDR]
|
|
470
|
-
* @param {string} [appName]
|
|
471
|
-
* @param {string} [appNameContains]
|
|
463
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
464
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
465
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
466
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
472
467
|
* @param {string} [templateId]
|
|
473
468
|
* @param {boolean} [unclassifiedOnly]
|
|
474
469
|
* @param {*} [options] Override http request option.
|
|
475
470
|
* @throws {RequiredError}
|
|
476
471
|
*/
|
|
477
|
-
aggregateSlowLogs: async (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,
|
|
472
|
+
aggregateSlowLogs: async (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> => {
|
|
478
473
|
// verify required parameter 'orgName' is not null or undefined
|
|
479
474
|
assertParamExists('aggregateSlowLogs', 'orgName', orgName)
|
|
480
475
|
// verify required parameter 'clusterName' is not null or undefined
|
|
@@ -576,38 +571,18 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
576
571
|
localVarQueryParameter['dbName'] = dbName;
|
|
577
572
|
}
|
|
578
573
|
|
|
579
|
-
if (dbNameContains !== undefined) {
|
|
580
|
-
localVarQueryParameter['dbNameContains'] = dbNameContains;
|
|
581
|
-
}
|
|
582
|
-
|
|
583
574
|
if (userName !== undefined) {
|
|
584
575
|
localVarQueryParameter['userName'] = userName;
|
|
585
576
|
}
|
|
586
577
|
|
|
587
|
-
if (userNameContains !== undefined) {
|
|
588
|
-
localVarQueryParameter['userNameContains'] = userNameContains;
|
|
589
|
-
}
|
|
590
|
-
|
|
591
578
|
if (clientIp !== undefined) {
|
|
592
579
|
localVarQueryParameter['clientIp'] = clientIp;
|
|
593
580
|
}
|
|
594
581
|
|
|
595
|
-
if (clientIpContains !== undefined) {
|
|
596
|
-
localVarQueryParameter['clientIpContains'] = clientIpContains;
|
|
597
|
-
}
|
|
598
|
-
|
|
599
|
-
if (clientIpCIDR !== undefined) {
|
|
600
|
-
localVarQueryParameter['clientIpCIDR'] = clientIpCIDR;
|
|
601
|
-
}
|
|
602
|
-
|
|
603
582
|
if (appName !== undefined) {
|
|
604
583
|
localVarQueryParameter['appName'] = appName;
|
|
605
584
|
}
|
|
606
585
|
|
|
607
|
-
if (appNameContains !== undefined) {
|
|
608
|
-
localVarQueryParameter['appNameContains'] = appNameContains;
|
|
609
|
-
}
|
|
610
|
-
|
|
611
586
|
if (templateId !== undefined) {
|
|
612
587
|
localVarQueryParameter['templateId'] = templateId;
|
|
613
588
|
}
|
|
@@ -5881,21 +5856,16 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
5881
5856
|
* @param {number} [maxRowsExamined]
|
|
5882
5857
|
* @param {number} [minRowsSent]
|
|
5883
5858
|
* @param {number} [maxRowsSent]
|
|
5884
|
-
* @param {string} [dbName]
|
|
5885
|
-
* @param {string} [
|
|
5886
|
-
* @param {string} [
|
|
5887
|
-
* @param {string} [
|
|
5888
|
-
* @param {string} [clientIp]
|
|
5889
|
-
* @param {string} [clientIpContains]
|
|
5890
|
-
* @param {string} [clientIpCIDR]
|
|
5891
|
-
* @param {string} [appName]
|
|
5892
|
-
* @param {string} [appNameContains]
|
|
5859
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
5860
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
5861
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
5862
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
5893
5863
|
* @param {string} [templateId]
|
|
5894
5864
|
* @param {boolean} [unclassifiedOnly]
|
|
5895
5865
|
* @param {*} [options] Override http request option.
|
|
5896
5866
|
* @throws {RequiredError}
|
|
5897
5867
|
*/
|
|
5898
|
-
getSlowLogStats: async (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,
|
|
5868
|
+
getSlowLogStats: async (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> => {
|
|
5899
5869
|
// verify required parameter 'orgName' is not null or undefined
|
|
5900
5870
|
assertParamExists('getSlowLogStats', 'orgName', orgName)
|
|
5901
5871
|
// verify required parameter 'clusterName' is not null or undefined
|
|
@@ -5981,38 +5951,18 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
5981
5951
|
localVarQueryParameter['dbName'] = dbName;
|
|
5982
5952
|
}
|
|
5983
5953
|
|
|
5984
|
-
if (dbNameContains !== undefined) {
|
|
5985
|
-
localVarQueryParameter['dbNameContains'] = dbNameContains;
|
|
5986
|
-
}
|
|
5987
|
-
|
|
5988
5954
|
if (userName !== undefined) {
|
|
5989
5955
|
localVarQueryParameter['userName'] = userName;
|
|
5990
5956
|
}
|
|
5991
5957
|
|
|
5992
|
-
if (userNameContains !== undefined) {
|
|
5993
|
-
localVarQueryParameter['userNameContains'] = userNameContains;
|
|
5994
|
-
}
|
|
5995
|
-
|
|
5996
5958
|
if (clientIp !== undefined) {
|
|
5997
5959
|
localVarQueryParameter['clientIp'] = clientIp;
|
|
5998
5960
|
}
|
|
5999
5961
|
|
|
6000
|
-
if (clientIpContains !== undefined) {
|
|
6001
|
-
localVarQueryParameter['clientIpContains'] = clientIpContains;
|
|
6002
|
-
}
|
|
6003
|
-
|
|
6004
|
-
if (clientIpCIDR !== undefined) {
|
|
6005
|
-
localVarQueryParameter['clientIpCIDR'] = clientIpCIDR;
|
|
6006
|
-
}
|
|
6007
|
-
|
|
6008
5962
|
if (appName !== undefined) {
|
|
6009
5963
|
localVarQueryParameter['appName'] = appName;
|
|
6010
5964
|
}
|
|
6011
5965
|
|
|
6012
|
-
if (appNameContains !== undefined) {
|
|
6013
|
-
localVarQueryParameter['appNameContains'] = appNameContains;
|
|
6014
|
-
}
|
|
6015
|
-
|
|
6016
5966
|
if (templateId !== undefined) {
|
|
6017
5967
|
localVarQueryParameter['templateId'] = templateId;
|
|
6018
5968
|
}
|
|
@@ -10326,21 +10276,16 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
10326
10276
|
* @param {number} [maxRowsExamined]
|
|
10327
10277
|
* @param {number} [minRowsSent]
|
|
10328
10278
|
* @param {number} [maxRowsSent]
|
|
10329
|
-
* @param {string} [dbName]
|
|
10330
|
-
* @param {string} [
|
|
10331
|
-
* @param {string} [
|
|
10332
|
-
* @param {string} [
|
|
10333
|
-
* @param {string} [clientIp]
|
|
10334
|
-
* @param {string} [clientIpContains]
|
|
10335
|
-
* @param {string} [clientIpCIDR]
|
|
10336
|
-
* @param {string} [appName]
|
|
10337
|
-
* @param {string} [appNameContains]
|
|
10279
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
10280
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
10281
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
10282
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
10338
10283
|
* @param {string} [templateId]
|
|
10339
10284
|
* @param {boolean} [unclassifiedOnly]
|
|
10340
10285
|
* @param {*} [options] Override http request option.
|
|
10341
10286
|
* @throws {RequiredError}
|
|
10342
10287
|
*/
|
|
10343
|
-
queryLogHits: async (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,
|
|
10288
|
+
queryLogHits: async (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> => {
|
|
10344
10289
|
// verify required parameter 'orgName' is not null or undefined
|
|
10345
10290
|
assertParamExists('queryLogHits', 'orgName', orgName)
|
|
10346
10291
|
// verify required parameter 'clusterName' is not null or undefined
|
|
@@ -10438,38 +10383,18 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
10438
10383
|
localVarQueryParameter['dbName'] = dbName;
|
|
10439
10384
|
}
|
|
10440
10385
|
|
|
10441
|
-
if (dbNameContains !== undefined) {
|
|
10442
|
-
localVarQueryParameter['dbNameContains'] = dbNameContains;
|
|
10443
|
-
}
|
|
10444
|
-
|
|
10445
10386
|
if (userName !== undefined) {
|
|
10446
10387
|
localVarQueryParameter['userName'] = userName;
|
|
10447
10388
|
}
|
|
10448
10389
|
|
|
10449
|
-
if (userNameContains !== undefined) {
|
|
10450
|
-
localVarQueryParameter['userNameContains'] = userNameContains;
|
|
10451
|
-
}
|
|
10452
|
-
|
|
10453
10390
|
if (clientIp !== undefined) {
|
|
10454
10391
|
localVarQueryParameter['clientIp'] = clientIp;
|
|
10455
10392
|
}
|
|
10456
10393
|
|
|
10457
|
-
if (clientIpContains !== undefined) {
|
|
10458
|
-
localVarQueryParameter['clientIpContains'] = clientIpContains;
|
|
10459
|
-
}
|
|
10460
|
-
|
|
10461
|
-
if (clientIpCIDR !== undefined) {
|
|
10462
|
-
localVarQueryParameter['clientIpCIDR'] = clientIpCIDR;
|
|
10463
|
-
}
|
|
10464
|
-
|
|
10465
10394
|
if (appName !== undefined) {
|
|
10466
10395
|
localVarQueryParameter['appName'] = appName;
|
|
10467
10396
|
}
|
|
10468
10397
|
|
|
10469
|
-
if (appNameContains !== undefined) {
|
|
10470
|
-
localVarQueryParameter['appNameContains'] = appNameContains;
|
|
10471
|
-
}
|
|
10472
|
-
|
|
10473
10398
|
if (templateId !== undefined) {
|
|
10474
10399
|
localVarQueryParameter['templateId'] = templateId;
|
|
10475
10400
|
}
|
|
@@ -10683,20 +10608,15 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
10683
10608
|
* @param {number} [maxRowsExamined]
|
|
10684
10609
|
* @param {number} [minRowsSent]
|
|
10685
10610
|
* @param {number} [maxRowsSent]
|
|
10686
|
-
* @param {string} [dbName]
|
|
10687
|
-
* @param {string} [
|
|
10688
|
-
* @param {string} [
|
|
10689
|
-
* @param {string} [
|
|
10690
|
-
* @param {string} [clientIp]
|
|
10691
|
-
* @param {string} [clientIpContains]
|
|
10692
|
-
* @param {string} [clientIpCIDR]
|
|
10693
|
-
* @param {string} [appName]
|
|
10694
|
-
* @param {string} [appNameContains]
|
|
10611
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
10612
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
10613
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
10614
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
10695
10615
|
* @param {boolean} [unclassifiedOnly]
|
|
10696
10616
|
* @param {*} [options] Override http request option.
|
|
10697
10617
|
* @throws {RequiredError}
|
|
10698
10618
|
*/
|
|
10699
|
-
querySlowLogTemplateSamples: async (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,
|
|
10619
|
+
querySlowLogTemplateSamples: async (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> => {
|
|
10700
10620
|
// verify required parameter 'orgName' is not null or undefined
|
|
10701
10621
|
assertParamExists('querySlowLogTemplateSamples', 'orgName', orgName)
|
|
10702
10622
|
// verify required parameter 'clusterName' is not null or undefined
|
|
@@ -10793,38 +10713,18 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
10793
10713
|
localVarQueryParameter['dbName'] = dbName;
|
|
10794
10714
|
}
|
|
10795
10715
|
|
|
10796
|
-
if (dbNameContains !== undefined) {
|
|
10797
|
-
localVarQueryParameter['dbNameContains'] = dbNameContains;
|
|
10798
|
-
}
|
|
10799
|
-
|
|
10800
10716
|
if (userName !== undefined) {
|
|
10801
10717
|
localVarQueryParameter['userName'] = userName;
|
|
10802
10718
|
}
|
|
10803
10719
|
|
|
10804
|
-
if (userNameContains !== undefined) {
|
|
10805
|
-
localVarQueryParameter['userNameContains'] = userNameContains;
|
|
10806
|
-
}
|
|
10807
|
-
|
|
10808
10720
|
if (clientIp !== undefined) {
|
|
10809
10721
|
localVarQueryParameter['clientIp'] = clientIp;
|
|
10810
10722
|
}
|
|
10811
10723
|
|
|
10812
|
-
if (clientIpContains !== undefined) {
|
|
10813
|
-
localVarQueryParameter['clientIpContains'] = clientIpContains;
|
|
10814
|
-
}
|
|
10815
|
-
|
|
10816
|
-
if (clientIpCIDR !== undefined) {
|
|
10817
|
-
localVarQueryParameter['clientIpCIDR'] = clientIpCIDR;
|
|
10818
|
-
}
|
|
10819
|
-
|
|
10820
10724
|
if (appName !== undefined) {
|
|
10821
10725
|
localVarQueryParameter['appName'] = appName;
|
|
10822
10726
|
}
|
|
10823
10727
|
|
|
10824
|
-
if (appNameContains !== undefined) {
|
|
10825
|
-
localVarQueryParameter['appNameContains'] = appNameContains;
|
|
10826
|
-
}
|
|
10827
|
-
|
|
10828
10728
|
if (unclassifiedOnly !== undefined) {
|
|
10829
10729
|
localVarQueryParameter['unclassifiedOnly'] = unclassifiedOnly;
|
|
10830
10730
|
}
|
|
@@ -10861,19 +10761,14 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
10861
10761
|
* @param {number} [maxRowsExamined]
|
|
10862
10762
|
* @param {number} [minRowsSent]
|
|
10863
10763
|
* @param {number} [maxRowsSent]
|
|
10864
|
-
* @param {string} [dbName]
|
|
10865
|
-
* @param {string} [
|
|
10866
|
-
* @param {string} [
|
|
10867
|
-
* @param {string} [
|
|
10868
|
-
* @param {string} [clientIp]
|
|
10869
|
-
* @param {string} [clientIpContains]
|
|
10870
|
-
* @param {string} [clientIpCIDR]
|
|
10871
|
-
* @param {string} [appName]
|
|
10872
|
-
* @param {string} [appNameContains]
|
|
10764
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
10765
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
10766
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
10767
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
10873
10768
|
* @param {*} [options] Override http request option.
|
|
10874
10769
|
* @throws {RequiredError}
|
|
10875
10770
|
*/
|
|
10876
|
-
querySlowLogTemplates: async (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,
|
|
10771
|
+
querySlowLogTemplates: async (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> => {
|
|
10877
10772
|
// verify required parameter 'orgName' is not null or undefined
|
|
10878
10773
|
assertParamExists('querySlowLogTemplates', 'orgName', orgName)
|
|
10879
10774
|
// verify required parameter 'clusterName' is not null or undefined
|
|
@@ -10971,38 +10866,18 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
10971
10866
|
localVarQueryParameter['dbName'] = dbName;
|
|
10972
10867
|
}
|
|
10973
10868
|
|
|
10974
|
-
if (dbNameContains !== undefined) {
|
|
10975
|
-
localVarQueryParameter['dbNameContains'] = dbNameContains;
|
|
10976
|
-
}
|
|
10977
|
-
|
|
10978
10869
|
if (userName !== undefined) {
|
|
10979
10870
|
localVarQueryParameter['userName'] = userName;
|
|
10980
10871
|
}
|
|
10981
10872
|
|
|
10982
|
-
if (userNameContains !== undefined) {
|
|
10983
|
-
localVarQueryParameter['userNameContains'] = userNameContains;
|
|
10984
|
-
}
|
|
10985
|
-
|
|
10986
10873
|
if (clientIp !== undefined) {
|
|
10987
10874
|
localVarQueryParameter['clientIp'] = clientIp;
|
|
10988
10875
|
}
|
|
10989
10876
|
|
|
10990
|
-
if (clientIpContains !== undefined) {
|
|
10991
|
-
localVarQueryParameter['clientIpContains'] = clientIpContains;
|
|
10992
|
-
}
|
|
10993
|
-
|
|
10994
|
-
if (clientIpCIDR !== undefined) {
|
|
10995
|
-
localVarQueryParameter['clientIpCIDR'] = clientIpCIDR;
|
|
10996
|
-
}
|
|
10997
|
-
|
|
10998
10877
|
if (appName !== undefined) {
|
|
10999
10878
|
localVarQueryParameter['appName'] = appName;
|
|
11000
10879
|
}
|
|
11001
10880
|
|
|
11002
|
-
if (appNameContains !== undefined) {
|
|
11003
|
-
localVarQueryParameter['appNameContains'] = appNameContains;
|
|
11004
|
-
}
|
|
11005
|
-
|
|
11006
10881
|
|
|
11007
10882
|
|
|
11008
10883
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -11034,21 +10909,16 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
11034
10909
|
* @param {number} [maxRowsExamined]
|
|
11035
10910
|
* @param {number} [minRowsSent]
|
|
11036
10911
|
* @param {number} [maxRowsSent]
|
|
11037
|
-
* @param {string} [dbName]
|
|
11038
|
-
* @param {string} [
|
|
11039
|
-
* @param {string} [
|
|
11040
|
-
* @param {string} [
|
|
11041
|
-
* @param {string} [clientIp]
|
|
11042
|
-
* @param {string} [clientIpContains]
|
|
11043
|
-
* @param {string} [clientIpCIDR]
|
|
11044
|
-
* @param {string} [appName]
|
|
11045
|
-
* @param {string} [appNameContains]
|
|
10912
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
10913
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
10914
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
10915
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
11046
10916
|
* @param {string} [templateId]
|
|
11047
10917
|
* @param {boolean} [unclassifiedOnly]
|
|
11048
10918
|
* @param {*} [options] Override http request option.
|
|
11049
10919
|
* @throws {RequiredError}
|
|
11050
10920
|
*/
|
|
11051
|
-
querySlowLogs: async (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,
|
|
10921
|
+
querySlowLogs: async (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> => {
|
|
11052
10922
|
// verify required parameter 'orgName' is not null or undefined
|
|
11053
10923
|
assertParamExists('querySlowLogs', 'orgName', orgName)
|
|
11054
10924
|
// verify required parameter 'clusterName' is not null or undefined
|
|
@@ -11142,38 +11012,18 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
11142
11012
|
localVarQueryParameter['dbName'] = dbName;
|
|
11143
11013
|
}
|
|
11144
11014
|
|
|
11145
|
-
if (dbNameContains !== undefined) {
|
|
11146
|
-
localVarQueryParameter['dbNameContains'] = dbNameContains;
|
|
11147
|
-
}
|
|
11148
|
-
|
|
11149
11015
|
if (userName !== undefined) {
|
|
11150
11016
|
localVarQueryParameter['userName'] = userName;
|
|
11151
11017
|
}
|
|
11152
11018
|
|
|
11153
|
-
if (userNameContains !== undefined) {
|
|
11154
|
-
localVarQueryParameter['userNameContains'] = userNameContains;
|
|
11155
|
-
}
|
|
11156
|
-
|
|
11157
11019
|
if (clientIp !== undefined) {
|
|
11158
11020
|
localVarQueryParameter['clientIp'] = clientIp;
|
|
11159
11021
|
}
|
|
11160
11022
|
|
|
11161
|
-
if (clientIpContains !== undefined) {
|
|
11162
|
-
localVarQueryParameter['clientIpContains'] = clientIpContains;
|
|
11163
|
-
}
|
|
11164
|
-
|
|
11165
|
-
if (clientIpCIDR !== undefined) {
|
|
11166
|
-
localVarQueryParameter['clientIpCIDR'] = clientIpCIDR;
|
|
11167
|
-
}
|
|
11168
|
-
|
|
11169
11023
|
if (appName !== undefined) {
|
|
11170
11024
|
localVarQueryParameter['appName'] = appName;
|
|
11171
11025
|
}
|
|
11172
11026
|
|
|
11173
|
-
if (appNameContains !== undefined) {
|
|
11174
|
-
localVarQueryParameter['appNameContains'] = appNameContains;
|
|
11175
|
-
}
|
|
11176
|
-
|
|
11177
11027
|
if (templateId !== undefined) {
|
|
11178
11028
|
localVarQueryParameter['templateId'] = templateId;
|
|
11179
11029
|
}
|
|
@@ -13548,22 +13398,17 @@ export const SharedApiFp = function(configuration?: Configuration) {
|
|
|
13548
13398
|
* @param {number} [maxRowsExamined]
|
|
13549
13399
|
* @param {number} [minRowsSent]
|
|
13550
13400
|
* @param {number} [maxRowsSent]
|
|
13551
|
-
* @param {string} [dbName]
|
|
13552
|
-
* @param {string} [
|
|
13553
|
-
* @param {string} [
|
|
13554
|
-
* @param {string} [
|
|
13555
|
-
* @param {string} [clientIp]
|
|
13556
|
-
* @param {string} [clientIpContains]
|
|
13557
|
-
* @param {string} [clientIpCIDR]
|
|
13558
|
-
* @param {string} [appName]
|
|
13559
|
-
* @param {string} [appNameContains]
|
|
13401
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
13402
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
13403
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
13404
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
13560
13405
|
* @param {string} [templateId]
|
|
13561
13406
|
* @param {boolean} [unclassifiedOnly]
|
|
13562
13407
|
* @param {*} [options] Override http request option.
|
|
13563
13408
|
* @throws {RequiredError}
|
|
13564
13409
|
*/
|
|
13565
|
-
async 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,
|
|
13566
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.aggregateSlowLogs(orgName, clusterName, startTime, endTime, componentName, instanceName, query, limit, sortType, groupBy, topN, minExecutionTime, maxExecutionTime, minLockTime, maxLockTime, minRowsExamined, maxRowsExamined, minRowsSent, maxRowsSent, dbName,
|
|
13410
|
+
async 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>> {
|
|
13411
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.aggregateSlowLogs(orgName, clusterName, startTime, endTime, componentName, instanceName, query, limit, sortType, groupBy, topN, minExecutionTime, maxExecutionTime, minLockTime, maxLockTime, minRowsExamined, maxRowsExamined, minRowsSent, maxRowsSent, dbName, userName, clientIp, appName, templateId, unclassifiedOnly, options);
|
|
13567
13412
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
13568
13413
|
const localVarOperationServerBasePath = operationServerMap['SharedApi.aggregateSlowLogs']?.[localVarOperationServerIndex]?.url;
|
|
13569
13414
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -15145,22 +14990,17 @@ export const SharedApiFp = function(configuration?: Configuration) {
|
|
|
15145
14990
|
* @param {number} [maxRowsExamined]
|
|
15146
14991
|
* @param {number} [minRowsSent]
|
|
15147
14992
|
* @param {number} [maxRowsSent]
|
|
15148
|
-
* @param {string} [dbName]
|
|
15149
|
-
* @param {string} [
|
|
15150
|
-
* @param {string} [
|
|
15151
|
-
* @param {string} [
|
|
15152
|
-
* @param {string} [clientIp]
|
|
15153
|
-
* @param {string} [clientIpContains]
|
|
15154
|
-
* @param {string} [clientIpCIDR]
|
|
15155
|
-
* @param {string} [appName]
|
|
15156
|
-
* @param {string} [appNameContains]
|
|
14993
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
14994
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
14995
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
14996
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
15157
14997
|
* @param {string} [templateId]
|
|
15158
14998
|
* @param {boolean} [unclassifiedOnly]
|
|
15159
14999
|
* @param {*} [options] Override http request option.
|
|
15160
15000
|
* @throws {RequiredError}
|
|
15161
15001
|
*/
|
|
15162
|
-
async 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,
|
|
15163
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getSlowLogStats(orgName, clusterName, startTime, endTime, componentName, instanceName, query, minExecutionTime, maxExecutionTime, minLockTime, maxLockTime, minRowsExamined, maxRowsExamined, minRowsSent, maxRowsSent, dbName,
|
|
15002
|
+
async 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>> {
|
|
15003
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getSlowLogStats(orgName, clusterName, startTime, endTime, componentName, instanceName, query, minExecutionTime, maxExecutionTime, minLockTime, maxLockTime, minRowsExamined, maxRowsExamined, minRowsSent, maxRowsSent, dbName, userName, clientIp, appName, templateId, unclassifiedOnly, options);
|
|
15164
15004
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
15165
15005
|
const localVarOperationServerBasePath = operationServerMap['SharedApi.getSlowLogStats']?.[localVarOperationServerIndex]?.url;
|
|
15166
15006
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -16442,22 +16282,17 @@ export const SharedApiFp = function(configuration?: Configuration) {
|
|
|
16442
16282
|
* @param {number} [maxRowsExamined]
|
|
16443
16283
|
* @param {number} [minRowsSent]
|
|
16444
16284
|
* @param {number} [maxRowsSent]
|
|
16445
|
-
* @param {string} [dbName]
|
|
16446
|
-
* @param {string} [
|
|
16447
|
-
* @param {string} [
|
|
16448
|
-
* @param {string} [
|
|
16449
|
-
* @param {string} [clientIp]
|
|
16450
|
-
* @param {string} [clientIpContains]
|
|
16451
|
-
* @param {string} [clientIpCIDR]
|
|
16452
|
-
* @param {string} [appName]
|
|
16453
|
-
* @param {string} [appNameContains]
|
|
16285
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
16286
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
16287
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
16288
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
16454
16289
|
* @param {string} [templateId]
|
|
16455
16290
|
* @param {boolean} [unclassifiedOnly]
|
|
16456
16291
|
* @param {*} [options] Override http request option.
|
|
16457
16292
|
* @throws {RequiredError}
|
|
16458
16293
|
*/
|
|
16459
|
-
async 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,
|
|
16460
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.queryLogHits(orgName, clusterName, startTime, endTime, step, logType, componentName, instanceName, query, minExecutionTime, maxExecutionTime, minLockTime, maxLockTime, minRowsExamined, maxRowsExamined, minRowsSent, maxRowsSent, dbName,
|
|
16294
|
+
async 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>> {
|
|
16295
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.queryLogHits(orgName, clusterName, startTime, endTime, step, logType, componentName, instanceName, query, minExecutionTime, maxExecutionTime, minLockTime, maxLockTime, minRowsExamined, maxRowsExamined, minRowsSent, maxRowsSent, dbName, userName, clientIp, appName, templateId, unclassifiedOnly, options);
|
|
16461
16296
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
16462
16297
|
const localVarOperationServerBasePath = operationServerMap['SharedApi.queryLogHits']?.[localVarOperationServerIndex]?.url;
|
|
16463
16298
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -16526,21 +16361,16 @@ export const SharedApiFp = function(configuration?: Configuration) {
|
|
|
16526
16361
|
* @param {number} [maxRowsExamined]
|
|
16527
16362
|
* @param {number} [minRowsSent]
|
|
16528
16363
|
* @param {number} [maxRowsSent]
|
|
16529
|
-
* @param {string} [dbName]
|
|
16530
|
-
* @param {string} [
|
|
16531
|
-
* @param {string} [
|
|
16532
|
-
* @param {string} [
|
|
16533
|
-
* @param {string} [clientIp]
|
|
16534
|
-
* @param {string} [clientIpContains]
|
|
16535
|
-
* @param {string} [clientIpCIDR]
|
|
16536
|
-
* @param {string} [appName]
|
|
16537
|
-
* @param {string} [appNameContains]
|
|
16364
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
16365
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
16366
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
16367
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
16538
16368
|
* @param {boolean} [unclassifiedOnly]
|
|
16539
16369
|
* @param {*} [options] Override http request option.
|
|
16540
16370
|
* @throws {RequiredError}
|
|
16541
16371
|
*/
|
|
16542
|
-
async 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,
|
|
16543
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.querySlowLogTemplateSamples(orgName, clusterName, templateId, startTime, endTime, componentName, instanceName, query, limit, sortType, minExecutionTime, maxExecutionTime, minLockTime, maxLockTime, minRowsExamined, maxRowsExamined, minRowsSent, maxRowsSent, dbName,
|
|
16372
|
+
async 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>> {
|
|
16373
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.querySlowLogTemplateSamples(orgName, clusterName, templateId, startTime, endTime, componentName, instanceName, query, limit, sortType, minExecutionTime, maxExecutionTime, minLockTime, maxLockTime, minRowsExamined, maxRowsExamined, minRowsSent, maxRowsSent, dbName, userName, clientIp, appName, unclassifiedOnly, options);
|
|
16544
16374
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
16545
16375
|
const localVarOperationServerBasePath = operationServerMap['SharedApi.querySlowLogTemplateSamples']?.[localVarOperationServerIndex]?.url;
|
|
16546
16376
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -16566,20 +16396,15 @@ export const SharedApiFp = function(configuration?: Configuration) {
|
|
|
16566
16396
|
* @param {number} [maxRowsExamined]
|
|
16567
16397
|
* @param {number} [minRowsSent]
|
|
16568
16398
|
* @param {number} [maxRowsSent]
|
|
16569
|
-
* @param {string} [dbName]
|
|
16570
|
-
* @param {string} [
|
|
16571
|
-
* @param {string} [
|
|
16572
|
-
* @param {string} [
|
|
16573
|
-
* @param {string} [clientIp]
|
|
16574
|
-
* @param {string} [clientIpContains]
|
|
16575
|
-
* @param {string} [clientIpCIDR]
|
|
16576
|
-
* @param {string} [appName]
|
|
16577
|
-
* @param {string} [appNameContains]
|
|
16399
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
16400
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
16401
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
16402
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
16578
16403
|
* @param {*} [options] Override http request option.
|
|
16579
16404
|
* @throws {RequiredError}
|
|
16580
16405
|
*/
|
|
16581
|
-
async 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,
|
|
16582
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.querySlowLogTemplates(orgName, clusterName, startTime, endTime, componentName, instanceName, query, topN, sortBy, sortType, minExecutionTime, maxExecutionTime, minLockTime, maxLockTime, minRowsExamined, maxRowsExamined, minRowsSent, maxRowsSent, dbName,
|
|
16406
|
+
async 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>> {
|
|
16407
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.querySlowLogTemplates(orgName, clusterName, startTime, endTime, componentName, instanceName, query, topN, sortBy, sortType, minExecutionTime, maxExecutionTime, minLockTime, maxLockTime, minRowsExamined, maxRowsExamined, minRowsSent, maxRowsSent, dbName, userName, clientIp, appName, options);
|
|
16583
16408
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
16584
16409
|
const localVarOperationServerBasePath = operationServerMap['SharedApi.querySlowLogTemplates']?.[localVarOperationServerIndex]?.url;
|
|
16585
16410
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -16604,22 +16429,17 @@ export const SharedApiFp = function(configuration?: Configuration) {
|
|
|
16604
16429
|
* @param {number} [maxRowsExamined]
|
|
16605
16430
|
* @param {number} [minRowsSent]
|
|
16606
16431
|
* @param {number} [maxRowsSent]
|
|
16607
|
-
* @param {string} [dbName]
|
|
16608
|
-
* @param {string} [
|
|
16609
|
-
* @param {string} [
|
|
16610
|
-
* @param {string} [
|
|
16611
|
-
* @param {string} [clientIp]
|
|
16612
|
-
* @param {string} [clientIpContains]
|
|
16613
|
-
* @param {string} [clientIpCIDR]
|
|
16614
|
-
* @param {string} [appName]
|
|
16615
|
-
* @param {string} [appNameContains]
|
|
16432
|
+
* @param {string} [dbName] Filter slow logs whose database name contains this value.
|
|
16433
|
+
* @param {string} [userName] Filter slow logs whose user name contains this value.
|
|
16434
|
+
* @param {string} [clientIp] Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
16435
|
+
* @param {string} [appName] Filter slow logs whose application name contains this value.
|
|
16616
16436
|
* @param {string} [templateId]
|
|
16617
16437
|
* @param {boolean} [unclassifiedOnly]
|
|
16618
16438
|
* @param {*} [options] Override http request option.
|
|
16619
16439
|
* @throws {RequiredError}
|
|
16620
16440
|
*/
|
|
16621
|
-
async 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,
|
|
16622
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.querySlowLogs(orgName, clusterName, startTime, endTime, componentName, instanceName, query, limit, sortType, minExecutionTime, maxExecutionTime, minLockTime, maxLockTime, minRowsExamined, maxRowsExamined, minRowsSent, maxRowsSent, dbName,
|
|
16441
|
+
async 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>> {
|
|
16442
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.querySlowLogs(orgName, clusterName, startTime, endTime, componentName, instanceName, query, limit, sortType, minExecutionTime, maxExecutionTime, minLockTime, maxLockTime, minRowsExamined, maxRowsExamined, minRowsSent, maxRowsSent, dbName, userName, clientIp, appName, templateId, unclassifiedOnly, options);
|
|
16623
16443
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
16624
16444
|
const localVarOperationServerBasePath = operationServerMap['SharedApi.querySlowLogs']?.[localVarOperationServerIndex]?.url;
|
|
16625
16445
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -17337,7 +17157,7 @@ export const SharedApiFactory = function (configuration?: Configuration, basePat
|
|
|
17337
17157
|
* @throws {RequiredError}
|
|
17338
17158
|
*/
|
|
17339
17159
|
aggregateSlowLogs(requestParameters: SharedApiAggregateSlowLogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterExecutionLogAggregateResponse> {
|
|
17340
|
-
return localVarFp.aggregateSlowLogs(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.limit, requestParameters.sortType, requestParameters.groupBy, requestParameters.topN, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.
|
|
17160
|
+
return localVarFp.aggregateSlowLogs(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.limit, requestParameters.sortType, requestParameters.groupBy, requestParameters.topN, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.userName, requestParameters.clientIp, requestParameters.appName, requestParameters.templateId, requestParameters.unclassifiedOnly, options).then((request) => request(axios, basePath));
|
|
17341
17161
|
},
|
|
17342
17162
|
/**
|
|
17343
17163
|
* alert statistic
|
|
@@ -18377,7 +18197,7 @@ export const SharedApiFactory = function (configuration?: Configuration, basePat
|
|
|
18377
18197
|
* @throws {RequiredError}
|
|
18378
18198
|
*/
|
|
18379
18199
|
getSlowLogStats(requestParameters: SharedApiGetSlowLogStatsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterSlowLogStats> {
|
|
18380
|
-
return localVarFp.getSlowLogStats(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.
|
|
18200
|
+
return localVarFp.getSlowLogStats(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.userName, requestParameters.clientIp, requestParameters.appName, requestParameters.templateId, requestParameters.unclassifiedOnly, options).then((request) => request(axios, basePath));
|
|
18381
18201
|
},
|
|
18382
18202
|
/**
|
|
18383
18203
|
* Get a slow log template of a cluster (VictoriaLogs backend only)
|
|
@@ -19213,7 +19033,7 @@ export const SharedApiFactory = function (configuration?: Configuration, basePat
|
|
|
19213
19033
|
* @throws {RequiredError}
|
|
19214
19034
|
*/
|
|
19215
19035
|
queryLogHits(requestParameters: SharedApiQueryLogHitsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterLogHitsResponse> {
|
|
19216
|
-
return localVarFp.queryLogHits(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.step, requestParameters.logType, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.
|
|
19036
|
+
return localVarFp.queryLogHits(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.step, requestParameters.logType, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.userName, requestParameters.clientIp, requestParameters.appName, requestParameters.templateId, requestParameters.unclassifiedOnly, options).then((request) => request(axios, basePath));
|
|
19217
19037
|
},
|
|
19218
19038
|
/**
|
|
19219
19039
|
* Query pod logs of a cluster
|
|
@@ -19243,7 +19063,7 @@ export const SharedApiFactory = function (configuration?: Configuration, basePat
|
|
|
19243
19063
|
* @throws {RequiredError}
|
|
19244
19064
|
*/
|
|
19245
19065
|
querySlowLogTemplateSamples(requestParameters: SharedApiQuerySlowLogTemplateSamplesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterExecutionLog> {
|
|
19246
|
-
return localVarFp.querySlowLogTemplateSamples(requestParameters.orgName, requestParameters.clusterName, requestParameters.templateId, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.limit, requestParameters.sortType, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.
|
|
19066
|
+
return localVarFp.querySlowLogTemplateSamples(requestParameters.orgName, requestParameters.clusterName, requestParameters.templateId, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.limit, requestParameters.sortType, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.userName, requestParameters.clientIp, requestParameters.appName, requestParameters.unclassifiedOnly, options).then((request) => request(axios, basePath));
|
|
19247
19067
|
},
|
|
19248
19068
|
/**
|
|
19249
19069
|
* Query slow log templates of a cluster (VictoriaLogs backend only)
|
|
@@ -19253,7 +19073,7 @@ export const SharedApiFactory = function (configuration?: Configuration, basePat
|
|
|
19253
19073
|
* @throws {RequiredError}
|
|
19254
19074
|
*/
|
|
19255
19075
|
querySlowLogTemplates(requestParameters: SharedApiQuerySlowLogTemplatesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterSlowLogTemplateList> {
|
|
19256
|
-
return localVarFp.querySlowLogTemplates(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.topN, requestParameters.sortBy, requestParameters.sortType, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.
|
|
19076
|
+
return localVarFp.querySlowLogTemplates(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.topN, requestParameters.sortBy, requestParameters.sortType, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.userName, requestParameters.clientIp, requestParameters.appName, options).then((request) => request(axios, basePath));
|
|
19257
19077
|
},
|
|
19258
19078
|
/**
|
|
19259
19079
|
* Query slow logs of a cluster
|
|
@@ -19263,7 +19083,7 @@ export const SharedApiFactory = function (configuration?: Configuration, basePat
|
|
|
19263
19083
|
* @throws {RequiredError}
|
|
19264
19084
|
*/
|
|
19265
19085
|
querySlowLogs(requestParameters: SharedApiQuerySlowLogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterExecutionLog> {
|
|
19266
|
-
return localVarFp.querySlowLogs(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.limit, requestParameters.sortType, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.
|
|
19086
|
+
return localVarFp.querySlowLogs(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.limit, requestParameters.sortType, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.userName, requestParameters.clientIp, requestParameters.appName, requestParameters.templateId, requestParameters.unclassifiedOnly, options).then((request) => request(axios, basePath));
|
|
19267
19087
|
},
|
|
19268
19088
|
/**
|
|
19269
19089
|
* Get feature
|
|
@@ -22279,68 +22099,33 @@ export interface SharedApiAggregateSlowLogsRequest {
|
|
|
22279
22099
|
readonly maxRowsSent?: number
|
|
22280
22100
|
|
|
22281
22101
|
/**
|
|
22282
|
-
*
|
|
22102
|
+
* Filter slow logs whose database name contains this value.
|
|
22283
22103
|
* @type {string}
|
|
22284
22104
|
* @memberof SharedApiAggregateSlowLogs
|
|
22285
22105
|
*/
|
|
22286
22106
|
readonly dbName?: string
|
|
22287
22107
|
|
|
22288
22108
|
/**
|
|
22289
|
-
*
|
|
22290
|
-
* @type {string}
|
|
22291
|
-
* @memberof SharedApiAggregateSlowLogs
|
|
22292
|
-
*/
|
|
22293
|
-
readonly dbNameContains?: string
|
|
22294
|
-
|
|
22295
|
-
/**
|
|
22296
|
-
*
|
|
22109
|
+
* Filter slow logs whose user name contains this value.
|
|
22297
22110
|
* @type {string}
|
|
22298
22111
|
* @memberof SharedApiAggregateSlowLogs
|
|
22299
22112
|
*/
|
|
22300
22113
|
readonly userName?: string
|
|
22301
22114
|
|
|
22302
22115
|
/**
|
|
22303
|
-
*
|
|
22304
|
-
* @type {string}
|
|
22305
|
-
* @memberof SharedApiAggregateSlowLogs
|
|
22306
|
-
*/
|
|
22307
|
-
readonly userNameContains?: string
|
|
22308
|
-
|
|
22309
|
-
/**
|
|
22310
|
-
*
|
|
22116
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
22311
22117
|
* @type {string}
|
|
22312
22118
|
* @memberof SharedApiAggregateSlowLogs
|
|
22313
22119
|
*/
|
|
22314
22120
|
readonly clientIp?: string
|
|
22315
22121
|
|
|
22316
22122
|
/**
|
|
22317
|
-
*
|
|
22318
|
-
* @type {string}
|
|
22319
|
-
* @memberof SharedApiAggregateSlowLogs
|
|
22320
|
-
*/
|
|
22321
|
-
readonly clientIpContains?: string
|
|
22322
|
-
|
|
22323
|
-
/**
|
|
22324
|
-
*
|
|
22325
|
-
* @type {string}
|
|
22326
|
-
* @memberof SharedApiAggregateSlowLogs
|
|
22327
|
-
*/
|
|
22328
|
-
readonly clientIpCIDR?: string
|
|
22329
|
-
|
|
22330
|
-
/**
|
|
22331
|
-
*
|
|
22123
|
+
* Filter slow logs whose application name contains this value.
|
|
22332
22124
|
* @type {string}
|
|
22333
22125
|
* @memberof SharedApiAggregateSlowLogs
|
|
22334
22126
|
*/
|
|
22335
22127
|
readonly appName?: string
|
|
22336
22128
|
|
|
22337
|
-
/**
|
|
22338
|
-
*
|
|
22339
|
-
* @type {string}
|
|
22340
|
-
* @memberof SharedApiAggregateSlowLogs
|
|
22341
|
-
*/
|
|
22342
|
-
readonly appNameContains?: string
|
|
22343
|
-
|
|
22344
22129
|
/**
|
|
22345
22130
|
*
|
|
22346
22131
|
* @type {string}
|
|
@@ -25436,68 +25221,33 @@ export interface SharedApiGetSlowLogStatsRequest {
|
|
|
25436
25221
|
readonly maxRowsSent?: number
|
|
25437
25222
|
|
|
25438
25223
|
/**
|
|
25439
|
-
*
|
|
25224
|
+
* Filter slow logs whose database name contains this value.
|
|
25440
25225
|
* @type {string}
|
|
25441
25226
|
* @memberof SharedApiGetSlowLogStats
|
|
25442
25227
|
*/
|
|
25443
25228
|
readonly dbName?: string
|
|
25444
25229
|
|
|
25445
25230
|
/**
|
|
25446
|
-
*
|
|
25447
|
-
* @type {string}
|
|
25448
|
-
* @memberof SharedApiGetSlowLogStats
|
|
25449
|
-
*/
|
|
25450
|
-
readonly dbNameContains?: string
|
|
25451
|
-
|
|
25452
|
-
/**
|
|
25453
|
-
*
|
|
25231
|
+
* Filter slow logs whose user name contains this value.
|
|
25454
25232
|
* @type {string}
|
|
25455
25233
|
* @memberof SharedApiGetSlowLogStats
|
|
25456
25234
|
*/
|
|
25457
25235
|
readonly userName?: string
|
|
25458
25236
|
|
|
25459
25237
|
/**
|
|
25460
|
-
*
|
|
25461
|
-
* @type {string}
|
|
25462
|
-
* @memberof SharedApiGetSlowLogStats
|
|
25463
|
-
*/
|
|
25464
|
-
readonly userNameContains?: string
|
|
25465
|
-
|
|
25466
|
-
/**
|
|
25467
|
-
*
|
|
25238
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
25468
25239
|
* @type {string}
|
|
25469
25240
|
* @memberof SharedApiGetSlowLogStats
|
|
25470
25241
|
*/
|
|
25471
25242
|
readonly clientIp?: string
|
|
25472
25243
|
|
|
25473
25244
|
/**
|
|
25474
|
-
*
|
|
25475
|
-
* @type {string}
|
|
25476
|
-
* @memberof SharedApiGetSlowLogStats
|
|
25477
|
-
*/
|
|
25478
|
-
readonly clientIpContains?: string
|
|
25479
|
-
|
|
25480
|
-
/**
|
|
25481
|
-
*
|
|
25482
|
-
* @type {string}
|
|
25483
|
-
* @memberof SharedApiGetSlowLogStats
|
|
25484
|
-
*/
|
|
25485
|
-
readonly clientIpCIDR?: string
|
|
25486
|
-
|
|
25487
|
-
/**
|
|
25488
|
-
*
|
|
25245
|
+
* Filter slow logs whose application name contains this value.
|
|
25489
25246
|
* @type {string}
|
|
25490
25247
|
* @memberof SharedApiGetSlowLogStats
|
|
25491
25248
|
*/
|
|
25492
25249
|
readonly appName?: string
|
|
25493
25250
|
|
|
25494
|
-
/**
|
|
25495
|
-
*
|
|
25496
|
-
* @type {string}
|
|
25497
|
-
* @memberof SharedApiGetSlowLogStats
|
|
25498
|
-
*/
|
|
25499
|
-
readonly appNameContains?: string
|
|
25500
|
-
|
|
25501
25251
|
/**
|
|
25502
25252
|
*
|
|
25503
25253
|
* @type {string}
|
|
@@ -28005,68 +27755,33 @@ export interface SharedApiQueryLogHitsRequest {
|
|
|
28005
27755
|
readonly maxRowsSent?: number
|
|
28006
27756
|
|
|
28007
27757
|
/**
|
|
28008
|
-
*
|
|
27758
|
+
* Filter slow logs whose database name contains this value.
|
|
28009
27759
|
* @type {string}
|
|
28010
27760
|
* @memberof SharedApiQueryLogHits
|
|
28011
27761
|
*/
|
|
28012
27762
|
readonly dbName?: string
|
|
28013
27763
|
|
|
28014
27764
|
/**
|
|
28015
|
-
*
|
|
28016
|
-
* @type {string}
|
|
28017
|
-
* @memberof SharedApiQueryLogHits
|
|
28018
|
-
*/
|
|
28019
|
-
readonly dbNameContains?: string
|
|
28020
|
-
|
|
28021
|
-
/**
|
|
28022
|
-
*
|
|
27765
|
+
* Filter slow logs whose user name contains this value.
|
|
28023
27766
|
* @type {string}
|
|
28024
27767
|
* @memberof SharedApiQueryLogHits
|
|
28025
27768
|
*/
|
|
28026
27769
|
readonly userName?: string
|
|
28027
27770
|
|
|
28028
27771
|
/**
|
|
28029
|
-
*
|
|
28030
|
-
* @type {string}
|
|
28031
|
-
* @memberof SharedApiQueryLogHits
|
|
28032
|
-
*/
|
|
28033
|
-
readonly userNameContains?: string
|
|
28034
|
-
|
|
28035
|
-
/**
|
|
28036
|
-
*
|
|
27772
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
28037
27773
|
* @type {string}
|
|
28038
27774
|
* @memberof SharedApiQueryLogHits
|
|
28039
27775
|
*/
|
|
28040
27776
|
readonly clientIp?: string
|
|
28041
27777
|
|
|
28042
27778
|
/**
|
|
28043
|
-
*
|
|
28044
|
-
* @type {string}
|
|
28045
|
-
* @memberof SharedApiQueryLogHits
|
|
28046
|
-
*/
|
|
28047
|
-
readonly clientIpContains?: string
|
|
28048
|
-
|
|
28049
|
-
/**
|
|
28050
|
-
*
|
|
28051
|
-
* @type {string}
|
|
28052
|
-
* @memberof SharedApiQueryLogHits
|
|
28053
|
-
*/
|
|
28054
|
-
readonly clientIpCIDR?: string
|
|
28055
|
-
|
|
28056
|
-
/**
|
|
28057
|
-
*
|
|
27779
|
+
* Filter slow logs whose application name contains this value.
|
|
28058
27780
|
* @type {string}
|
|
28059
27781
|
* @memberof SharedApiQueryLogHits
|
|
28060
27782
|
*/
|
|
28061
27783
|
readonly appName?: string
|
|
28062
27784
|
|
|
28063
|
-
/**
|
|
28064
|
-
*
|
|
28065
|
-
* @type {string}
|
|
28066
|
-
* @memberof SharedApiQueryLogHits
|
|
28067
|
-
*/
|
|
28068
|
-
readonly appNameContains?: string
|
|
28069
|
-
|
|
28070
27785
|
/**
|
|
28071
27786
|
*
|
|
28072
27787
|
* @type {string}
|
|
@@ -28362,68 +28077,33 @@ export interface SharedApiQuerySlowLogTemplateSamplesRequest {
|
|
|
28362
28077
|
readonly maxRowsSent?: number
|
|
28363
28078
|
|
|
28364
28079
|
/**
|
|
28365
|
-
*
|
|
28080
|
+
* Filter slow logs whose database name contains this value.
|
|
28366
28081
|
* @type {string}
|
|
28367
28082
|
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
28368
28083
|
*/
|
|
28369
28084
|
readonly dbName?: string
|
|
28370
28085
|
|
|
28371
28086
|
/**
|
|
28372
|
-
*
|
|
28373
|
-
* @type {string}
|
|
28374
|
-
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
28375
|
-
*/
|
|
28376
|
-
readonly dbNameContains?: string
|
|
28377
|
-
|
|
28378
|
-
/**
|
|
28379
|
-
*
|
|
28087
|
+
* Filter slow logs whose user name contains this value.
|
|
28380
28088
|
* @type {string}
|
|
28381
28089
|
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
28382
28090
|
*/
|
|
28383
28091
|
readonly userName?: string
|
|
28384
28092
|
|
|
28385
28093
|
/**
|
|
28386
|
-
*
|
|
28387
|
-
* @type {string}
|
|
28388
|
-
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
28389
|
-
*/
|
|
28390
|
-
readonly userNameContains?: string
|
|
28391
|
-
|
|
28392
|
-
/**
|
|
28393
|
-
*
|
|
28094
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
28394
28095
|
* @type {string}
|
|
28395
28096
|
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
28396
28097
|
*/
|
|
28397
28098
|
readonly clientIp?: string
|
|
28398
28099
|
|
|
28399
28100
|
/**
|
|
28400
|
-
*
|
|
28401
|
-
* @type {string}
|
|
28402
|
-
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
28403
|
-
*/
|
|
28404
|
-
readonly clientIpContains?: string
|
|
28405
|
-
|
|
28406
|
-
/**
|
|
28407
|
-
*
|
|
28408
|
-
* @type {string}
|
|
28409
|
-
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
28410
|
-
*/
|
|
28411
|
-
readonly clientIpCIDR?: string
|
|
28412
|
-
|
|
28413
|
-
/**
|
|
28414
|
-
*
|
|
28101
|
+
* Filter slow logs whose application name contains this value.
|
|
28415
28102
|
* @type {string}
|
|
28416
28103
|
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
28417
28104
|
*/
|
|
28418
28105
|
readonly appName?: string
|
|
28419
28106
|
|
|
28420
|
-
/**
|
|
28421
|
-
*
|
|
28422
|
-
* @type {string}
|
|
28423
|
-
* @memberof SharedApiQuerySlowLogTemplateSamples
|
|
28424
|
-
*/
|
|
28425
|
-
readonly appNameContains?: string
|
|
28426
|
-
|
|
28427
28107
|
/**
|
|
28428
28108
|
*
|
|
28429
28109
|
* @type {boolean}
|
|
@@ -28565,67 +28245,32 @@ export interface SharedApiQuerySlowLogTemplatesRequest {
|
|
|
28565
28245
|
readonly maxRowsSent?: number
|
|
28566
28246
|
|
|
28567
28247
|
/**
|
|
28568
|
-
*
|
|
28248
|
+
* Filter slow logs whose database name contains this value.
|
|
28569
28249
|
* @type {string}
|
|
28570
28250
|
* @memberof SharedApiQuerySlowLogTemplates
|
|
28571
28251
|
*/
|
|
28572
28252
|
readonly dbName?: string
|
|
28573
28253
|
|
|
28574
28254
|
/**
|
|
28575
|
-
*
|
|
28576
|
-
* @type {string}
|
|
28577
|
-
* @memberof SharedApiQuerySlowLogTemplates
|
|
28578
|
-
*/
|
|
28579
|
-
readonly dbNameContains?: string
|
|
28580
|
-
|
|
28581
|
-
/**
|
|
28582
|
-
*
|
|
28255
|
+
* Filter slow logs whose user name contains this value.
|
|
28583
28256
|
* @type {string}
|
|
28584
28257
|
* @memberof SharedApiQuerySlowLogTemplates
|
|
28585
28258
|
*/
|
|
28586
28259
|
readonly userName?: string
|
|
28587
28260
|
|
|
28588
28261
|
/**
|
|
28589
|
-
*
|
|
28590
|
-
* @type {string}
|
|
28591
|
-
* @memberof SharedApiQuerySlowLogTemplates
|
|
28592
|
-
*/
|
|
28593
|
-
readonly userNameContains?: string
|
|
28594
|
-
|
|
28595
|
-
/**
|
|
28596
|
-
*
|
|
28262
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
28597
28263
|
* @type {string}
|
|
28598
28264
|
* @memberof SharedApiQuerySlowLogTemplates
|
|
28599
28265
|
*/
|
|
28600
28266
|
readonly clientIp?: string
|
|
28601
28267
|
|
|
28602
28268
|
/**
|
|
28603
|
-
*
|
|
28604
|
-
* @type {string}
|
|
28605
|
-
* @memberof SharedApiQuerySlowLogTemplates
|
|
28606
|
-
*/
|
|
28607
|
-
readonly clientIpContains?: string
|
|
28608
|
-
|
|
28609
|
-
/**
|
|
28610
|
-
*
|
|
28611
|
-
* @type {string}
|
|
28612
|
-
* @memberof SharedApiQuerySlowLogTemplates
|
|
28613
|
-
*/
|
|
28614
|
-
readonly clientIpCIDR?: string
|
|
28615
|
-
|
|
28616
|
-
/**
|
|
28617
|
-
*
|
|
28269
|
+
* Filter slow logs whose application name contains this value.
|
|
28618
28270
|
* @type {string}
|
|
28619
28271
|
* @memberof SharedApiQuerySlowLogTemplates
|
|
28620
28272
|
*/
|
|
28621
28273
|
readonly appName?: string
|
|
28622
|
-
|
|
28623
|
-
/**
|
|
28624
|
-
*
|
|
28625
|
-
* @type {string}
|
|
28626
|
-
* @memberof SharedApiQuerySlowLogTemplates
|
|
28627
|
-
*/
|
|
28628
|
-
readonly appNameContains?: string
|
|
28629
28274
|
}
|
|
28630
28275
|
|
|
28631
28276
|
/**
|
|
@@ -28754,68 +28399,33 @@ export interface SharedApiQuerySlowLogsRequest {
|
|
|
28754
28399
|
readonly maxRowsSent?: number
|
|
28755
28400
|
|
|
28756
28401
|
/**
|
|
28757
|
-
*
|
|
28402
|
+
* Filter slow logs whose database name contains this value.
|
|
28758
28403
|
* @type {string}
|
|
28759
28404
|
* @memberof SharedApiQuerySlowLogs
|
|
28760
28405
|
*/
|
|
28761
28406
|
readonly dbName?: string
|
|
28762
28407
|
|
|
28763
28408
|
/**
|
|
28764
|
-
*
|
|
28765
|
-
* @type {string}
|
|
28766
|
-
* @memberof SharedApiQuerySlowLogs
|
|
28767
|
-
*/
|
|
28768
|
-
readonly dbNameContains?: string
|
|
28769
|
-
|
|
28770
|
-
/**
|
|
28771
|
-
*
|
|
28409
|
+
* Filter slow logs whose user name contains this value.
|
|
28772
28410
|
* @type {string}
|
|
28773
28411
|
* @memberof SharedApiQuerySlowLogs
|
|
28774
28412
|
*/
|
|
28775
28413
|
readonly userName?: string
|
|
28776
28414
|
|
|
28777
28415
|
/**
|
|
28778
|
-
*
|
|
28779
|
-
* @type {string}
|
|
28780
|
-
* @memberof SharedApiQuerySlowLogs
|
|
28781
|
-
*/
|
|
28782
|
-
readonly userNameContains?: string
|
|
28783
|
-
|
|
28784
|
-
/**
|
|
28785
|
-
*
|
|
28416
|
+
* Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
|
|
28786
28417
|
* @type {string}
|
|
28787
28418
|
* @memberof SharedApiQuerySlowLogs
|
|
28788
28419
|
*/
|
|
28789
28420
|
readonly clientIp?: string
|
|
28790
28421
|
|
|
28791
28422
|
/**
|
|
28792
|
-
*
|
|
28793
|
-
* @type {string}
|
|
28794
|
-
* @memberof SharedApiQuerySlowLogs
|
|
28795
|
-
*/
|
|
28796
|
-
readonly clientIpContains?: string
|
|
28797
|
-
|
|
28798
|
-
/**
|
|
28799
|
-
*
|
|
28800
|
-
* @type {string}
|
|
28801
|
-
* @memberof SharedApiQuerySlowLogs
|
|
28802
|
-
*/
|
|
28803
|
-
readonly clientIpCIDR?: string
|
|
28804
|
-
|
|
28805
|
-
/**
|
|
28806
|
-
*
|
|
28423
|
+
* Filter slow logs whose application name contains this value.
|
|
28807
28424
|
* @type {string}
|
|
28808
28425
|
* @memberof SharedApiQuerySlowLogs
|
|
28809
28426
|
*/
|
|
28810
28427
|
readonly appName?: string
|
|
28811
28428
|
|
|
28812
|
-
/**
|
|
28813
|
-
*
|
|
28814
|
-
* @type {string}
|
|
28815
|
-
* @memberof SharedApiQuerySlowLogs
|
|
28816
|
-
*/
|
|
28817
|
-
readonly appNameContains?: string
|
|
28818
|
-
|
|
28819
28429
|
/**
|
|
28820
28430
|
*
|
|
28821
28431
|
* @type {string}
|
|
@@ -30189,7 +29799,7 @@ export class SharedApi extends BaseAPI implements SharedApiInterface {
|
|
|
30189
29799
|
* @memberof SharedApi
|
|
30190
29800
|
*/
|
|
30191
29801
|
public aggregateSlowLogs(requestParameters: SharedApiAggregateSlowLogsRequest, options?: RawAxiosRequestConfig) {
|
|
30192
|
-
return SharedApiFp(this.configuration).aggregateSlowLogs(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.limit, requestParameters.sortType, requestParameters.groupBy, requestParameters.topN, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.
|
|
29802
|
+
return SharedApiFp(this.configuration).aggregateSlowLogs(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.limit, requestParameters.sortType, requestParameters.groupBy, requestParameters.topN, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.userName, requestParameters.clientIp, requestParameters.appName, requestParameters.templateId, requestParameters.unclassifiedOnly, options).then((request) => request(this.axios, this.basePath));
|
|
30193
29803
|
}
|
|
30194
29804
|
|
|
30195
29805
|
/**
|
|
@@ -31437,7 +31047,7 @@ export class SharedApi extends BaseAPI implements SharedApiInterface {
|
|
|
31437
31047
|
* @memberof SharedApi
|
|
31438
31048
|
*/
|
|
31439
31049
|
public getSlowLogStats(requestParameters: SharedApiGetSlowLogStatsRequest, options?: RawAxiosRequestConfig) {
|
|
31440
|
-
return SharedApiFp(this.configuration).getSlowLogStats(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.
|
|
31050
|
+
return SharedApiFp(this.configuration).getSlowLogStats(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.userName, requestParameters.clientIp, requestParameters.appName, requestParameters.templateId, requestParameters.unclassifiedOnly, options).then((request) => request(this.axios, this.basePath));
|
|
31441
31051
|
}
|
|
31442
31052
|
|
|
31443
31053
|
/**
|
|
@@ -32441,7 +32051,7 @@ export class SharedApi extends BaseAPI implements SharedApiInterface {
|
|
|
32441
32051
|
* @memberof SharedApi
|
|
32442
32052
|
*/
|
|
32443
32053
|
public queryLogHits(requestParameters: SharedApiQueryLogHitsRequest, options?: RawAxiosRequestConfig) {
|
|
32444
|
-
return SharedApiFp(this.configuration).queryLogHits(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.step, requestParameters.logType, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.
|
|
32054
|
+
return SharedApiFp(this.configuration).queryLogHits(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.step, requestParameters.logType, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.userName, requestParameters.clientIp, requestParameters.appName, requestParameters.templateId, requestParameters.unclassifiedOnly, options).then((request) => request(this.axios, this.basePath));
|
|
32445
32055
|
}
|
|
32446
32056
|
|
|
32447
32057
|
/**
|
|
@@ -32477,7 +32087,7 @@ export class SharedApi extends BaseAPI implements SharedApiInterface {
|
|
|
32477
32087
|
* @memberof SharedApi
|
|
32478
32088
|
*/
|
|
32479
32089
|
public querySlowLogTemplateSamples(requestParameters: SharedApiQuerySlowLogTemplateSamplesRequest, options?: RawAxiosRequestConfig) {
|
|
32480
|
-
return SharedApiFp(this.configuration).querySlowLogTemplateSamples(requestParameters.orgName, requestParameters.clusterName, requestParameters.templateId, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.limit, requestParameters.sortType, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.
|
|
32090
|
+
return SharedApiFp(this.configuration).querySlowLogTemplateSamples(requestParameters.orgName, requestParameters.clusterName, requestParameters.templateId, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.limit, requestParameters.sortType, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.userName, requestParameters.clientIp, requestParameters.appName, requestParameters.unclassifiedOnly, options).then((request) => request(this.axios, this.basePath));
|
|
32481
32091
|
}
|
|
32482
32092
|
|
|
32483
32093
|
/**
|
|
@@ -32489,7 +32099,7 @@ export class SharedApi extends BaseAPI implements SharedApiInterface {
|
|
|
32489
32099
|
* @memberof SharedApi
|
|
32490
32100
|
*/
|
|
32491
32101
|
public querySlowLogTemplates(requestParameters: SharedApiQuerySlowLogTemplatesRequest, options?: RawAxiosRequestConfig) {
|
|
32492
|
-
return SharedApiFp(this.configuration).querySlowLogTemplates(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.topN, requestParameters.sortBy, requestParameters.sortType, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.
|
|
32102
|
+
return SharedApiFp(this.configuration).querySlowLogTemplates(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.topN, requestParameters.sortBy, requestParameters.sortType, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.userName, requestParameters.clientIp, requestParameters.appName, options).then((request) => request(this.axios, this.basePath));
|
|
32493
32103
|
}
|
|
32494
32104
|
|
|
32495
32105
|
/**
|
|
@@ -32501,7 +32111,7 @@ export class SharedApi extends BaseAPI implements SharedApiInterface {
|
|
|
32501
32111
|
* @memberof SharedApi
|
|
32502
32112
|
*/
|
|
32503
32113
|
public querySlowLogs(requestParameters: SharedApiQuerySlowLogsRequest, options?: RawAxiosRequestConfig) {
|
|
32504
|
-
return SharedApiFp(this.configuration).querySlowLogs(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.limit, requestParameters.sortType, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.
|
|
32114
|
+
return SharedApiFp(this.configuration).querySlowLogs(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, requestParameters.limit, requestParameters.sortType, requestParameters.minExecutionTime, requestParameters.maxExecutionTime, requestParameters.minLockTime, requestParameters.maxLockTime, requestParameters.minRowsExamined, requestParameters.maxRowsExamined, requestParameters.minRowsSent, requestParameters.maxRowsSent, requestParameters.dbName, requestParameters.userName, requestParameters.clientIp, requestParameters.appName, requestParameters.templateId, requestParameters.unclassifiedOnly, options).then((request) => request(this.axios, this.basePath));
|
|
32505
32115
|
}
|
|
32506
32116
|
|
|
32507
32117
|
/**
|