kb-cloud-client-typescript 2.3.0-alpha.108 → 2.3.0-alpha.110

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/openapi.yaml CHANGED
@@ -2323,38 +2323,22 @@ paths:
2323
2323
  format: int64
2324
2324
  - in: query
2325
2325
  name: dbName
2326
- schema:
2327
- type: string
2328
- - in: query
2329
- name: dbNameContains
2326
+ description: Filter slow logs whose database name contains this value.
2330
2327
  schema:
2331
2328
  type: string
2332
2329
  - in: query
2333
2330
  name: userName
2334
- schema:
2335
- type: string
2336
- - in: query
2337
- name: userNameContains
2331
+ description: Filter slow logs whose user name contains this value.
2338
2332
  schema:
2339
2333
  type: string
2340
2334
  - in: query
2341
2335
  name: clientIp
2342
- schema:
2343
- type: string
2344
- - in: query
2345
- name: clientIpContains
2346
- schema:
2347
- type: string
2348
- - in: query
2349
- name: clientIpCIDR
2336
+ description: Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
2350
2337
  schema:
2351
2338
  type: string
2352
2339
  - in: query
2353
2340
  name: appName
2354
- schema:
2355
- type: string
2356
- - in: query
2357
- name: appNameContains
2341
+ description: Filter slow logs whose application name contains this value.
2358
2342
  schema:
2359
2343
  type: string
2360
2344
  - in: query
@@ -2521,38 +2505,22 @@ paths:
2521
2505
  format: int64
2522
2506
  - in: query
2523
2507
  name: dbName
2524
- schema:
2525
- type: string
2526
- - in: query
2527
- name: dbNameContains
2508
+ description: Filter slow logs whose database name contains this value.
2528
2509
  schema:
2529
2510
  type: string
2530
2511
  - in: query
2531
2512
  name: userName
2532
- schema:
2533
- type: string
2534
- - in: query
2535
- name: userNameContains
2513
+ description: Filter slow logs whose user name contains this value.
2536
2514
  schema:
2537
2515
  type: string
2538
2516
  - in: query
2539
2517
  name: clientIp
2540
- schema:
2541
- type: string
2542
- - in: query
2543
- name: clientIpContains
2544
- schema:
2545
- type: string
2546
- - in: query
2547
- name: clientIpCIDR
2518
+ description: Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
2548
2519
  schema:
2549
2520
  type: string
2550
2521
  - in: query
2551
2522
  name: appName
2552
- schema:
2553
- type: string
2554
- - in: query
2555
- name: appNameContains
2523
+ description: Filter slow logs whose application name contains this value.
2556
2524
  schema:
2557
2525
  type: string
2558
2526
  responses:
@@ -2798,38 +2766,22 @@ paths:
2798
2766
  format: int64
2799
2767
  - in: query
2800
2768
  name: dbName
2801
- schema:
2802
- type: string
2803
- - in: query
2804
- name: dbNameContains
2769
+ description: Filter slow logs whose database name contains this value.
2805
2770
  schema:
2806
2771
  type: string
2807
2772
  - in: query
2808
2773
  name: userName
2809
- schema:
2810
- type: string
2811
- - in: query
2812
- name: userNameContains
2774
+ description: Filter slow logs whose user name contains this value.
2813
2775
  schema:
2814
2776
  type: string
2815
2777
  - in: query
2816
2778
  name: clientIp
2817
- schema:
2818
- type: string
2819
- - in: query
2820
- name: clientIpContains
2821
- schema:
2822
- type: string
2823
- - in: query
2824
- name: clientIpCIDR
2779
+ description: Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
2825
2780
  schema:
2826
2781
  type: string
2827
2782
  - in: query
2828
2783
  name: appName
2829
- schema:
2830
- type: string
2831
- - in: query
2832
- name: appNameContains
2784
+ description: Filter slow logs whose application name contains this value.
2833
2785
  schema:
2834
2786
  type: string
2835
2787
  - in: query
@@ -2911,6 +2863,78 @@ paths:
2911
2863
  schema:
2912
2864
  type: integer
2913
2865
  format: int32
2866
+ - in: query
2867
+ name: minExecutionTime
2868
+ description: Minimum execution time in seconds. Decimal values are supported, for example 0.5.
2869
+ schema:
2870
+ type: number
2871
+ format: double
2872
+ - in: query
2873
+ name: maxExecutionTime
2874
+ description: Maximum execution time in seconds. Decimal values are supported, for example 0.5.
2875
+ schema:
2876
+ type: number
2877
+ format: double
2878
+ - in: query
2879
+ name: minLockTime
2880
+ description: Minimum lock time in seconds. Decimal values are supported, for example 0.001.
2881
+ schema:
2882
+ type: number
2883
+ format: double
2884
+ - in: query
2885
+ name: maxLockTime
2886
+ description: Maximum lock time in seconds. Decimal values are supported, for example 0.001.
2887
+ schema:
2888
+ type: number
2889
+ format: double
2890
+ - in: query
2891
+ name: minRowsExamined
2892
+ schema:
2893
+ type: integer
2894
+ format: int64
2895
+ - in: query
2896
+ name: maxRowsExamined
2897
+ schema:
2898
+ type: integer
2899
+ format: int64
2900
+ - in: query
2901
+ name: minRowsSent
2902
+ schema:
2903
+ type: integer
2904
+ format: int64
2905
+ - in: query
2906
+ name: maxRowsSent
2907
+ schema:
2908
+ type: integer
2909
+ format: int64
2910
+ - in: query
2911
+ name: dbName
2912
+ description: Filter slow logs whose database name contains this value.
2913
+ schema:
2914
+ type: string
2915
+ - in: query
2916
+ name: userName
2917
+ description: Filter slow logs whose user name contains this value.
2918
+ schema:
2919
+ type: string
2920
+ - in: query
2921
+ name: clientIp
2922
+ description: Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
2923
+ schema:
2924
+ type: string
2925
+ - in: query
2926
+ name: appName
2927
+ description: Filter slow logs whose application name contains this value.
2928
+ schema:
2929
+ type: string
2930
+ - in: query
2931
+ name: templateId
2932
+ schema:
2933
+ type: string
2934
+ - in: query
2935
+ name: unclassifiedOnly
2936
+ schema:
2937
+ type: boolean
2914
2938
  responses:
2915
2939
  '200':
2916
2940
  content:
@@ -3013,38 +3037,22 @@ paths:
3013
3037
  format: int64
3014
3038
  - in: query
3015
3039
  name: dbName
3016
- schema:
3017
- type: string
3018
- - in: query
3019
- name: dbNameContains
3040
+ description: Filter slow logs whose database name contains this value.
3020
3041
  schema:
3021
3042
  type: string
3022
3043
  - in: query
3023
3044
  name: userName
3024
- schema:
3025
- type: string
3026
- - in: query
3027
- name: userNameContains
3045
+ description: Filter slow logs whose user name contains this value.
3028
3046
  schema:
3029
3047
  type: string
3030
3048
  - in: query
3031
3049
  name: clientIp
3032
- schema:
3033
- type: string
3034
- - in: query
3035
- name: clientIpContains
3036
- schema:
3037
- type: string
3038
- - in: query
3039
- name: clientIpCIDR
3050
+ description: Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
3040
3051
  schema:
3041
3052
  type: string
3042
3053
  - in: query
3043
3054
  name: appName
3044
- schema:
3045
- type: string
3046
- - in: query
3047
- name: appNameContains
3055
+ description: Filter slow logs whose application name contains this value.
3048
3056
  schema:
3049
3057
  type: string
3050
3058
  - in: query
@@ -3303,38 +3311,22 @@ paths:
3303
3311
  format: int64
3304
3312
  - in: query
3305
3313
  name: dbName
3306
- schema:
3307
- type: string
3308
- - in: query
3309
- name: dbNameContains
3314
+ description: Filter slow logs whose database name contains this value.
3310
3315
  schema:
3311
3316
  type: string
3312
3317
  - in: query
3313
3318
  name: userName
3314
- schema:
3315
- type: string
3316
- - in: query
3317
- name: userNameContains
3319
+ description: Filter slow logs whose user name contains this value.
3318
3320
  schema:
3319
3321
  type: string
3320
3322
  - in: query
3321
3323
  name: clientIp
3322
- schema:
3323
- type: string
3324
- - in: query
3325
- name: clientIpContains
3326
- schema:
3327
- type: string
3328
- - in: query
3329
- name: clientIpCIDR
3324
+ description: Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
3330
3325
  schema:
3331
3326
  type: string
3332
3327
  - in: query
3333
3328
  name: appName
3334
- schema:
3335
- type: string
3336
- - in: query
3337
- name: appNameContains
3329
+ description: Filter slow logs whose application name contains this value.
3338
3330
  schema:
3339
3331
  type: string
3340
3332
  - in: query
@@ -3601,38 +3593,22 @@ paths:
3601
3593
  format: int64
3602
3594
  - in: query
3603
3595
  name: dbName
3604
- schema:
3605
- type: string
3606
- - in: query
3607
- name: dbNameContains
3596
+ description: Filter slow logs whose database name contains this value.
3608
3597
  schema:
3609
3598
  type: string
3610
3599
  - in: query
3611
3600
  name: userName
3612
- schema:
3613
- type: string
3614
- - in: query
3615
- name: userNameContains
3601
+ description: Filter slow logs whose user name contains this value.
3616
3602
  schema:
3617
3603
  type: string
3618
3604
  - in: query
3619
3605
  name: clientIp
3620
- schema:
3621
- type: string
3622
- - in: query
3623
- name: clientIpContains
3624
- schema:
3625
- type: string
3626
- - in: query
3627
- name: clientIpCIDR
3606
+ description: Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
3628
3607
  schema:
3629
3608
  type: string
3630
3609
  - in: query
3631
3610
  name: appName
3632
- schema:
3633
- type: string
3634
- - in: query
3635
- name: appNameContains
3611
+ description: Filter slow logs whose application name contains this value.
3636
3612
  schema:
3637
3613
  type: string
3638
3614
  - in: query