@alicloud/sae20190506 2.5.6 → 2.5.7

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.
@@ -5,10 +5,12 @@ import * as $dara from '@darabonba/typescript';
5
5
  export class DescribeInstanceLogResponseBody extends $dara.Model {
6
6
  /**
7
7
  * @remarks
8
- * Indicates whether the log of the instance was obtained. Valid values:
8
+ * The interface state or POP error code. Valid values:
9
9
  *
10
- * * **true**: indicates that the log was obtained.
11
- * * **false**: indicates that the log could not be obtained.
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 error code.
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
- * The HTTP status code. Valid values:
29
+ * Error code.
31
30
  *
32
- * * **2xx**: indicates that the request was successful.
33
- * * **3xx**: indicates that the request was redirected.
34
- * * **4xx**: indicates that the request was invalid.
35
- * * **5xx**: indicates that a server error occurred.
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 ID of the trace.
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
- * The returned message.
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
- * The log of the instance.
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