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/adminapi.yaml CHANGED
@@ -6732,38 +6732,22 @@ paths:
6732
6732
  format: int64
6733
6733
  - in: query
6734
6734
  name: dbName
6735
- schema:
6736
- type: string
6737
- - in: query
6738
- name: dbNameContains
6735
+ description: Filter slow logs whose database name contains this value.
6739
6736
  schema:
6740
6737
  type: string
6741
6738
  - in: query
6742
6739
  name: userName
6743
- schema:
6744
- type: string
6745
- - in: query
6746
- name: userNameContains
6740
+ description: Filter slow logs whose user name contains this value.
6747
6741
  schema:
6748
6742
  type: string
6749
6743
  - in: query
6750
6744
  name: clientIp
6751
- schema:
6752
- type: string
6753
- - in: query
6754
- name: clientIpContains
6755
- schema:
6756
- type: string
6757
- - in: query
6758
- name: clientIpCIDR
6745
+ description: Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
6759
6746
  schema:
6760
6747
  type: string
6761
6748
  - in: query
6762
6749
  name: appName
6763
- schema:
6764
- type: string
6765
- - in: query
6766
- name: appNameContains
6750
+ description: Filter slow logs whose application name contains this value.
6767
6751
  schema:
6768
6752
  type: string
6769
6753
  - in: query
@@ -6930,38 +6914,22 @@ paths:
6930
6914
  format: int64
6931
6915
  - in: query
6932
6916
  name: dbName
6933
- schema:
6934
- type: string
6935
- - in: query
6936
- name: dbNameContains
6917
+ description: Filter slow logs whose database name contains this value.
6937
6918
  schema:
6938
6919
  type: string
6939
6920
  - in: query
6940
6921
  name: userName
6941
- schema:
6942
- type: string
6943
- - in: query
6944
- name: userNameContains
6922
+ description: Filter slow logs whose user name contains this value.
6945
6923
  schema:
6946
6924
  type: string
6947
6925
  - in: query
6948
6926
  name: clientIp
6949
- schema:
6950
- type: string
6951
- - in: query
6952
- name: clientIpContains
6953
- schema:
6954
- type: string
6955
- - in: query
6956
- name: clientIpCIDR
6927
+ description: Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
6957
6928
  schema:
6958
6929
  type: string
6959
6930
  - in: query
6960
6931
  name: appName
6961
- schema:
6962
- type: string
6963
- - in: query
6964
- name: appNameContains
6932
+ description: Filter slow logs whose application name contains this value.
6965
6933
  schema:
6966
6934
  type: string
6967
6935
  responses:
@@ -7207,38 +7175,22 @@ paths:
7207
7175
  format: int64
7208
7176
  - in: query
7209
7177
  name: dbName
7210
- schema:
7211
- type: string
7212
- - in: query
7213
- name: dbNameContains
7178
+ description: Filter slow logs whose database name contains this value.
7214
7179
  schema:
7215
7180
  type: string
7216
7181
  - in: query
7217
7182
  name: userName
7218
- schema:
7219
- type: string
7220
- - in: query
7221
- name: userNameContains
7183
+ description: Filter slow logs whose user name contains this value.
7222
7184
  schema:
7223
7185
  type: string
7224
7186
  - in: query
7225
7187
  name: clientIp
7226
- schema:
7227
- type: string
7228
- - in: query
7229
- name: clientIpContains
7230
- schema:
7231
- type: string
7232
- - in: query
7233
- name: clientIpCIDR
7188
+ description: Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
7234
7189
  schema:
7235
7190
  type: string
7236
7191
  - in: query
7237
7192
  name: appName
7238
- schema:
7239
- type: string
7240
- - in: query
7241
- name: appNameContains
7193
+ description: Filter slow logs whose application name contains this value.
7242
7194
  schema:
7243
7195
  type: string
7244
7196
  - in: query
@@ -7320,6 +7272,78 @@ paths:
7320
7272
  schema:
7321
7273
  type: integer
7322
7274
  format: int32
7275
+ - in: query
7276
+ name: minExecutionTime
7277
+ description: Minimum execution time in seconds. Decimal values are supported, for example 0.5.
7278
+ schema:
7279
+ type: number
7280
+ format: double
7281
+ - in: query
7282
+ name: maxExecutionTime
7283
+ description: Maximum execution time in seconds. Decimal values are supported, for example 0.5.
7284
+ schema:
7285
+ type: number
7286
+ format: double
7287
+ - in: query
7288
+ name: minLockTime
7289
+ description: Minimum lock time in seconds. Decimal values are supported, for example 0.001.
7290
+ schema:
7291
+ type: number
7292
+ format: double
7293
+ - in: query
7294
+ name: maxLockTime
7295
+ description: Maximum lock time in seconds. Decimal values are supported, for example 0.001.
7296
+ schema:
7297
+ type: number
7298
+ format: double
7299
+ - in: query
7300
+ name: minRowsExamined
7301
+ schema:
7302
+ type: integer
7303
+ format: int64
7304
+ - in: query
7305
+ name: maxRowsExamined
7306
+ schema:
7307
+ type: integer
7308
+ format: int64
7309
+ - in: query
7310
+ name: minRowsSent
7311
+ schema:
7312
+ type: integer
7313
+ format: int64
7314
+ - in: query
7315
+ name: maxRowsSent
7316
+ schema:
7317
+ type: integer
7318
+ format: int64
7319
+ - in: query
7320
+ name: dbName
7321
+ description: Filter slow logs whose database name contains this value.
7322
+ schema:
7323
+ type: string
7324
+ - in: query
7325
+ name: userName
7326
+ description: Filter slow logs whose user name contains this value.
7327
+ schema:
7328
+ type: string
7329
+ - in: query
7330
+ name: clientIp
7331
+ description: Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
7332
+ schema:
7333
+ type: string
7334
+ - in: query
7335
+ name: appName
7336
+ description: Filter slow logs whose application name contains this value.
7337
+ schema:
7338
+ type: string
7339
+ - in: query
7340
+ name: templateId
7341
+ schema:
7342
+ type: string
7343
+ - in: query
7344
+ name: unclassifiedOnly
7345
+ schema:
7346
+ type: boolean
7323
7347
  responses:
7324
7348
  '200':
7325
7349
  content:
@@ -7422,38 +7446,22 @@ paths:
7422
7446
  format: int64
7423
7447
  - in: query
7424
7448
  name: dbName
7425
- schema:
7426
- type: string
7427
- - in: query
7428
- name: dbNameContains
7449
+ description: Filter slow logs whose database name contains this value.
7429
7450
  schema:
7430
7451
  type: string
7431
7452
  - in: query
7432
7453
  name: userName
7433
- schema:
7434
- type: string
7435
- - in: query
7436
- name: userNameContains
7454
+ description: Filter slow logs whose user name contains this value.
7437
7455
  schema:
7438
7456
  type: string
7439
7457
  - in: query
7440
7458
  name: clientIp
7441
- schema:
7442
- type: string
7443
- - in: query
7444
- name: clientIpContains
7445
- schema:
7446
- type: string
7447
- - in: query
7448
- name: clientIpCIDR
7459
+ description: Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
7449
7460
  schema:
7450
7461
  type: string
7451
7462
  - in: query
7452
7463
  name: appName
7453
- schema:
7454
- type: string
7455
- - in: query
7456
- name: appNameContains
7464
+ description: Filter slow logs whose application name contains this value.
7457
7465
  schema:
7458
7466
  type: string
7459
7467
  - in: query
@@ -7707,38 +7715,22 @@ paths:
7707
7715
  format: int64
7708
7716
  - in: query
7709
7717
  name: dbName
7710
- schema:
7711
- type: string
7712
- - in: query
7713
- name: dbNameContains
7718
+ description: Filter slow logs whose database name contains this value.
7714
7719
  schema:
7715
7720
  type: string
7716
7721
  - in: query
7717
7722
  name: userName
7718
- schema:
7719
- type: string
7720
- - in: query
7721
- name: userNameContains
7723
+ description: Filter slow logs whose user name contains this value.
7722
7724
  schema:
7723
7725
  type: string
7724
7726
  - in: query
7725
7727
  name: clientIp
7726
- schema:
7727
- type: string
7728
- - in: query
7729
- name: clientIpContains
7730
- schema:
7731
- type: string
7732
- - in: query
7733
- name: clientIpCIDR
7728
+ description: Filter slow logs whose client IP contains this value, or is within this CIDR range when the value is valid CIDR.
7734
7729
  schema:
7735
7730
  type: string
7736
7731
  - in: query
7737
7732
  name: appName
7738
- schema:
7739
- type: string
7740
- - in: query
7741
- name: appNameContains
7733
+ description: Filter slow logs whose application name contains this value.
7742
7734
  schema:
7743
7735
  type: string
7744
7736
  - in: query