@alicloud/ehpcinstant20230701 3.0.0 → 3.2.0
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/client.d.ts +105 -0
- package/dist/client.js +339 -0
- package/dist/client.js.map +1 -1
- package/dist/models/CreateActionPlanRequest.d.ts +97 -0
- package/dist/models/CreateActionPlanRequest.js +137 -0
- package/dist/models/CreateActionPlanRequest.js.map +1 -0
- package/dist/models/CreateActionPlanResponse.d.ts +19 -0
- package/dist/models/CreateActionPlanResponse.js +69 -0
- package/dist/models/CreateActionPlanResponse.js.map +1 -0
- package/dist/models/CreateActionPlanResponseBody.d.ts +23 -0
- package/dist/models/CreateActionPlanResponseBody.js +60 -0
- package/dist/models/CreateActionPlanResponseBody.js.map +1 -0
- package/dist/models/CreateActionPlanShrinkRequest.d.ts +55 -0
- package/dist/models/CreateActionPlanShrinkRequest.js +76 -0
- package/dist/models/CreateActionPlanShrinkRequest.js.map +1 -0
- package/dist/models/DeleteActionPlanRequest.d.ts +18 -0
- package/dist/models/DeleteActionPlanRequest.js +58 -0
- package/dist/models/DeleteActionPlanRequest.js.map +1 -0
- package/dist/models/DeleteActionPlanResponse.d.ts +19 -0
- package/dist/models/DeleteActionPlanResponse.js +69 -0
- package/dist/models/DeleteActionPlanResponse.js.map +1 -0
- package/dist/models/DeleteActionPlanResponseBody.d.ts +18 -0
- package/dist/models/DeleteActionPlanResponseBody.js +58 -0
- package/dist/models/DeleteActionPlanResponseBody.js.map +1 -0
- package/dist/models/GetActionPlanRequest.d.ts +18 -0
- package/dist/models/GetActionPlanRequest.js +58 -0
- package/dist/models/GetActionPlanRequest.js.map +1 -0
- package/dist/models/GetActionPlanResponse.d.ts +19 -0
- package/dist/models/GetActionPlanResponse.js +69 -0
- package/dist/models/GetActionPlanResponse.js.map +1 -0
- package/dist/models/GetActionPlanResponseBody.d.ts +121 -0
- package/dist/models/GetActionPlanResponseBody.js +142 -0
- package/dist/models/GetActionPlanResponseBody.js.map +1 -0
- package/dist/models/ListActionPlanActivitiesRequest.d.ts +28 -0
- package/dist/models/ListActionPlanActivitiesRequest.js +62 -0
- package/dist/models/ListActionPlanActivitiesRequest.js.map +1 -0
- package/dist/models/ListActionPlanActivitiesResponse.d.ts +19 -0
- package/dist/models/ListActionPlanActivitiesResponse.js +69 -0
- package/dist/models/ListActionPlanActivitiesResponse.js.map +1 -0
- package/dist/models/ListActionPlanActivitiesResponseBody.d.ts +107 -0
- package/dist/models/ListActionPlanActivitiesResponseBody.js +126 -0
- package/dist/models/ListActionPlanActivitiesResponseBody.js.map +1 -0
- package/dist/models/ListActionPlansRequest.d.ts +24 -0
- package/dist/models/ListActionPlansRequest.js +65 -0
- package/dist/models/ListActionPlansRequest.js.map +1 -0
- package/dist/models/ListActionPlansResponse.d.ts +19 -0
- package/dist/models/ListActionPlansResponse.js +69 -0
- package/dist/models/ListActionPlansResponse.js.map +1 -0
- package/dist/models/ListActionPlansResponseBody.d.ts +74 -0
- package/dist/models/ListActionPlansResponseBody.js +96 -0
- package/dist/models/ListActionPlansResponseBody.js.map +1 -0
- package/dist/models/ListActionPlansShrinkRequest.d.ts +24 -0
- package/dist/models/ListActionPlansShrinkRequest.js +62 -0
- package/dist/models/ListActionPlansShrinkRequest.js.map +1 -0
- package/dist/models/SynchronizeAppRequest.d.ts +22 -0
- package/dist/models/SynchronizeAppRequest.js +63 -0
- package/dist/models/SynchronizeAppRequest.js.map +1 -0
- package/dist/models/SynchronizeAppResponse.d.ts +19 -0
- package/dist/models/SynchronizeAppResponse.js +69 -0
- package/dist/models/SynchronizeAppResponse.js.map +1 -0
- package/dist/models/SynchronizeAppResponseBody.d.ts +18 -0
- package/dist/models/SynchronizeAppResponseBody.js +58 -0
- package/dist/models/SynchronizeAppResponseBody.js.map +1 -0
- package/dist/models/SynchronizeAppShrinkRequest.d.ts +22 -0
- package/dist/models/SynchronizeAppShrinkRequest.js +60 -0
- package/dist/models/SynchronizeAppShrinkRequest.js.map +1 -0
- package/dist/models/UpdateActionPlanRequest.d.ts +28 -0
- package/dist/models/UpdateActionPlanRequest.js +62 -0
- package/dist/models/UpdateActionPlanRequest.js.map +1 -0
- package/dist/models/UpdateActionPlanResponse.d.ts +19 -0
- package/dist/models/UpdateActionPlanResponse.js +69 -0
- package/dist/models/UpdateActionPlanResponse.js.map +1 -0
- package/dist/models/UpdateActionPlanResponseBody.d.ts +18 -0
- package/dist/models/UpdateActionPlanResponseBody.js +58 -0
- package/dist/models/UpdateActionPlanResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +31 -0
- package/dist/models/model.js +66 -3
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +380 -0
- package/src/models/CreateActionPlanRequest.ts +171 -0
- package/src/models/CreateActionPlanResponse.ts +40 -0
- package/src/models/CreateActionPlanResponseBody.ts +38 -0
- package/src/models/CreateActionPlanShrinkRequest.ts +86 -0
- package/src/models/DeleteActionPlanRequest.ts +31 -0
- package/src/models/DeleteActionPlanResponse.ts +40 -0
- package/src/models/DeleteActionPlanResponseBody.ts +31 -0
- package/src/models/GetActionPlanRequest.ts +31 -0
- package/src/models/GetActionPlanResponse.ts +40 -0
- package/src/models/GetActionPlanResponseBody.ts +200 -0
- package/src/models/ListActionPlanActivitiesRequest.ts +45 -0
- package/src/models/ListActionPlanActivitiesResponse.ts +40 -0
- package/src/models/ListActionPlanActivitiesResponseBody.ts +170 -0
- package/src/models/ListActionPlansRequest.ts +44 -0
- package/src/models/ListActionPlansResponse.ts +40 -0
- package/src/models/ListActionPlansResponseBody.ts +116 -0
- package/src/models/ListActionPlansShrinkRequest.ts +41 -0
- package/src/models/SynchronizeAppRequest.ts +40 -0
- package/src/models/SynchronizeAppResponse.ts +40 -0
- package/src/models/SynchronizeAppResponseBody.ts +31 -0
- package/src/models/SynchronizeAppShrinkRequest.ts +37 -0
- package/src/models/UpdateActionPlanRequest.ts +45 -0
- package/src/models/UpdateActionPlanResponse.ts +40 -0
- package/src/models/UpdateActionPlanResponseBody.ts +31 -0
- package/src/models/model.ts +31 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class ListActionPlansRequest extends $dara.Model {
|
|
6
|
+
actionPlanIds?: string[];
|
|
7
|
+
/**
|
|
8
|
+
* @example
|
|
9
|
+
* 20
|
|
10
|
+
*/
|
|
11
|
+
maxResults?: number;
|
|
12
|
+
/**
|
|
13
|
+
* @example
|
|
14
|
+
* 1d2db86scXXXXXXXXXX
|
|
15
|
+
*/
|
|
16
|
+
nextToken?: string;
|
|
17
|
+
static names(): { [key: string]: string } {
|
|
18
|
+
return {
|
|
19
|
+
actionPlanIds: 'ActionPlanIds',
|
|
20
|
+
maxResults: 'MaxResults',
|
|
21
|
+
nextToken: 'NextToken',
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
static types(): { [key: string]: any } {
|
|
26
|
+
return {
|
|
27
|
+
actionPlanIds: { 'type': 'array', 'itemType': 'string' },
|
|
28
|
+
maxResults: 'number',
|
|
29
|
+
nextToken: 'string',
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
validate() {
|
|
34
|
+
if(Array.isArray(this.actionPlanIds)) {
|
|
35
|
+
$dara.Model.validateArray(this.actionPlanIds);
|
|
36
|
+
}
|
|
37
|
+
super.validate();
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
constructor(map?: { [key: string]: any }) {
|
|
41
|
+
super(map);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { ListActionPlansResponseBody } from "./ListActionPlansResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class ListActionPlansResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: ListActionPlansResponseBody;
|
|
10
|
+
static names(): { [key: string]: string } {
|
|
11
|
+
return {
|
|
12
|
+
headers: 'headers',
|
|
13
|
+
statusCode: 'statusCode',
|
|
14
|
+
body: 'body',
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
static types(): { [key: string]: any } {
|
|
19
|
+
return {
|
|
20
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21
|
+
statusCode: 'number',
|
|
22
|
+
body: ListActionPlansResponseBody,
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
validate() {
|
|
27
|
+
if(this.headers) {
|
|
28
|
+
$dara.Model.validateMap(this.headers);
|
|
29
|
+
}
|
|
30
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
31
|
+
(this.body as any).validate();
|
|
32
|
+
}
|
|
33
|
+
super.validate();
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
constructor(map?: { [key: string]: any }) {
|
|
37
|
+
super(map);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class ListActionPlansResponseBodyActionPlans extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* ap-hz036ubmx2qmw93k****
|
|
9
|
+
*/
|
|
10
|
+
actionPlanId?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* TestActionPlan
|
|
14
|
+
*/
|
|
15
|
+
actionPlanName?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* 2025-08-10 17:58:24
|
|
19
|
+
*/
|
|
20
|
+
createTime?: string;
|
|
21
|
+
/**
|
|
22
|
+
* @example
|
|
23
|
+
* Active
|
|
24
|
+
*/
|
|
25
|
+
status?: string;
|
|
26
|
+
/**
|
|
27
|
+
* @example
|
|
28
|
+
* 2025-08-10 17:58:24
|
|
29
|
+
*/
|
|
30
|
+
updateTime?: string;
|
|
31
|
+
static names(): { [key: string]: string } {
|
|
32
|
+
return {
|
|
33
|
+
actionPlanId: 'ActionPlanId',
|
|
34
|
+
actionPlanName: 'ActionPlanName',
|
|
35
|
+
createTime: 'CreateTime',
|
|
36
|
+
status: 'Status',
|
|
37
|
+
updateTime: 'UpdateTime',
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
static types(): { [key: string]: any } {
|
|
42
|
+
return {
|
|
43
|
+
actionPlanId: 'string',
|
|
44
|
+
actionPlanName: 'string',
|
|
45
|
+
createTime: 'string',
|
|
46
|
+
status: 'string',
|
|
47
|
+
updateTime: 'string',
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
validate() {
|
|
52
|
+
super.validate();
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
constructor(map?: { [key: string]: any }) {
|
|
56
|
+
super(map);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export class ListActionPlansResponseBody extends $dara.Model {
|
|
61
|
+
actionPlans?: ListActionPlansResponseBodyActionPlans[];
|
|
62
|
+
/**
|
|
63
|
+
* @example
|
|
64
|
+
* 20
|
|
65
|
+
*/
|
|
66
|
+
maxResults?: number;
|
|
67
|
+
/**
|
|
68
|
+
* @remarks
|
|
69
|
+
* This parameter is required.
|
|
70
|
+
*
|
|
71
|
+
* @example
|
|
72
|
+
* 1d2db86scXXXXXXXXXX
|
|
73
|
+
*/
|
|
74
|
+
nextToken?: string;
|
|
75
|
+
/**
|
|
76
|
+
* @example
|
|
77
|
+
* 04F0F334-1335-436C-A1D7-6C044FE7****
|
|
78
|
+
*/
|
|
79
|
+
requestId?: string;
|
|
80
|
+
/**
|
|
81
|
+
* @example
|
|
82
|
+
* 10
|
|
83
|
+
*/
|
|
84
|
+
totalCount?: number;
|
|
85
|
+
static names(): { [key: string]: string } {
|
|
86
|
+
return {
|
|
87
|
+
actionPlans: 'ActionPlans',
|
|
88
|
+
maxResults: 'MaxResults',
|
|
89
|
+
nextToken: 'NextToken',
|
|
90
|
+
requestId: 'RequestId',
|
|
91
|
+
totalCount: 'TotalCount',
|
|
92
|
+
};
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
static types(): { [key: string]: any } {
|
|
96
|
+
return {
|
|
97
|
+
actionPlans: { 'type': 'array', 'itemType': ListActionPlansResponseBodyActionPlans },
|
|
98
|
+
maxResults: 'number',
|
|
99
|
+
nextToken: 'string',
|
|
100
|
+
requestId: 'string',
|
|
101
|
+
totalCount: 'number',
|
|
102
|
+
};
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
validate() {
|
|
106
|
+
if(Array.isArray(this.actionPlans)) {
|
|
107
|
+
$dara.Model.validateArray(this.actionPlans);
|
|
108
|
+
}
|
|
109
|
+
super.validate();
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
constructor(map?: { [key: string]: any }) {
|
|
113
|
+
super(map);
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class ListActionPlansShrinkRequest extends $dara.Model {
|
|
6
|
+
actionPlanIdsShrink?: string;
|
|
7
|
+
/**
|
|
8
|
+
* @example
|
|
9
|
+
* 20
|
|
10
|
+
*/
|
|
11
|
+
maxResults?: number;
|
|
12
|
+
/**
|
|
13
|
+
* @example
|
|
14
|
+
* 1d2db86scXXXXXXXXXX
|
|
15
|
+
*/
|
|
16
|
+
nextToken?: string;
|
|
17
|
+
static names(): { [key: string]: string } {
|
|
18
|
+
return {
|
|
19
|
+
actionPlanIdsShrink: 'ActionPlanIds',
|
|
20
|
+
maxResults: 'MaxResults',
|
|
21
|
+
nextToken: 'NextToken',
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
static types(): { [key: string]: any } {
|
|
26
|
+
return {
|
|
27
|
+
actionPlanIdsShrink: 'string',
|
|
28
|
+
maxResults: 'number',
|
|
29
|
+
nextToken: 'string',
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
validate() {
|
|
34
|
+
super.validate();
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
constructor(map?: { [key: string]: any }) {
|
|
38
|
+
super(map);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class SynchronizeAppRequest extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* This parameter is required.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* ci-vm-rYfypJKwlN9Y
|
|
12
|
+
*/
|
|
13
|
+
appId?: string;
|
|
14
|
+
targetRegionIds?: string[];
|
|
15
|
+
static names(): { [key: string]: string } {
|
|
16
|
+
return {
|
|
17
|
+
appId: 'AppId',
|
|
18
|
+
targetRegionIds: 'TargetRegionIds',
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
static types(): { [key: string]: any } {
|
|
23
|
+
return {
|
|
24
|
+
appId: 'string',
|
|
25
|
+
targetRegionIds: { 'type': 'array', 'itemType': 'string' },
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
validate() {
|
|
30
|
+
if(Array.isArray(this.targetRegionIds)) {
|
|
31
|
+
$dara.Model.validateArray(this.targetRegionIds);
|
|
32
|
+
}
|
|
33
|
+
super.validate();
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
constructor(map?: { [key: string]: any }) {
|
|
37
|
+
super(map);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { SynchronizeAppResponseBody } from "./SynchronizeAppResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class SynchronizeAppResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: SynchronizeAppResponseBody;
|
|
10
|
+
static names(): { [key: string]: string } {
|
|
11
|
+
return {
|
|
12
|
+
headers: 'headers',
|
|
13
|
+
statusCode: 'statusCode',
|
|
14
|
+
body: 'body',
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
static types(): { [key: string]: any } {
|
|
19
|
+
return {
|
|
20
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21
|
+
statusCode: 'number',
|
|
22
|
+
body: SynchronizeAppResponseBody,
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
validate() {
|
|
27
|
+
if(this.headers) {
|
|
28
|
+
$dara.Model.validateMap(this.headers);
|
|
29
|
+
}
|
|
30
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
31
|
+
(this.body as any).validate();
|
|
32
|
+
}
|
|
33
|
+
super.validate();
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
constructor(map?: { [key: string]: any }) {
|
|
37
|
+
super(map);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class SynchronizeAppResponseBody extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* 896D338C-E4F4-41EC-A154-D605E5DE****
|
|
9
|
+
*/
|
|
10
|
+
requestId?: string;
|
|
11
|
+
static names(): { [key: string]: string } {
|
|
12
|
+
return {
|
|
13
|
+
requestId: 'RequestId',
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
static types(): { [key: string]: any } {
|
|
18
|
+
return {
|
|
19
|
+
requestId: 'string',
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
validate() {
|
|
24
|
+
super.validate();
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
constructor(map?: { [key: string]: any }) {
|
|
28
|
+
super(map);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class SynchronizeAppShrinkRequest extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* This parameter is required.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* ci-vm-rYfypJKwlN9Y
|
|
12
|
+
*/
|
|
13
|
+
appId?: string;
|
|
14
|
+
targetRegionIdsShrink?: string;
|
|
15
|
+
static names(): { [key: string]: string } {
|
|
16
|
+
return {
|
|
17
|
+
appId: 'AppId',
|
|
18
|
+
targetRegionIdsShrink: 'TargetRegionIds',
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
static types(): { [key: string]: any } {
|
|
23
|
+
return {
|
|
24
|
+
appId: 'string',
|
|
25
|
+
targetRegionIdsShrink: 'string',
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
validate() {
|
|
30
|
+
super.validate();
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
constructor(map?: { [key: string]: any }) {
|
|
34
|
+
super(map);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class UpdateActionPlanRequest extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* ap-hz036ubmx2qmw93k****
|
|
9
|
+
*/
|
|
10
|
+
actionPlanId?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* 1000
|
|
14
|
+
*/
|
|
15
|
+
desiredCapacity?: number;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* true
|
|
19
|
+
*/
|
|
20
|
+
enabled?: string;
|
|
21
|
+
static names(): { [key: string]: string } {
|
|
22
|
+
return {
|
|
23
|
+
actionPlanId: 'ActionPlanId',
|
|
24
|
+
desiredCapacity: 'DesiredCapacity',
|
|
25
|
+
enabled: 'Enabled',
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
static types(): { [key: string]: any } {
|
|
30
|
+
return {
|
|
31
|
+
actionPlanId: 'string',
|
|
32
|
+
desiredCapacity: 'number',
|
|
33
|
+
enabled: 'string',
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
validate() {
|
|
38
|
+
super.validate();
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
constructor(map?: { [key: string]: any }) {
|
|
42
|
+
super(map);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { UpdateActionPlanResponseBody } from "./UpdateActionPlanResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class UpdateActionPlanResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: UpdateActionPlanResponseBody;
|
|
10
|
+
static names(): { [key: string]: string } {
|
|
11
|
+
return {
|
|
12
|
+
headers: 'headers',
|
|
13
|
+
statusCode: 'statusCode',
|
|
14
|
+
body: 'body',
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
static types(): { [key: string]: any } {
|
|
19
|
+
return {
|
|
20
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21
|
+
statusCode: 'number',
|
|
22
|
+
body: UpdateActionPlanResponseBody,
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
validate() {
|
|
27
|
+
if(this.headers) {
|
|
28
|
+
$dara.Model.validateMap(this.headers);
|
|
29
|
+
}
|
|
30
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
31
|
+
(this.body as any).validate();
|
|
32
|
+
}
|
|
33
|
+
super.validate();
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
constructor(map?: { [key: string]: any }) {
|
|
37
|
+
super(map);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class UpdateActionPlanResponseBody extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* 04F0F334-1335-436C-A1D7-6C044FE7****
|
|
9
|
+
*/
|
|
10
|
+
requestId?: string;
|
|
11
|
+
static names(): { [key: string]: string } {
|
|
12
|
+
return {
|
|
13
|
+
requestId: 'RequestId',
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
static types(): { [key: string]: any } {
|
|
18
|
+
return {
|
|
19
|
+
requestId: 'string',
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
validate() {
|
|
24
|
+
super.validate();
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
constructor(map?: { [key: string]: any }) {
|
|
28
|
+
super(map);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
package/src/models/model.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export { AddImageRequestContainerImageSpecRegistryCredential } from './AddImageRequest';
|
|
2
2
|
export { AddImageRequestContainerImageSpec } from './AddImageRequest';
|
|
3
3
|
export { AddImageRequestVMImageSpec } from './AddImageRequest';
|
|
4
|
+
export { CreateActionPlanRequestRegions } from './CreateActionPlanRequest';
|
|
5
|
+
export { CreateActionPlanRequestResources } from './CreateActionPlanRequest';
|
|
4
6
|
export { CreateJobRequestDependencyPolicyJobDependency } from './CreateJobRequest';
|
|
5
7
|
export { CreateJobRequestDependencyPolicy } from './CreateJobRequest';
|
|
6
8
|
export { CreateJobRequestDeploymentPolicyNetwork } from './CreateJobRequest';
|
|
@@ -26,6 +28,8 @@ export { CreatePoolRequestResourceLimits } from './CreatePoolRequest';
|
|
|
26
28
|
export { DeleteJobsRequestJobSpecTaskSpec } from './DeleteJobsRequest';
|
|
27
29
|
export { DeleteJobsRequestJobSpec } from './DeleteJobsRequest';
|
|
28
30
|
export { DescribeJobMetricLastResponseBodyMetrics } from './DescribeJobMetricLastResponseBody';
|
|
31
|
+
export { GetActionPlanResponseBodyRegions } from './GetActionPlanResponseBody';
|
|
32
|
+
export { GetActionPlanResponseBodyResources } from './GetActionPlanResponseBody';
|
|
29
33
|
export { GetAppVersionsResponseBodyAppVersions } from './GetAppVersionsResponseBody';
|
|
30
34
|
export { GetImageResponseBodyImageAdditionalRegionsInfo } from './GetImageResponseBody';
|
|
31
35
|
export { GetImageResponseBodyImageContainerImageSpecRegistryCredential } from './GetImageResponseBody';
|
|
@@ -51,6 +55,9 @@ export { GetJobResponseBodyJobInfoTasksTaskSpec } from './GetJobResponseBody';
|
|
|
51
55
|
export { GetJobResponseBodyJobInfoTasks } from './GetJobResponseBody';
|
|
52
56
|
export { GetJobResponseBodyJobInfo } from './GetJobResponseBody';
|
|
53
57
|
export { GetPoolResponseBodyPoolInfo } from './GetPoolResponseBody';
|
|
58
|
+
export { ListActionPlanActivitiesResponseBodyActionPlanActivitiesJobs } from './ListActionPlanActivitiesResponseBody';
|
|
59
|
+
export { ListActionPlanActivitiesResponseBodyActionPlanActivities } from './ListActionPlanActivitiesResponseBody';
|
|
60
|
+
export { ListActionPlansResponseBodyActionPlans } from './ListActionPlansResponseBody';
|
|
54
61
|
export { ListExecutorsRequestFilter } from './ListExecutorsRequest';
|
|
55
62
|
export { ListExecutorsResponseBodyExecutorsResourceDisks } from './ListExecutorsResponseBody';
|
|
56
63
|
export { ListExecutorsResponseBodyExecutorsResource } from './ListExecutorsResponseBody';
|
|
@@ -75,6 +82,10 @@ export { AddImageRequest } from './AddImageRequest';
|
|
|
75
82
|
export { AddImageShrinkRequest } from './AddImageShrinkRequest';
|
|
76
83
|
export { AddImageResponseBody } from './AddImageResponseBody';
|
|
77
84
|
export { AddImageResponse } from './AddImageResponse';
|
|
85
|
+
export { CreateActionPlanRequest } from './CreateActionPlanRequest';
|
|
86
|
+
export { CreateActionPlanShrinkRequest } from './CreateActionPlanShrinkRequest';
|
|
87
|
+
export { CreateActionPlanResponseBody } from './CreateActionPlanResponseBody';
|
|
88
|
+
export { CreateActionPlanResponse } from './CreateActionPlanResponse';
|
|
78
89
|
export { CreateJobRequest } from './CreateJobRequest';
|
|
79
90
|
export { CreateJobShrinkRequest } from './CreateJobShrinkRequest';
|
|
80
91
|
export { CreateJobResponseBody } from './CreateJobResponseBody';
|
|
@@ -83,6 +94,9 @@ export { CreatePoolRequest } from './CreatePoolRequest';
|
|
|
83
94
|
export { CreatePoolShrinkRequest } from './CreatePoolShrinkRequest';
|
|
84
95
|
export { CreatePoolResponseBody } from './CreatePoolResponseBody';
|
|
85
96
|
export { CreatePoolResponse } from './CreatePoolResponse';
|
|
97
|
+
export { DeleteActionPlanRequest } from './DeleteActionPlanRequest';
|
|
98
|
+
export { DeleteActionPlanResponseBody } from './DeleteActionPlanResponseBody';
|
|
99
|
+
export { DeleteActionPlanResponse } from './DeleteActionPlanResponse';
|
|
86
100
|
export { DeleteJobsRequest } from './DeleteJobsRequest';
|
|
87
101
|
export { DeleteJobsShrinkRequest } from './DeleteJobsShrinkRequest';
|
|
88
102
|
export { DeleteJobsResponseBody } from './DeleteJobsResponseBody';
|
|
@@ -98,6 +112,9 @@ export { DescribeJobMetricLastRequest } from './DescribeJobMetricLastRequest';
|
|
|
98
112
|
export { DescribeJobMetricLastShrinkRequest } from './DescribeJobMetricLastShrinkRequest';
|
|
99
113
|
export { DescribeJobMetricLastResponseBody } from './DescribeJobMetricLastResponseBody';
|
|
100
114
|
export { DescribeJobMetricLastResponse } from './DescribeJobMetricLastResponse';
|
|
115
|
+
export { GetActionPlanRequest } from './GetActionPlanRequest';
|
|
116
|
+
export { GetActionPlanResponseBody } from './GetActionPlanResponseBody';
|
|
117
|
+
export { GetActionPlanResponse } from './GetActionPlanResponse';
|
|
101
118
|
export { GetAppVersionsRequest } from './GetAppVersionsRequest';
|
|
102
119
|
export { GetAppVersionsResponseBody } from './GetAppVersionsResponseBody';
|
|
103
120
|
export { GetAppVersionsResponse } from './GetAppVersionsResponse';
|
|
@@ -111,6 +128,13 @@ export { GetJobResponse } from './GetJobResponse';
|
|
|
111
128
|
export { GetPoolRequest } from './GetPoolRequest';
|
|
112
129
|
export { GetPoolResponseBody } from './GetPoolResponseBody';
|
|
113
130
|
export { GetPoolResponse } from './GetPoolResponse';
|
|
131
|
+
export { ListActionPlanActivitiesRequest } from './ListActionPlanActivitiesRequest';
|
|
132
|
+
export { ListActionPlanActivitiesResponseBody } from './ListActionPlanActivitiesResponseBody';
|
|
133
|
+
export { ListActionPlanActivitiesResponse } from './ListActionPlanActivitiesResponse';
|
|
134
|
+
export { ListActionPlansRequest } from './ListActionPlansRequest';
|
|
135
|
+
export { ListActionPlansShrinkRequest } from './ListActionPlansShrinkRequest';
|
|
136
|
+
export { ListActionPlansResponseBody } from './ListActionPlansResponseBody';
|
|
137
|
+
export { ListActionPlansResponse } from './ListActionPlansResponse';
|
|
114
138
|
export { ListExecutorsRequest } from './ListExecutorsRequest';
|
|
115
139
|
export { ListExecutorsShrinkRequest } from './ListExecutorsShrinkRequest';
|
|
116
140
|
export { ListExecutorsResponseBody } from './ListExecutorsResponseBody';
|
|
@@ -136,12 +160,19 @@ export { ListTagResourcesResponse } from './ListTagResourcesResponse';
|
|
|
136
160
|
export { RemoveImageRequest } from './RemoveImageRequest';
|
|
137
161
|
export { RemoveImageResponseBody } from './RemoveImageResponseBody';
|
|
138
162
|
export { RemoveImageResponse } from './RemoveImageResponse';
|
|
163
|
+
export { SynchronizeAppRequest } from './SynchronizeAppRequest';
|
|
164
|
+
export { SynchronizeAppShrinkRequest } from './SynchronizeAppShrinkRequest';
|
|
165
|
+
export { SynchronizeAppResponseBody } from './SynchronizeAppResponseBody';
|
|
166
|
+
export { SynchronizeAppResponse } from './SynchronizeAppResponse';
|
|
139
167
|
export { TagResourcesRequest } from './TagResourcesRequest';
|
|
140
168
|
export { TagResourcesResponseBody } from './TagResourcesResponseBody';
|
|
141
169
|
export { TagResourcesResponse } from './TagResourcesResponse';
|
|
142
170
|
export { UnTagResourcesRequest } from './UnTagResourcesRequest';
|
|
143
171
|
export { UnTagResourcesResponseBody } from './UnTagResourcesResponseBody';
|
|
144
172
|
export { UnTagResourcesResponse } from './UnTagResourcesResponse';
|
|
173
|
+
export { UpdateActionPlanRequest } from './UpdateActionPlanRequest';
|
|
174
|
+
export { UpdateActionPlanResponseBody } from './UpdateActionPlanResponseBody';
|
|
175
|
+
export { UpdateActionPlanResponse } from './UpdateActionPlanResponse';
|
|
145
176
|
export { UpdatePoolRequest } from './UpdatePoolRequest';
|
|
146
177
|
export { UpdatePoolShrinkRequest } from './UpdatePoolShrinkRequest';
|
|
147
178
|
export { UpdatePoolResponseBody } from './UpdatePoolResponseBody';
|