kb-cloud-client-typescript 2.3.0-alpha.198 → 2.3.0-alpha.199

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.
@@ -10,6 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import type { OpsHScale } from './ops-hscale';
13
+ import type { TaskSchedule } from './task-schedule';
13
14
  /**
14
15
  * Parameters for switching the engine mode of a cluster.
15
16
  * @export
@@ -22,6 +23,12 @@ export interface ClusterModeTransition {
22
23
  * @memberof ClusterModeTransition
23
24
  */
24
25
  'mode': string;
26
+ /**
27
+ *
28
+ * @type {TaskSchedule}
29
+ * @memberof ClusterModeTransition
30
+ */
31
+ 'schedule'?: TaskSchedule;
25
32
  /**
26
33
  *
27
34
  * @type {OpsHScale}
@@ -1 +1 @@
1
- {"version":3,"file":"cluster-mode-transition.d.ts","sourceRoot":"","sources":["../../../src/adminapi/models/cluster-mode-transition.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAE9C;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IAClC;;;;OAIG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;OAIG;IACH,QAAQ,CAAC,EAAE,SAAS,CAAC;CACxB"}
1
+ {"version":3,"file":"cluster-mode-transition.d.ts","sourceRoot":"","sources":["../../../src/adminapi/models/cluster-mode-transition.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAG9C,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAEpD;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IAClC;;;;OAIG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;OAIG;IACH,UAAU,CAAC,EAAE,YAAY,CAAC;IAC1B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,SAAS,CAAC;CACxB"}
@@ -10,6 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import type { OpsHScale } from './ops-hscale';
13
+ import type { TaskSchedule } from './task-schedule';
13
14
  /**
14
15
  * Parameters for switching the engine mode of a cluster.
15
16
  * @export
@@ -22,6 +23,12 @@ export interface ClusterModeTransition {
22
23
  * @memberof ClusterModeTransition
23
24
  */
24
25
  'mode': string;
26
+ /**
27
+ *
28
+ * @type {TaskSchedule}
29
+ * @memberof ClusterModeTransition
30
+ */
31
+ 'schedule'?: TaskSchedule;
25
32
  /**
26
33
  *
27
34
  * @type {OpsHScale}
@@ -1 +1 @@
1
- {"version":3,"file":"cluster-mode-transition.d.ts","sourceRoot":"","sources":["../../../src/openapi/models/cluster-mode-transition.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAE9C;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IAClC;;;;OAIG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;OAIG;IACH,QAAQ,CAAC,EAAE,SAAS,CAAC;CACxB"}
1
+ {"version":3,"file":"cluster-mode-transition.d.ts","sourceRoot":"","sources":["../../../src/openapi/models/cluster-mode-transition.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAG9C,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAEpD;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IAClC;;;;OAIG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;OAIG;IACH,UAAU,CAAC,EAAE,YAAY,CAAC;IAC1B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,SAAS,CAAC;CACxB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kb-cloud-client-typescript",
3
- "version": "2.3.0-alpha.198",
3
+ "version": "2.3.0-alpha.199",
4
4
  "description": "Auto-generated TypeScript SDK for KubeBlocks Cloud API",
5
5
  "private": false,
6
6
  "license": "Apache-2.0",
@@ -16,6 +16,9 @@
16
16
  // May contain unused imports in some cases
17
17
  // @ts-ignore
18
18
  import type { OpsHScale } from './ops-hscale';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import type { TaskSchedule } from './task-schedule';
19
22
 
20
23
  /**
21
24
  * Parameters for switching the engine mode of a cluster.
@@ -29,6 +32,12 @@ export interface ClusterModeTransition {
29
32
  * @memberof ClusterModeTransition
30
33
  */
31
34
  'mode': string;
35
+ /**
36
+ *
37
+ * @type {TaskSchedule}
38
+ * @memberof ClusterModeTransition
39
+ */
40
+ 'schedule'?: TaskSchedule;
32
41
  /**
33
42
  *
34
43
  * @type {OpsHScale}
package/src/adminapi.yaml CHANGED
@@ -26597,6 +26597,8 @@ components:
26597
26597
  mode:
26598
26598
  type: string
26599
26599
  description: Target engine mode.
26600
+ schedule:
26601
+ $ref: '#/components/schemas/taskSchedule'
26600
26602
  hScale:
26601
26603
  $ref: '#/components/schemas/opsHScale'
26602
26604
  opsRequestName:
@@ -16,6 +16,9 @@
16
16
  // May contain unused imports in some cases
17
17
  // @ts-ignore
18
18
  import type { OpsHScale } from './ops-hscale';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import type { TaskSchedule } from './task-schedule';
19
22
 
20
23
  /**
21
24
  * Parameters for switching the engine mode of a cluster.
@@ -29,6 +32,12 @@ export interface ClusterModeTransition {
29
32
  * @memberof ClusterModeTransition
30
33
  */
31
34
  'mode': string;
35
+ /**
36
+ *
37
+ * @type {TaskSchedule}
38
+ * @memberof ClusterModeTransition
39
+ */
40
+ 'schedule'?: TaskSchedule;
32
41
  /**
33
42
  *
34
43
  * @type {OpsHScale}
package/src/openapi.yaml CHANGED
@@ -22670,6 +22670,8 @@ components:
22670
22670
  mode:
22671
22671
  type: string
22672
22672
  description: Target engine mode.
22673
+ schedule:
22674
+ $ref: '#/components/schemas/taskSchedule'
22673
22675
  hScale:
22674
22676
  $ref: '#/components/schemas/opsHScale'
22675
22677
  opsRequestName: