@alicloud/websitebuild20250429 2.36.2 → 2.37.0

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.
Files changed (37) hide show
  1. package/dist/client.d.ts +23 -2
  2. package/dist/client.js +62 -2
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/DeleteAppSceneRecipientRequest.d.ts +37 -0
  5. package/dist/models/DeleteAppSceneRecipientRequest.js +62 -0
  6. package/dist/models/DeleteAppSceneRecipientRequest.js.map +1 -0
  7. package/dist/models/DeleteAppSceneRecipientResponse.d.ts +19 -0
  8. package/dist/models/DeleteAppSceneRecipientResponse.js +69 -0
  9. package/dist/models/DeleteAppSceneRecipientResponse.js.map +1 -0
  10. package/dist/models/DeleteAppSceneRecipientResponseBody.d.ts +98 -0
  11. package/dist/models/DeleteAppSceneRecipientResponseBody.js +81 -0
  12. package/dist/models/DeleteAppSceneRecipientResponseBody.js.map +1 -0
  13. package/dist/models/ListAppInstanceDomainsRequest.d.ts +16 -2
  14. package/dist/models/ListAppInstanceDomainsRequest.js +2 -0
  15. package/dist/models/ListAppInstanceDomainsRequest.js.map +1 -1
  16. package/dist/models/ListAppInstanceDomainsResponseBody.d.ts +76 -29
  17. package/dist/models/ListAppInstanceDomainsResponseBody.js +12 -0
  18. package/dist/models/ListAppInstanceDomainsResponseBody.js.map +1 -1
  19. package/dist/models/ListAppTemplatesRequest.d.ts +12 -2
  20. package/dist/models/ListAppTemplatesRequest.js +4 -0
  21. package/dist/models/ListAppTemplatesRequest.js.map +1 -1
  22. package/dist/models/ListAppTemplatesResponseBody.d.ts +23 -21
  23. package/dist/models/ListAppTemplatesResponseBody.js +4 -0
  24. package/dist/models/ListAppTemplatesResponseBody.js.map +1 -1
  25. package/dist/models/model.d.ts +3 -0
  26. package/dist/models/model.js +16 -10
  27. package/dist/models/model.js.map +1 -1
  28. package/package.json +1 -1
  29. package/src/client.ts +70 -2
  30. package/src/models/DeleteAppSceneRecipientRequest.ts +54 -0
  31. package/src/models/DeleteAppSceneRecipientResponse.ts +40 -0
  32. package/src/models/DeleteAppSceneRecipientResponseBody.ts +134 -0
  33. package/src/models/ListAppInstanceDomainsRequest.ts +18 -2
  34. package/src/models/ListAppInstanceDomainsResponseBody.ts +88 -29
  35. package/src/models/ListAppTemplatesRequest.ts +16 -2
  36. package/src/models/ListAppTemplatesResponseBody.ts +27 -21
  37. package/src/models/model.ts +3 -0
@@ -0,0 +1,134 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class DeleteAppSceneRecipientResponseBody extends $dara.Model {
6
+ /**
7
+ * @remarks
8
+ * The access denied details.
9
+ *
10
+ * @example
11
+ * {}
12
+ */
13
+ accessDeniedDetail?: string;
14
+ /**
15
+ * @remarks
16
+ * Indicates whether retry is allowed.
17
+ *
18
+ * @example
19
+ * False
20
+ */
21
+ allowRetry?: boolean;
22
+ /**
23
+ * @remarks
24
+ * The application name.
25
+ *
26
+ * @example
27
+ * dewuApp
28
+ */
29
+ appName?: string;
30
+ /**
31
+ * @remarks
32
+ * The dynamic error code.
33
+ *
34
+ * @example
35
+ * ERROR-oo1
36
+ */
37
+ dynamicCode?: string;
38
+ /**
39
+ * @remarks
40
+ * The dynamic message. Currently not in use. Ignore this parameter.
41
+ *
42
+ * @example
43
+ * SYSTEM_ERROR
44
+ */
45
+ dynamicMessage?: string;
46
+ /**
47
+ * @remarks
48
+ * The returned error parameters.
49
+ */
50
+ errorArgs?: any[];
51
+ /**
52
+ * @remarks
53
+ * Indicates whether the move was successful.
54
+ *
55
+ * @example
56
+ * true
57
+ */
58
+ module?: boolean;
59
+ /**
60
+ * @remarks
61
+ * Id of the request
62
+ *
63
+ * @example
64
+ * 6C6B99AC-39EC-5350-874C-204128C905E6
65
+ */
66
+ requestId?: string;
67
+ /**
68
+ * @remarks
69
+ * The error code.
70
+ *
71
+ * @example
72
+ * SYSTEM.ERROR
73
+ */
74
+ rootErrorCode?: string;
75
+ /**
76
+ * @remarks
77
+ * The exception message.
78
+ *
79
+ * @example
80
+ * System exception
81
+ */
82
+ rootErrorMsg?: string;
83
+ /**
84
+ * @remarks
85
+ * The reserved parameter.
86
+ *
87
+ * @example
88
+ * True
89
+ */
90
+ synchro?: boolean;
91
+ static names(): { [key: string]: string } {
92
+ return {
93
+ accessDeniedDetail: 'AccessDeniedDetail',
94
+ allowRetry: 'AllowRetry',
95
+ appName: 'AppName',
96
+ dynamicCode: 'DynamicCode',
97
+ dynamicMessage: 'DynamicMessage',
98
+ errorArgs: 'ErrorArgs',
99
+ module: 'Module',
100
+ requestId: 'RequestId',
101
+ rootErrorCode: 'RootErrorCode',
102
+ rootErrorMsg: 'RootErrorMsg',
103
+ synchro: 'Synchro',
104
+ };
105
+ }
106
+
107
+ static types(): { [key: string]: any } {
108
+ return {
109
+ accessDeniedDetail: 'string',
110
+ allowRetry: 'boolean',
111
+ appName: 'string',
112
+ dynamicCode: 'string',
113
+ dynamicMessage: 'string',
114
+ errorArgs: { 'type': 'array', 'itemType': 'any' },
115
+ module: 'boolean',
116
+ requestId: 'string',
117
+ rootErrorCode: 'string',
118
+ rootErrorMsg: 'string',
119
+ synchro: 'boolean',
120
+ };
121
+ }
122
+
123
+ validate() {
124
+ if(Array.isArray(this.errorArgs)) {
125
+ $dara.Model.validateArray(this.errorArgs);
126
+ }
127
+ super.validate();
128
+ }
129
+
130
+ constructor(map?: { [key: string]: any }) {
131
+ super(map);
132
+ }
133
+ }
134
+
@@ -19,6 +19,7 @@ export class ListAppInstanceDomainsRequest extends $dara.Model {
19
19
  /**
20
20
  * @remarks
21
21
  * The domain management type. Valid values:
22
+ *
22
23
  * - CUSTOM
23
24
  * - PLATFORM_PREFIX
24
25
  *
@@ -27,7 +28,9 @@ export class ListAppInstanceDomainsRequest extends $dara.Model {
27
28
  domainType?: string;
28
29
  /**
29
30
  * @remarks
30
- * The maximum number of entries returned per query.
31
+ * The number of entries per query.
32
+ *
33
+ * Valid values: 10 to 100. Default value: 20.
31
34
  *
32
35
  * @example
33
36
  * 50
@@ -43,7 +46,7 @@ export class ListAppInstanceDomainsRequest extends $dara.Model {
43
46
  nextToken?: string;
44
47
  /**
45
48
  * @remarks
46
- * The field used for sorting.
49
+ * The field by which to sort the results.
47
50
  *
48
51
  * @example
49
52
  * CreationTime
@@ -52,6 +55,7 @@ export class ListAppInstanceDomainsRequest extends $dara.Model {
52
55
  /**
53
56
  * @remarks
54
57
  * The sort type. Valid values:
58
+ *
55
59
  * - ASC
56
60
  * - DESC
57
61
  *
@@ -75,6 +79,16 @@ export class ListAppInstanceDomainsRequest extends $dara.Model {
75
79
  * 0
76
80
  */
77
81
  pageSize?: number;
82
+ /**
83
+ * @remarks
84
+ * The domain status query mode. Valid values:
85
+ *
86
+ * - BASIC: returns only the persisted status.
87
+ * - REALTIME: refreshes the external service status.
88
+ *
89
+ * Default value: REALTIME.
90
+ */
91
+ statusQueryMode?: string;
78
92
  static names(): { [key: string]: string } {
79
93
  return {
80
94
  bizId: 'BizId',
@@ -86,6 +100,7 @@ export class ListAppInstanceDomainsRequest extends $dara.Model {
86
100
  orderType: 'OrderType',
87
101
  pageNum: 'PageNum',
88
102
  pageSize: 'PageSize',
103
+ statusQueryMode: 'StatusQueryMode',
89
104
  };
90
105
  }
91
106
 
@@ -100,6 +115,7 @@ export class ListAppInstanceDomainsRequest extends $dara.Model {
100
115
  orderType: 'string',
101
116
  pageNum: 'number',
102
117
  pageSize: 'number',
118
+ statusQueryMode: 'string',
103
119
  };
104
120
  }
105
121
 
@@ -5,7 +5,7 @@ import * as $dara from '@darabonba/typescript';
5
5
  export class ListAppInstanceDomainsResponseBodyModuleDataCertificate extends $dara.Model {
6
6
  /**
7
7
  * @remarks
8
- * The certificate name.
8
+ * The name of the certificate.
9
9
  *
10
10
  * @example
11
11
  * 2024
@@ -13,7 +13,7 @@ export class ListAppInstanceDomainsResponseBodyModuleDataCertificate extends $da
13
13
  certificateName?: string;
14
14
  /**
15
15
  * @remarks
16
- * The certificate status.
16
+ * The status of the certificate.
17
17
  *
18
18
  * @example
19
19
  * ACTIVE
@@ -21,7 +21,7 @@ export class ListAppInstanceDomainsResponseBodyModuleDataCertificate extends $da
21
21
  certificateStatus?: string;
22
22
  /**
23
23
  * @remarks
24
- * The certificate type.
24
+ * The type of the certificate.
25
25
  *
26
26
  * @example
27
27
  * self-signed
@@ -29,7 +29,7 @@ export class ListAppInstanceDomainsResponseBodyModuleDataCertificate extends $da
29
29
  certificateType?: string;
30
30
  /**
31
31
  * @remarks
32
- * The certificate expiration date.
32
+ * The expiration date of the certificate.
33
33
  *
34
34
  * @example
35
35
  * 4885718400000
@@ -109,7 +109,7 @@ export class ListAppInstanceDomainsResponseBodyModuleDataDnsConflictRecords exte
109
109
  export class ListAppInstanceDomainsResponseBodyModuleDataDnsConflict extends $dara.Model {
110
110
  /**
111
111
  * @remarks
112
- * Indicates whether automatic override is supported. A value of true indicates the domain is under the current Alibaba Cloud account. A value of false indicates otherwise.
112
+ * Specifies whether automatic override is supported. The value is true for the current Alibaba Cloud account and false for other accounts.
113
113
  */
114
114
  canAutoResolve?: boolean;
115
115
  /**
@@ -160,12 +160,15 @@ export class ListAppInstanceDomainsResponseBodyModuleDataDnsConflict extends $da
160
160
  export class ListAppInstanceDomainsResponseBodyModuleDataMigration extends $dara.Model {
161
161
  /**
162
162
  * @remarks
163
- * The migration status. Valid values: NOT_STARTED, IN_PROGRESS, and COMPLETED.
163
+ * The migration status. Valid values:
164
+ * - NOT_STARTED
165
+ * - IN_PROGRESS
166
+ * - COMPLETED
164
167
  */
165
168
  migrationStatus?: string;
166
169
  /**
167
170
  * @remarks
168
- * The complete domain status before migration. The structure is consistent with the current domain DTO, so the frontend can directly reuse the rendering logic.
171
+ * The complete state of the domain name before migration. The structure is consistent with the current domain name DTO, and the frontend can directly reuse the rendering logic.
169
172
  */
170
173
  previousDomain?: any;
171
174
  static names(): { [key: string]: string } {
@@ -202,7 +205,9 @@ export class ListAppInstanceDomainsResponseBodyModuleDataOwnership extends $dara
202
205
  account?: string;
203
206
  /**
204
207
  * @remarks
205
- * The registrar type. Valid values: ALIYUN and OTHER.
208
+ * The registrar type. Valid values:
209
+ * - ALIYUN
210
+ * - OTHER
206
211
  *
207
212
  * @example
208
213
  * ROS
@@ -513,7 +518,7 @@ export class ListAppInstanceDomainsResponseBodyModuleData extends $dara.Model {
513
518
  deployType?: string;
514
519
  /**
515
520
  * @remarks
516
- * The DNS conflict information. This field has a value when resolveStatus is DNS_CONFLICT.
521
+ * The DNS conflict information. This parameter has a value only when resolveStatus is DNS_CONFLICT.
517
522
  */
518
523
  dnsConflict?: ListAppInstanceDomainsResponseBodyModuleDataDnsConflict;
519
524
  /**
@@ -531,9 +536,19 @@ export class ListAppInstanceDomainsResponseBodyModuleData extends $dara.Model {
531
536
  domainType?: string;
532
537
  /**
533
538
  * @remarks
534
- * The domain migration information. This field is returned when a region switch occurs.
539
+ * The ICP filing status of the domain name. Valid values: FILED, NOT_FILED, and NOT_REQUIRED.
540
+ */
541
+ icpFilingStatus?: string;
542
+ /**
543
+ * @remarks
544
+ * The domain name migration information. This parameter is returned when a region switch occurs.
535
545
  */
536
546
  migration?: ListAppInstanceDomainsResponseBodyModuleDataMigration;
547
+ /**
548
+ * @remarks
549
+ * Indicates whether the website is currently offline. This status belongs to the application instance, and all domain names under the same instance share the same value.
550
+ */
551
+ offline?: boolean;
537
552
  /**
538
553
  * @remarks
539
554
  * The overall binding status.
@@ -549,7 +564,7 @@ export class ListAppInstanceDomainsResponseBodyModuleData extends $dara.Model {
549
564
  ownership?: ListAppInstanceDomainsResponseBodyModuleDataOwnership;
550
565
  /**
551
566
  * @remarks
552
- * The domain qualification information.
567
+ * The domain name qualification information.
553
568
  */
554
569
  qualification?: ListAppInstanceDomainsResponseBodyModuleDataQualification;
555
570
  /**
@@ -570,7 +585,9 @@ export class ListAppInstanceDomainsResponseBodyModuleData extends $dara.Model {
570
585
  dnsConflict: 'DnsConflict',
571
586
  domainName: 'DomainName',
572
587
  domainType: 'DomainType',
588
+ icpFilingStatus: 'IcpFilingStatus',
573
589
  migration: 'Migration',
590
+ offline: 'Offline',
574
591
  overallStatus: 'OverallStatus',
575
592
  ownership: 'Ownership',
576
593
  qualification: 'Qualification',
@@ -587,7 +604,9 @@ export class ListAppInstanceDomainsResponseBodyModuleData extends $dara.Model {
587
604
  dnsConflict: ListAppInstanceDomainsResponseBodyModuleDataDnsConflict,
588
605
  domainName: 'string',
589
606
  domainType: 'string',
607
+ icpFilingStatus: 'string',
590
608
  migration: ListAppInstanceDomainsResponseBodyModuleDataMigration,
609
+ offline: 'boolean',
591
610
  overallStatus: 'string',
592
611
  ownership: ListAppInstanceDomainsResponseBodyModuleDataOwnership,
593
612
  qualification: ListAppInstanceDomainsResponseBodyModuleDataQualification,
@@ -629,7 +648,7 @@ export class ListAppInstanceDomainsResponseBodyModuleData extends $dara.Model {
629
648
  export class ListAppInstanceDomainsResponseBodyModuleNextCertificate extends $dara.Model {
630
649
  /**
631
650
  * @remarks
632
- * The certificate name.
651
+ * The name of the certificate.
633
652
  *
634
653
  * @example
635
654
  * jfztkg202502
@@ -637,7 +656,7 @@ export class ListAppInstanceDomainsResponseBodyModuleNextCertificate extends $da
637
656
  certificateName?: string;
638
657
  /**
639
658
  * @remarks
640
- * The certificate status.
659
+ * The status of the certificate.
641
660
  *
642
661
  * @example
643
662
  * ACTIVE
@@ -645,7 +664,7 @@ export class ListAppInstanceDomainsResponseBodyModuleNextCertificate extends $da
645
664
  certificateStatus?: string;
646
665
  /**
647
666
  * @remarks
648
- * The certificate type.
667
+ * The type of the certificate.
649
668
  *
650
669
  * @example
651
670
  * Server
@@ -653,7 +672,7 @@ export class ListAppInstanceDomainsResponseBodyModuleNextCertificate extends $da
653
672
  certificateType?: string;
654
673
  /**
655
674
  * @remarks
656
- * The certificate expiration date.
675
+ * The expiration date of the certificate.
657
676
  *
658
677
  * @example
659
678
  * 2025-01-15T02:04:00Z
@@ -730,7 +749,7 @@ export class ListAppInstanceDomainsResponseBodyModuleNextDnsConflictRecords exte
730
749
  export class ListAppInstanceDomainsResponseBodyModuleNextDnsConflict extends $dara.Model {
731
750
  /**
732
751
  * @remarks
733
- * Indicates whether automatic override is supported. A value of true indicates the domain is under the current Alibaba Cloud account. A value of false indicates otherwise.
752
+ * Specifies whether automatic override is supported. The value is true for the current Alibaba Cloud account and false for other accounts.
734
753
  */
735
754
  canAutoResolve?: boolean;
736
755
  /**
@@ -781,12 +800,15 @@ export class ListAppInstanceDomainsResponseBodyModuleNextDnsConflict extends $da
781
800
  export class ListAppInstanceDomainsResponseBodyModuleNextMigration extends $dara.Model {
782
801
  /**
783
802
  * @remarks
784
- * The migration status. Valid values: NOT_STARTED, IN_PROGRESS, and COMPLETED.
803
+ * The migration status. Valid values:
804
+ * - NOT_STARTED
805
+ * - IN_PROGRESS
806
+ * - COMPLETED
785
807
  */
786
808
  migrationStatus?: string;
787
809
  /**
788
810
  * @remarks
789
- * The complete domain status before migration. The structure is consistent with the current domain DTO, so the frontend can directly reuse the rendering logic.
811
+ * The complete state of the domain name before migration. The structure is consistent with the current domain name DTO, and the frontend can directly reuse the rendering logic.
790
812
  */
791
813
  previousDomain?: any;
792
814
  static names(): { [key: string]: string } {
@@ -823,7 +845,9 @@ export class ListAppInstanceDomainsResponseBodyModuleNextOwnership extends $dara
823
845
  account?: string;
824
846
  /**
825
847
  * @remarks
826
- * The registrar type. Valid values: ALIYUN and OTHER.
848
+ * The registrar type. Valid values:
849
+ * - ALIYUN
850
+ * - OTHER
827
851
  *
828
852
  * @example
829
853
  * pai
@@ -1123,7 +1147,15 @@ export class ListAppInstanceDomainsResponseBodyModuleNext extends $dara.Model {
1123
1147
  createTime?: string;
1124
1148
  /**
1125
1149
  * @remarks
1126
- * The DNS conflict information. This field has a value when resolveStatus is DNS_CONFLICT.
1150
+ * The network hosting type. Valid values:
1151
+ * - CDN
1152
+ * - INDEP_DEPLOY
1153
+ * - ESA_SAAS
1154
+ */
1155
+ deployType?: string;
1156
+ /**
1157
+ * @remarks
1158
+ * The DNS conflict information. This parameter has a value only when resolveStatus is DNS_CONFLICT.
1127
1159
  */
1128
1160
  dnsConflict?: ListAppInstanceDomainsResponseBodyModuleNextDnsConflict;
1129
1161
  /**
@@ -1136,9 +1168,26 @@ export class ListAppInstanceDomainsResponseBodyModuleNext extends $dara.Model {
1136
1168
  domainName?: string;
1137
1169
  /**
1138
1170
  * @remarks
1139
- * The domain migration information. This field is returned when a region switch occurs.
1171
+ * The domain management type. Valid values:
1172
+ * - CUSTOM
1173
+ * - PLATFORM_PREFIX
1174
+ */
1175
+ domainType?: string;
1176
+ /**
1177
+ * @remarks
1178
+ * The ICP filing status of the domain name. Valid values: FILED, NOT_FILED, and NOT_REQUIRED.
1179
+ */
1180
+ icpFilingStatus?: string;
1181
+ /**
1182
+ * @remarks
1183
+ * The domain name migration information. This parameter is returned when a region switch occurs.
1140
1184
  */
1141
1185
  migration?: ListAppInstanceDomainsResponseBodyModuleNextMigration;
1186
+ /**
1187
+ * @remarks
1188
+ * Indicates whether the website is currently offline. This status belongs to the application instance, and all domain names under the same instance share the same value.
1189
+ */
1190
+ offline?: boolean;
1142
1191
  /**
1143
1192
  * @remarks
1144
1193
  * The overall binding status.
@@ -1154,7 +1203,7 @@ export class ListAppInstanceDomainsResponseBodyModuleNext extends $dara.Model {
1154
1203
  ownership?: ListAppInstanceDomainsResponseBodyModuleNextOwnership;
1155
1204
  /**
1156
1205
  * @remarks
1157
- * The domain qualification information.
1206
+ * The domain name qualification information.
1158
1207
  */
1159
1208
  qualification?: ListAppInstanceDomainsResponseBodyModuleNextQualification;
1160
1209
  /**
@@ -1171,9 +1220,13 @@ export class ListAppInstanceDomainsResponseBodyModuleNext extends $dara.Model {
1171
1220
  return {
1172
1221
  certificate: 'Certificate',
1173
1222
  createTime: 'CreateTime',
1223
+ deployType: 'DeployType',
1174
1224
  dnsConflict: 'DnsConflict',
1175
1225
  domainName: 'DomainName',
1226
+ domainType: 'DomainType',
1227
+ icpFilingStatus: 'IcpFilingStatus',
1176
1228
  migration: 'Migration',
1229
+ offline: 'Offline',
1177
1230
  overallStatus: 'OverallStatus',
1178
1231
  ownership: 'Ownership',
1179
1232
  qualification: 'Qualification',
@@ -1186,9 +1239,13 @@ export class ListAppInstanceDomainsResponseBodyModuleNext extends $dara.Model {
1186
1239
  return {
1187
1240
  certificate: ListAppInstanceDomainsResponseBodyModuleNextCertificate,
1188
1241
  createTime: 'string',
1242
+ deployType: 'string',
1189
1243
  dnsConflict: ListAppInstanceDomainsResponseBodyModuleNextDnsConflict,
1190
1244
  domainName: 'string',
1245
+ domainType: 'string',
1246
+ icpFilingStatus: 'string',
1191
1247
  migration: ListAppInstanceDomainsResponseBodyModuleNextMigration,
1248
+ offline: 'boolean',
1192
1249
  overallStatus: 'string',
1193
1250
  ownership: ListAppInstanceDomainsResponseBodyModuleNextOwnership,
1194
1251
  qualification: ListAppInstanceDomainsResponseBodyModuleNextQualification,
@@ -1266,12 +1323,12 @@ export class ListAppInstanceDomainsResponseBodyModule extends $dara.Model {
1266
1323
  prePage?: boolean;
1267
1324
  /**
1268
1325
  * @remarks
1269
- * Indicates whether the result set exceeds the server-side limit. The server processes up to 1000 records for the current query regardless of pagination settings. If the results exceed 1000 records, **ResultLimit** is **true** and you need to narrow the time range and search again. Otherwise, **ResultLimit** is **false**.
1326
+ * In addition to the pagination limit, the server processes a maximum of 1000 recent records for the current query. If the result exceeds 1000 records, **ResultLimit** is **true**, and you must narrow the time range and search again. Otherwise, **ResultLimit** is **false**.
1270
1327
  */
1271
1328
  resultLimit?: boolean;
1272
1329
  /**
1273
1330
  * @remarks
1274
- * The total number of records.
1331
+ * The total number of entries.
1275
1332
  *
1276
1333
  * @example
1277
1334
  * 0
@@ -1331,7 +1388,7 @@ export class ListAppInstanceDomainsResponseBodyModule extends $dara.Model {
1331
1388
  export class ListAppInstanceDomainsResponseBody extends $dara.Model {
1332
1389
  /**
1333
1390
  * @remarks
1334
- * The detailed reason for access denial.
1391
+ * The details about the access denial.
1335
1392
  *
1336
1393
  * @example
1337
1394
  * {}
@@ -1347,7 +1404,7 @@ export class ListAppInstanceDomainsResponseBody extends $dara.Model {
1347
1404
  allowRetry?: boolean;
1348
1405
  /**
1349
1406
  * @remarks
1350
- * The app name.
1407
+ * The application name.
1351
1408
  *
1352
1409
  * @example
1353
1410
  * dewuApp
@@ -1363,8 +1420,8 @@ export class ListAppInstanceDomainsResponseBody extends $dara.Model {
1363
1420
  dynamicCode?: string;
1364
1421
  /**
1365
1422
  * @remarks
1366
- * The dynamic error message. It is used to replace the `%s` variable in the **ErrMessage** response parameter.
1367
- * > For example, if **ErrMessage** returns **The Value of Input Parameter %s is not valid** and **DynamicMessage** returns **DtsJobId**, the request parameter **DtsJobId** that you specify is invalid.
1423
+ * The dynamic error message, which is used to replace the `%s` variable in the **ErrMessage** parameter.
1424
+ * > If **ErrMessage** returns **The Value of Input Parameter %s is not valid** and **DynamicMessage** returns **DtsJobId**, the value of the request parameter **DtsJobId** is invalid.
1368
1425
  *
1369
1426
  * @example
1370
1427
  * SYSTEM_ERROR
@@ -1377,7 +1434,9 @@ export class ListAppInstanceDomainsResponseBody extends $dara.Model {
1377
1434
  errorArgs?: any[];
1378
1435
  /**
1379
1436
  * @remarks
1380
- * The maximum number of entries returned per query.
1437
+ * The number of entries per query.
1438
+ *
1439
+ * Valid values: 10 to 100. Default value: 20.
1381
1440
  *
1382
1441
  * @example
1383
1442
  * 10
@@ -53,6 +53,16 @@ export class ListAppTemplatesRequest extends $dara.Model {
53
53
  * 0l45bkwM022Dt+rOvPi/oQ==
54
54
  */
55
55
  nextToken?: string;
56
+ /**
57
+ * @remarks
58
+ * The sort field. Only copyCount and gmtModified are supported.
59
+ */
60
+ orderColumn?: string;
61
+ /**
62
+ * @remarks
63
+ * The sort direction. Valid values: ASC and DESC. Default value: DESC.
64
+ */
65
+ orderType?: string;
56
66
  /**
57
67
  * @remarks
58
68
  * The page number.
@@ -63,7 +73,7 @@ export class ListAppTemplatesRequest extends $dara.Model {
63
73
  pageNum?: number;
64
74
  /**
65
75
  * @remarks
66
- * The page size.
76
+ * The number of entries per page.
67
77
  *
68
78
  * @example
69
79
  * 10
@@ -71,7 +81,7 @@ export class ListAppTemplatesRequest extends $dara.Model {
71
81
  pageSize?: number;
72
82
  /**
73
83
  * @remarks
74
- * The Edition.
84
+ * The edition.
75
85
  *
76
86
  * @example
77
87
  * V2
@@ -93,6 +103,8 @@ export class ListAppTemplatesRequest extends $dara.Model {
93
103
  keyword: 'Keyword',
94
104
  maxResults: 'MaxResults',
95
105
  nextToken: 'NextToken',
106
+ orderColumn: 'OrderColumn',
107
+ orderType: 'OrderType',
96
108
  pageNum: 'PageNum',
97
109
  pageSize: 'PageSize',
98
110
  productVersion: 'ProductVersion',
@@ -108,6 +120,8 @@ export class ListAppTemplatesRequest extends $dara.Model {
108
120
  keyword: 'string',
109
121
  maxResults: 'number',
110
122
  nextToken: 'string',
123
+ orderColumn: 'string',
124
+ orderType: 'string',
111
125
  pageNum: 'number',
112
126
  pageSize: 'number',
113
127
  productVersion: 'string',