@alicloud/sae20190506 2.5.6 → 2.5.8
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.js +12 -0
- package/dist/client.js.map +1 -1
- package/dist/models/CreateApplicationRequest.d.ts +1 -0
- package/dist/models/CreateApplicationRequest.js +2 -0
- package/dist/models/CreateApplicationRequest.js.map +1 -1
- package/dist/models/CreateApplicationShrinkRequest.d.ts +1 -0
- package/dist/models/CreateApplicationShrinkRequest.js +2 -0
- package/dist/models/CreateApplicationShrinkRequest.js.map +1 -1
- 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/DescribeApplicationConfigRequest.d.ts +2 -2
- package/dist/models/DescribeApplicationConfigResponseBody.d.ts +448 -0
- package/dist/models/DescribeApplicationConfigResponseBody.js +2 -0
- package/dist/models/DescribeApplicationConfigResponseBody.js.map +1 -1
- package/dist/models/DescribeInstanceLogRequest.d.ts +1 -1
- package/dist/models/DescribeInstanceLogResponseBody.d.ts +26 -18
- package/dist/models/DescribeInstanceLogResponseBody.js.map +1 -1
- package/dist/models/UpdateAppModeRequest.d.ts +2 -0
- package/dist/models/UpdateAppModeRequest.js +4 -0
- package/dist/models/UpdateAppModeRequest.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +16 -0
- package/src/models/CreateApplicationRequest.ts +3 -0
- package/src/models/CreateApplicationShrinkRequest.ts +3 -0
- package/src/models/DeployApplicationRequest.ts +3 -0
- package/src/models/DeployApplicationShrinkRequest.ts +3 -0
- package/src/models/DescribeApplicationConfigRequest.ts +2 -2
- package/src/models/DescribeApplicationConfigResponseBody.ts +450 -0
- package/src/models/DescribeInstanceLogRequest.ts +1 -1
- package/src/models/DescribeInstanceLogResponseBody.ts +26 -18
- package/src/models/UpdateAppModeRequest.ts +6 -0
|
@@ -5,10 +5,12 @@ import * as $dara from '@darabonba/typescript';
|
|
|
5
5
|
export class DescribeInstanceLogResponseBody extends $dara.Model {
|
|
6
6
|
/**
|
|
7
7
|
* @remarks
|
|
8
|
-
*
|
|
8
|
+
* The interface state or POP error code. Valid values:
|
|
9
9
|
*
|
|
10
|
-
* * **
|
|
11
|
-
* * **
|
|
10
|
+
* * **2xx**: indicates that the request was successful.
|
|
11
|
+
* * **3xx**: indicates that the request was redirected.
|
|
12
|
+
* * **4xx**: indicates that the request was invalid.
|
|
13
|
+
* * **5xx**: indicates that a server error occurred.
|
|
12
14
|
*
|
|
13
15
|
* @example
|
|
14
16
|
* 200
|
|
@@ -16,10 +18,7 @@ export class DescribeInstanceLogResponseBody extends $dara.Model {
|
|
|
16
18
|
code?: string;
|
|
17
19
|
/**
|
|
18
20
|
* @remarks
|
|
19
|
-
* The
|
|
20
|
-
*
|
|
21
|
-
* * The **ErrorCode** parameter is not returned when the request succeeds.
|
|
22
|
-
* * The **ErrorCode** parameter is returned when the request fails. For more information, see **Error codes** in this topic.
|
|
21
|
+
* The information of instance logs.
|
|
23
22
|
*
|
|
24
23
|
* @example
|
|
25
24
|
* hello\\nsae\\n
|
|
@@ -27,17 +26,22 @@ export class DescribeInstanceLogResponseBody extends $dara.Model {
|
|
|
27
26
|
data?: string;
|
|
28
27
|
/**
|
|
29
28
|
* @remarks
|
|
30
|
-
*
|
|
29
|
+
* Error code.
|
|
31
30
|
*
|
|
32
|
-
*
|
|
33
|
-
*
|
|
34
|
-
*
|
|
35
|
-
*
|
|
31
|
+
* - No error code returned if the request succeeded.
|
|
32
|
+
*
|
|
33
|
+
* - Error code returned if the request failed. Refer to error code list below for details.
|
|
34
|
+
*
|
|
35
|
+
* @example
|
|
36
|
+
* Null
|
|
36
37
|
*/
|
|
37
38
|
errorCode?: string;
|
|
38
39
|
/**
|
|
39
40
|
* @remarks
|
|
40
|
-
* The
|
|
41
|
+
* The returned message.
|
|
42
|
+
*
|
|
43
|
+
* success is returned when the request succeeds.
|
|
44
|
+
* An error code is returned when the request fails.
|
|
41
45
|
*
|
|
42
46
|
* @example
|
|
43
47
|
* success
|
|
@@ -45,23 +49,27 @@ export class DescribeInstanceLogResponseBody extends $dara.Model {
|
|
|
45
49
|
message?: string;
|
|
46
50
|
/**
|
|
47
51
|
* @remarks
|
|
48
|
-
*
|
|
49
|
-
*
|
|
50
|
-
* * **success** is returned when the request succeeds.
|
|
51
|
-
* * An error code is returned when the request fails.
|
|
52
|
+
* Request ID.
|
|
52
53
|
*
|
|
53
54
|
* @example
|
|
54
55
|
* 91F93257-7A4A-4BD3-9A7E-2F6EAE6D****
|
|
55
56
|
*/
|
|
56
57
|
requestId?: string;
|
|
57
58
|
/**
|
|
59
|
+
* @remarks
|
|
60
|
+
* Indicates whether the logs of the instance is obtained.
|
|
61
|
+
*
|
|
62
|
+
* - true: logs obtained.
|
|
63
|
+
*
|
|
64
|
+
* - false: failed to obtain logs.
|
|
65
|
+
*
|
|
58
66
|
* @example
|
|
59
67
|
* true
|
|
60
68
|
*/
|
|
61
69
|
success?: boolean;
|
|
62
70
|
/**
|
|
63
71
|
* @remarks
|
|
64
|
-
*
|
|
72
|
+
* Trace ID.
|
|
65
73
|
*
|
|
66
74
|
* @example
|
|
67
75
|
* 0a98a02315955564772843261e****
|
|
@@ -8,22 +8,28 @@ export class UpdateAppModeRequest extends $dara.Model {
|
|
|
8
8
|
* 7171a6ca-d1cd-4928-8642-7d5cfe69****
|
|
9
9
|
*/
|
|
10
10
|
appId?: string;
|
|
11
|
+
appIds?: string;
|
|
11
12
|
/**
|
|
12
13
|
* @example
|
|
13
14
|
* true
|
|
14
15
|
*/
|
|
15
16
|
enableIdle?: boolean;
|
|
17
|
+
namespaceId?: string;
|
|
16
18
|
static names(): { [key: string]: string } {
|
|
17
19
|
return {
|
|
18
20
|
appId: 'AppId',
|
|
21
|
+
appIds: 'AppIds',
|
|
19
22
|
enableIdle: 'EnableIdle',
|
|
23
|
+
namespaceId: 'NamespaceId',
|
|
20
24
|
};
|
|
21
25
|
}
|
|
22
26
|
|
|
23
27
|
static types(): { [key: string]: any } {
|
|
24
28
|
return {
|
|
25
29
|
appId: 'string',
|
|
30
|
+
appIds: 'string',
|
|
26
31
|
enableIdle: 'boolean',
|
|
32
|
+
namespaceId: 'string',
|
|
27
33
|
};
|
|
28
34
|
}
|
|
29
35
|
|