@alicloud/sae20190506 2.9.0 → 2.9.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 +16 -14
- package/dist/client.js +31 -14
- package/dist/client.js.map +1 -1
- package/dist/models/CreateApplicationRequest.d.ts +3 -0
- package/dist/models/CreateApplicationRequest.js +6 -0
- package/dist/models/CreateApplicationRequest.js.map +1 -1
- package/dist/models/CreateApplicationScalingRuleRequest.d.ts +134 -0
- package/dist/models/CreateApplicationScalingRuleRequest.js.map +1 -1
- package/dist/models/CreateApplicationScalingRuleResponseBody.d.ts +166 -0
- package/dist/models/CreateApplicationScalingRuleResponseBody.js.map +1 -1
- package/dist/models/CreateApplicationShrinkRequest.d.ts +3 -0
- package/dist/models/CreateApplicationShrinkRequest.js +6 -0
- package/dist/models/CreateApplicationShrinkRequest.js.map +1 -1
- package/dist/models/CreateIngressRequest.d.ts +30 -26
- package/dist/models/CreateIngressRequest.js.map +1 -1
- package/dist/models/CreateIngressResponseBody.d.ts +15 -15
- package/dist/models/CreateSecretRequest.d.ts +12 -0
- package/dist/models/CreateSecretRequest.js.map +1 -1
- package/dist/models/CreateSecretResponseBody.d.ts +40 -0
- package/dist/models/CreateSecretResponseBody.js.map +1 -1
- package/dist/models/CreateSecretShrinkRequest.d.ts +12 -0
- package/dist/models/CreateSecretShrinkRequest.js.map +1 -1
- package/dist/models/DeployApplicationRequest.d.ts +2 -0
- package/dist/models/DeployApplicationRequest.js +4 -0
- package/dist/models/DeployApplicationRequest.js.map +1 -1
- package/dist/models/DeployApplicationShrinkRequest.d.ts +2 -0
- package/dist/models/DeployApplicationShrinkRequest.js +4 -0
- package/dist/models/DeployApplicationShrinkRequest.js.map +1 -1
- package/dist/models/DescribeApplicationConfigResponseBody.d.ts +2 -0
- package/dist/models/DescribeApplicationConfigResponseBody.js +4 -0
- package/dist/models/DescribeApplicationConfigResponseBody.js.map +1 -1
- package/dist/models/DescribeNamespaceResourcesResponseBody.d.ts +1 -0
- package/dist/models/DescribeNamespaceResourcesResponseBody.js +2 -0
- package/dist/models/DescribeNamespaceResourcesResponseBody.js.map +1 -1
- package/dist/models/DowngradeApplicationApmServiceRequest.d.ts +2 -0
- package/dist/models/DowngradeApplicationApmServiceRequest.js.map +1 -1
- package/dist/models/DowngradeApplicationApmServiceResponseBody.d.ts +41 -0
- package/dist/models/DowngradeApplicationApmServiceResponseBody.js.map +1 -1
- package/dist/models/GetWebshellTokenRequest.d.ts +6 -2
- package/dist/models/GetWebshellTokenRequest.js.map +1 -1
- package/dist/models/GetWebshellTokenResponseBody.d.ts +43 -1
- package/dist/models/GetWebshellTokenResponseBody.js.map +1 -1
- package/dist/models/UpdateApplicationDescriptionRequest.d.ts +4 -0
- package/dist/models/UpdateApplicationDescriptionRequest.js.map +1 -1
- package/dist/models/UpdateApplicationDescriptionResponseBody.d.ts +36 -0
- package/dist/models/UpdateApplicationDescriptionResponseBody.js.map +1 -1
- package/dist/models/UpdateIngressRequest.d.ts +12 -12
- package/dist/models/UpdateIngressResponseBody.d.ts +11 -11
- package/dist/models/UpgradeApplicationApmServiceRequest.d.ts +2 -0
- package/dist/models/UpgradeApplicationApmServiceRequest.js.map +1 -1
- package/dist/models/UpgradeApplicationApmServiceResponseBody.d.ts +43 -0
- package/dist/models/UpgradeApplicationApmServiceResponseBody.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +36 -14
- package/src/models/CreateApplicationRequest.ts +9 -0
- package/src/models/CreateApplicationScalingRuleRequest.ts +134 -0
- package/src/models/CreateApplicationScalingRuleResponseBody.ts +166 -0
- package/src/models/CreateApplicationShrinkRequest.ts +9 -0
- package/src/models/CreateIngressRequest.ts +30 -26
- package/src/models/CreateIngressResponseBody.ts +15 -15
- package/src/models/CreateSecretRequest.ts +12 -0
- package/src/models/CreateSecretResponseBody.ts +40 -0
- package/src/models/CreateSecretShrinkRequest.ts +12 -0
- package/src/models/DeployApplicationRequest.ts +6 -0
- package/src/models/DeployApplicationShrinkRequest.ts +6 -0
- package/src/models/DescribeApplicationConfigResponseBody.ts +6 -0
- package/src/models/DescribeNamespaceResourcesResponseBody.ts +3 -0
- package/src/models/DowngradeApplicationApmServiceRequest.ts +2 -0
- package/src/models/DowngradeApplicationApmServiceResponseBody.ts +41 -0
- package/src/models/GetWebshellTokenRequest.ts +6 -2
- package/src/models/GetWebshellTokenResponseBody.ts +43 -1
- package/src/models/UpdateApplicationDescriptionRequest.ts +4 -0
- package/src/models/UpdateApplicationDescriptionResponseBody.ts +36 -0
- package/src/models/UpdateIngressRequest.ts +12 -12
- package/src/models/UpdateIngressResponseBody.ts +11 -11
- package/src/models/UpgradeApplicationApmServiceRequest.ts +2 -0
- package/src/models/UpgradeApplicationApmServiceResponseBody.ts +43 -0
|
@@ -35,7 +35,7 @@ export class UpdateIngressResponseBodyData extends $dara.Model {
|
|
|
35
35
|
export class UpdateIngressResponseBody extends $dara.Model {
|
|
36
36
|
/**
|
|
37
37
|
* @remarks
|
|
38
|
-
* The HTTP status code. Valid values:
|
|
38
|
+
* The HTTP status code or the error code. Valid values:
|
|
39
39
|
*
|
|
40
40
|
* * **2xx**: The request was successful.
|
|
41
41
|
* * **3xx**: The request was redirected.
|
|
@@ -48,12 +48,12 @@ export class UpdateIngressResponseBody extends $dara.Model {
|
|
|
48
48
|
code?: string;
|
|
49
49
|
/**
|
|
50
50
|
* @remarks
|
|
51
|
-
*
|
|
51
|
+
* Responses.
|
|
52
52
|
*/
|
|
53
53
|
data?: UpdateIngressResponseBodyData;
|
|
54
54
|
/**
|
|
55
55
|
* @remarks
|
|
56
|
-
* The
|
|
56
|
+
* The status code. Value values:
|
|
57
57
|
*
|
|
58
58
|
* * If the request was successful, **ErrorCode** is not returned.
|
|
59
59
|
* * If the request failed, **ErrorCode** is returned. For more information, see the **Error codes** section of this topic.
|
|
@@ -61,10 +61,10 @@ export class UpdateIngressResponseBody extends $dara.Model {
|
|
|
61
61
|
errorCode?: string;
|
|
62
62
|
/**
|
|
63
63
|
* @remarks
|
|
64
|
-
*
|
|
64
|
+
* Additional information. Valid values:
|
|
65
65
|
*
|
|
66
|
-
* *
|
|
67
|
-
* * If the request
|
|
66
|
+
* * The error message returned because the request is normal and **success** is returned.
|
|
67
|
+
* * If the request is abnormal, the specific exception error code is returned.
|
|
68
68
|
*
|
|
69
69
|
* @example
|
|
70
70
|
* success
|
|
@@ -72,7 +72,7 @@ export class UpdateIngressResponseBody extends $dara.Model {
|
|
|
72
72
|
message?: string;
|
|
73
73
|
/**
|
|
74
74
|
* @remarks
|
|
75
|
-
* The request
|
|
75
|
+
* The ID of the request.
|
|
76
76
|
*
|
|
77
77
|
* @example
|
|
78
78
|
* 91F93257-7A4A-4BD3-9A7E-2F6EAE6D****
|
|
@@ -80,10 +80,10 @@ export class UpdateIngressResponseBody extends $dara.Model {
|
|
|
80
80
|
requestId?: string;
|
|
81
81
|
/**
|
|
82
82
|
* @remarks
|
|
83
|
-
*
|
|
83
|
+
* Whether the configuration of the Ingress instance is updated. Valid values:
|
|
84
84
|
*
|
|
85
|
-
* * **true
|
|
86
|
-
* * **false
|
|
85
|
+
* * **true**: The update was successful.
|
|
86
|
+
* * **false**: Update failed.
|
|
87
87
|
*
|
|
88
88
|
* @example
|
|
89
89
|
* true
|
|
@@ -91,7 +91,7 @@ export class UpdateIngressResponseBody extends $dara.Model {
|
|
|
91
91
|
success?: boolean;
|
|
92
92
|
/**
|
|
93
93
|
* @remarks
|
|
94
|
-
* The trace
|
|
94
|
+
* The ID of the trace.
|
|
95
95
|
*
|
|
96
96
|
* @example
|
|
97
97
|
* 0a98a02315955564772843261e****
|
|
@@ -4,6 +4,12 @@ import * as $dara from '@darabonba/typescript';
|
|
|
4
4
|
|
|
5
5
|
export class UpgradeApplicationApmServiceResponseBodyData extends $dara.Model {
|
|
6
6
|
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* Indicates whether ARMS advanced monitoring is enabled. Valid values:
|
|
9
|
+
*
|
|
10
|
+
* * **true**
|
|
11
|
+
* * **false**
|
|
12
|
+
*
|
|
7
13
|
* @example
|
|
8
14
|
* true
|
|
9
15
|
*/
|
|
@@ -31,28 +37,65 @@ export class UpgradeApplicationApmServiceResponseBodyData extends $dara.Model {
|
|
|
31
37
|
|
|
32
38
|
export class UpgradeApplicationApmServiceResponseBody extends $dara.Model {
|
|
33
39
|
/**
|
|
40
|
+
* @remarks
|
|
41
|
+
* The HTTP status code or the error code. Valid values:
|
|
42
|
+
*
|
|
43
|
+
* * **2xx**: The request was successful.
|
|
44
|
+
* * **3xx**: The request was redirected.
|
|
45
|
+
* * **4xx**: The request failed.
|
|
46
|
+
* * **5xx**: A server error occurred.
|
|
47
|
+
*
|
|
34
48
|
* @example
|
|
35
49
|
* 200
|
|
36
50
|
*/
|
|
37
51
|
code?: string;
|
|
52
|
+
/**
|
|
53
|
+
* @remarks
|
|
54
|
+
* The returned result.
|
|
55
|
+
*/
|
|
38
56
|
data?: UpgradeApplicationApmServiceResponseBodyData;
|
|
39
57
|
/**
|
|
58
|
+
* @remarks
|
|
59
|
+
* The status code. Value values:
|
|
60
|
+
*
|
|
61
|
+
* * If the request was successful, **ErrorCode** is not returned.
|
|
62
|
+
* * If the request failed, **ErrorCode** is returned. For more information, see **Error codes** in this topic.
|
|
63
|
+
*
|
|
40
64
|
* @example
|
|
41
65
|
* success
|
|
42
66
|
*/
|
|
43
67
|
errorCode?: string;
|
|
44
68
|
/**
|
|
69
|
+
* @remarks
|
|
70
|
+
* The message returned. The following limits are imposed on the ID:
|
|
71
|
+
*
|
|
72
|
+
* * If the request was successful, **success** is returned.
|
|
73
|
+
* * An error code is returned when a request failed.
|
|
74
|
+
*
|
|
45
75
|
* @example
|
|
46
76
|
* success
|
|
47
77
|
*/
|
|
48
78
|
message?: string;
|
|
49
79
|
/**
|
|
80
|
+
* @remarks
|
|
81
|
+
* Request ID.
|
|
82
|
+
*
|
|
50
83
|
* @example
|
|
51
84
|
* 91F93257-7A4A-4BD3-9A7E-2F6EAE6D****
|
|
52
85
|
*/
|
|
53
86
|
requestId?: string;
|
|
87
|
+
/**
|
|
88
|
+
* @remarks
|
|
89
|
+
* Indicates whether the request was successful. Valid values:
|
|
90
|
+
*
|
|
91
|
+
* * **true**
|
|
92
|
+
* * **false**
|
|
93
|
+
*/
|
|
54
94
|
success?: boolean;
|
|
55
95
|
/**
|
|
96
|
+
* @remarks
|
|
97
|
+
* The ID of the trace. The ID is used to query the details of a request.
|
|
98
|
+
*
|
|
56
99
|
* @example
|
|
57
100
|
* 0a98a02315955564772843261e****
|
|
58
101
|
*/
|