kb-cloud-client-typescript 0.0.0-bugfix-pg-param-unit.20260615.406 → 0.0.0-bugfix-list-database-parameters-e2e.20260616.802
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/adminapi/apis/cluster-log-api.d.ts +154 -2
- package/dist/adminapi/apis/cluster-log-api.d.ts.map +1 -1
- package/dist/adminapi/apis/cluster-log-api.js +100 -5
- 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/shared-api.d.ts +154 -2
- package/dist/adminapi/apis/shared-api.d.ts.map +1 -1
- package/dist/adminapi/apis/shared-api.js +100 -5
- package/dist/adminapi/apis/shared-api.js.map +1 -1
- package/dist/adminapi/models/account-option.d.ts +7 -1
- package/dist/adminapi/models/account-option.d.ts.map +1 -1
- package/dist/openapi/apis/cluster-log-api.d.ts +154 -2
- package/dist/openapi/apis/cluster-log-api.d.ts.map +1 -1
- package/dist/openapi/apis/cluster-log-api.js +100 -5
- package/dist/openapi/apis/cluster-log-api.js.map +1 -1
- package/dist/openapi/apis/shared-api.d.ts +154 -2
- package/dist/openapi/apis/shared-api.d.ts.map +1 -1
- package/dist/openapi/apis/shared-api.js +100 -5
- package/dist/openapi/apis/shared-api.js.map +1 -1
- package/dist/openapi/models/account-option.d.ts +7 -1
- package/dist/openapi/models/account-option.d.ts.map +1 -1
- package/package.json +1 -6
- package/src/adminapi/apis/cluster-log-api.ts +252 -5
- package/src/adminapi/apis/database-parameters-api.ts +15 -11
- package/src/adminapi/apis/shared-api.ts +252 -5
- package/src/adminapi/models/account-option.ts +7 -1
- package/src/adminapi.yaml +96 -1
- package/src/openapi/apis/cluster-log-api.ts +252 -5
- package/src/openapi/apis/shared-api.ts +252 -5
- package/src/openapi/models/account-option.ts +7 -1
- package/src/openapi.yaml +94 -1
|
@@ -220,10 +220,29 @@ export declare const SharedApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
220
220
|
* @param {SortType} [sortType]
|
|
221
221
|
* @param {string} [groupBy]
|
|
222
222
|
* @param {number} [topN]
|
|
223
|
+
* @param {number} [minExecutionTime] Minimum execution time in seconds. Decimal values are supported, for example 0.5.
|
|
224
|
+
* @param {number} [maxExecutionTime] Maximum execution time in seconds. Decimal values are supported, for example 0.5.
|
|
225
|
+
* @param {number} [minLockTime] Minimum lock time in seconds. Decimal values are supported, for example 0.001.
|
|
226
|
+
* @param {number} [maxLockTime] Maximum lock time in seconds. Decimal values are supported, for example 0.001.
|
|
227
|
+
* @param {number} [minRowsExamined]
|
|
228
|
+
* @param {number} [maxRowsExamined]
|
|
229
|
+
* @param {number} [minRowsSent]
|
|
230
|
+
* @param {number} [maxRowsSent]
|
|
231
|
+
* @param {string} [dbName]
|
|
232
|
+
* @param {string} [dbNameContains]
|
|
233
|
+
* @param {string} [userName]
|
|
234
|
+
* @param {string} [userNameContains]
|
|
235
|
+
* @param {string} [clientIp]
|
|
236
|
+
* @param {string} [clientIpContains]
|
|
237
|
+
* @param {string} [clientIpCIDR]
|
|
238
|
+
* @param {string} [appName]
|
|
239
|
+
* @param {string} [appNameContains]
|
|
240
|
+
* @param {string} [templateId]
|
|
241
|
+
* @param {boolean} [unclassifiedOnly]
|
|
223
242
|
* @param {*} [options] Override http request option.
|
|
224
243
|
* @throws {RequiredError}
|
|
225
244
|
*/
|
|
226
|
-
aggregateSlowLogs: (orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, groupBy?: string, topN?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
245
|
+
aggregateSlowLogs: (orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, groupBy?: string, topN?: number, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, dbNameContains?: string, userName?: string, userNameContains?: string, clientIp?: string, clientIpContains?: string, clientIpCIDR?: string, appName?: string, appNameContains?: string, templateId?: string, unclassifiedOnly?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
227
246
|
/**
|
|
228
247
|
* alert statistic
|
|
229
248
|
* @summary alert statistic
|
|
@@ -2806,10 +2825,29 @@ export declare const SharedApiFp: (configuration?: Configuration) => {
|
|
|
2806
2825
|
* @param {SortType} [sortType]
|
|
2807
2826
|
* @param {string} [groupBy]
|
|
2808
2827
|
* @param {number} [topN]
|
|
2828
|
+
* @param {number} [minExecutionTime] Minimum execution time in seconds. Decimal values are supported, for example 0.5.
|
|
2829
|
+
* @param {number} [maxExecutionTime] Maximum execution time in seconds. Decimal values are supported, for example 0.5.
|
|
2830
|
+
* @param {number} [minLockTime] Minimum lock time in seconds. Decimal values are supported, for example 0.001.
|
|
2831
|
+
* @param {number} [maxLockTime] Maximum lock time in seconds. Decimal values are supported, for example 0.001.
|
|
2832
|
+
* @param {number} [minRowsExamined]
|
|
2833
|
+
* @param {number} [maxRowsExamined]
|
|
2834
|
+
* @param {number} [minRowsSent]
|
|
2835
|
+
* @param {number} [maxRowsSent]
|
|
2836
|
+
* @param {string} [dbName]
|
|
2837
|
+
* @param {string} [dbNameContains]
|
|
2838
|
+
* @param {string} [userName]
|
|
2839
|
+
* @param {string} [userNameContains]
|
|
2840
|
+
* @param {string} [clientIp]
|
|
2841
|
+
* @param {string} [clientIpContains]
|
|
2842
|
+
* @param {string} [clientIpCIDR]
|
|
2843
|
+
* @param {string} [appName]
|
|
2844
|
+
* @param {string} [appNameContains]
|
|
2845
|
+
* @param {string} [templateId]
|
|
2846
|
+
* @param {boolean} [unclassifiedOnly]
|
|
2809
2847
|
* @param {*} [options] Override http request option.
|
|
2810
2848
|
* @throws {RequiredError}
|
|
2811
2849
|
*/
|
|
2812
|
-
aggregateSlowLogs(orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, groupBy?: string, topN?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterExecutionLogAggregateResponse>>;
|
|
2850
|
+
aggregateSlowLogs(orgName: string, clusterName: string, startTime: string, endTime: string, componentName?: string, instanceName?: string, query?: string, limit?: string, sortType?: SortType, groupBy?: string, topN?: number, minExecutionTime?: number, maxExecutionTime?: number, minLockTime?: number, maxLockTime?: number, minRowsExamined?: number, maxRowsExamined?: number, minRowsSent?: number, maxRowsSent?: number, dbName?: string, dbNameContains?: string, userName?: string, userNameContains?: string, clientIp?: string, clientIpContains?: string, clientIpCIDR?: string, appName?: string, appNameContains?: string, templateId?: string, unclassifiedOnly?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterExecutionLogAggregateResponse>>;
|
|
2813
2851
|
/**
|
|
2814
2852
|
* alert statistic
|
|
2815
2853
|
* @summary alert statistic
|
|
@@ -9536,6 +9574,120 @@ export interface SharedApiAggregateSlowLogsRequest {
|
|
|
9536
9574
|
* @memberof SharedApiAggregateSlowLogs
|
|
9537
9575
|
*/
|
|
9538
9576
|
readonly topN?: number;
|
|
9577
|
+
/**
|
|
9578
|
+
* Minimum execution time in seconds. Decimal values are supported, for example 0.5.
|
|
9579
|
+
* @type {number}
|
|
9580
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
9581
|
+
*/
|
|
9582
|
+
readonly minExecutionTime?: number;
|
|
9583
|
+
/**
|
|
9584
|
+
* Maximum execution time in seconds. Decimal values are supported, for example 0.5.
|
|
9585
|
+
* @type {number}
|
|
9586
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
9587
|
+
*/
|
|
9588
|
+
readonly maxExecutionTime?: number;
|
|
9589
|
+
/**
|
|
9590
|
+
* Minimum lock time in seconds. Decimal values are supported, for example 0.001.
|
|
9591
|
+
* @type {number}
|
|
9592
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
9593
|
+
*/
|
|
9594
|
+
readonly minLockTime?: number;
|
|
9595
|
+
/**
|
|
9596
|
+
* Maximum lock time in seconds. Decimal values are supported, for example 0.001.
|
|
9597
|
+
* @type {number}
|
|
9598
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
9599
|
+
*/
|
|
9600
|
+
readonly maxLockTime?: number;
|
|
9601
|
+
/**
|
|
9602
|
+
*
|
|
9603
|
+
* @type {number}
|
|
9604
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
9605
|
+
*/
|
|
9606
|
+
readonly minRowsExamined?: number;
|
|
9607
|
+
/**
|
|
9608
|
+
*
|
|
9609
|
+
* @type {number}
|
|
9610
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
9611
|
+
*/
|
|
9612
|
+
readonly maxRowsExamined?: number;
|
|
9613
|
+
/**
|
|
9614
|
+
*
|
|
9615
|
+
* @type {number}
|
|
9616
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
9617
|
+
*/
|
|
9618
|
+
readonly minRowsSent?: number;
|
|
9619
|
+
/**
|
|
9620
|
+
*
|
|
9621
|
+
* @type {number}
|
|
9622
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
9623
|
+
*/
|
|
9624
|
+
readonly maxRowsSent?: number;
|
|
9625
|
+
/**
|
|
9626
|
+
*
|
|
9627
|
+
* @type {string}
|
|
9628
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
9629
|
+
*/
|
|
9630
|
+
readonly dbName?: string;
|
|
9631
|
+
/**
|
|
9632
|
+
*
|
|
9633
|
+
* @type {string}
|
|
9634
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
9635
|
+
*/
|
|
9636
|
+
readonly dbNameContains?: string;
|
|
9637
|
+
/**
|
|
9638
|
+
*
|
|
9639
|
+
* @type {string}
|
|
9640
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
9641
|
+
*/
|
|
9642
|
+
readonly userName?: string;
|
|
9643
|
+
/**
|
|
9644
|
+
*
|
|
9645
|
+
* @type {string}
|
|
9646
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
9647
|
+
*/
|
|
9648
|
+
readonly userNameContains?: string;
|
|
9649
|
+
/**
|
|
9650
|
+
*
|
|
9651
|
+
* @type {string}
|
|
9652
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
9653
|
+
*/
|
|
9654
|
+
readonly clientIp?: string;
|
|
9655
|
+
/**
|
|
9656
|
+
*
|
|
9657
|
+
* @type {string}
|
|
9658
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
9659
|
+
*/
|
|
9660
|
+
readonly clientIpContains?: string;
|
|
9661
|
+
/**
|
|
9662
|
+
*
|
|
9663
|
+
* @type {string}
|
|
9664
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
9665
|
+
*/
|
|
9666
|
+
readonly clientIpCIDR?: string;
|
|
9667
|
+
/**
|
|
9668
|
+
*
|
|
9669
|
+
* @type {string}
|
|
9670
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
9671
|
+
*/
|
|
9672
|
+
readonly appName?: string;
|
|
9673
|
+
/**
|
|
9674
|
+
*
|
|
9675
|
+
* @type {string}
|
|
9676
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
9677
|
+
*/
|
|
9678
|
+
readonly appNameContains?: string;
|
|
9679
|
+
/**
|
|
9680
|
+
*
|
|
9681
|
+
* @type {string}
|
|
9682
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
9683
|
+
*/
|
|
9684
|
+
readonly templateId?: string;
|
|
9685
|
+
/**
|
|
9686
|
+
*
|
|
9687
|
+
* @type {boolean}
|
|
9688
|
+
* @memberof SharedApiAggregateSlowLogs
|
|
9689
|
+
*/
|
|
9690
|
+
readonly unclassifiedOnly?: boolean;
|
|
9539
9691
|
}
|
|
9540
9692
|
/**
|
|
9541
9693
|
* Request parameters for alterParameter operation in SharedApi.
|