@alicloud/eas20210701 7.5.6 → 7.6.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 +144 -0
- package/dist/client.js +242 -0
- package/dist/client.js.map +1 -1
- package/dist/models/CreateServiceRolloutRequest.d.ts +59 -0
- package/dist/models/CreateServiceRolloutRequest.js +108 -0
- package/dist/models/CreateServiceRolloutRequest.js.map +1 -0
- package/dist/models/CreateServiceRolloutResponse.d.ts +19 -0
- package/dist/models/CreateServiceRolloutResponse.js +69 -0
- package/dist/models/CreateServiceRolloutResponse.js.map +1 -0
- package/dist/models/CreateServiceRolloutResponseBody.d.ts +23 -0
- package/dist/models/CreateServiceRolloutResponseBody.js +60 -0
- package/dist/models/CreateServiceRolloutResponseBody.js.map +1 -0
- package/dist/models/DeleteServiceRolloutRequest.d.ts +13 -0
- package/dist/models/DeleteServiceRolloutRequest.js +54 -0
- package/dist/models/DeleteServiceRolloutRequest.js.map +1 -0
- package/dist/models/DeleteServiceRolloutResponse.d.ts +19 -0
- package/dist/models/DeleteServiceRolloutResponse.js +69 -0
- package/dist/models/DeleteServiceRolloutResponse.js.map +1 -0
- package/dist/models/DeleteServiceRolloutResponseBody.d.ts +23 -0
- package/dist/models/DeleteServiceRolloutResponseBody.js +60 -0
- package/dist/models/DeleteServiceRolloutResponseBody.js.map +1 -0
- package/dist/models/DescribeServiceRolloutRequest.d.ts +13 -0
- package/dist/models/DescribeServiceRolloutRequest.js +54 -0
- package/dist/models/DescribeServiceRolloutRequest.js.map +1 -0
- package/dist/models/DescribeServiceRolloutResponse.d.ts +19 -0
- package/dist/models/DescribeServiceRolloutResponse.js +69 -0
- package/dist/models/DescribeServiceRolloutResponse.js.map +1 -0
- package/dist/models/DescribeServiceRolloutResponseBody.d.ts +128 -0
- package/dist/models/DescribeServiceRolloutResponseBody.js +186 -0
- package/dist/models/DescribeServiceRolloutResponseBody.js.map +1 -0
- package/dist/models/Service.d.ts +1 -0
- package/dist/models/Service.js +2 -0
- package/dist/models/Service.js.map +1 -1
- package/dist/models/UpdateServiceRolloutRequest.d.ts +59 -0
- package/dist/models/UpdateServiceRolloutRequest.js +108 -0
- package/dist/models/UpdateServiceRolloutRequest.js.map +1 -0
- package/dist/models/UpdateServiceRolloutResponse.d.ts +19 -0
- package/dist/models/UpdateServiceRolloutResponse.js +69 -0
- package/dist/models/UpdateServiceRolloutResponse.js.map +1 -0
- package/dist/models/UpdateServiceRolloutResponseBody.d.ts +23 -0
- package/dist/models/UpdateServiceRolloutResponseBody.js +60 -0
- package/dist/models/UpdateServiceRolloutResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +21 -0
- package/dist/models/model.js +51 -8
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +256 -0
- package/src/models/CreateServiceRolloutRequest.ts +104 -0
- package/src/models/CreateServiceRolloutResponse.ts +40 -0
- package/src/models/CreateServiceRolloutResponseBody.ts +38 -0
- package/src/models/DeleteServiceRolloutRequest.ts +24 -0
- package/src/models/DeleteServiceRolloutResponse.ts +40 -0
- package/src/models/DeleteServiceRolloutResponseBody.ts +38 -0
- package/src/models/DescribeServiceRolloutRequest.ts +24 -0
- package/src/models/DescribeServiceRolloutResponse.ts +40 -0
- package/src/models/DescribeServiceRolloutResponseBody.ts +224 -0
- package/src/models/Service.ts +3 -0
- package/src/models/UpdateServiceRolloutRequest.ts +104 -0
- package/src/models/UpdateServiceRolloutResponse.ts +40 -0
- package/src/models/UpdateServiceRolloutResponseBody.ts +38 -0
- package/src/models/model.ts +21 -0
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class DescribeServiceRolloutResponseBodyRolloutStatus extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* service-abc123-v1
|
|
9
|
+
*/
|
|
10
|
+
currentRevision?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* 2026/05/08 16:10:56
|
|
14
|
+
*/
|
|
15
|
+
nextBatchStartTime?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* Running
|
|
19
|
+
*/
|
|
20
|
+
phase?: string;
|
|
21
|
+
/**
|
|
22
|
+
* @example
|
|
23
|
+
* 10
|
|
24
|
+
*/
|
|
25
|
+
totalReplicas?: number;
|
|
26
|
+
/**
|
|
27
|
+
* @example
|
|
28
|
+
* service-abc123-v2
|
|
29
|
+
*/
|
|
30
|
+
updateRevision?: string;
|
|
31
|
+
/**
|
|
32
|
+
* @example
|
|
33
|
+
* 5
|
|
34
|
+
*/
|
|
35
|
+
updatedReplicas?: number;
|
|
36
|
+
static names(): { [key: string]: string } {
|
|
37
|
+
return {
|
|
38
|
+
currentRevision: 'CurrentRevision',
|
|
39
|
+
nextBatchStartTime: 'NextBatchStartTime',
|
|
40
|
+
phase: 'Phase',
|
|
41
|
+
totalReplicas: 'TotalReplicas',
|
|
42
|
+
updateRevision: 'UpdateRevision',
|
|
43
|
+
updatedReplicas: 'UpdatedReplicas',
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
static types(): { [key: string]: any } {
|
|
48
|
+
return {
|
|
49
|
+
currentRevision: 'string',
|
|
50
|
+
nextBatchStartTime: 'string',
|
|
51
|
+
phase: 'string',
|
|
52
|
+
totalReplicas: 'number',
|
|
53
|
+
updateRevision: 'string',
|
|
54
|
+
updatedReplicas: 'number',
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
validate() {
|
|
59
|
+
super.validate();
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
constructor(map?: { [key: string]: any }) {
|
|
63
|
+
super(map);
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export class DescribeServiceRolloutResponseBodyRolloutStrategyBatch extends $dara.Model {
|
|
68
|
+
/**
|
|
69
|
+
* @example
|
|
70
|
+
* 1
|
|
71
|
+
*/
|
|
72
|
+
batchSize?: string;
|
|
73
|
+
/**
|
|
74
|
+
* @example
|
|
75
|
+
* 5m
|
|
76
|
+
*/
|
|
77
|
+
interval?: string;
|
|
78
|
+
static names(): { [key: string]: string } {
|
|
79
|
+
return {
|
|
80
|
+
batchSize: 'BatchSize',
|
|
81
|
+
interval: 'Interval',
|
|
82
|
+
};
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
static types(): { [key: string]: any } {
|
|
86
|
+
return {
|
|
87
|
+
batchSize: 'string',
|
|
88
|
+
interval: 'string',
|
|
89
|
+
};
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
validate() {
|
|
93
|
+
super.validate();
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
constructor(map?: { [key: string]: any }) {
|
|
97
|
+
super(map);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
export class DescribeServiceRolloutResponseBodyRolloutStrategyPartition extends $dara.Model {
|
|
102
|
+
/**
|
|
103
|
+
* @example
|
|
104
|
+
* 50%
|
|
105
|
+
*/
|
|
106
|
+
partition?: string;
|
|
107
|
+
static names(): { [key: string]: string } {
|
|
108
|
+
return {
|
|
109
|
+
partition: 'Partition',
|
|
110
|
+
};
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
static types(): { [key: string]: any } {
|
|
114
|
+
return {
|
|
115
|
+
partition: 'string',
|
|
116
|
+
};
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
validate() {
|
|
120
|
+
super.validate();
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
constructor(map?: { [key: string]: any }) {
|
|
124
|
+
super(map);
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
export class DescribeServiceRolloutResponseBodyRolloutStrategy extends $dara.Model {
|
|
129
|
+
batch?: DescribeServiceRolloutResponseBodyRolloutStrategyBatch;
|
|
130
|
+
partition?: DescribeServiceRolloutResponseBodyRolloutStrategyPartition;
|
|
131
|
+
static names(): { [key: string]: string } {
|
|
132
|
+
return {
|
|
133
|
+
batch: 'Batch',
|
|
134
|
+
partition: 'Partition',
|
|
135
|
+
};
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
static types(): { [key: string]: any } {
|
|
139
|
+
return {
|
|
140
|
+
batch: DescribeServiceRolloutResponseBodyRolloutStrategyBatch,
|
|
141
|
+
partition: DescribeServiceRolloutResponseBodyRolloutStrategyPartition,
|
|
142
|
+
};
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
validate() {
|
|
146
|
+
if(this.batch && typeof (this.batch as any).validate === 'function') {
|
|
147
|
+
(this.batch as any).validate();
|
|
148
|
+
}
|
|
149
|
+
if(this.partition && typeof (this.partition as any).validate === 'function') {
|
|
150
|
+
(this.partition as any).validate();
|
|
151
|
+
}
|
|
152
|
+
super.validate();
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
constructor(map?: { [key: string]: any }) {
|
|
156
|
+
super(map);
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
export class DescribeServiceRolloutResponseBodyRollout extends $dara.Model {
|
|
161
|
+
status?: DescribeServiceRolloutResponseBodyRolloutStatus;
|
|
162
|
+
strategy?: DescribeServiceRolloutResponseBodyRolloutStrategy;
|
|
163
|
+
static names(): { [key: string]: string } {
|
|
164
|
+
return {
|
|
165
|
+
status: 'Status',
|
|
166
|
+
strategy: 'Strategy',
|
|
167
|
+
};
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
static types(): { [key: string]: any } {
|
|
171
|
+
return {
|
|
172
|
+
status: DescribeServiceRolloutResponseBodyRolloutStatus,
|
|
173
|
+
strategy: DescribeServiceRolloutResponseBodyRolloutStrategy,
|
|
174
|
+
};
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
validate() {
|
|
178
|
+
if(this.status && typeof (this.status as any).validate === 'function') {
|
|
179
|
+
(this.status as any).validate();
|
|
180
|
+
}
|
|
181
|
+
if(this.strategy && typeof (this.strategy as any).validate === 'function') {
|
|
182
|
+
(this.strategy as any).validate();
|
|
183
|
+
}
|
|
184
|
+
super.validate();
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
constructor(map?: { [key: string]: any }) {
|
|
188
|
+
super(map);
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
export class DescribeServiceRolloutResponseBody extends $dara.Model {
|
|
193
|
+
/**
|
|
194
|
+
* @example
|
|
195
|
+
* 40325405-579C-4D82****
|
|
196
|
+
*/
|
|
197
|
+
requestId?: string;
|
|
198
|
+
rollout?: DescribeServiceRolloutResponseBodyRollout;
|
|
199
|
+
static names(): { [key: string]: string } {
|
|
200
|
+
return {
|
|
201
|
+
requestId: 'RequestId',
|
|
202
|
+
rollout: 'Rollout',
|
|
203
|
+
};
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
static types(): { [key: string]: any } {
|
|
207
|
+
return {
|
|
208
|
+
requestId: 'string',
|
|
209
|
+
rollout: DescribeServiceRolloutResponseBodyRollout,
|
|
210
|
+
};
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
validate() {
|
|
214
|
+
if(this.rollout && typeof (this.rollout as any).validate === 'function') {
|
|
215
|
+
(this.rollout as any).validate();
|
|
216
|
+
}
|
|
217
|
+
super.validate();
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
constructor(map?: { [key: string]: any }) {
|
|
221
|
+
super(map);
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
|
package/src/models/Service.ts
CHANGED
|
@@ -463,6 +463,7 @@ export class Service extends $dara.Model {
|
|
|
463
463
|
* 100
|
|
464
464
|
*/
|
|
465
465
|
weight?: number;
|
|
466
|
+
workloadType?: string;
|
|
466
467
|
/**
|
|
467
468
|
* @remarks
|
|
468
469
|
* The ID of the workspace to which the service belongs.
|
|
@@ -524,6 +525,7 @@ export class Service extends $dara.Model {
|
|
|
524
525
|
trafficState: 'TrafficState',
|
|
525
526
|
updateTime: 'UpdateTime',
|
|
526
527
|
weight: 'Weight',
|
|
528
|
+
workloadType: 'WorkloadType',
|
|
527
529
|
workspaceId: 'WorkspaceId',
|
|
528
530
|
};
|
|
529
531
|
}
|
|
@@ -581,6 +583,7 @@ export class Service extends $dara.Model {
|
|
|
581
583
|
trafficState: 'string',
|
|
582
584
|
updateTime: 'string',
|
|
583
585
|
weight: 'number',
|
|
586
|
+
workloadType: 'string',
|
|
584
587
|
workspaceId: 'string',
|
|
585
588
|
};
|
|
586
589
|
}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class UpdateServiceRolloutRequestBatch extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* 25%
|
|
9
|
+
*/
|
|
10
|
+
batchSize?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* 60s
|
|
14
|
+
*/
|
|
15
|
+
interval?: string;
|
|
16
|
+
static names(): { [key: string]: string } {
|
|
17
|
+
return {
|
|
18
|
+
batchSize: 'BatchSize',
|
|
19
|
+
interval: 'Interval',
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
static types(): { [key: string]: any } {
|
|
24
|
+
return {
|
|
25
|
+
batchSize: 'string',
|
|
26
|
+
interval: 'string',
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
validate() {
|
|
31
|
+
super.validate();
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
constructor(map?: { [key: string]: any }) {
|
|
35
|
+
super(map);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export class UpdateServiceRolloutRequestPartition extends $dara.Model {
|
|
40
|
+
/**
|
|
41
|
+
* @example
|
|
42
|
+
* 30%
|
|
43
|
+
*/
|
|
44
|
+
partition?: string;
|
|
45
|
+
static names(): { [key: string]: string } {
|
|
46
|
+
return {
|
|
47
|
+
partition: 'Partition',
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
static types(): { [key: string]: any } {
|
|
52
|
+
return {
|
|
53
|
+
partition: 'string',
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
validate() {
|
|
58
|
+
super.validate();
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
constructor(map?: { [key: string]: any }) {
|
|
62
|
+
super(map);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
export class UpdateServiceRolloutRequest extends $dara.Model {
|
|
67
|
+
batch?: UpdateServiceRolloutRequestBatch;
|
|
68
|
+
partition?: UpdateServiceRolloutRequestPartition;
|
|
69
|
+
/**
|
|
70
|
+
* @example
|
|
71
|
+
* true
|
|
72
|
+
*/
|
|
73
|
+
paused?: boolean;
|
|
74
|
+
static names(): { [key: string]: string } {
|
|
75
|
+
return {
|
|
76
|
+
batch: 'Batch',
|
|
77
|
+
partition: 'Partition',
|
|
78
|
+
paused: 'Paused',
|
|
79
|
+
};
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
static types(): { [key: string]: any } {
|
|
83
|
+
return {
|
|
84
|
+
batch: UpdateServiceRolloutRequestBatch,
|
|
85
|
+
partition: UpdateServiceRolloutRequestPartition,
|
|
86
|
+
paused: 'boolean',
|
|
87
|
+
};
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
validate() {
|
|
91
|
+
if(this.batch && typeof (this.batch as any).validate === 'function') {
|
|
92
|
+
(this.batch as any).validate();
|
|
93
|
+
}
|
|
94
|
+
if(this.partition && typeof (this.partition as any).validate === 'function') {
|
|
95
|
+
(this.partition as any).validate();
|
|
96
|
+
}
|
|
97
|
+
super.validate();
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
constructor(map?: { [key: string]: any }) {
|
|
101
|
+
super(map);
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { UpdateServiceRolloutResponseBody } from "./UpdateServiceRolloutResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class UpdateServiceRolloutResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: UpdateServiceRolloutResponseBody;
|
|
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: UpdateServiceRolloutResponseBody,
|
|
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,38 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class UpdateServiceRolloutResponseBody extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* Rollout updated successfully
|
|
9
|
+
*/
|
|
10
|
+
message?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* 40325405-579C-4D82****
|
|
14
|
+
*/
|
|
15
|
+
requestId?: string;
|
|
16
|
+
static names(): { [key: string]: string } {
|
|
17
|
+
return {
|
|
18
|
+
message: 'Message',
|
|
19
|
+
requestId: 'RequestId',
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
static types(): { [key: string]: any } {
|
|
24
|
+
return {
|
|
25
|
+
message: 'string',
|
|
26
|
+
requestId: 'string',
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
validate() {
|
|
31
|
+
super.validate();
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
constructor(map?: { [key: string]: any }) {
|
|
35
|
+
super(map);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
package/src/models/model.ts
CHANGED
|
@@ -12,6 +12,8 @@ export { CreateServiceAutoScalerRequestBehaviorScaleUp } from './CreateServiceAu
|
|
|
12
12
|
export { CreateServiceAutoScalerRequestBehavior } from './CreateServiceAutoScalerRequest';
|
|
13
13
|
export { CreateServiceAutoScalerRequestScaleStrategies } from './CreateServiceAutoScalerRequest';
|
|
14
14
|
export { CreateServiceCronScalerRequestScaleJobs } from './CreateServiceCronScalerRequest';
|
|
15
|
+
export { CreateServiceRolloutRequestBatch } from './CreateServiceRolloutRequest';
|
|
16
|
+
export { CreateServiceRolloutRequestPartition } from './CreateServiceRolloutRequest';
|
|
15
17
|
export { CreateVirtualResourceRequestResources } from './CreateVirtualResourceRequest';
|
|
16
18
|
export { DeleteAclPolicyRequestAclPolicyList } from './DeleteAclPolicyRequest';
|
|
17
19
|
export { DeleteGatewayIntranetLinkedVpcPeerRequestPeerVpcs } from './DeleteGatewayIntranetLinkedVpcPeerRequest';
|
|
@@ -27,6 +29,11 @@ export { DescribeServiceDiagnosisResponseBodyDiagnosisList } from './DescribeSer
|
|
|
27
29
|
export { DescribeServiceEndpointsResponseBodyEndpoints } from './DescribeServiceEndpointsResponseBody';
|
|
28
30
|
export { DescribeServiceEventResponseBodyEvents } from './DescribeServiceEventResponseBody';
|
|
29
31
|
export { DescribeServiceInstanceDiagnosisResponseBodyDiagnosis } from './DescribeServiceInstanceDiagnosisResponseBody';
|
|
32
|
+
export { DescribeServiceRolloutResponseBodyRolloutStatus } from './DescribeServiceRolloutResponseBody';
|
|
33
|
+
export { DescribeServiceRolloutResponseBodyRolloutStrategyBatch } from './DescribeServiceRolloutResponseBody';
|
|
34
|
+
export { DescribeServiceRolloutResponseBodyRolloutStrategyPartition } from './DescribeServiceRolloutResponseBody';
|
|
35
|
+
export { DescribeServiceRolloutResponseBodyRolloutStrategy } from './DescribeServiceRolloutResponseBody';
|
|
36
|
+
export { DescribeServiceRolloutResponseBodyRollout } from './DescribeServiceRolloutResponseBody';
|
|
30
37
|
export { DescribeSpotDiscountHistoryResponseBodySpotDiscounts } from './DescribeSpotDiscountHistoryResponseBody';
|
|
31
38
|
export { DescribeVirtualResourceResponseBodyResources } from './DescribeVirtualResourceResponseBody';
|
|
32
39
|
export { DetachGatewayDomainRequestCustomDomain } from './DetachGatewayDomainRequest';
|
|
@@ -54,6 +61,8 @@ export { UpdateServiceAutoScalerRequestBehaviorScaleUp } from './UpdateServiceAu
|
|
|
54
61
|
export { UpdateServiceAutoScalerRequestBehavior } from './UpdateServiceAutoScalerRequest';
|
|
55
62
|
export { UpdateServiceAutoScalerRequestScaleStrategies } from './UpdateServiceAutoScalerRequest';
|
|
56
63
|
export { UpdateServiceCronScalerRequestScaleJobs } from './UpdateServiceCronScalerRequest';
|
|
64
|
+
export { UpdateServiceRolloutRequestBatch } from './UpdateServiceRolloutRequest';
|
|
65
|
+
export { UpdateServiceRolloutRequestPartition } from './UpdateServiceRolloutRequest';
|
|
57
66
|
export { UpdateVirtualResourceRequestResources } from './UpdateVirtualResourceRequest';
|
|
58
67
|
export { ContainerInfo } from './ContainerInfo';
|
|
59
68
|
export { Group } from './Group';
|
|
@@ -121,6 +130,9 @@ export { CreateServiceInstanceTokenResponse } from './CreateServiceInstanceToken
|
|
|
121
130
|
export { CreateServiceMirrorRequest } from './CreateServiceMirrorRequest';
|
|
122
131
|
export { CreateServiceMirrorResponseBody } from './CreateServiceMirrorResponseBody';
|
|
123
132
|
export { CreateServiceMirrorResponse } from './CreateServiceMirrorResponse';
|
|
133
|
+
export { CreateServiceRolloutRequest } from './CreateServiceRolloutRequest';
|
|
134
|
+
export { CreateServiceRolloutResponseBody } from './CreateServiceRolloutResponseBody';
|
|
135
|
+
export { CreateServiceRolloutResponse } from './CreateServiceRolloutResponse';
|
|
124
136
|
export { CreateVirtualResourceRequest } from './CreateVirtualResourceRequest';
|
|
125
137
|
export { CreateVirtualResourceResponseBody } from './CreateVirtualResourceResponseBody';
|
|
126
138
|
export { CreateVirtualResourceResponse } from './CreateVirtualResourceResponse';
|
|
@@ -183,6 +195,9 @@ export { DeleteServiceLabelResponse } from './DeleteServiceLabelResponse';
|
|
|
183
195
|
export { DeleteServiceMirrorRequest } from './DeleteServiceMirrorRequest';
|
|
184
196
|
export { DeleteServiceMirrorResponseBody } from './DeleteServiceMirrorResponseBody';
|
|
185
197
|
export { DeleteServiceMirrorResponse } from './DeleteServiceMirrorResponse';
|
|
198
|
+
export { DeleteServiceRolloutRequest } from './DeleteServiceRolloutRequest';
|
|
199
|
+
export { DeleteServiceRolloutResponseBody } from './DeleteServiceRolloutResponseBody';
|
|
200
|
+
export { DeleteServiceRolloutResponse } from './DeleteServiceRolloutResponse';
|
|
186
201
|
export { DeleteVirtualResourceRequest } from './DeleteVirtualResourceRequest';
|
|
187
202
|
export { DeleteVirtualResourceResponseBody } from './DeleteVirtualResourceResponseBody';
|
|
188
203
|
export { DeleteVirtualResourceResponse } from './DeleteVirtualResourceResponse';
|
|
@@ -241,6 +256,9 @@ export { DescribeServiceLogResponse } from './DescribeServiceLogResponse';
|
|
|
241
256
|
export { DescribeServiceMirrorRequest } from './DescribeServiceMirrorRequest';
|
|
242
257
|
export { DescribeServiceMirrorResponseBody } from './DescribeServiceMirrorResponseBody';
|
|
243
258
|
export { DescribeServiceMirrorResponse } from './DescribeServiceMirrorResponse';
|
|
259
|
+
export { DescribeServiceRolloutRequest } from './DescribeServiceRolloutRequest';
|
|
260
|
+
export { DescribeServiceRolloutResponseBody } from './DescribeServiceRolloutResponseBody';
|
|
261
|
+
export { DescribeServiceRolloutResponse } from './DescribeServiceRolloutResponse';
|
|
244
262
|
export { DescribeServiceSignedUrlRequest } from './DescribeServiceSignedUrlRequest';
|
|
245
263
|
export { DescribeServiceSignedUrlResponseBody } from './DescribeServiceSignedUrlResponseBody';
|
|
246
264
|
export { DescribeServiceSignedUrlResponse } from './DescribeServiceSignedUrlResponse';
|
|
@@ -389,6 +407,9 @@ export { UpdateServiceLabelResponse } from './UpdateServiceLabelResponse';
|
|
|
389
407
|
export { UpdateServiceMirrorRequest } from './UpdateServiceMirrorRequest';
|
|
390
408
|
export { UpdateServiceMirrorResponseBody } from './UpdateServiceMirrorResponseBody';
|
|
391
409
|
export { UpdateServiceMirrorResponse } from './UpdateServiceMirrorResponse';
|
|
410
|
+
export { UpdateServiceRolloutRequest } from './UpdateServiceRolloutRequest';
|
|
411
|
+
export { UpdateServiceRolloutResponseBody } from './UpdateServiceRolloutResponseBody';
|
|
412
|
+
export { UpdateServiceRolloutResponse } from './UpdateServiceRolloutResponse';
|
|
392
413
|
export { UpdateServiceSafetyLockRequest } from './UpdateServiceSafetyLockRequest';
|
|
393
414
|
export { UpdateServiceSafetyLockResponseBody } from './UpdateServiceSafetyLockResponseBody';
|
|
394
415
|
export { UpdateServiceSafetyLockResponse } from './UpdateServiceSafetyLockResponse';
|