@alicloud/websitebuild20250429 2.27.0 → 2.27.2
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 +22 -9
- package/dist/client.js.map +1 -1
- package/dist/models/AppInstanceProfile.d.ts +3 -2
- package/dist/models/AppInstanceProfile.js +6 -4
- package/dist/models/AppInstanceProfile.js.map +1 -1
- package/dist/models/ConfirmAppInstanceRequest.d.ts +37 -0
- package/dist/models/ConfirmAppInstanceRequest.js.map +1 -1
- package/dist/models/ConfirmAppInstanceResponseBody.d.ts +47 -0
- package/dist/models/ConfirmAppInstanceResponseBody.js.map +1 -1
- package/dist/models/ListAppInstancesRequest.d.ts +4 -3
- package/dist/models/ListAppInstancesRequest.js +5 -0
- package/dist/models/ListAppInstancesRequest.js.map +1 -1
- package/dist/models/ListAppInstancesResponseBody.d.ts +3 -3
- package/dist/models/ListAppInstancesShrinkRequest.d.ts +4 -3
- package/dist/models/ListAppInstancesShrinkRequest.js +2 -0
- package/dist/models/ListAppInstancesShrinkRequest.js.map +1 -1
- package/dist/models/NotifyAppNotificationForAdminRequest.d.ts +10 -0
- package/dist/models/NotifyAppNotificationForAdminRequest.js +2 -0
- package/dist/models/NotifyAppNotificationForAdminRequest.js.map +1 -1
- package/dist/models/NotifyAppNotificationForAdminResponseBody.d.ts +34 -0
- package/dist/models/NotifyAppNotificationForAdminResponseBody.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +25 -9
- package/src/models/AppInstanceProfile.ts +9 -6
- package/src/models/ConfirmAppInstanceRequest.ts +37 -0
- package/src/models/ConfirmAppInstanceResponseBody.ts +47 -0
- package/src/models/ListAppInstancesRequest.ts +9 -3
- package/src/models/ListAppInstancesResponseBody.ts +3 -3
- package/src/models/ListAppInstancesShrinkRequest.ts +6 -3
- package/src/models/NotifyAppNotificationForAdminRequest.ts +12 -0
- package/src/models/NotifyAppNotificationForAdminResponseBody.ts +34 -0
package/src/client.ts
CHANGED
|
@@ -11,7 +11,11 @@ export default class Client extends OpenApi {
|
|
|
11
11
|
|
|
12
12
|
constructor(config: $OpenApiUtil.Config) {
|
|
13
13
|
super(config);
|
|
14
|
-
this._endpointRule = "";
|
|
14
|
+
this._endpointRule = "regional";
|
|
15
|
+
this._endpointMap = {
|
|
16
|
+
public: "websitebuild.aliyuncs.com",
|
|
17
|
+
'cn-zhangjiakou': "websitebuild.aliyuncs.com",
|
|
18
|
+
};
|
|
15
19
|
this.checkConfig(config);
|
|
16
20
|
this._endpoint = this.getEndpoint("websitebuild", this._regionId, this._endpointRule, this._network, this._suffix, this._endpointMap, this._endpoint);
|
|
17
21
|
}
|
|
@@ -428,10 +432,10 @@ export default class Client extends OpenApi {
|
|
|
428
432
|
}
|
|
429
433
|
|
|
430
434
|
/**
|
|
431
|
-
*
|
|
435
|
+
* Converts a trial instance to a paid instance.
|
|
432
436
|
*
|
|
433
437
|
* @remarks
|
|
434
|
-
*
|
|
438
|
+
* Queries application instance information.
|
|
435
439
|
*
|
|
436
440
|
* @param request - ConfirmAppInstanceRequest
|
|
437
441
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -506,10 +510,10 @@ export default class Client extends OpenApi {
|
|
|
506
510
|
}
|
|
507
511
|
|
|
508
512
|
/**
|
|
509
|
-
*
|
|
513
|
+
* Converts a trial instance to a paid instance.
|
|
510
514
|
*
|
|
511
515
|
* @remarks
|
|
512
|
-
*
|
|
516
|
+
* Queries application instance information.
|
|
513
517
|
*
|
|
514
518
|
* @param request - ConfirmAppInstanceRequest
|
|
515
519
|
* @returns ConfirmAppInstanceResponse
|
|
@@ -4470,6 +4474,10 @@ export default class Client extends OpenApi {
|
|
|
4470
4474
|
tmpReq.validate();
|
|
4471
4475
|
let request = new $_model.ListAppInstancesShrinkRequest({ });
|
|
4472
4476
|
OpenApiUtil.convert(tmpReq, request);
|
|
4477
|
+
if (!$dara.isNull(tmpReq.bizIds)) {
|
|
4478
|
+
request.bizIdsShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.bizIds, "BizIds", "json");
|
|
4479
|
+
}
|
|
4480
|
+
|
|
4473
4481
|
if (!$dara.isNull(tmpReq.statusList)) {
|
|
4474
4482
|
request.statusListShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.statusList, "StatusList", "json");
|
|
4475
4483
|
}
|
|
@@ -4479,6 +4487,10 @@ export default class Client extends OpenApi {
|
|
|
4479
4487
|
query["BizId"] = request.bizId;
|
|
4480
4488
|
}
|
|
4481
4489
|
|
|
4490
|
+
if (!$dara.isNull(request.bizIdsShrink)) {
|
|
4491
|
+
query["BizIds"] = request.bizIdsShrink;
|
|
4492
|
+
}
|
|
4493
|
+
|
|
4482
4494
|
if (!$dara.isNull(request.endTimeBegin)) {
|
|
4483
4495
|
query["EndTimeBegin"] = request.endTimeBegin;
|
|
4484
4496
|
}
|
|
@@ -5292,10 +5304,10 @@ export default class Client extends OpenApi {
|
|
|
5292
5304
|
}
|
|
5293
5305
|
|
|
5294
5306
|
/**
|
|
5295
|
-
*
|
|
5307
|
+
* Triggers a data change notification (for admin).
|
|
5296
5308
|
*
|
|
5297
5309
|
* @remarks
|
|
5298
|
-
*
|
|
5310
|
+
* Queries application instance information.
|
|
5299
5311
|
*
|
|
5300
5312
|
* @param request - NotifyAppNotificationForAdminRequest
|
|
5301
5313
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -5312,6 +5324,10 @@ export default class Client extends OpenApi {
|
|
|
5312
5324
|
query["Env"] = request.env;
|
|
5313
5325
|
}
|
|
5314
5326
|
|
|
5327
|
+
if (!$dara.isNull(request.payload)) {
|
|
5328
|
+
query["Payload"] = request.payload;
|
|
5329
|
+
}
|
|
5330
|
+
|
|
5315
5331
|
if (!$dara.isNull(request.sceneId)) {
|
|
5316
5332
|
query["SceneId"] = request.sceneId;
|
|
5317
5333
|
}
|
|
@@ -5334,10 +5350,10 @@ export default class Client extends OpenApi {
|
|
|
5334
5350
|
}
|
|
5335
5351
|
|
|
5336
5352
|
/**
|
|
5337
|
-
*
|
|
5353
|
+
* Triggers a data change notification (for admin).
|
|
5338
5354
|
*
|
|
5339
5355
|
* @remarks
|
|
5340
|
-
*
|
|
5356
|
+
* Queries application instance information.
|
|
5341
5357
|
*
|
|
5342
5358
|
* @param request - NotifyAppNotificationForAdminRequest
|
|
5343
5359
|
* @returns NotifyAppNotificationForAdminResponse
|
|
@@ -6,10 +6,13 @@ export class AppInstanceProfile extends $dara.Model {
|
|
|
6
6
|
applicationType?: string;
|
|
7
7
|
applicationTypeText?: string;
|
|
8
8
|
bizId?: string;
|
|
9
|
+
chatbiTaskId?: string;
|
|
10
|
+
chatbiTaskStatus?: string;
|
|
9
11
|
commodityCode?: string;
|
|
10
12
|
customerService?: string;
|
|
11
13
|
deployArea?: string;
|
|
12
14
|
instanceId?: string;
|
|
15
|
+
openChatBi?: boolean;
|
|
13
16
|
ordTime?: string;
|
|
14
17
|
orderId?: string;
|
|
15
18
|
payTime?: string;
|
|
@@ -20,17 +23,18 @@ export class AppInstanceProfile extends $dara.Model {
|
|
|
20
23
|
source?: string;
|
|
21
24
|
templateEtag?: string;
|
|
22
25
|
templateId?: string;
|
|
23
|
-
chatbiTaskId?: string;
|
|
24
|
-
chatbiTaskStatus?: string;
|
|
25
26
|
static names(): { [key: string]: string } {
|
|
26
27
|
return {
|
|
27
28
|
applicationType: 'ApplicationType',
|
|
28
29
|
applicationTypeText: 'ApplicationTypeText',
|
|
29
30
|
bizId: 'BizId',
|
|
31
|
+
chatbiTaskId: 'ChatbiTaskId',
|
|
32
|
+
chatbiTaskStatus: 'ChatbiTaskStatus',
|
|
30
33
|
commodityCode: 'CommodityCode',
|
|
31
34
|
customerService: 'CustomerService',
|
|
32
35
|
deployArea: 'DeployArea',
|
|
33
36
|
instanceId: 'InstanceId',
|
|
37
|
+
openChatBi: 'OpenChatBi',
|
|
34
38
|
ordTime: 'OrdTime',
|
|
35
39
|
orderId: 'OrderId',
|
|
36
40
|
payTime: 'PayTime',
|
|
@@ -41,8 +45,6 @@ export class AppInstanceProfile extends $dara.Model {
|
|
|
41
45
|
source: 'Source',
|
|
42
46
|
templateEtag: 'TemplateEtag',
|
|
43
47
|
templateId: 'TemplateId',
|
|
44
|
-
chatbiTaskId: 'chatbiTaskId',
|
|
45
|
-
chatbiTaskStatus: 'chatbiTaskStatus',
|
|
46
48
|
};
|
|
47
49
|
}
|
|
48
50
|
|
|
@@ -51,10 +53,13 @@ export class AppInstanceProfile extends $dara.Model {
|
|
|
51
53
|
applicationType: 'string',
|
|
52
54
|
applicationTypeText: 'string',
|
|
53
55
|
bizId: 'string',
|
|
56
|
+
chatbiTaskId: 'string',
|
|
57
|
+
chatbiTaskStatus: 'string',
|
|
54
58
|
commodityCode: 'string',
|
|
55
59
|
customerService: 'string',
|
|
56
60
|
deployArea: 'string',
|
|
57
61
|
instanceId: 'string',
|
|
62
|
+
openChatBi: 'boolean',
|
|
58
63
|
ordTime: 'string',
|
|
59
64
|
orderId: 'string',
|
|
60
65
|
payTime: 'string',
|
|
@@ -65,8 +70,6 @@ export class AppInstanceProfile extends $dara.Model {
|
|
|
65
70
|
source: 'string',
|
|
66
71
|
templateEtag: 'string',
|
|
67
72
|
templateId: 'string',
|
|
68
|
-
chatbiTaskId: 'string',
|
|
69
|
-
chatbiTaskStatus: 'string',
|
|
70
73
|
};
|
|
71
74
|
}
|
|
72
75
|
|
|
@@ -4,56 +4,93 @@ import * as $dara from '@darabonba/typescript';
|
|
|
4
4
|
|
|
5
5
|
export class ConfirmAppInstanceRequest extends $dara.Model {
|
|
6
6
|
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* The application type.
|
|
9
|
+
*
|
|
7
10
|
* @example
|
|
8
11
|
* PC_WebSite
|
|
9
12
|
*/
|
|
10
13
|
applicationType?: string;
|
|
11
14
|
/**
|
|
15
|
+
* @remarks
|
|
16
|
+
* Specifies whether to enable auto-renewal upon expiration.
|
|
17
|
+
*
|
|
12
18
|
* @example
|
|
13
19
|
* false
|
|
14
20
|
*/
|
|
15
21
|
autoRenew?: boolean;
|
|
16
22
|
/**
|
|
23
|
+
* @remarks
|
|
24
|
+
* The client token that is used to ensure the idempotence of the request. Generate a unique value from your client. The ClientToken value can contain only ASCII characters and cannot exceed 64 characters in length.
|
|
25
|
+
*
|
|
17
26
|
* @example
|
|
18
27
|
* 123456
|
|
19
28
|
*/
|
|
20
29
|
clientToken?: string;
|
|
21
30
|
/**
|
|
31
|
+
* @remarks
|
|
32
|
+
* The deployment region.
|
|
33
|
+
*
|
|
22
34
|
* @example
|
|
23
35
|
* HongKong
|
|
24
36
|
*/
|
|
25
37
|
deployArea?: string;
|
|
26
38
|
/**
|
|
39
|
+
* @remarks
|
|
40
|
+
* Required. The number of subscription periods.
|
|
41
|
+
*
|
|
27
42
|
* @example
|
|
28
43
|
* 1
|
|
29
44
|
*/
|
|
30
45
|
duration?: number;
|
|
31
46
|
/**
|
|
47
|
+
* @remarks
|
|
48
|
+
* The extended information.
|
|
49
|
+
*
|
|
32
50
|
* @example
|
|
33
51
|
* {\\"deliveryNodeName\\":\\"视觉设计确认\\",\\"deliveryNodeStatus\\":\\"Reject\\",\\"deliveryOperatorRole\\":\\"Customer\\"}
|
|
34
52
|
*/
|
|
35
53
|
extend?: string;
|
|
36
54
|
/**
|
|
55
|
+
* @remarks
|
|
56
|
+
* The payment type.
|
|
57
|
+
*
|
|
37
58
|
* @example
|
|
38
59
|
* AUTO_PAY
|
|
39
60
|
*/
|
|
40
61
|
paymentType?: string;
|
|
41
62
|
/**
|
|
63
|
+
* @remarks
|
|
64
|
+
* Required. The unit of the subscription period. Valid values:
|
|
65
|
+
* - Year: year
|
|
66
|
+
* - Month: month
|
|
67
|
+
* - Day: day
|
|
68
|
+
* - Hour: hour.
|
|
69
|
+
*
|
|
42
70
|
* @example
|
|
43
71
|
* Month
|
|
44
72
|
*/
|
|
45
73
|
pricingCycle?: string;
|
|
46
74
|
/**
|
|
75
|
+
* @remarks
|
|
76
|
+
* Required. The number of instances to purchase.
|
|
77
|
+
*
|
|
47
78
|
* @example
|
|
48
79
|
* 1
|
|
49
80
|
*/
|
|
50
81
|
quantity?: number;
|
|
51
82
|
/**
|
|
83
|
+
* @remarks
|
|
84
|
+
* The website version.
|
|
85
|
+
*
|
|
52
86
|
* @example
|
|
53
87
|
* Basic_Edition
|
|
54
88
|
*/
|
|
55
89
|
siteVersion?: string;
|
|
56
90
|
/**
|
|
91
|
+
* @remarks
|
|
92
|
+
* The business ID of the trial instance.
|
|
93
|
+
*
|
|
57
94
|
* @example
|
|
58
95
|
* WS123456
|
|
59
96
|
*/
|
|
@@ -4,21 +4,33 @@ import * as $dara from '@darabonba/typescript';
|
|
|
4
4
|
|
|
5
5
|
export class ConfirmAppInstanceResponseBodyModule extends $dara.Model {
|
|
6
6
|
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* The business ID.
|
|
9
|
+
*
|
|
7
10
|
* @example
|
|
8
11
|
* WD20250703155602000001
|
|
9
12
|
*/
|
|
10
13
|
bizId?: string;
|
|
11
14
|
/**
|
|
15
|
+
* @remarks
|
|
16
|
+
* The instance ID.
|
|
17
|
+
*
|
|
12
18
|
* @example
|
|
13
19
|
* idaas-cn-7mz2uc8v902
|
|
14
20
|
*/
|
|
15
21
|
instanceId?: string;
|
|
16
22
|
/**
|
|
23
|
+
* @remarks
|
|
24
|
+
* The order ID.
|
|
25
|
+
*
|
|
17
26
|
* @example
|
|
18
27
|
* 247748990880615
|
|
19
28
|
*/
|
|
20
29
|
orderId?: string;
|
|
21
30
|
/**
|
|
31
|
+
* @remarks
|
|
32
|
+
* The second-level domain name of the website.
|
|
33
|
+
*
|
|
22
34
|
* @example
|
|
23
35
|
* abcd.scd.wanwang.xin
|
|
24
36
|
*/
|
|
@@ -52,48 +64,83 @@ export class ConfirmAppInstanceResponseBodyModule extends $dara.Model {
|
|
|
52
64
|
|
|
53
65
|
export class ConfirmAppInstanceResponseBody extends $dara.Model {
|
|
54
66
|
/**
|
|
67
|
+
* @remarks
|
|
68
|
+
* The details about the access denial.
|
|
69
|
+
*
|
|
55
70
|
* @example
|
|
56
71
|
* {}
|
|
57
72
|
*/
|
|
58
73
|
accessDeniedDetail?: string;
|
|
59
74
|
/**
|
|
75
|
+
* @remarks
|
|
76
|
+
* Indicates whether retry is allowed.
|
|
77
|
+
*
|
|
60
78
|
* @example
|
|
61
79
|
* False
|
|
62
80
|
*/
|
|
63
81
|
allowRetry?: boolean;
|
|
64
82
|
/**
|
|
83
|
+
* @remarks
|
|
84
|
+
* The application name. The application with this name is queried.
|
|
85
|
+
*
|
|
65
86
|
* @example
|
|
66
87
|
* spring-cloud-b
|
|
67
88
|
*/
|
|
68
89
|
appName?: string;
|
|
69
90
|
/**
|
|
91
|
+
* @remarks
|
|
92
|
+
* The dynamic error code.
|
|
93
|
+
*
|
|
70
94
|
* @example
|
|
71
95
|
* ERROR-oo1
|
|
72
96
|
*/
|
|
73
97
|
dynamicCode?: string;
|
|
74
98
|
/**
|
|
99
|
+
* @remarks
|
|
100
|
+
* The dynamic message.
|
|
101
|
+
*
|
|
75
102
|
* @example
|
|
76
103
|
* SYSTEM_ERROR
|
|
77
104
|
*/
|
|
78
105
|
dynamicMessage?: string;
|
|
106
|
+
/**
|
|
107
|
+
* @remarks
|
|
108
|
+
* The error parameters.
|
|
109
|
+
*/
|
|
79
110
|
errorArgs?: any[];
|
|
111
|
+
/**
|
|
112
|
+
* @remarks
|
|
113
|
+
* The response data.
|
|
114
|
+
*/
|
|
80
115
|
module?: ConfirmAppInstanceResponseBodyModule;
|
|
81
116
|
/**
|
|
117
|
+
* @remarks
|
|
118
|
+
* Id of the request
|
|
119
|
+
*
|
|
82
120
|
* @example
|
|
83
121
|
* 6C6B99AC-39EC-5350-874C-204128C905E6
|
|
84
122
|
*/
|
|
85
123
|
requestId?: string;
|
|
86
124
|
/**
|
|
125
|
+
* @remarks
|
|
126
|
+
* The error code.
|
|
127
|
+
*
|
|
87
128
|
* @example
|
|
88
129
|
* SYSTEM.ERROR
|
|
89
130
|
*/
|
|
90
131
|
rootErrorCode?: string;
|
|
91
132
|
/**
|
|
133
|
+
* @remarks
|
|
134
|
+
* The error message.
|
|
135
|
+
*
|
|
92
136
|
* @example
|
|
93
137
|
* 系统异常
|
|
94
138
|
*/
|
|
95
139
|
rootErrorMsg?: string;
|
|
96
140
|
/**
|
|
141
|
+
* @remarks
|
|
142
|
+
* The reserved parameter.
|
|
143
|
+
*
|
|
97
144
|
* @example
|
|
98
145
|
* True
|
|
99
146
|
*/
|
|
@@ -11,6 +11,7 @@ export class ListAppInstancesRequest extends $dara.Model {
|
|
|
11
11
|
* WS20250731233102000001
|
|
12
12
|
*/
|
|
13
13
|
bizId?: string;
|
|
14
|
+
bizIds?: string[];
|
|
14
15
|
/**
|
|
15
16
|
* @remarks
|
|
16
17
|
* The start of the expiration time range.
|
|
@@ -47,7 +48,7 @@ export class ListAppInstancesRequest extends $dara.Model {
|
|
|
47
48
|
maxResults?: number;
|
|
48
49
|
/**
|
|
49
50
|
* @remarks
|
|
50
|
-
* The token for the next query. This parameter is empty if no more results
|
|
51
|
+
* The token for the next query. This parameter is empty if no more results are available.
|
|
51
52
|
*
|
|
52
53
|
* @example
|
|
53
54
|
* AAAAARbaCuN6hiD08qrLdwJ9Fh3BFw8paIJ7ylB6A7Qn9JjM
|
|
@@ -55,7 +56,7 @@ export class ListAppInstancesRequest extends $dara.Model {
|
|
|
55
56
|
nextToken?: string;
|
|
56
57
|
/**
|
|
57
58
|
* @remarks
|
|
58
|
-
* The field
|
|
59
|
+
* The field used for sorting.
|
|
59
60
|
*
|
|
60
61
|
* @example
|
|
61
62
|
* gmtCreated
|
|
@@ -63,7 +64,7 @@ export class ListAppInstancesRequest extends $dara.Model {
|
|
|
63
64
|
orderColumn?: string;
|
|
64
65
|
/**
|
|
65
66
|
* @remarks
|
|
66
|
-
* The sort
|
|
67
|
+
* The sort type. Valid values: ASC and DESC.
|
|
67
68
|
*
|
|
68
69
|
* @example
|
|
69
70
|
* DOWNGRADE
|
|
@@ -101,6 +102,7 @@ export class ListAppInstancesRequest extends $dara.Model {
|
|
|
101
102
|
static names(): { [key: string]: string } {
|
|
102
103
|
return {
|
|
103
104
|
bizId: 'BizId',
|
|
105
|
+
bizIds: 'BizIds',
|
|
104
106
|
endTimeBegin: 'EndTimeBegin',
|
|
105
107
|
endTimeEnd: 'EndTimeEnd',
|
|
106
108
|
extend: 'Extend',
|
|
@@ -118,6 +120,7 @@ export class ListAppInstancesRequest extends $dara.Model {
|
|
|
118
120
|
static types(): { [key: string]: any } {
|
|
119
121
|
return {
|
|
120
122
|
bizId: 'string',
|
|
123
|
+
bizIds: { 'type': 'array', 'itemType': 'string' },
|
|
121
124
|
endTimeBegin: 'string',
|
|
122
125
|
endTimeEnd: 'string',
|
|
123
126
|
extend: 'string',
|
|
@@ -133,6 +136,9 @@ export class ListAppInstancesRequest extends $dara.Model {
|
|
|
133
136
|
}
|
|
134
137
|
|
|
135
138
|
validate() {
|
|
139
|
+
if(Array.isArray(this.bizIds)) {
|
|
140
|
+
$dara.Model.validateArray(this.bizIds);
|
|
141
|
+
}
|
|
136
142
|
if(Array.isArray(this.statusList)) {
|
|
137
143
|
$dara.Model.validateArray(this.statusList);
|
|
138
144
|
}
|
|
@@ -14,7 +14,7 @@ export class ListAppInstancesResponseBody extends $dara.Model {
|
|
|
14
14
|
accessDeniedDetail?: string;
|
|
15
15
|
/**
|
|
16
16
|
* @remarks
|
|
17
|
-
* Indicates whether retry is allowed.
|
|
17
|
+
* Indicates whether a retry is allowed.
|
|
18
18
|
*
|
|
19
19
|
* @example
|
|
20
20
|
* False
|
|
@@ -82,7 +82,7 @@ export class ListAppInstancesResponseBody extends $dara.Model {
|
|
|
82
82
|
nextPage?: boolean;
|
|
83
83
|
/**
|
|
84
84
|
* @remarks
|
|
85
|
-
* The token for the next query. This parameter is empty if no more results
|
|
85
|
+
* The token for the next query. This parameter is empty if no more results are available.
|
|
86
86
|
*
|
|
87
87
|
* @example
|
|
88
88
|
* dw+qdTi1EjVSWX/INJdYNw==
|
|
@@ -114,7 +114,7 @@ export class ListAppInstancesResponseBody extends $dara.Model {
|
|
|
114
114
|
requestId?: string;
|
|
115
115
|
/**
|
|
116
116
|
* @remarks
|
|
117
|
-
*
|
|
117
|
+
* In addition to pagination limits, the server processes up to 1,000 recent records per query. If the result exceeds 1,000 records, **ResultLimit** is **true**. Narrow the time range and search again. Otherwise, **ResultLimit** is **false**.
|
|
118
118
|
*
|
|
119
119
|
* @example
|
|
120
120
|
* False
|
|
@@ -11,6 +11,7 @@ export class ListAppInstancesShrinkRequest extends $dara.Model {
|
|
|
11
11
|
* WS20250731233102000001
|
|
12
12
|
*/
|
|
13
13
|
bizId?: string;
|
|
14
|
+
bizIdsShrink?: string;
|
|
14
15
|
/**
|
|
15
16
|
* @remarks
|
|
16
17
|
* The start of the expiration time range.
|
|
@@ -47,7 +48,7 @@ export class ListAppInstancesShrinkRequest extends $dara.Model {
|
|
|
47
48
|
maxResults?: number;
|
|
48
49
|
/**
|
|
49
50
|
* @remarks
|
|
50
|
-
* The token for the next query. This parameter is empty if no more results
|
|
51
|
+
* The token for the next query. This parameter is empty if no more results are available.
|
|
51
52
|
*
|
|
52
53
|
* @example
|
|
53
54
|
* AAAAARbaCuN6hiD08qrLdwJ9Fh3BFw8paIJ7ylB6A7Qn9JjM
|
|
@@ -55,7 +56,7 @@ export class ListAppInstancesShrinkRequest extends $dara.Model {
|
|
|
55
56
|
nextToken?: string;
|
|
56
57
|
/**
|
|
57
58
|
* @remarks
|
|
58
|
-
* The field
|
|
59
|
+
* The field used for sorting.
|
|
59
60
|
*
|
|
60
61
|
* @example
|
|
61
62
|
* gmtCreated
|
|
@@ -63,7 +64,7 @@ export class ListAppInstancesShrinkRequest extends $dara.Model {
|
|
|
63
64
|
orderColumn?: string;
|
|
64
65
|
/**
|
|
65
66
|
* @remarks
|
|
66
|
-
* The sort
|
|
67
|
+
* The sort type. Valid values: ASC and DESC.
|
|
67
68
|
*
|
|
68
69
|
* @example
|
|
69
70
|
* DOWNGRADE
|
|
@@ -101,6 +102,7 @@ export class ListAppInstancesShrinkRequest extends $dara.Model {
|
|
|
101
102
|
static names(): { [key: string]: string } {
|
|
102
103
|
return {
|
|
103
104
|
bizId: 'BizId',
|
|
105
|
+
bizIdsShrink: 'BizIds',
|
|
104
106
|
endTimeBegin: 'EndTimeBegin',
|
|
105
107
|
endTimeEnd: 'EndTimeEnd',
|
|
106
108
|
extend: 'Extend',
|
|
@@ -118,6 +120,7 @@ export class ListAppInstancesShrinkRequest extends $dara.Model {
|
|
|
118
120
|
static types(): { [key: string]: any } {
|
|
119
121
|
return {
|
|
120
122
|
bizId: 'string',
|
|
123
|
+
bizIdsShrink: 'string',
|
|
121
124
|
endTimeBegin: 'string',
|
|
122
125
|
endTimeEnd: 'string',
|
|
123
126
|
extend: 'string',
|
|
@@ -4,16 +4,26 @@ import * as $dara from '@darabonba/typescript';
|
|
|
4
4
|
|
|
5
5
|
export class NotifyAppNotificationForAdminRequest extends $dara.Model {
|
|
6
6
|
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* The business ID.
|
|
9
|
+
*
|
|
7
10
|
* @example
|
|
8
11
|
* WS20260206134746000001
|
|
9
12
|
*/
|
|
10
13
|
bizId?: string;
|
|
11
14
|
/**
|
|
15
|
+
* @remarks
|
|
16
|
+
* The environment identifier.
|
|
17
|
+
*
|
|
12
18
|
* @example
|
|
13
19
|
* staging
|
|
14
20
|
*/
|
|
15
21
|
env?: string;
|
|
22
|
+
payload?: string;
|
|
16
23
|
/**
|
|
24
|
+
* @remarks
|
|
25
|
+
* The scene ID.
|
|
26
|
+
*
|
|
17
27
|
* @example
|
|
18
28
|
* 8c909373-6c33-41a7-aa38-3650e288a63e
|
|
19
29
|
*/
|
|
@@ -22,6 +32,7 @@ export class NotifyAppNotificationForAdminRequest extends $dara.Model {
|
|
|
22
32
|
return {
|
|
23
33
|
bizId: 'BizId',
|
|
24
34
|
env: 'Env',
|
|
35
|
+
payload: 'Payload',
|
|
25
36
|
sceneId: 'SceneId',
|
|
26
37
|
};
|
|
27
38
|
}
|
|
@@ -30,6 +41,7 @@ export class NotifyAppNotificationForAdminRequest extends $dara.Model {
|
|
|
30
41
|
return {
|
|
31
42
|
bizId: 'string',
|
|
32
43
|
env: 'string',
|
|
44
|
+
payload: 'string',
|
|
33
45
|
sceneId: 'string',
|
|
34
46
|
};
|
|
35
47
|
}
|
|
@@ -4,52 +4,86 @@ import * as $dara from '@darabonba/typescript';
|
|
|
4
4
|
|
|
5
5
|
export class NotifyAppNotificationForAdminResponseBody extends $dara.Model {
|
|
6
6
|
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* The detailed reason why access was denied.
|
|
9
|
+
*
|
|
7
10
|
* @example
|
|
8
11
|
* {}
|
|
9
12
|
*/
|
|
10
13
|
accessDeniedDetail?: string;
|
|
11
14
|
/**
|
|
15
|
+
* @remarks
|
|
16
|
+
* Indicates whether retry is allowed.
|
|
17
|
+
*
|
|
12
18
|
* @example
|
|
13
19
|
* False
|
|
14
20
|
*/
|
|
15
21
|
allowRetry?: boolean;
|
|
16
22
|
/**
|
|
23
|
+
* @remarks
|
|
24
|
+
* The application name. The name must start with a letter and can contain letters, digits, underscores (_), and hyphens (-). The name can be up to 36 characters in length.
|
|
25
|
+
*
|
|
17
26
|
* @example
|
|
18
27
|
* dewuApp
|
|
19
28
|
*/
|
|
20
29
|
appName?: string;
|
|
21
30
|
/**
|
|
31
|
+
* @remarks
|
|
32
|
+
* The dynamic error code.
|
|
33
|
+
*
|
|
22
34
|
* @example
|
|
23
35
|
* ERROR-oo1
|
|
24
36
|
*/
|
|
25
37
|
dynamicCode?: string;
|
|
26
38
|
/**
|
|
39
|
+
* @remarks
|
|
40
|
+
* The dynamic error message, which is used to replace the %s variable in the ErrMessage response parameter.
|
|
41
|
+
*
|
|
27
42
|
* @example
|
|
28
43
|
* SYSTEM_ERROR
|
|
29
44
|
*/
|
|
30
45
|
dynamicMessage?: string;
|
|
46
|
+
/**
|
|
47
|
+
* @remarks
|
|
48
|
+
* The error parameters.
|
|
49
|
+
*/
|
|
31
50
|
errorArgs?: any[];
|
|
32
51
|
/**
|
|
52
|
+
* @remarks
|
|
53
|
+
* The response data.
|
|
54
|
+
*
|
|
33
55
|
* @example
|
|
34
56
|
* true
|
|
35
57
|
*/
|
|
36
58
|
module?: boolean;
|
|
37
59
|
/**
|
|
60
|
+
* @remarks
|
|
61
|
+
* Id of the request
|
|
62
|
+
*
|
|
38
63
|
* @example
|
|
39
64
|
* 6C6B99AC-39EC-5350-874C-204128C905E6
|
|
40
65
|
*/
|
|
41
66
|
requestId?: string;
|
|
42
67
|
/**
|
|
68
|
+
* @remarks
|
|
69
|
+
* The error code.
|
|
70
|
+
*
|
|
43
71
|
* @example
|
|
44
72
|
* SYSTEM.ERROR
|
|
45
73
|
*/
|
|
46
74
|
rootErrorCode?: string;
|
|
47
75
|
/**
|
|
76
|
+
* @remarks
|
|
77
|
+
* The exception message.
|
|
78
|
+
*
|
|
48
79
|
* @example
|
|
49
80
|
* 系统异常
|
|
50
81
|
*/
|
|
51
82
|
rootErrorMsg?: string;
|
|
52
83
|
/**
|
|
84
|
+
* @remarks
|
|
85
|
+
* A reserved parameter.
|
|
86
|
+
*
|
|
53
87
|
* @example
|
|
54
88
|
* True
|
|
55
89
|
*/
|