kb-cloud-client-typescript 2.3.0-alpha.96 → 2.3.0-alpha.98

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.
Files changed (52) hide show
  1. package/dist/adminapi/apis/aiagent-api.d.ts +158 -0
  2. package/dist/adminapi/apis/aiagent-api.d.ts.map +1 -1
  3. package/dist/adminapi/apis/aiagent-api.js +162 -0
  4. package/dist/adminapi/apis/aiagent-api.js.map +1 -1
  5. package/dist/adminapi/apis/cluster-log-api.d.ts +114 -2
  6. package/dist/adminapi/apis/cluster-log-api.d.ts.map +1 -1
  7. package/dist/adminapi/apis/cluster-log-api.js +75 -5
  8. package/dist/adminapi/apis/cluster-log-api.js.map +1 -1
  9. package/dist/adminapi/apis/shared-api.d.ts +114 -2
  10. package/dist/adminapi/apis/shared-api.d.ts.map +1 -1
  11. package/dist/adminapi/apis/shared-api.js +75 -5
  12. package/dist/adminapi/apis/shared-api.js.map +1 -1
  13. package/dist/adminapi/models/storage-create.d.ts +0 -6
  14. package/dist/adminapi/models/storage-create.d.ts.map +1 -1
  15. package/dist/adminapi/models/storage-update.d.ts +0 -6
  16. package/dist/adminapi/models/storage-update.d.ts.map +1 -1
  17. package/dist/adminapi/models/storage.d.ts +0 -6
  18. package/dist/adminapi/models/storage.d.ts.map +1 -1
  19. package/dist/internalapi/models/storage-create.d.ts +0 -6
  20. package/dist/internalapi/models/storage-create.d.ts.map +1 -1
  21. package/dist/internalapi/models/storage.d.ts +0 -6
  22. package/dist/internalapi/models/storage.d.ts.map +1 -1
  23. package/dist/openapi/apis/aiagent-api.d.ts +158 -0
  24. package/dist/openapi/apis/aiagent-api.d.ts.map +1 -1
  25. package/dist/openapi/apis/aiagent-api.js +162 -0
  26. package/dist/openapi/apis/aiagent-api.js.map +1 -1
  27. package/dist/openapi/apis/cluster-log-api.d.ts +114 -2
  28. package/dist/openapi/apis/cluster-log-api.d.ts.map +1 -1
  29. package/dist/openapi/apis/cluster-log-api.js +75 -5
  30. package/dist/openapi/apis/cluster-log-api.js.map +1 -1
  31. package/dist/openapi/apis/shared-api.d.ts +114 -2
  32. package/dist/openapi/apis/shared-api.d.ts.map +1 -1
  33. package/dist/openapi/apis/shared-api.js +75 -5
  34. package/dist/openapi/apis/shared-api.js.map +1 -1
  35. package/dist/openapi/models/storage.d.ts +0 -6
  36. package/dist/openapi/models/storage.d.ts.map +1 -1
  37. package/package.json +1 -1
  38. package/src/adminapi/apis/aiagent-api.ts +264 -0
  39. package/src/adminapi/apis/cluster-log-api.ts +187 -5
  40. package/src/adminapi/apis/shared-api.ts +187 -5
  41. package/src/adminapi/models/storage-create.ts +0 -6
  42. package/src/adminapi/models/storage-update.ts +0 -6
  43. package/src/adminapi/models/storage.ts +0 -6
  44. package/src/adminapi.yaml +162 -12
  45. package/src/internalapi/models/storage-create.ts +0 -6
  46. package/src/internalapi/models/storage.ts +0 -6
  47. package/src/internalapi.yaml +0 -8
  48. package/src/openapi/apis/aiagent-api.ts +264 -0
  49. package/src/openapi/apis/cluster-log-api.ts +187 -5
  50. package/src/openapi/apis/shared-api.ts +187 -5
  51. package/src/openapi/models/storage.ts +0 -6
  52. package/src/openapi.yaml +162 -4
@@ -9311,10 +9311,24 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
9311
9311
  * @param {string} [componentName]
9312
9312
  * @param {string} [instanceName]
9313
9313
  * @param {string} [query]
9314
+ * @param {number} [minExecutionTime] Minimum slow log execution time in seconds. Only applies when logType=slow.
9315
+ * @param {number} [maxExecutionTime] Maximum slow log execution time in seconds. Only applies when logType=slow.
9316
+ * @param {number} [minLockTime] Minimum slow log lock time in seconds. Only applies when logType=slow.
9317
+ * @param {number} [maxLockTime] Maximum slow log lock time in seconds. Only applies when logType=slow.
9318
+ * @param {number} [minRowsExamined]
9319
+ * @param {number} [maxRowsExamined]
9320
+ * @param {number} [minRowsSent]
9321
+ * @param {number} [maxRowsSent]
9322
+ * @param {string} [dbName]
9323
+ * @param {string} [userName]
9324
+ * @param {string} [clientIp]
9325
+ * @param {string} [appName]
9326
+ * @param {string} [templateId]
9327
+ * @param {boolean} [unclassifiedOnly]
9314
9328
  * @param {*} [options] Override http request option.
9315
9329
  * @throws {RequiredError}
9316
9330
  */
9317
- queryLogHits: async (orgName: string, clusterName: string, startTime: string, endTime: string, step: string, logType: string, componentName?: string, instanceName?: string, query?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
9331
+ 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> => {
9318
9332
  // verify required parameter 'orgName' is not null or undefined
9319
9333
  assertParamExists('queryLogHits', 'orgName', orgName)
9320
9334
  // verify required parameter 'clusterName' is not null or undefined
@@ -9372,6 +9386,62 @@ export const SharedApiAxiosParamCreator = function (configuration?: Configuratio
9372
9386
  localVarQueryParameter['query'] = query;
9373
9387
  }
9374
9388
 
9389
+ if (minExecutionTime !== undefined) {
9390
+ localVarQueryParameter['minExecutionTime'] = minExecutionTime;
9391
+ }
9392
+
9393
+ if (maxExecutionTime !== undefined) {
9394
+ localVarQueryParameter['maxExecutionTime'] = maxExecutionTime;
9395
+ }
9396
+
9397
+ if (minLockTime !== undefined) {
9398
+ localVarQueryParameter['minLockTime'] = minLockTime;
9399
+ }
9400
+
9401
+ if (maxLockTime !== undefined) {
9402
+ localVarQueryParameter['maxLockTime'] = maxLockTime;
9403
+ }
9404
+
9405
+ if (minRowsExamined !== undefined) {
9406
+ localVarQueryParameter['minRowsExamined'] = minRowsExamined;
9407
+ }
9408
+
9409
+ if (maxRowsExamined !== undefined) {
9410
+ localVarQueryParameter['maxRowsExamined'] = maxRowsExamined;
9411
+ }
9412
+
9413
+ if (minRowsSent !== undefined) {
9414
+ localVarQueryParameter['minRowsSent'] = minRowsSent;
9415
+ }
9416
+
9417
+ if (maxRowsSent !== undefined) {
9418
+ localVarQueryParameter['maxRowsSent'] = maxRowsSent;
9419
+ }
9420
+
9421
+ if (dbName !== undefined) {
9422
+ localVarQueryParameter['dbName'] = dbName;
9423
+ }
9424
+
9425
+ if (userName !== undefined) {
9426
+ localVarQueryParameter['userName'] = userName;
9427
+ }
9428
+
9429
+ if (clientIp !== undefined) {
9430
+ localVarQueryParameter['clientIp'] = clientIp;
9431
+ }
9432
+
9433
+ if (appName !== undefined) {
9434
+ localVarQueryParameter['appName'] = appName;
9435
+ }
9436
+
9437
+ if (templateId !== undefined) {
9438
+ localVarQueryParameter['templateId'] = templateId;
9439
+ }
9440
+
9441
+ if (unclassifiedOnly !== undefined) {
9442
+ localVarQueryParameter['unclassifiedOnly'] = unclassifiedOnly;
9443
+ }
9444
+
9375
9445
 
9376
9446
 
9377
9447
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -14928,11 +14998,25 @@ export const SharedApiFp = function(configuration?: Configuration) {
14928
14998
  * @param {string} [componentName]
14929
14999
  * @param {string} [instanceName]
14930
15000
  * @param {string} [query]
15001
+ * @param {number} [minExecutionTime] Minimum slow log execution time in seconds. Only applies when logType&#x3D;slow.
15002
+ * @param {number} [maxExecutionTime] Maximum slow log execution time in seconds. Only applies when logType&#x3D;slow.
15003
+ * @param {number} [minLockTime] Minimum slow log lock time in seconds. Only applies when logType&#x3D;slow.
15004
+ * @param {number} [maxLockTime] Maximum slow log lock time in seconds. Only applies when logType&#x3D;slow.
15005
+ * @param {number} [minRowsExamined]
15006
+ * @param {number} [maxRowsExamined]
15007
+ * @param {number} [minRowsSent]
15008
+ * @param {number} [maxRowsSent]
15009
+ * @param {string} [dbName]
15010
+ * @param {string} [userName]
15011
+ * @param {string} [clientIp]
15012
+ * @param {string} [appName]
15013
+ * @param {string} [templateId]
15014
+ * @param {boolean} [unclassifiedOnly]
14931
15015
  * @param {*} [options] Override http request option.
14932
15016
  * @throws {RequiredError}
14933
15017
  */
14934
- async queryLogHits(orgName: string, clusterName: string, startTime: string, endTime: string, step: string, logType: string, componentName?: string, instanceName?: string, query?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusterLogHitsResponse>> {
14935
- const localVarAxiosArgs = await localVarAxiosParamCreator.queryLogHits(orgName, clusterName, startTime, endTime, step, logType, componentName, instanceName, query, options);
15018
+ 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>> {
15019
+ 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);
14936
15020
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
14937
15021
  const localVarOperationServerBasePath = operationServerMap['SharedApi.queryLogHits']?.[localVarOperationServerIndex]?.url;
14938
15022
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -17634,7 +17718,7 @@ export const SharedApiFactory = function (configuration?: Configuration, basePat
17634
17718
  * @throws {RequiredError}
17635
17719
  */
17636
17720
  queryLogHits(requestParameters: SharedApiQueryLogHitsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ClusterLogHitsResponse> {
17637
- return localVarFp.queryLogHits(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.step, requestParameters.logType, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, options).then((request) => request(axios, basePath));
17721
+ 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));
17638
17722
  },
17639
17723
  /**
17640
17724
  * Query pod logs of a cluster
@@ -26055,6 +26139,104 @@ export interface SharedApiQueryLogHitsRequest {
26055
26139
  * @memberof SharedApiQueryLogHits
26056
26140
  */
26057
26141
  readonly query?: string
26142
+
26143
+ /**
26144
+ * Minimum slow log execution time in seconds. Only applies when logType&#x3D;slow.
26145
+ * @type {number}
26146
+ * @memberof SharedApiQueryLogHits
26147
+ */
26148
+ readonly minExecutionTime?: number
26149
+
26150
+ /**
26151
+ * Maximum slow log execution time in seconds. Only applies when logType&#x3D;slow.
26152
+ * @type {number}
26153
+ * @memberof SharedApiQueryLogHits
26154
+ */
26155
+ readonly maxExecutionTime?: number
26156
+
26157
+ /**
26158
+ * Minimum slow log lock time in seconds. Only applies when logType&#x3D;slow.
26159
+ * @type {number}
26160
+ * @memberof SharedApiQueryLogHits
26161
+ */
26162
+ readonly minLockTime?: number
26163
+
26164
+ /**
26165
+ * Maximum slow log lock time in seconds. Only applies when logType&#x3D;slow.
26166
+ * @type {number}
26167
+ * @memberof SharedApiQueryLogHits
26168
+ */
26169
+ readonly maxLockTime?: number
26170
+
26171
+ /**
26172
+ *
26173
+ * @type {number}
26174
+ * @memberof SharedApiQueryLogHits
26175
+ */
26176
+ readonly minRowsExamined?: number
26177
+
26178
+ /**
26179
+ *
26180
+ * @type {number}
26181
+ * @memberof SharedApiQueryLogHits
26182
+ */
26183
+ readonly maxRowsExamined?: number
26184
+
26185
+ /**
26186
+ *
26187
+ * @type {number}
26188
+ * @memberof SharedApiQueryLogHits
26189
+ */
26190
+ readonly minRowsSent?: number
26191
+
26192
+ /**
26193
+ *
26194
+ * @type {number}
26195
+ * @memberof SharedApiQueryLogHits
26196
+ */
26197
+ readonly maxRowsSent?: number
26198
+
26199
+ /**
26200
+ *
26201
+ * @type {string}
26202
+ * @memberof SharedApiQueryLogHits
26203
+ */
26204
+ readonly dbName?: string
26205
+
26206
+ /**
26207
+ *
26208
+ * @type {string}
26209
+ * @memberof SharedApiQueryLogHits
26210
+ */
26211
+ readonly userName?: string
26212
+
26213
+ /**
26214
+ *
26215
+ * @type {string}
26216
+ * @memberof SharedApiQueryLogHits
26217
+ */
26218
+ readonly clientIp?: string
26219
+
26220
+ /**
26221
+ *
26222
+ * @type {string}
26223
+ * @memberof SharedApiQueryLogHits
26224
+ */
26225
+ readonly appName?: string
26226
+
26227
+ /**
26228
+ *
26229
+ * @type {string}
26230
+ * @memberof SharedApiQueryLogHits
26231
+ */
26232
+ readonly templateId?: string
26233
+
26234
+ /**
26235
+ *
26236
+ * @type {boolean}
26237
+ * @memberof SharedApiQueryLogHits
26238
+ */
26239
+ readonly unclassifiedOnly?: boolean
26058
26240
  }
26059
26241
 
26060
26242
  /**
@@ -30231,7 +30413,7 @@ export class SharedApi extends BaseAPI implements SharedApiInterface {
30231
30413
  * @memberof SharedApi
30232
30414
  */
30233
30415
  public queryLogHits(requestParameters: SharedApiQueryLogHitsRequest, options?: RawAxiosRequestConfig) {
30234
- return SharedApiFp(this.configuration).queryLogHits(requestParameters.orgName, requestParameters.clusterName, requestParameters.startTime, requestParameters.endTime, requestParameters.step, requestParameters.logType, requestParameters.componentName, requestParameters.instanceName, requestParameters.query, options).then((request) => request(this.axios, this.basePath));
30416
+ 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));
30235
30417
  }
30236
30418
 
30237
30419
  /**
@@ -50,11 +50,5 @@ export interface StorageCreate {
50
50
  * @memberof StorageCreate
51
51
  */
52
52
  'tags'?: { [key: string]: string; };
53
- /**
54
- *
55
- * @type {Array<string>}
56
- * @memberof StorageCreate
57
- */
58
- 'engines'?: Array<string>;
59
53
  }
60
54
 
@@ -32,12 +32,6 @@ export interface StorageUpdate {
32
32
  * @memberof StorageUpdate
33
33
  */
34
34
  'tags'?: { [key: string]: string; };
35
- /**
36
- *
37
- * @type {Array<string>}
38
- * @memberof StorageUpdate
39
- */
40
- 'engines'?: Array<string>;
41
35
  /**
42
36
  *
43
37
  * @type {string}
@@ -80,11 +80,5 @@ export interface Storage {
80
80
  * @memberof Storage
81
81
  */
82
82
  'tags'?: { [key: string]: string; };
83
- /**
84
- *
85
- * @type {Array<string>}
86
- * @memberof Storage
87
- */
88
- 'engines'?: Array<string>;
89
83
  }
90
84
 
package/src/adminapi.yaml CHANGED
@@ -1414,6 +1414,100 @@ paths:
1414
1414
  $ref: '#/components/responses/404'
1415
1415
  '500':
1416
1416
  $ref: '#/components/responses/500'
1417
+ /admin/v1/organizations/{orgName}/ai-agent/conversations/{conversationId}/turn-actions/{actionId}/artifacts/{artifactId}/browse:
1418
+ get:
1419
+ tags:
1420
+ - AI Agent
1421
+ operationId: browseAIAgentTurnActionArtifact
1422
+ summary: Browse a generated AI diagnosis report artifact
1423
+ parameters:
1424
+ - name: orgName
1425
+ in: path
1426
+ required: true
1427
+ schema:
1428
+ type: string
1429
+ - name: conversationId
1430
+ in: path
1431
+ required: true
1432
+ schema:
1433
+ type: string
1434
+ - name: actionId
1435
+ in: path
1436
+ required: true
1437
+ schema:
1438
+ type: string
1439
+ - name: artifactId
1440
+ in: path
1441
+ required: true
1442
+ schema:
1443
+ type: string
1444
+ responses:
1445
+ '200':
1446
+ description: Generated report artifact content for browser preview
1447
+ content:
1448
+ application/octet-stream:
1449
+ schema:
1450
+ type: string
1451
+ format: binary
1452
+ '400':
1453
+ $ref: '#/components/responses/400'
1454
+ '401':
1455
+ $ref: '#/components/responses/401'
1456
+ '403':
1457
+ $ref: '#/components/responses/403'
1458
+ '404':
1459
+ $ref: '#/components/responses/404'
1460
+ '500':
1461
+ $ref: '#/components/responses/500'
1462
+ '503':
1463
+ $ref: '#/components/responses/503'
1464
+ /admin/v1/organizations/{orgName}/ai-agent/conversations/{conversationId}/turn-actions/{actionId}/artifacts/{artifactId}/download:
1465
+ get:
1466
+ tags:
1467
+ - AI Agent
1468
+ operationId: downloadAIAgentTurnActionArtifact
1469
+ summary: Download a generated AI diagnosis report artifact
1470
+ parameters:
1471
+ - name: orgName
1472
+ in: path
1473
+ required: true
1474
+ schema:
1475
+ type: string
1476
+ - name: conversationId
1477
+ in: path
1478
+ required: true
1479
+ schema:
1480
+ type: string
1481
+ - name: actionId
1482
+ in: path
1483
+ required: true
1484
+ schema:
1485
+ type: string
1486
+ - name: artifactId
1487
+ in: path
1488
+ required: true
1489
+ schema:
1490
+ type: string
1491
+ responses:
1492
+ '200':
1493
+ description: Generated report artifact content
1494
+ content:
1495
+ application/octet-stream:
1496
+ schema:
1497
+ type: string
1498
+ format: binary
1499
+ '400':
1500
+ $ref: '#/components/responses/400'
1501
+ '401':
1502
+ $ref: '#/components/responses/401'
1503
+ '403':
1504
+ $ref: '#/components/responses/403'
1505
+ '404':
1506
+ $ref: '#/components/responses/404'
1507
+ '500':
1508
+ $ref: '#/components/responses/500'
1509
+ '503':
1510
+ $ref: '#/components/responses/503'
1417
1511
  /admin/v1/organizations/{orgName}/ai-agent/conversations/{conversationId}/events:
1418
1512
  get:
1419
1513
  tags:
@@ -7397,6 +7491,74 @@ paths:
7397
7491
  name: query
7398
7492
  schema:
7399
7493
  type: string
7494
+ - in: query
7495
+ name: minExecutionTime
7496
+ description: Minimum slow log execution time in seconds. Only applies when logType=slow.
7497
+ schema:
7498
+ type: number
7499
+ format: double
7500
+ - in: query
7501
+ name: maxExecutionTime
7502
+ description: Maximum slow log execution time in seconds. Only applies when logType=slow.
7503
+ schema:
7504
+ type: number
7505
+ format: double
7506
+ - in: query
7507
+ name: minLockTime
7508
+ description: Minimum slow log lock time in seconds. Only applies when logType=slow.
7509
+ schema:
7510
+ type: number
7511
+ format: double
7512
+ - in: query
7513
+ name: maxLockTime
7514
+ description: Maximum slow log lock time in seconds. Only applies when logType=slow.
7515
+ schema:
7516
+ type: number
7517
+ format: double
7518
+ - in: query
7519
+ name: minRowsExamined
7520
+ schema:
7521
+ type: integer
7522
+ format: int64
7523
+ - in: query
7524
+ name: maxRowsExamined
7525
+ schema:
7526
+ type: integer
7527
+ format: int64
7528
+ - in: query
7529
+ name: minRowsSent
7530
+ schema:
7531
+ type: integer
7532
+ format: int64
7533
+ - in: query
7534
+ name: maxRowsSent
7535
+ schema:
7536
+ type: integer
7537
+ format: int64
7538
+ - in: query
7539
+ name: dbName
7540
+ schema:
7541
+ type: string
7542
+ - in: query
7543
+ name: userName
7544
+ schema:
7545
+ type: string
7546
+ - in: query
7547
+ name: clientIp
7548
+ schema:
7549
+ type: string
7550
+ - in: query
7551
+ name: appName
7552
+ schema:
7553
+ type: string
7554
+ - in: query
7555
+ name: templateId
7556
+ schema:
7557
+ type: string
7558
+ - in: query
7559
+ name: unclassifiedOnly
7560
+ schema:
7561
+ type: boolean
7400
7562
  responses:
7401
7563
  '200':
7402
7564
  content:
@@ -26403,10 +26565,6 @@ components:
26403
26565
  description: the tags for the storage
26404
26566
  additionalProperties:
26405
26567
  type: string
26406
- engines:
26407
- type: array
26408
- items:
26409
- type: string
26410
26568
  staticCluster:
26411
26569
  properties:
26412
26570
  replicas:
@@ -32813,10 +32971,6 @@ components:
32813
32971
  description: the tags for the storage
32814
32972
  additionalProperties:
32815
32973
  type: string
32816
- engines:
32817
- type: array
32818
- items:
32819
- type: string
32820
32974
  storageList:
32821
32975
  type: array
32822
32976
  items:
@@ -32835,10 +32989,6 @@ components:
32835
32989
  description: the tags for the storage
32836
32990
  additionalProperties:
32837
32991
  type: string
32838
- engines:
32839
- type: array
32840
- items:
32841
- type: string
32842
32992
  storageName:
32843
32993
  type: string
32844
32994
  envName:
@@ -50,11 +50,5 @@ export interface StorageCreate {
50
50
  * @memberof StorageCreate
51
51
  */
52
52
  'tags'?: { [key: string]: string; };
53
- /**
54
- *
55
- * @type {Array<string>}
56
- * @memberof StorageCreate
57
- */
58
- 'engines'?: Array<string>;
59
53
  }
60
54
 
@@ -80,11 +80,5 @@ export interface Storage {
80
80
  * @memberof Storage
81
81
  */
82
82
  'tags'?: { [key: string]: string; };
83
- /**
84
- *
85
- * @type {Array<string>}
86
- * @memberof Storage
87
- */
88
- 'engines'?: Array<string>;
89
83
  }
90
84
 
@@ -1179,10 +1179,6 @@ components:
1179
1179
  description: the tags for the storage
1180
1180
  additionalProperties:
1181
1181
  type: string
1182
- engines:
1183
- type: array
1184
- items:
1185
- type: string
1186
1182
  staticCluster:
1187
1183
  properties:
1188
1184
  replicas:
@@ -1742,10 +1738,6 @@ components:
1742
1738
  description: the tags for the storage
1743
1739
  additionalProperties:
1744
1740
  type: string
1745
- engines:
1746
- type: array
1747
- items:
1748
- type: string
1749
1741
  environmentType:
1750
1742
  type: string
1751
1743
  description: Type of this environment