@alicloud/sae20190506 2.7.1 → 2.8.1
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 +18 -0
- package/dist/client.js +48 -0
- package/dist/client.js.map +1 -1
- package/dist/models/BatchRestartApplicationsRequest.d.ts +29 -0
- package/dist/models/BatchRestartApplicationsRequest.js +60 -0
- package/dist/models/BatchRestartApplicationsRequest.js.map +1 -0
- package/dist/models/BatchRestartApplicationsResponse.d.ts +19 -0
- package/dist/models/BatchRestartApplicationsResponse.js +69 -0
- package/dist/models/BatchRestartApplicationsResponse.js.map +1 -0
- package/dist/models/BatchRestartApplicationsResponseBody.d.ts +57 -0
- package/dist/models/BatchRestartApplicationsResponseBody.js +92 -0
- package/dist/models/BatchRestartApplicationsResponseBody.js.map +1 -0
- package/dist/models/DeployApplicationRequest.d.ts +1 -0
- package/dist/models/DeployApplicationRequest.js +2 -0
- package/dist/models/DeployApplicationRequest.js.map +1 -1
- package/dist/models/DeployApplicationShrinkRequest.d.ts +1 -0
- package/dist/models/DeployApplicationShrinkRequest.js +2 -0
- package/dist/models/DeployApplicationShrinkRequest.js.map +1 -1
- package/dist/models/DescribeApplicationConfigResponseBody.d.ts +1 -0
- package/dist/models/DescribeApplicationConfigResponseBody.js +2 -0
- package/dist/models/DescribeApplicationConfigResponseBody.js.map +1 -1
- package/dist/models/model.d.ts +4 -0
- package/dist/models/model.js +26 -18
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +53 -0
- package/src/models/BatchRestartApplicationsRequest.ts +44 -0
- package/src/models/BatchRestartApplicationsResponse.ts +40 -0
- package/src/models/BatchRestartApplicationsResponseBody.ts +95 -0
- package/src/models/DeployApplicationRequest.ts +3 -0
- package/src/models/DeployApplicationShrinkRequest.ts +3 -0
- package/src/models/DescribeApplicationConfigResponseBody.ts +3 -0
- package/src/models/model.ts +4 -0
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class BatchRestartApplicationsResponseBodyData extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* 01db03d3-3ee9-48b3-b3d0-dfce2d88****
|
|
9
|
+
*/
|
|
10
|
+
changeOrderId?: string;
|
|
11
|
+
static names(): { [key: string]: string } {
|
|
12
|
+
return {
|
|
13
|
+
changeOrderId: 'ChangeOrderId',
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
static types(): { [key: string]: any } {
|
|
18
|
+
return {
|
|
19
|
+
changeOrderId: 'string',
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
validate() {
|
|
24
|
+
super.validate();
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
constructor(map?: { [key: string]: any }) {
|
|
28
|
+
super(map);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export class BatchRestartApplicationsResponseBody extends $dara.Model {
|
|
33
|
+
/**
|
|
34
|
+
* @example
|
|
35
|
+
* 200
|
|
36
|
+
*/
|
|
37
|
+
code?: string;
|
|
38
|
+
data?: BatchRestartApplicationsResponseBodyData;
|
|
39
|
+
errorCode?: string;
|
|
40
|
+
/**
|
|
41
|
+
* @example
|
|
42
|
+
* success
|
|
43
|
+
*/
|
|
44
|
+
message?: string;
|
|
45
|
+
/**
|
|
46
|
+
* @example
|
|
47
|
+
* 91F93257-7A4A-4BD3-9A7E-2F6EAE6D****
|
|
48
|
+
*/
|
|
49
|
+
requestId?: string;
|
|
50
|
+
/**
|
|
51
|
+
* @example
|
|
52
|
+
* true
|
|
53
|
+
*/
|
|
54
|
+
success?: boolean;
|
|
55
|
+
/**
|
|
56
|
+
* @example
|
|
57
|
+
* 0a98a02315955564772843261e****
|
|
58
|
+
*/
|
|
59
|
+
traceId?: string;
|
|
60
|
+
static names(): { [key: string]: string } {
|
|
61
|
+
return {
|
|
62
|
+
code: 'Code',
|
|
63
|
+
data: 'Data',
|
|
64
|
+
errorCode: 'ErrorCode',
|
|
65
|
+
message: 'Message',
|
|
66
|
+
requestId: 'RequestId',
|
|
67
|
+
success: 'Success',
|
|
68
|
+
traceId: 'TraceId',
|
|
69
|
+
};
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
static types(): { [key: string]: any } {
|
|
73
|
+
return {
|
|
74
|
+
code: 'string',
|
|
75
|
+
data: BatchRestartApplicationsResponseBodyData,
|
|
76
|
+
errorCode: 'string',
|
|
77
|
+
message: 'string',
|
|
78
|
+
requestId: 'string',
|
|
79
|
+
success: 'boolean',
|
|
80
|
+
traceId: 'string',
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
validate() {
|
|
85
|
+
if(this.data && typeof (this.data as any).validate === 'function') {
|
|
86
|
+
(this.data as any).validate();
|
|
87
|
+
}
|
|
88
|
+
super.validate();
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
constructor(map?: { [key: string]: any }) {
|
|
92
|
+
super(map);
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
@@ -21,6 +21,7 @@ export class DeployApplicationRequest extends $dara.Model {
|
|
|
21
21
|
* cri-xxxxxx
|
|
22
22
|
*/
|
|
23
23
|
acrInstanceId?: string;
|
|
24
|
+
albIngressReadinessGate?: string;
|
|
24
25
|
/**
|
|
25
26
|
* @remarks
|
|
26
27
|
* The ID of the application.
|
|
@@ -885,6 +886,7 @@ export class DeployApplicationRequest extends $dara.Model {
|
|
|
885
886
|
return {
|
|
886
887
|
acrAssumeRoleArn: 'AcrAssumeRoleArn',
|
|
887
888
|
acrInstanceId: 'AcrInstanceId',
|
|
889
|
+
albIngressReadinessGate: 'AlbIngressReadinessGate',
|
|
888
890
|
appId: 'AppId',
|
|
889
891
|
associateEip: 'AssociateEip',
|
|
890
892
|
autoEnableApplicationScalingRule: 'AutoEnableApplicationScalingRule',
|
|
@@ -967,6 +969,7 @@ export class DeployApplicationRequest extends $dara.Model {
|
|
|
967
969
|
return {
|
|
968
970
|
acrAssumeRoleArn: 'string',
|
|
969
971
|
acrInstanceId: 'string',
|
|
972
|
+
albIngressReadinessGate: 'string',
|
|
970
973
|
appId: 'string',
|
|
971
974
|
associateEip: 'boolean',
|
|
972
975
|
autoEnableApplicationScalingRule: 'boolean',
|
|
@@ -19,6 +19,7 @@ export class DeployApplicationShrinkRequest extends $dara.Model {
|
|
|
19
19
|
* cri-xxxxxx
|
|
20
20
|
*/
|
|
21
21
|
acrInstanceId?: string;
|
|
22
|
+
albIngressReadinessGate?: string;
|
|
22
23
|
/**
|
|
23
24
|
* @remarks
|
|
24
25
|
* The ID of the application.
|
|
@@ -883,6 +884,7 @@ export class DeployApplicationShrinkRequest extends $dara.Model {
|
|
|
883
884
|
return {
|
|
884
885
|
acrAssumeRoleArn: 'AcrAssumeRoleArn',
|
|
885
886
|
acrInstanceId: 'AcrInstanceId',
|
|
887
|
+
albIngressReadinessGate: 'AlbIngressReadinessGate',
|
|
886
888
|
appId: 'AppId',
|
|
887
889
|
associateEip: 'AssociateEip',
|
|
888
890
|
autoEnableApplicationScalingRule: 'AutoEnableApplicationScalingRule',
|
|
@@ -965,6 +967,7 @@ export class DeployApplicationShrinkRequest extends $dara.Model {
|
|
|
965
967
|
return {
|
|
966
968
|
acrAssumeRoleArn: 'string',
|
|
967
969
|
acrInstanceId: 'string',
|
|
970
|
+
albIngressReadinessGate: 'string',
|
|
968
971
|
appId: 'string',
|
|
969
972
|
associateEip: 'boolean',
|
|
970
973
|
autoEnableApplicationScalingRule: 'boolean',
|
|
@@ -755,6 +755,7 @@ export class DescribeApplicationConfigResponseBodyData extends $dara.Model {
|
|
|
755
755
|
* cri-xxxxxx
|
|
756
756
|
*/
|
|
757
757
|
acrInstanceId?: string;
|
|
758
|
+
albIngressReadinessGate?: string;
|
|
758
759
|
/**
|
|
759
760
|
* @remarks
|
|
760
761
|
* The description of the application.
|
|
@@ -1615,6 +1616,7 @@ export class DescribeApplicationConfigResponseBodyData extends $dara.Model {
|
|
|
1615
1616
|
return {
|
|
1616
1617
|
acrAssumeRoleArn: 'AcrAssumeRoleArn',
|
|
1617
1618
|
acrInstanceId: 'AcrInstanceId',
|
|
1619
|
+
albIngressReadinessGate: 'AlbIngressReadinessGate',
|
|
1618
1620
|
appDescription: 'AppDescription',
|
|
1619
1621
|
appId: 'AppId',
|
|
1620
1622
|
appName: 'AppName',
|
|
@@ -1713,6 +1715,7 @@ export class DescribeApplicationConfigResponseBodyData extends $dara.Model {
|
|
|
1713
1715
|
return {
|
|
1714
1716
|
acrAssumeRoleArn: 'string',
|
|
1715
1717
|
acrInstanceId: 'string',
|
|
1718
|
+
albIngressReadinessGate: 'string',
|
|
1716
1719
|
appDescription: 'string',
|
|
1717
1720
|
appId: 'string',
|
|
1718
1721
|
appName: 'string',
|
package/src/models/model.ts
CHANGED
|
@@ -41,6 +41,7 @@ export { SourceCodeAccountOrganizations } from './SourceCodeAccount';
|
|
|
41
41
|
export { SubmenuItems } from './Submenu';
|
|
42
42
|
export { AbortAndRollbackChangeOrderResponseBodyData } from './AbortAndRollbackChangeOrderResponseBody';
|
|
43
43
|
export { AbortChangeOrderResponseBodyData } from './AbortChangeOrderResponseBody';
|
|
44
|
+
export { BatchRestartApplicationsResponseBodyData } from './BatchRestartApplicationsResponseBody';
|
|
44
45
|
export { BatchStartApplicationsResponseBodyData } from './BatchStartApplicationsResponseBody';
|
|
45
46
|
export { BatchStopApplicationsResponseBodyData } from './BatchStopApplicationsResponseBody';
|
|
46
47
|
export { BindNlbResponseBodyData } from './BindNlbResponseBody';
|
|
@@ -445,6 +446,9 @@ export { AbortAndRollbackChangeOrderResponse } from './AbortAndRollbackChangeOrd
|
|
|
445
446
|
export { AbortChangeOrderRequest } from './AbortChangeOrderRequest';
|
|
446
447
|
export { AbortChangeOrderResponseBody } from './AbortChangeOrderResponseBody';
|
|
447
448
|
export { AbortChangeOrderResponse } from './AbortChangeOrderResponse';
|
|
449
|
+
export { BatchRestartApplicationsRequest } from './BatchRestartApplicationsRequest';
|
|
450
|
+
export { BatchRestartApplicationsResponseBody } from './BatchRestartApplicationsResponseBody';
|
|
451
|
+
export { BatchRestartApplicationsResponse } from './BatchRestartApplicationsResponse';
|
|
448
452
|
export { BatchStartApplicationsRequest } from './BatchStartApplicationsRequest';
|
|
449
453
|
export { BatchStartApplicationsResponseBody } from './BatchStartApplicationsResponseBody';
|
|
450
454
|
export { BatchStartApplicationsResponse } from './BatchStartApplicationsResponse';
|