@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
|
@@ -4,6 +4,9 @@ import * as $dara from '@darabonba/typescript';
|
|
|
4
4
|
|
|
5
5
|
export class CreateSecretResponseBodyData extends $dara.Model {
|
|
6
6
|
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* The ID of the created Secret.
|
|
9
|
+
*
|
|
7
10
|
* @example
|
|
8
11
|
* 16
|
|
9
12
|
*/
|
|
@@ -31,28 +34,65 @@ export class CreateSecretResponseBodyData extends $dara.Model {
|
|
|
31
34
|
|
|
32
35
|
export class CreateSecretResponseBody extends $dara.Model {
|
|
33
36
|
/**
|
|
37
|
+
* @remarks
|
|
38
|
+
* The HTTP status code or the error code. Valid values:
|
|
39
|
+
*
|
|
40
|
+
* * **2xx**: The request was successful.
|
|
41
|
+
* * **3xx**: The request was redirected.
|
|
42
|
+
* * **4xx**: The request failed.
|
|
43
|
+
* * **5xx**: A server error occurred.
|
|
44
|
+
*
|
|
34
45
|
* @example
|
|
35
46
|
* 200
|
|
36
47
|
*/
|
|
37
48
|
code?: string;
|
|
49
|
+
/**
|
|
50
|
+
* @remarks
|
|
51
|
+
* The returned result.
|
|
52
|
+
*/
|
|
38
53
|
data?: CreateSecretResponseBodyData;
|
|
54
|
+
/**
|
|
55
|
+
* @remarks
|
|
56
|
+
* The status code. Value values:
|
|
57
|
+
*
|
|
58
|
+
* * If the request was successful, **ErrorCode** is not returned.
|
|
59
|
+
* * If the request failed, **ErrorCode** is returned. For more information, see **Error codes** in this topic.
|
|
60
|
+
*
|
|
61
|
+
* @example
|
|
62
|
+
* 400
|
|
63
|
+
*/
|
|
39
64
|
errorCode?: string;
|
|
40
65
|
/**
|
|
66
|
+
* @remarks
|
|
67
|
+
* The message returned for the operation.
|
|
68
|
+
*
|
|
41
69
|
* @example
|
|
42
70
|
* success
|
|
43
71
|
*/
|
|
44
72
|
message?: string;
|
|
45
73
|
/**
|
|
74
|
+
* @remarks
|
|
75
|
+
* The request ID.
|
|
76
|
+
*
|
|
46
77
|
* @example
|
|
47
78
|
* 91F93257-7A4A-4BD3-9A7E-2F6EAE6D****
|
|
48
79
|
*/
|
|
49
80
|
requestId?: string;
|
|
50
81
|
/**
|
|
82
|
+
* @remarks
|
|
83
|
+
* Indicates whether the Secret was created. Valid values:
|
|
84
|
+
*
|
|
85
|
+
* * **true**: The ConfigMap was created.
|
|
86
|
+
* * **false**: The ConfigMap failed to be created.
|
|
87
|
+
*
|
|
51
88
|
* @example
|
|
52
89
|
* true
|
|
53
90
|
*/
|
|
54
91
|
success?: boolean;
|
|
55
92
|
/**
|
|
93
|
+
* @remarks
|
|
94
|
+
* The ID of the trace. The ID is used to query the details of a request.
|
|
95
|
+
*
|
|
56
96
|
* @example
|
|
57
97
|
* 0a98a02315955564772843261e****
|
|
58
98
|
*/
|
|
@@ -22,6 +22,8 @@ export class CreateSecretShrinkRequest extends $dara.Model {
|
|
|
22
22
|
secretDataShrink?: string;
|
|
23
23
|
/**
|
|
24
24
|
* @remarks
|
|
25
|
+
* The Secret name. The name can contain digits, letters, and underscores (_). The name must start with a letter.
|
|
26
|
+
*
|
|
25
27
|
* This parameter is required.
|
|
26
28
|
*
|
|
27
29
|
* @example
|
|
@@ -30,6 +32,16 @@ export class CreateSecretShrinkRequest extends $dara.Model {
|
|
|
30
32
|
secretName?: string;
|
|
31
33
|
/**
|
|
32
34
|
* @remarks
|
|
35
|
+
* The supported Secret type. Valid values:
|
|
36
|
+
*
|
|
37
|
+
* * **kubernetes.io/dockerconfigjson**: the Secret for the username and password of the image repository. The Secret is used for authentication when images are pulled during application deployment.
|
|
38
|
+
*
|
|
39
|
+
* Valid values:
|
|
40
|
+
*
|
|
41
|
+
* * Opaque
|
|
42
|
+
* * kubernetes.io/dockerconfigjson
|
|
43
|
+
* * kubernetes.io/tls
|
|
44
|
+
*
|
|
33
45
|
* This parameter is required.
|
|
34
46
|
*
|
|
35
47
|
* @example
|
|
@@ -21,6 +21,7 @@ export class DeployApplicationRequest extends $dara.Model {
|
|
|
21
21
|
* cri-xxxxxx
|
|
22
22
|
*/
|
|
23
23
|
acrInstanceId?: string;
|
|
24
|
+
agentVersion?: string;
|
|
24
25
|
albIngressReadinessGate?: string;
|
|
25
26
|
/**
|
|
26
27
|
* @remarks
|
|
@@ -221,6 +222,7 @@ export class DeployApplicationRequest extends $dara.Model {
|
|
|
221
222
|
* false
|
|
222
223
|
*/
|
|
223
224
|
enableGreyTagRoute?: boolean;
|
|
225
|
+
enableNamespaceAgentVersion?: boolean;
|
|
224
226
|
/**
|
|
225
227
|
* @remarks
|
|
226
228
|
* Enable new ARMS features.
|
|
@@ -888,6 +890,7 @@ export class DeployApplicationRequest extends $dara.Model {
|
|
|
888
890
|
return {
|
|
889
891
|
acrAssumeRoleArn: 'AcrAssumeRoleArn',
|
|
890
892
|
acrInstanceId: 'AcrInstanceId',
|
|
893
|
+
agentVersion: 'AgentVersion',
|
|
891
894
|
albIngressReadinessGate: 'AlbIngressReadinessGate',
|
|
892
895
|
appId: 'AppId',
|
|
893
896
|
associateEip: 'AssociateEip',
|
|
@@ -907,6 +910,7 @@ export class DeployApplicationRequest extends $dara.Model {
|
|
|
907
910
|
enableAhas: 'EnableAhas',
|
|
908
911
|
enableCpuBurst: 'EnableCpuBurst',
|
|
909
912
|
enableGreyTagRoute: 'EnableGreyTagRoute',
|
|
913
|
+
enableNamespaceAgentVersion: 'EnableNamespaceAgentVersion',
|
|
910
914
|
enableNewArms: 'EnableNewArms',
|
|
911
915
|
enablePrometheus: 'EnablePrometheus',
|
|
912
916
|
enableSidecarResourceIsolated: 'EnableSidecarResourceIsolated',
|
|
@@ -973,6 +977,7 @@ export class DeployApplicationRequest extends $dara.Model {
|
|
|
973
977
|
return {
|
|
974
978
|
acrAssumeRoleArn: 'string',
|
|
975
979
|
acrInstanceId: 'string',
|
|
980
|
+
agentVersion: 'string',
|
|
976
981
|
albIngressReadinessGate: 'string',
|
|
977
982
|
appId: 'string',
|
|
978
983
|
associateEip: 'boolean',
|
|
@@ -992,6 +997,7 @@ export class DeployApplicationRequest extends $dara.Model {
|
|
|
992
997
|
enableAhas: 'string',
|
|
993
998
|
enableCpuBurst: 'boolean',
|
|
994
999
|
enableGreyTagRoute: 'boolean',
|
|
1000
|
+
enableNamespaceAgentVersion: 'boolean',
|
|
995
1001
|
enableNewArms: 'boolean',
|
|
996
1002
|
enablePrometheus: 'boolean',
|
|
997
1003
|
enableSidecarResourceIsolated: 'boolean',
|
|
@@ -19,6 +19,7 @@ export class DeployApplicationShrinkRequest extends $dara.Model {
|
|
|
19
19
|
* cri-xxxxxx
|
|
20
20
|
*/
|
|
21
21
|
acrInstanceId?: string;
|
|
22
|
+
agentVersion?: string;
|
|
22
23
|
albIngressReadinessGate?: string;
|
|
23
24
|
/**
|
|
24
25
|
* @remarks
|
|
@@ -219,6 +220,7 @@ export class DeployApplicationShrinkRequest extends $dara.Model {
|
|
|
219
220
|
* false
|
|
220
221
|
*/
|
|
221
222
|
enableGreyTagRoute?: boolean;
|
|
223
|
+
enableNamespaceAgentVersion?: boolean;
|
|
222
224
|
/**
|
|
223
225
|
* @remarks
|
|
224
226
|
* Enable new ARMS features.
|
|
@@ -886,6 +888,7 @@ export class DeployApplicationShrinkRequest extends $dara.Model {
|
|
|
886
888
|
return {
|
|
887
889
|
acrAssumeRoleArn: 'AcrAssumeRoleArn',
|
|
888
890
|
acrInstanceId: 'AcrInstanceId',
|
|
891
|
+
agentVersion: 'AgentVersion',
|
|
889
892
|
albIngressReadinessGate: 'AlbIngressReadinessGate',
|
|
890
893
|
appId: 'AppId',
|
|
891
894
|
associateEip: 'AssociateEip',
|
|
@@ -905,6 +908,7 @@ export class DeployApplicationShrinkRequest extends $dara.Model {
|
|
|
905
908
|
enableAhas: 'EnableAhas',
|
|
906
909
|
enableCpuBurst: 'EnableCpuBurst',
|
|
907
910
|
enableGreyTagRoute: 'EnableGreyTagRoute',
|
|
911
|
+
enableNamespaceAgentVersion: 'EnableNamespaceAgentVersion',
|
|
908
912
|
enableNewArms: 'EnableNewArms',
|
|
909
913
|
enablePrometheus: 'EnablePrometheus',
|
|
910
914
|
enableSidecarResourceIsolated: 'EnableSidecarResourceIsolated',
|
|
@@ -971,6 +975,7 @@ export class DeployApplicationShrinkRequest extends $dara.Model {
|
|
|
971
975
|
return {
|
|
972
976
|
acrAssumeRoleArn: 'string',
|
|
973
977
|
acrInstanceId: 'string',
|
|
978
|
+
agentVersion: 'string',
|
|
974
979
|
albIngressReadinessGate: 'string',
|
|
975
980
|
appId: 'string',
|
|
976
981
|
associateEip: 'boolean',
|
|
@@ -990,6 +995,7 @@ export class DeployApplicationShrinkRequest extends $dara.Model {
|
|
|
990
995
|
enableAhas: 'string',
|
|
991
996
|
enableCpuBurst: 'boolean',
|
|
992
997
|
enableGreyTagRoute: 'boolean',
|
|
998
|
+
enableNamespaceAgentVersion: 'boolean',
|
|
993
999
|
enableNewArms: 'boolean',
|
|
994
1000
|
enablePrometheus: 'boolean',
|
|
995
1001
|
enableSidecarResourceIsolated: 'boolean',
|
|
@@ -755,6 +755,7 @@ export class DescribeApplicationConfigResponseBodyData extends $dara.Model {
|
|
|
755
755
|
* cri-xxxxxx
|
|
756
756
|
*/
|
|
757
757
|
acrInstanceId?: string;
|
|
758
|
+
agentVersion?: string;
|
|
758
759
|
albIngressReadinessGate?: string;
|
|
759
760
|
/**
|
|
760
761
|
* @remarks
|
|
@@ -981,6 +982,7 @@ export class DescribeApplicationConfigResponseBodyData extends $dara.Model {
|
|
|
981
982
|
* false
|
|
982
983
|
*/
|
|
983
984
|
enableIdle?: boolean;
|
|
985
|
+
enableNamespaceAgentVersion?: boolean;
|
|
984
986
|
/**
|
|
985
987
|
* @remarks
|
|
986
988
|
* Enable new ARMS feature.
|
|
@@ -1618,6 +1620,7 @@ export class DescribeApplicationConfigResponseBodyData extends $dara.Model {
|
|
|
1618
1620
|
return {
|
|
1619
1621
|
acrAssumeRoleArn: 'AcrAssumeRoleArn',
|
|
1620
1622
|
acrInstanceId: 'AcrInstanceId',
|
|
1623
|
+
agentVersion: 'AgentVersion',
|
|
1621
1624
|
albIngressReadinessGate: 'AlbIngressReadinessGate',
|
|
1622
1625
|
appDescription: 'AppDescription',
|
|
1623
1626
|
appId: 'AppId',
|
|
@@ -1643,6 +1646,7 @@ export class DescribeApplicationConfigResponseBodyData extends $dara.Model {
|
|
|
1643
1646
|
enableCpuBurst: 'EnableCpuBurst',
|
|
1644
1647
|
enableGreyTagRoute: 'EnableGreyTagRoute',
|
|
1645
1648
|
enableIdle: 'EnableIdle',
|
|
1649
|
+
enableNamespaceAgentVersion: 'EnableNamespaceAgentVersion',
|
|
1646
1650
|
enableNewArms: 'EnableNewArms',
|
|
1647
1651
|
enablePrometheus: 'EnablePrometheus',
|
|
1648
1652
|
envs: 'Envs',
|
|
@@ -1719,6 +1723,7 @@ export class DescribeApplicationConfigResponseBodyData extends $dara.Model {
|
|
|
1719
1723
|
return {
|
|
1720
1724
|
acrAssumeRoleArn: 'string',
|
|
1721
1725
|
acrInstanceId: 'string',
|
|
1726
|
+
agentVersion: 'string',
|
|
1722
1727
|
albIngressReadinessGate: 'string',
|
|
1723
1728
|
appDescription: 'string',
|
|
1724
1729
|
appId: 'string',
|
|
@@ -1744,6 +1749,7 @@ export class DescribeApplicationConfigResponseBodyData extends $dara.Model {
|
|
|
1744
1749
|
enableCpuBurst: 'string',
|
|
1745
1750
|
enableGreyTagRoute: 'boolean',
|
|
1746
1751
|
enableIdle: 'boolean',
|
|
1752
|
+
enableNamespaceAgentVersion: 'boolean',
|
|
1747
1753
|
enableNewArms: 'boolean',
|
|
1748
1754
|
enablePrometheus: 'boolean',
|
|
1749
1755
|
envs: 'string',
|
|
@@ -3,6 +3,7 @@ import * as $dara from '@darabonba/typescript';
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
export class DescribeNamespaceResourcesResponseBodyData extends $dara.Model {
|
|
6
|
+
apmJavaAgentVersion?: string;
|
|
6
7
|
/**
|
|
7
8
|
* @remarks
|
|
8
9
|
* The number of applications.
|
|
@@ -172,6 +173,7 @@ export class DescribeNamespaceResourcesResponseBodyData extends $dara.Model {
|
|
|
172
173
|
vpcName?: string;
|
|
173
174
|
static names(): { [key: string]: string } {
|
|
174
175
|
return {
|
|
176
|
+
apmJavaAgentVersion: 'ApmJavaAgentVersion',
|
|
175
177
|
appCount: 'AppCount',
|
|
176
178
|
belongRegion: 'BelongRegion',
|
|
177
179
|
description: 'Description',
|
|
@@ -197,6 +199,7 @@ export class DescribeNamespaceResourcesResponseBodyData extends $dara.Model {
|
|
|
197
199
|
|
|
198
200
|
static types(): { [key: string]: any } {
|
|
199
201
|
return {
|
|
202
|
+
apmJavaAgentVersion: 'string',
|
|
200
203
|
appCount: 'number',
|
|
201
204
|
belongRegion: 'string',
|
|
202
205
|
description: 'string',
|
|
@@ -4,6 +4,12 @@ import * as $dara from '@darabonba/typescript';
|
|
|
4
4
|
|
|
5
5
|
export class DowngradeApplicationApmServiceResponseBodyData extends $dara.Model {
|
|
6
6
|
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* Indicates whether ARMS advanced monitoring is disabled. Valid values:
|
|
9
|
+
*
|
|
10
|
+
* * **true**
|
|
11
|
+
* * **false**
|
|
12
|
+
*
|
|
7
13
|
* @example
|
|
8
14
|
* true
|
|
9
15
|
*/
|
|
@@ -31,24 +37,59 @@ export class DowngradeApplicationApmServiceResponseBodyData extends $dara.Model
|
|
|
31
37
|
|
|
32
38
|
export class DowngradeApplicationApmServiceResponseBody 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?: DowngradeApplicationApmServiceResponseBodyData;
|
|
57
|
+
/**
|
|
58
|
+
* @remarks
|
|
59
|
+
* The status code.
|
|
60
|
+
*
|
|
61
|
+
* @example
|
|
62
|
+
* 400
|
|
63
|
+
*/
|
|
39
64
|
errorCode?: string;
|
|
40
65
|
/**
|
|
66
|
+
* @remarks
|
|
67
|
+
* The message that is returned.
|
|
68
|
+
*
|
|
41
69
|
* @example
|
|
42
70
|
* success
|
|
43
71
|
*/
|
|
44
72
|
message?: string;
|
|
45
73
|
/**
|
|
74
|
+
* @remarks
|
|
75
|
+
* Request ID.
|
|
76
|
+
*
|
|
46
77
|
* @example
|
|
47
78
|
* 01CF26C7-00A3-4AA6-BA76-7E95F2A3****
|
|
48
79
|
*/
|
|
49
80
|
requestId?: string;
|
|
81
|
+
/**
|
|
82
|
+
* @remarks
|
|
83
|
+
* Indicates whether ARMS advanced monitoring is disabled. Valid values:
|
|
84
|
+
*
|
|
85
|
+
* * **true**
|
|
86
|
+
* * **false**
|
|
87
|
+
*/
|
|
50
88
|
success?: boolean;
|
|
51
89
|
/**
|
|
90
|
+
* @remarks
|
|
91
|
+
* The ID of the trace. The ID is used to query the details of a request.
|
|
92
|
+
*
|
|
52
93
|
* @example
|
|
53
94
|
* 0a98a02315955564772843261e****
|
|
54
95
|
*/
|
|
@@ -5,6 +5,8 @@ import * as $dara from '@darabonba/typescript';
|
|
|
5
5
|
export class GetWebshellTokenRequest extends $dara.Model {
|
|
6
6
|
/**
|
|
7
7
|
* @remarks
|
|
8
|
+
* The ID of the interactive messaging application.
|
|
9
|
+
*
|
|
8
10
|
* This parameter is required.
|
|
9
11
|
*
|
|
10
12
|
* @example
|
|
@@ -13,11 +15,11 @@ export class GetWebshellTokenRequest extends $dara.Model {
|
|
|
13
15
|
appId?: string;
|
|
14
16
|
/**
|
|
15
17
|
* @remarks
|
|
16
|
-
* The name of the container.
|
|
18
|
+
* The name of the init container.
|
|
17
19
|
*
|
|
18
20
|
* Note:
|
|
19
21
|
*
|
|
20
|
-
* * If this parameter
|
|
22
|
+
* * If you specify this parameter, Cloud Assistant runs the command in the specified container of the instances.
|
|
21
23
|
*
|
|
22
24
|
* * If this parameter is specified, the command can run only on Linux instances on which Cloud Assistant Agent 2.2.3.344 or later is installed.
|
|
23
25
|
*
|
|
@@ -34,6 +36,8 @@ export class GetWebshellTokenRequest extends $dara.Model {
|
|
|
34
36
|
containerName?: string;
|
|
35
37
|
/**
|
|
36
38
|
* @remarks
|
|
39
|
+
* The name of the pod.
|
|
40
|
+
*
|
|
37
41
|
* This parameter is required.
|
|
38
42
|
*
|
|
39
43
|
* @example
|
|
@@ -4,16 +4,25 @@ import * as $dara from '@darabonba/typescript';
|
|
|
4
4
|
|
|
5
5
|
export class GetWebshellTokenResponseBodyData extends $dara.Model {
|
|
6
6
|
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* Webshell page address
|
|
9
|
+
*
|
|
7
10
|
* @example
|
|
8
11
|
* HttpUrl : "https://saenext.console.aliyun.com/cn-shenzhen/app-list/app1/micro-app/shell/pod1?tokenId=xxx
|
|
9
12
|
*/
|
|
10
13
|
httpUrl?: string;
|
|
11
14
|
/**
|
|
15
|
+
* @remarks
|
|
16
|
+
* The information about the token.
|
|
17
|
+
*
|
|
12
18
|
* @example
|
|
13
19
|
* zWWpvRj_5pzof4hfo7-hGynM8oGMmO_7
|
|
14
20
|
*/
|
|
15
21
|
token?: string;
|
|
16
22
|
/**
|
|
23
|
+
* @remarks
|
|
24
|
+
* The WebSocket address.
|
|
25
|
+
*
|
|
17
26
|
* @example
|
|
18
27
|
* wss://sae-webshell.console.aliyun.com/websocket/eamWebshell?tokenId=xxx®ion=cn-shenzhen
|
|
19
28
|
*/
|
|
@@ -45,32 +54,65 @@ export class GetWebshellTokenResponseBodyData extends $dara.Model {
|
|
|
45
54
|
|
|
46
55
|
export class GetWebshellTokenResponseBody extends $dara.Model {
|
|
47
56
|
/**
|
|
57
|
+
* @remarks
|
|
58
|
+
* The HTTP status code. Valid values:
|
|
59
|
+
*
|
|
60
|
+
* * **2xx**: The request was successful.
|
|
61
|
+
* * **3xx**: The request was redirected.
|
|
62
|
+
* * **4xx**: The request failed.
|
|
63
|
+
* * **5xx**: A server error occurred.
|
|
64
|
+
*
|
|
48
65
|
* @example
|
|
49
66
|
* 200
|
|
50
67
|
*/
|
|
51
68
|
code?: string;
|
|
52
69
|
/**
|
|
53
70
|
* @remarks
|
|
54
|
-
*
|
|
71
|
+
* The returned result.
|
|
55
72
|
*/
|
|
56
73
|
data?: GetWebshellTokenResponseBodyData;
|
|
74
|
+
/**
|
|
75
|
+
* @remarks
|
|
76
|
+
* The error code returned if the call failed. Value values:
|
|
77
|
+
*
|
|
78
|
+
* * If the request was successful, **ErrorCode** is not returned.
|
|
79
|
+
* * If the request failed, the **ErrorCode** parameter is returned. For more information, see **Error codes** section in this topic.
|
|
80
|
+
*
|
|
81
|
+
* @example
|
|
82
|
+
* 400
|
|
83
|
+
*/
|
|
57
84
|
errorCode?: string;
|
|
58
85
|
/**
|
|
86
|
+
* @remarks
|
|
87
|
+
* The returned message. Value description:
|
|
88
|
+
*
|
|
89
|
+
* * If the request was successful, a success message is returned.
|
|
90
|
+
* * An error code is returned if the request failed.
|
|
91
|
+
*
|
|
59
92
|
* @example
|
|
60
93
|
* success
|
|
61
94
|
*/
|
|
62
95
|
message?: string;
|
|
63
96
|
/**
|
|
97
|
+
* @remarks
|
|
98
|
+
* Request ID.
|
|
99
|
+
*
|
|
64
100
|
* @example
|
|
65
101
|
* 91F93257-7A4A-4BD3-9A7E-2F6EAE6D****
|
|
66
102
|
*/
|
|
67
103
|
requestId?: string;
|
|
68
104
|
/**
|
|
105
|
+
* @remarks
|
|
106
|
+
* Indicates whether the request was successful.
|
|
107
|
+
*
|
|
69
108
|
* @example
|
|
70
109
|
* true
|
|
71
110
|
*/
|
|
72
111
|
success?: boolean;
|
|
73
112
|
/**
|
|
113
|
+
* @remarks
|
|
114
|
+
* The ID of the trace.
|
|
115
|
+
*
|
|
74
116
|
* @example
|
|
75
117
|
* 0a98a02315955564772843261e****
|
|
76
118
|
*/
|
|
@@ -5,6 +5,8 @@ import * as $dara from '@darabonba/typescript';
|
|
|
5
5
|
export class UpdateApplicationDescriptionRequest extends $dara.Model {
|
|
6
6
|
/**
|
|
7
7
|
* @remarks
|
|
8
|
+
* The new description of the application. The description can be up to 1,024 characters in length.
|
|
9
|
+
*
|
|
8
10
|
* This parameter is required.
|
|
9
11
|
*
|
|
10
12
|
* @example
|
|
@@ -13,6 +15,8 @@ export class UpdateApplicationDescriptionRequest extends $dara.Model {
|
|
|
13
15
|
appDescription?: string;
|
|
14
16
|
/**
|
|
15
17
|
* @remarks
|
|
18
|
+
* The ID of the application that you want to update.
|
|
19
|
+
*
|
|
16
20
|
* This parameter is required.
|
|
17
21
|
*
|
|
18
22
|
* @example
|
|
@@ -4,27 +4,63 @@ import * as $dara from '@darabonba/typescript';
|
|
|
4
4
|
|
|
5
5
|
export class UpdateApplicationDescriptionResponseBody extends $dara.Model {
|
|
6
6
|
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* The HTTP status code or the error code. Valid values:
|
|
9
|
+
*
|
|
10
|
+
* * **2xx**: The request was successful.
|
|
11
|
+
* * **3xx**: The request was redirected.
|
|
12
|
+
* * **4xx**: The request failed.
|
|
13
|
+
* * **5xx**: A server error occurred.
|
|
14
|
+
*
|
|
7
15
|
* @example
|
|
8
16
|
* 200
|
|
9
17
|
*/
|
|
10
18
|
code?: string;
|
|
19
|
+
/**
|
|
20
|
+
* @remarks
|
|
21
|
+
* The error code returned if the call failed. Value values:
|
|
22
|
+
*
|
|
23
|
+
* * If the request was successful, **ErrorCode** is not returned.
|
|
24
|
+
* * If the request failed, **ErrorCode** is returned. For more information, see **Error codes** in this topic.
|
|
25
|
+
*
|
|
26
|
+
* @example
|
|
27
|
+
* 400
|
|
28
|
+
*/
|
|
11
29
|
errorCode?: string;
|
|
12
30
|
/**
|
|
31
|
+
* @remarks
|
|
32
|
+
* The message returned. The following limits are imposed on the ID:
|
|
33
|
+
*
|
|
34
|
+
* * If the request was successful, **success** is returned.
|
|
35
|
+
* * An error code is returned when a request failed.
|
|
36
|
+
*
|
|
13
37
|
* @example
|
|
14
38
|
* success
|
|
15
39
|
*/
|
|
16
40
|
message?: string;
|
|
17
41
|
/**
|
|
42
|
+
* @remarks
|
|
43
|
+
* Request ID.
|
|
44
|
+
*
|
|
18
45
|
* @example
|
|
19
46
|
* 01CF26C7-00A3-4AA6-BA76-7E95F2A3***
|
|
20
47
|
*/
|
|
21
48
|
requestId?: string;
|
|
22
49
|
/**
|
|
50
|
+
* @remarks
|
|
51
|
+
* Indicates whether the application was deployed. Valid values:
|
|
52
|
+
*
|
|
53
|
+
* * **true**: The application was deployed.
|
|
54
|
+
* * **false**: The application failed to be deployed.
|
|
55
|
+
*
|
|
23
56
|
* @example
|
|
24
57
|
* true
|
|
25
58
|
*/
|
|
26
59
|
success?: boolean;
|
|
27
60
|
/**
|
|
61
|
+
* @remarks
|
|
62
|
+
* The ID of the trace. The ID is used to query the details of a request.
|
|
63
|
+
*
|
|
28
64
|
* @example
|
|
29
65
|
* ac1a0b2215622246421415014e****
|
|
30
66
|
*/
|
|
@@ -5,11 +5,11 @@ import * as $dara from '@darabonba/typescript';
|
|
|
5
5
|
export class UpdateIngressRequest extends $dara.Model {
|
|
6
6
|
/**
|
|
7
7
|
* @remarks
|
|
8
|
-
* The ID of the
|
|
8
|
+
* The ID of the **CLB** certificate. Valid values:
|
|
9
9
|
*
|
|
10
|
-
* * If
|
|
10
|
+
* * If the **LoadBalanceType** is **clb**, use this field to configure the HTTPS listener certificate.
|
|
11
11
|
*
|
|
12
|
-
* For more information about how to
|
|
12
|
+
* For more information about how to use SSL certificate IDs for CLB, see [Manage certificates (CLB)](https://help.aliyun.com/document_detail/90792.html).
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
15
15
|
* 188077086902****_176993d****_181437****_108724****
|
|
@@ -17,10 +17,10 @@ export class UpdateIngressRequest extends $dara.Model {
|
|
|
17
17
|
certId?: string;
|
|
18
18
|
/**
|
|
19
19
|
* @remarks
|
|
20
|
-
* The
|
|
20
|
+
* The ID of the multi-certificate **ALB**. Valid values:
|
|
21
21
|
*
|
|
22
|
-
* * If
|
|
23
|
-
* * The ID of the SSL certificate
|
|
22
|
+
* * If the **LoadBalanceType** is **alb**, use this field to configure multiple certificates for HTTPS listeners. Separate multiple certificate IDs with commas (,).
|
|
23
|
+
* * The ID of the SSL certificate used by ALB must be obtained from the digital certificate product. For example, in the configuration `756***-cn-hangzhou`, the `756***` is the certificate ID obtained from the product page, and the `-cn-hangzhou` is a fixed suffix. For more information, see [Manage certificates](https://help.aliyun.com/document_detail/209076.html).
|
|
24
24
|
*
|
|
25
25
|
* @example
|
|
26
26
|
* 87***35-cn-hangzhou,812***3-cn-hangzhou
|
|
@@ -29,7 +29,7 @@ export class UpdateIngressRequest extends $dara.Model {
|
|
|
29
29
|
corsConfig?: string;
|
|
30
30
|
/**
|
|
31
31
|
* @remarks
|
|
32
|
-
* The default forwarding rule.
|
|
32
|
+
* The default forwarding rule. Forwards traffic to a specified application through a specified port based on the IP address. The following table describes the parameters.
|
|
33
33
|
*
|
|
34
34
|
* * **appId**: the ID of the application.
|
|
35
35
|
* * **containerPort**: the container port of the application.
|
|
@@ -76,7 +76,7 @@ export class UpdateIngressRequest extends $dara.Model {
|
|
|
76
76
|
ingressId?: number;
|
|
77
77
|
/**
|
|
78
78
|
* @remarks
|
|
79
|
-
* The
|
|
79
|
+
* The SLB listening port. This port cannot be occupied.
|
|
80
80
|
*
|
|
81
81
|
* @example
|
|
82
82
|
* 443
|
|
@@ -86,7 +86,7 @@ export class UpdateIngressRequest extends $dara.Model {
|
|
|
86
86
|
* @remarks
|
|
87
87
|
* The protocol that is used to forward requests. Valid values:
|
|
88
88
|
*
|
|
89
|
-
* * **HTTP**: HTTP is suitable for applications that need to identify
|
|
89
|
+
* * **HTTP**: HTTP is suitable for applications that need to identify transmitted data.
|
|
90
90
|
* * **HTTPS**: HTTPS is suitable for applications that require encrypted data transmission.
|
|
91
91
|
*
|
|
92
92
|
* @example
|
|
@@ -95,7 +95,7 @@ export class UpdateIngressRequest extends $dara.Model {
|
|
|
95
95
|
listenerProtocol?: string;
|
|
96
96
|
/**
|
|
97
97
|
* @remarks
|
|
98
|
-
*
|
|
98
|
+
* The parameter is deprecated and cannot be updated.
|
|
99
99
|
*
|
|
100
100
|
* @example
|
|
101
101
|
* clb
|
|
@@ -111,10 +111,10 @@ export class UpdateIngressRequest extends $dara.Model {
|
|
|
111
111
|
requestTimeout?: number;
|
|
112
112
|
/**
|
|
113
113
|
* @remarks
|
|
114
|
-
* The forwarding
|
|
114
|
+
* The forwarding rule. Forwards traffic to a specified application through a specified port based on the domain name and request path. The following table describes the parameters.
|
|
115
115
|
*
|
|
116
116
|
* * **appId**: the ID of the application.
|
|
117
|
-
* * **containerPort**:
|
|
117
|
+
* * **containerPort**: The port of the application instance.
|
|
118
118
|
* * **domain**: the domain name.
|
|
119
119
|
* * **path**: the request path.
|
|
120
120
|
*
|