@alicloud/sae20190506 2.12.3 → 2.12.4
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 +8 -8
- package/dist/client.js +23 -8
- package/dist/client.js.map +1 -1
- package/dist/models/CreateApplicationRequest.d.ts +232 -333
- package/dist/models/CreateApplicationRequest.js +29 -1
- package/dist/models/CreateApplicationRequest.js.map +1 -1
- package/dist/models/CreateApplicationResponseBody.d.ts +14 -21
- package/dist/models/CreateApplicationResponseBody.js.map +1 -1
- package/dist/models/CreateApplicationShrinkRequest.d.ts +217 -333
- package/dist/models/CreateApplicationShrinkRequest.js +2 -0
- package/dist/models/CreateApplicationShrinkRequest.js.map +1 -1
- package/dist/models/DeployApplicationRequest.d.ts +261 -382
- package/dist/models/DeployApplicationRequest.js +29 -1
- package/dist/models/DeployApplicationRequest.js.map +1 -1
- package/dist/models/DeployApplicationResponseBody.d.ts +20 -27
- package/dist/models/DeployApplicationResponseBody.js.map +1 -1
- package/dist/models/DeployApplicationShrinkRequest.d.ts +246 -382
- package/dist/models/DeployApplicationShrinkRequest.js +2 -0
- package/dist/models/DeployApplicationShrinkRequest.js.map +1 -1
- package/dist/models/DescribeApplicationConfigResponseBody.d.ts +299 -404
- package/dist/models/DescribeApplicationConfigResponseBody.js +29 -1
- package/dist/models/DescribeApplicationConfigResponseBody.js.map +1 -1
- package/dist/models/ListApplicationsRequest.d.ts +42 -61
- package/dist/models/ListApplicationsRequest.js +2 -0
- package/dist/models/ListApplicationsRequest.js.map +1 -1
- package/dist/models/ListApplicationsResponseBody.d.ts +77 -101
- package/dist/models/ListApplicationsResponseBody.js +2 -0
- package/dist/models/ListApplicationsResponseBody.js.map +1 -1
- package/dist/models/model.d.ts +3 -0
- package/dist/models/model.js +37 -31
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +28 -8
- package/src/models/CreateApplicationRequest.ts +252 -334
- package/src/models/CreateApplicationResponseBody.ts +14 -21
- package/src/models/CreateApplicationShrinkRequest.ts +220 -334
- package/src/models/DeployApplicationRequest.ts +281 -383
- package/src/models/DeployApplicationResponseBody.ts +20 -27
- package/src/models/DeployApplicationShrinkRequest.ts +249 -383
- package/src/models/DescribeApplicationConfigResponseBody.ts +319 -405
- package/src/models/ListApplicationsRequest.ts +44 -61
- package/src/models/ListApplicationsResponseBody.ts +79 -101
- package/src/models/model.ts +3 -0
|
@@ -13,7 +13,7 @@ export class DeployApplicationResponseBodyData extends $dara.Model {
|
|
|
13
13
|
appId?: string;
|
|
14
14
|
/**
|
|
15
15
|
* @remarks
|
|
16
|
-
* The returned change order ID
|
|
16
|
+
* The returned change order ID, which is used to query the task execution status.
|
|
17
17
|
*
|
|
18
18
|
* @example
|
|
19
19
|
* 01db03d3-3ee9-48b3-b3d0-dfce2d88****
|
|
@@ -21,11 +21,10 @@ export class DeployApplicationResponseBodyData extends $dara.Model {
|
|
|
21
21
|
changeOrderId?: string;
|
|
22
22
|
/**
|
|
23
23
|
* @remarks
|
|
24
|
-
*
|
|
24
|
+
* Indicates whether the change published by a Resource Access Management (RAM) user requires approval. Valid values:
|
|
25
25
|
*
|
|
26
|
-
* - **true**:
|
|
27
|
-
*
|
|
28
|
-
* - **false**: No approval required.
|
|
26
|
+
* - **true**: approval is required.
|
|
27
|
+
* - **false**: approval is not required.
|
|
29
28
|
*
|
|
30
29
|
* @example
|
|
31
30
|
* true
|
|
@@ -59,15 +58,12 @@ export class DeployApplicationResponseBodyData extends $dara.Model {
|
|
|
59
58
|
export class DeployApplicationResponseBody extends $dara.Model {
|
|
60
59
|
/**
|
|
61
60
|
* @remarks
|
|
62
|
-
* The API status or POP error code.
|
|
63
|
-
*
|
|
64
|
-
* - **2xx**: Success.
|
|
65
|
-
*
|
|
66
|
-
* - **3xx**: Redirection.
|
|
67
|
-
*
|
|
68
|
-
* - **4xx**: Request error.
|
|
61
|
+
* The API status or POP error code. Valid values:
|
|
69
62
|
*
|
|
70
|
-
* - **
|
|
63
|
+
* - **2xx**: success.
|
|
64
|
+
* - **3xx**: redirection.
|
|
65
|
+
* - **4xx**: request error.
|
|
66
|
+
* - **5xx**: server error.
|
|
71
67
|
*
|
|
72
68
|
* @example
|
|
73
69
|
* 200
|
|
@@ -75,16 +71,15 @@ export class DeployApplicationResponseBody extends $dara.Model {
|
|
|
75
71
|
code?: string;
|
|
76
72
|
/**
|
|
77
73
|
* @remarks
|
|
78
|
-
* The
|
|
74
|
+
* The returned result.
|
|
79
75
|
*/
|
|
80
76
|
data?: DeployApplicationResponseBodyData;
|
|
81
77
|
/**
|
|
82
78
|
* @remarks
|
|
83
|
-
* The error code.
|
|
79
|
+
* The error code. Valid values:
|
|
84
80
|
*
|
|
85
|
-
* -
|
|
86
|
-
*
|
|
87
|
-
* - On failure: This field is returned. For details, see the **Error codes** section in this topic.
|
|
81
|
+
* - If the request is successful, the **ErrorCode** field is not returned.
|
|
82
|
+
* - If the request fails, the **ErrorCode** field is returned. For more information, see the **Error codes** section in this topic.
|
|
88
83
|
*
|
|
89
84
|
* @example
|
|
90
85
|
* 空
|
|
@@ -92,11 +87,10 @@ export class DeployApplicationResponseBody extends $dara.Model {
|
|
|
92
87
|
errorCode?: string;
|
|
93
88
|
/**
|
|
94
89
|
* @remarks
|
|
95
|
-
*
|
|
96
|
-
*
|
|
97
|
-
* - On success, returns **success**.
|
|
90
|
+
* The additional information. Valid values:
|
|
98
91
|
*
|
|
99
|
-
* -
|
|
92
|
+
* - If the request is successful, **success** is returned.
|
|
93
|
+
* - If the request fails, a specific error code is returned.
|
|
100
94
|
*
|
|
101
95
|
* @example
|
|
102
96
|
* success
|
|
@@ -112,11 +106,10 @@ export class DeployApplicationResponseBody extends $dara.Model {
|
|
|
112
106
|
requestId?: string;
|
|
113
107
|
/**
|
|
114
108
|
* @remarks
|
|
115
|
-
*
|
|
116
|
-
*
|
|
117
|
-
* - **true**: Deployment succeeded.
|
|
109
|
+
* Indicates whether the application deployment is successful. Valid values:
|
|
118
110
|
*
|
|
119
|
-
* - **
|
|
111
|
+
* - **true**: the deployment is successful.
|
|
112
|
+
* - **false**: the deployment failed.
|
|
120
113
|
*
|
|
121
114
|
* @example
|
|
122
115
|
* true
|
|
@@ -124,7 +117,7 @@ export class DeployApplicationResponseBody extends $dara.Model {
|
|
|
124
117
|
success?: boolean;
|
|
125
118
|
/**
|
|
126
119
|
* @remarks
|
|
127
|
-
* The trace ID
|
|
120
|
+
* The trace ID, which is used to query the details of a request.
|
|
128
121
|
*
|
|
129
122
|
* @example
|
|
130
123
|
* ac1a0b2215622246421415014e****
|