@alicloud/websitebuild20250429 2.30.0 → 2.30.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.
Files changed (35) hide show
  1. package/dist/client.d.ts +2 -2
  2. package/dist/client.js +5 -2
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/BindAppDomainResponseBody.d.ts +36 -3
  5. package/dist/models/BindAppDomainResponseBody.js +59 -1
  6. package/dist/models/BindAppDomainResponseBody.js.map +1 -1
  7. package/dist/models/GrantPromotionOfferForPartnerRequest.d.ts +1 -0
  8. package/dist/models/GrantPromotionOfferForPartnerRequest.js +2 -0
  9. package/dist/models/GrantPromotionOfferForPartnerRequest.js.map +1 -1
  10. package/dist/models/GrantPromotionOfferForPartnerResponseBody.d.ts +4 -4
  11. package/dist/models/IntrospectAppInstanceTicketForPreviewRequest.d.ts +2 -2
  12. package/dist/models/IntrospectAppInstanceTicketForPreviewResponseBody.d.ts +20 -20
  13. package/dist/models/ListAppInstanceDomainsRequest.d.ts +4 -4
  14. package/dist/models/ListAppInstanceDomainsResponseBody.d.ts +117 -20
  15. package/dist/models/ListAppInstanceDomainsResponseBody.js +171 -1
  16. package/dist/models/ListAppInstanceDomainsResponseBody.js.map +1 -1
  17. package/dist/models/ListPromotionActivitiesForPartnerResponseBody.d.ts +6 -6
  18. package/dist/models/ListPromotionOfferRecordsForPartnerRequest.d.ts +1 -1
  19. package/dist/models/ListPromotionOfferRecordsForPartnerResponseBody.d.ts +3 -3
  20. package/dist/models/model.d.ts +8 -0
  21. package/dist/models/model.js +50 -34
  22. package/dist/models/model.js.map +1 -1
  23. package/package.json +1 -1
  24. package/src/client.ts +6 -2
  25. package/src/models/BindAppDomainResponseBody.ts +76 -3
  26. package/src/models/GrantPromotionOfferForPartnerRequest.ts +3 -0
  27. package/src/models/GrantPromotionOfferForPartnerResponseBody.ts +4 -4
  28. package/src/models/IntrospectAppInstanceTicketForPreviewRequest.ts +2 -2
  29. package/src/models/IntrospectAppInstanceTicketForPreviewResponseBody.ts +20 -20
  30. package/src/models/ListAppInstanceDomainsRequest.ts +4 -4
  31. package/src/models/ListAppInstanceDomainsResponseBody.ts +233 -20
  32. package/src/models/ListPromotionActivitiesForPartnerResponseBody.ts +6 -6
  33. package/src/models/ListPromotionOfferRecordsForPartnerRequest.ts +1 -1
  34. package/src/models/ListPromotionOfferRecordsForPartnerResponseBody.ts +3 -3
  35. package/src/models/model.ts +8 -0
@@ -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
@@ -62,6 +62,99 @@ export class ListAppInstanceDomainsResponseBodyModuleDataCertificate extends $da
62
62
  }
63
63
  }
64
64
 
65
+ export class ListAppInstanceDomainsResponseBodyModuleDataDnsConflictRecords extends $dara.Model {
66
+ host?: string;
67
+ recordType?: string;
68
+ status?: string;
69
+ value?: string;
70
+ static names(): { [key: string]: string } {
71
+ return {
72
+ host: 'Host',
73
+ recordType: 'RecordType',
74
+ status: 'Status',
75
+ value: 'Value',
76
+ };
77
+ }
78
+
79
+ static types(): { [key: string]: any } {
80
+ return {
81
+ host: 'string',
82
+ recordType: 'string',
83
+ status: 'string',
84
+ value: 'string',
85
+ };
86
+ }
87
+
88
+ validate() {
89
+ super.validate();
90
+ }
91
+
92
+ constructor(map?: { [key: string]: any }) {
93
+ super(map);
94
+ }
95
+ }
96
+
97
+ export class ListAppInstanceDomainsResponseBodyModuleDataDnsConflict extends $dara.Model {
98
+ canAutoResolve?: boolean;
99
+ hasConflict?: boolean;
100
+ message?: string;
101
+ records?: ListAppInstanceDomainsResponseBodyModuleDataDnsConflictRecords[];
102
+ static names(): { [key: string]: string } {
103
+ return {
104
+ canAutoResolve: 'CanAutoResolve',
105
+ hasConflict: 'HasConflict',
106
+ message: 'Message',
107
+ records: 'Records',
108
+ };
109
+ }
110
+
111
+ static types(): { [key: string]: any } {
112
+ return {
113
+ canAutoResolve: 'boolean',
114
+ hasConflict: 'boolean',
115
+ message: 'string',
116
+ records: { 'type': 'array', 'itemType': ListAppInstanceDomainsResponseBodyModuleDataDnsConflictRecords },
117
+ };
118
+ }
119
+
120
+ validate() {
121
+ if(Array.isArray(this.records)) {
122
+ $dara.Model.validateArray(this.records);
123
+ }
124
+ super.validate();
125
+ }
126
+
127
+ constructor(map?: { [key: string]: any }) {
128
+ super(map);
129
+ }
130
+ }
131
+
132
+ export class ListAppInstanceDomainsResponseBodyModuleDataMigration extends $dara.Model {
133
+ migrationStatus?: string;
134
+ previousDomain?: any;
135
+ static names(): { [key: string]: string } {
136
+ return {
137
+ migrationStatus: 'MigrationStatus',
138
+ previousDomain: 'PreviousDomain',
139
+ };
140
+ }
141
+
142
+ static types(): { [key: string]: any } {
143
+ return {
144
+ migrationStatus: 'string',
145
+ previousDomain: 'any',
146
+ };
147
+ }
148
+
149
+ validate() {
150
+ super.validate();
151
+ }
152
+
153
+ constructor(map?: { [key: string]: any }) {
154
+ super(map);
155
+ }
156
+ }
157
+
65
158
  export class ListAppInstanceDomainsResponseBodyModuleDataOwnership extends $dara.Model {
66
159
  /**
67
160
  * @remarks
@@ -366,17 +459,18 @@ export class ListAppInstanceDomainsResponseBodyModuleDataVerification extends $d
366
459
  export class ListAppInstanceDomainsResponseBodyModuleData extends $dara.Model {
367
460
  /**
368
461
  * @remarks
369
- * The SSL certificate information of the domain name.
462
+ * The domain name SSL certificate information.
370
463
  */
371
464
  certificate?: ListAppInstanceDomainsResponseBodyModuleDataCertificate;
372
465
  /**
373
466
  * @remarks
374
- * The time when the instance was created. Format: yyyy-MM-dd HH:mm:ss.
467
+ * The instance creation time. Format: yyyy-MM-dd HH:mm:ss.
375
468
  *
376
469
  * @example
377
470
  * 1683256054000
378
471
  */
379
472
  createTime?: string;
473
+ dnsConflict?: ListAppInstanceDomainsResponseBodyModuleDataDnsConflict;
380
474
  /**
381
475
  * @remarks
382
476
  * The domain name.
@@ -385,6 +479,7 @@ export class ListAppInstanceDomainsResponseBodyModuleData extends $dara.Model {
385
479
  * kaibaidu.com
386
480
  */
387
481
  domainName?: string;
482
+ migration?: ListAppInstanceDomainsResponseBodyModuleDataMigration;
388
483
  /**
389
484
  * @remarks
390
485
  * The overall binding status.
@@ -417,7 +512,9 @@ export class ListAppInstanceDomainsResponseBodyModuleData extends $dara.Model {
417
512
  return {
418
513
  certificate: 'Certificate',
419
514
  createTime: 'CreateTime',
515
+ dnsConflict: 'DnsConflict',
420
516
  domainName: 'DomainName',
517
+ migration: 'Migration',
421
518
  overallStatus: 'OverallStatus',
422
519
  ownership: 'Ownership',
423
520
  qualification: 'Qualification',
@@ -430,7 +527,9 @@ export class ListAppInstanceDomainsResponseBodyModuleData extends $dara.Model {
430
527
  return {
431
528
  certificate: ListAppInstanceDomainsResponseBodyModuleDataCertificate,
432
529
  createTime: 'string',
530
+ dnsConflict: ListAppInstanceDomainsResponseBodyModuleDataDnsConflict,
433
531
  domainName: 'string',
532
+ migration: ListAppInstanceDomainsResponseBodyModuleDataMigration,
434
533
  overallStatus: 'string',
435
534
  ownership: ListAppInstanceDomainsResponseBodyModuleDataOwnership,
436
535
  qualification: ListAppInstanceDomainsResponseBodyModuleDataQualification,
@@ -443,6 +542,12 @@ export class ListAppInstanceDomainsResponseBodyModuleData extends $dara.Model {
443
542
  if(this.certificate && typeof (this.certificate as any).validate === 'function') {
444
543
  (this.certificate as any).validate();
445
544
  }
545
+ if(this.dnsConflict && typeof (this.dnsConflict as any).validate === 'function') {
546
+ (this.dnsConflict as any).validate();
547
+ }
548
+ if(this.migration && typeof (this.migration as any).validate === 'function') {
549
+ (this.migration as any).validate();
550
+ }
446
551
  if(this.ownership && typeof (this.ownership as any).validate === 'function') {
447
552
  (this.ownership as any).validate();
448
553
  }
@@ -466,7 +571,7 @@ export class ListAppInstanceDomainsResponseBodyModuleData extends $dara.Model {
466
571
  export class ListAppInstanceDomainsResponseBodyModuleNextCertificate extends $dara.Model {
467
572
  /**
468
573
  * @remarks
469
- * The certificate name.
574
+ * The name of the certificate.
470
575
  *
471
576
  * @example
472
577
  * jfztkg202502
@@ -474,7 +579,7 @@ export class ListAppInstanceDomainsResponseBodyModuleNextCertificate extends $da
474
579
  certificateName?: string;
475
580
  /**
476
581
  * @remarks
477
- * The certificate status.
582
+ * The status of the certificate.
478
583
  *
479
584
  * @example
480
585
  * ACTIVE
@@ -482,7 +587,7 @@ export class ListAppInstanceDomainsResponseBodyModuleNextCertificate extends $da
482
587
  certificateStatus?: string;
483
588
  /**
484
589
  * @remarks
485
- * The certificate type.
590
+ * The type of the certificate.
486
591
  *
487
592
  * @example
488
593
  * Server
@@ -523,6 +628,96 @@ export class ListAppInstanceDomainsResponseBodyModuleNextCertificate extends $da
523
628
  }
524
629
  }
525
630
 
631
+ export class ListAppInstanceDomainsResponseBodyModuleNextDnsConflictRecords extends $dara.Model {
632
+ host?: string;
633
+ recordType?: string;
634
+ value?: string;
635
+ static names(): { [key: string]: string } {
636
+ return {
637
+ host: 'Host',
638
+ recordType: 'RecordType',
639
+ value: 'Value',
640
+ };
641
+ }
642
+
643
+ static types(): { [key: string]: any } {
644
+ return {
645
+ host: 'string',
646
+ recordType: 'string',
647
+ value: 'string',
648
+ };
649
+ }
650
+
651
+ validate() {
652
+ super.validate();
653
+ }
654
+
655
+ constructor(map?: { [key: string]: any }) {
656
+ super(map);
657
+ }
658
+ }
659
+
660
+ export class ListAppInstanceDomainsResponseBodyModuleNextDnsConflict extends $dara.Model {
661
+ canAutoResolve?: boolean;
662
+ hasConflict?: boolean;
663
+ message?: string;
664
+ records?: ListAppInstanceDomainsResponseBodyModuleNextDnsConflictRecords[];
665
+ static names(): { [key: string]: string } {
666
+ return {
667
+ canAutoResolve: 'CanAutoResolve',
668
+ hasConflict: 'HasConflict',
669
+ message: 'Message',
670
+ records: 'Records',
671
+ };
672
+ }
673
+
674
+ static types(): { [key: string]: any } {
675
+ return {
676
+ canAutoResolve: 'boolean',
677
+ hasConflict: 'boolean',
678
+ message: 'string',
679
+ records: { 'type': 'array', 'itemType': ListAppInstanceDomainsResponseBodyModuleNextDnsConflictRecords },
680
+ };
681
+ }
682
+
683
+ validate() {
684
+ if(Array.isArray(this.records)) {
685
+ $dara.Model.validateArray(this.records);
686
+ }
687
+ super.validate();
688
+ }
689
+
690
+ constructor(map?: { [key: string]: any }) {
691
+ super(map);
692
+ }
693
+ }
694
+
695
+ export class ListAppInstanceDomainsResponseBodyModuleNextMigration extends $dara.Model {
696
+ migrationStatus?: string;
697
+ previousDomain?: any;
698
+ static names(): { [key: string]: string } {
699
+ return {
700
+ migrationStatus: 'MigrationStatus',
701
+ previousDomain: 'PreviousDomain',
702
+ };
703
+ }
704
+
705
+ static types(): { [key: string]: any } {
706
+ return {
707
+ migrationStatus: 'string',
708
+ previousDomain: 'any',
709
+ };
710
+ }
711
+
712
+ validate() {
713
+ super.validate();
714
+ }
715
+
716
+ constructor(map?: { [key: string]: any }) {
717
+ super(map);
718
+ }
719
+ }
720
+
526
721
  export class ListAppInstanceDomainsResponseBodyModuleNextOwnership extends $dara.Model {
527
722
  /**
528
723
  * @remarks
@@ -540,10 +735,12 @@ export class ListAppInstanceDomainsResponseBodyModuleNextOwnership extends $dara
540
735
  * pai
541
736
  */
542
737
  provider?: string;
738
+ rootDomain?: string;
543
739
  static names(): { [key: string]: string } {
544
740
  return {
545
741
  account: 'Account',
546
742
  provider: 'Provider',
743
+ rootDomain: 'RootDomain',
547
744
  };
548
745
  }
549
746
 
@@ -551,6 +748,7 @@ export class ListAppInstanceDomainsResponseBodyModuleNextOwnership extends $dara
551
748
  return {
552
749
  account: 'string',
553
750
  provider: 'string',
751
+ rootDomain: 'string',
554
752
  };
555
753
  }
556
754
 
@@ -776,11 +974,13 @@ export class ListAppInstanceDomainsResponseBodyModuleNextVerification extends $d
776
974
  * SUCCESSFUL
777
975
  */
778
976
  verificationStatus?: string;
977
+ verificationStatusCode?: string;
779
978
  static names(): { [key: string]: string } {
780
979
  return {
781
980
  dnsRecord: 'DnsRecord',
782
981
  errorMsg: 'ErrorMsg',
783
982
  verificationStatus: 'VerificationStatus',
983
+ verificationStatusCode: 'VerificationStatusCode',
784
984
  };
785
985
  }
786
986
 
@@ -789,6 +989,7 @@ export class ListAppInstanceDomainsResponseBodyModuleNextVerification extends $d
789
989
  dnsRecord: ListAppInstanceDomainsResponseBodyModuleNextVerificationDnsRecord,
790
990
  errorMsg: 'string',
791
991
  verificationStatus: 'string',
992
+ verificationStatusCode: 'string',
792
993
  };
793
994
  }
794
995
 
@@ -807,17 +1008,18 @@ export class ListAppInstanceDomainsResponseBodyModuleNextVerification extends $d
807
1008
  export class ListAppInstanceDomainsResponseBodyModuleNext extends $dara.Model {
808
1009
  /**
809
1010
  * @remarks
810
- * The SSL certificate information of the domain name.
1011
+ * The domain name SSL certificate information.
811
1012
  */
812
1013
  certificate?: ListAppInstanceDomainsResponseBodyModuleNextCertificate;
813
1014
  /**
814
1015
  * @remarks
815
- * The time when the instance was created. Format: yyyy-MM-dd HH:mm:ss.
1016
+ * The instance creation time. Format: yyyy-MM-dd HH:mm:ss.
816
1017
  *
817
1018
  * @example
818
1019
  * 1741572465000
819
1020
  */
820
1021
  createTime?: string;
1022
+ dnsConflict?: ListAppInstanceDomainsResponseBodyModuleNextDnsConflict;
821
1023
  /**
822
1024
  * @remarks
823
1025
  * The domain name.
@@ -826,6 +1028,7 @@ export class ListAppInstanceDomainsResponseBodyModuleNext extends $dara.Model {
826
1028
  * usdcoin.xin
827
1029
  */
828
1030
  domainName?: string;
1031
+ migration?: ListAppInstanceDomainsResponseBodyModuleNextMigration;
829
1032
  /**
830
1033
  * @remarks
831
1034
  * The overall binding status.
@@ -858,7 +1061,9 @@ export class ListAppInstanceDomainsResponseBodyModuleNext extends $dara.Model {
858
1061
  return {
859
1062
  certificate: 'Certificate',
860
1063
  createTime: 'CreateTime',
1064
+ dnsConflict: 'DnsConflict',
861
1065
  domainName: 'DomainName',
1066
+ migration: 'Migration',
862
1067
  overallStatus: 'OverallStatus',
863
1068
  ownership: 'Ownership',
864
1069
  qualification: 'Qualification',
@@ -871,7 +1076,9 @@ export class ListAppInstanceDomainsResponseBodyModuleNext extends $dara.Model {
871
1076
  return {
872
1077
  certificate: ListAppInstanceDomainsResponseBodyModuleNextCertificate,
873
1078
  createTime: 'string',
1079
+ dnsConflict: ListAppInstanceDomainsResponseBodyModuleNextDnsConflict,
874
1080
  domainName: 'string',
1081
+ migration: ListAppInstanceDomainsResponseBodyModuleNextMigration,
875
1082
  overallStatus: 'string',
876
1083
  ownership: ListAppInstanceDomainsResponseBodyModuleNextOwnership,
877
1084
  qualification: ListAppInstanceDomainsResponseBodyModuleNextQualification,
@@ -884,6 +1091,12 @@ export class ListAppInstanceDomainsResponseBodyModuleNext extends $dara.Model {
884
1091
  if(this.certificate && typeof (this.certificate as any).validate === 'function') {
885
1092
  (this.certificate as any).validate();
886
1093
  }
1094
+ if(this.dnsConflict && typeof (this.dnsConflict as any).validate === 'function') {
1095
+ (this.dnsConflict as any).validate();
1096
+ }
1097
+ if(this.migration && typeof (this.migration as any).validate === 'function') {
1098
+ (this.migration as any).validate();
1099
+ }
887
1100
  if(this.ownership && typeof (this.ownership as any).validate === 'function') {
888
1101
  (this.ownership as any).validate();
889
1102
  }
@@ -915,7 +1128,7 @@ export class ListAppInstanceDomainsResponseBodyModule extends $dara.Model {
915
1128
  currentPageNum?: number;
916
1129
  /**
917
1130
  * @remarks
918
- * The query results.
1131
+ * The request results.
919
1132
  */
920
1133
  data?: ListAppInstanceDomainsResponseBodyModuleData[];
921
1134
  /**
@@ -943,7 +1156,7 @@ export class ListAppInstanceDomainsResponseBodyModule extends $dara.Model {
943
1156
  prePage?: boolean;
944
1157
  /**
945
1158
  * @remarks
946
- * In addition to pagination limits, the server processes up to 1,000 recent records per query. If the results exceed 1,000 records, **ResultLimit** is **true**. In this case, narrow the time range and search again. Otherwise, **ResultLimit** is **false**.
1159
+ * The server processes up to 1000 recent records beyond the pagination limit. If the results exceed 1000 entries, **ResultLimit** is **true**, and you must narrow the time range and search again. Otherwise, **ResultLimit** is **false**.
947
1160
  */
948
1161
  resultLimit?: boolean;
949
1162
  /**
@@ -1008,7 +1221,7 @@ export class ListAppInstanceDomainsResponseBodyModule extends $dara.Model {
1008
1221
  export class ListAppInstanceDomainsResponseBody extends $dara.Model {
1009
1222
  /**
1010
1223
  * @remarks
1011
- * The details about the access denial.
1224
+ * The detailed reason why access was denied.
1012
1225
  *
1013
1226
  * @example
1014
1227
  * {}
@@ -1016,7 +1229,7 @@ export class ListAppInstanceDomainsResponseBody extends $dara.Model {
1016
1229
  accessDeniedDetail?: string;
1017
1230
  /**
1018
1231
  * @remarks
1019
- * Indicates whether a retry is allowed.
1232
+ * Indicates whether retry is allowed.
1020
1233
  *
1021
1234
  * @example
1022
1235
  * False
@@ -1040,8 +1253,8 @@ export class ListAppInstanceDomainsResponseBody extends $dara.Model {
1040
1253
  dynamicCode?: string;
1041
1254
  /**
1042
1255
  * @remarks
1043
- * The dynamic error message, which is used to replace the `%s` placeholder in the **ErrMessage** response parameter.
1044
- * > If **ErrMessage** returns **The Value of Input Parameter %s is not valid** and **DynamicMessage** returns **DtsJobId**, the value of the **DtsJobId** request parameter is invalid.
1256
+ * The dynamic error message, which is used to replace the `%s` in the **ErrMessage** return parameter.
1257
+ * > If **ErrMessage** returns **The Value of Input Parameter %s is not valid** and **DynamicMessage** returns **DtsJobId**, the request parameter **DtsJobId** is invalid.
1045
1258
  *
1046
1259
  * @example
1047
1260
  * SYSTEM_ERROR
@@ -1049,12 +1262,12 @@ export class ListAppInstanceDomainsResponseBody extends $dara.Model {
1049
1262
  dynamicMessage?: string;
1050
1263
  /**
1051
1264
  * @remarks
1052
- * The error parameters.
1265
+ * The error parameters returned.
1053
1266
  */
1054
1267
  errorArgs?: any[];
1055
1268
  /**
1056
1269
  * @remarks
1057
- * The maximum number of entries to return per query.
1270
+ * The maximum number of entries per query.
1058
1271
  *
1059
1272
  * Valid values: 10 to 100. Default value: 20.
1060
1273
  *
@@ -1069,7 +1282,7 @@ export class ListAppInstanceDomainsResponseBody extends $dara.Model {
1069
1282
  module?: ListAppInstanceDomainsResponseBodyModule;
1070
1283
  /**
1071
1284
  * @remarks
1072
- * The token for the next query. This parameter is empty if there are no more results.
1285
+ * The token for the next query. This parameter is empty if no more results exist.
1073
1286
  *
1074
1287
  * @example
1075
1288
  * dw+qdTi1EjVSWX/INJdYNw==
@@ -1093,7 +1306,7 @@ export class ListAppInstanceDomainsResponseBody extends $dara.Model {
1093
1306
  rootErrorCode?: string;
1094
1307
  /**
1095
1308
  * @remarks
1096
- * The error message.
1309
+ * The exception message.
1097
1310
  *
1098
1311
  * @example
1099
1312
  * 系统异常
@@ -45,7 +45,7 @@ export class ListPromotionActivitiesForPartnerResponseBodyModuleActivities exten
45
45
  createTime?: string;
46
46
  /**
47
47
  * @remarks
48
- * The creator.
48
+ * The user who created the activity.
49
49
  *
50
50
  * @example
51
51
  * onlinehoztestrolebasicallow1755461756261068111(300216315676902267)
@@ -53,7 +53,7 @@ export class ListPromotionActivitiesForPartnerResponseBodyModuleActivities exten
53
53
  createdBy?: string;
54
54
  /**
55
55
  * @remarks
56
- * The eligibility configuration (JSON).
56
+ * The eligibility configuration in JSON format.
57
57
  *
58
58
  * @example
59
59
  * {}
@@ -69,7 +69,7 @@ export class ListPromotionActivitiesForPartnerResponseBodyModuleActivities exten
69
69
  endDate?: string;
70
70
  /**
71
71
  * @remarks
72
- * The offer configuration (JSON).
72
+ * The offer configuration in JSON format.
73
73
  *
74
74
  * @example
75
75
  * {}
@@ -117,7 +117,7 @@ export class ListPromotionActivitiesForPartnerResponseBodyModuleActivities exten
117
117
  totalQuota?: number;
118
118
  /**
119
119
  * @remarks
120
- * The touchpoint configuration (JSON).
120
+ * The touchpoint configuration in JSON format.
121
121
  *
122
122
  * @example
123
123
  * {}
@@ -210,7 +210,7 @@ export class ListPromotionActivitiesForPartnerResponseBodyModule extends $dara.M
210
210
  activities?: ListPromotionActivitiesForPartnerResponseBodyModuleActivities[];
211
211
  /**
212
212
  * @remarks
213
- * The total count.
213
+ * The total number of entries.
214
214
  *
215
215
  * @example
216
216
  * 30
@@ -245,7 +245,7 @@ export class ListPromotionActivitiesForPartnerResponseBodyModule extends $dara.M
245
245
  export class ListPromotionActivitiesForPartnerResponseBody extends $dara.Model {
246
246
  /**
247
247
  * @remarks
248
- * The access denied detail.
248
+ * The access denied details.
249
249
  *
250
250
  * @example
251
251
  * {}
@@ -13,7 +13,7 @@ export class ListPromotionOfferRecordsForPartnerRequest extends $dara.Model {
13
13
  activityCode?: string;
14
14
  /**
15
15
  * @remarks
16
- * The belonging ID.
16
+ * The belong ID.
17
17
  *
18
18
  * @example
19
19
  * 123456
@@ -146,7 +146,7 @@ export class ListPromotionOfferRecordsForPartnerResponseBodyModule extends $dara
146
146
  records?: ListPromotionOfferRecordsForPartnerResponseBodyModuleRecords[];
147
147
  /**
148
148
  * @remarks
149
- * The total number of records.
149
+ * The total number of entries.
150
150
  *
151
151
  * @example
152
152
  * 30
@@ -193,7 +193,7 @@ export class ListPromotionOfferRecordsForPartnerResponseBody extends $dara.Model
193
193
  accessDeniedDetail?: string;
194
194
  /**
195
195
  * @remarks
196
- * Indicates whether retry is allowed.
196
+ * Indicates whether a retry is allowed.
197
197
  *
198
198
  * @example
199
199
  * False
@@ -269,7 +269,7 @@ export class ListPromotionOfferRecordsForPartnerResponseBody extends $dara.Model
269
269
  rootErrorCode?: string;
270
270
  /**
271
271
  * @remarks
272
- * The exception message.
272
+ * The error message.
273
273
  *
274
274
  * @example
275
275
  * 系统异常
@@ -14,6 +14,8 @@ export { ModuleDataComponentsValuePropertiesValueValues } from './ModuleDataComp
14
14
  export { ModuleNextComponentsValuePropertiesValueValues } from './ModuleNextComponentsValuePropertiesValue';
15
15
  export { AllocateSupabaseForAdminResponseBodyModule } from './AllocateSupabaseForAdminResponseBody';
16
16
  export { BatchCheckResourceMeasureResponseBodyModule } from './BatchCheckResourceMeasureResponseBody';
17
+ export { BindAppDomainResponseBodyModuleDnsConflictRecords } from './BindAppDomainResponseBody';
18
+ export { BindAppDomainResponseBodyModuleDnsConflict } from './BindAppDomainResponseBody';
17
19
  export { BindAppDomainResponseBodyModule } from './BindAppDomainResponseBody';
18
20
  export { CheckAppVerifyCodeResponseBodyModule } from './CheckAppVerifyCodeResponseBody';
19
21
  export { CheckResourceMeasureResponseBodyModule } from './CheckResourceMeasureResponseBody';
@@ -112,6 +114,9 @@ export { ListAppDomainRedirectRecordsResponseBodyModuleData } from './ListAppDom
112
114
  export { ListAppDomainRedirectRecordsResponseBodyModuleNext } from './ListAppDomainRedirectRecordsResponseBody';
113
115
  export { ListAppDomainRedirectRecordsResponseBodyModule } from './ListAppDomainRedirectRecordsResponseBody';
114
116
  export { ListAppInstanceDomainsResponseBodyModuleDataCertificate } from './ListAppInstanceDomainsResponseBody';
117
+ export { ListAppInstanceDomainsResponseBodyModuleDataDnsConflictRecords } from './ListAppInstanceDomainsResponseBody';
118
+ export { ListAppInstanceDomainsResponseBodyModuleDataDnsConflict } from './ListAppInstanceDomainsResponseBody';
119
+ export { ListAppInstanceDomainsResponseBodyModuleDataMigration } from './ListAppInstanceDomainsResponseBody';
115
120
  export { ListAppInstanceDomainsResponseBodyModuleDataOwnership } from './ListAppInstanceDomainsResponseBody';
116
121
  export { ListAppInstanceDomainsResponseBodyModuleDataQualification } from './ListAppInstanceDomainsResponseBody';
117
122
  export { ListAppInstanceDomainsResponseBodyModuleDataResolutionDnsRecord } from './ListAppInstanceDomainsResponseBody';
@@ -120,6 +125,9 @@ export { ListAppInstanceDomainsResponseBodyModuleDataVerificationDnsRecord } fro
120
125
  export { ListAppInstanceDomainsResponseBodyModuleDataVerification } from './ListAppInstanceDomainsResponseBody';
121
126
  export { ListAppInstanceDomainsResponseBodyModuleData } from './ListAppInstanceDomainsResponseBody';
122
127
  export { ListAppInstanceDomainsResponseBodyModuleNextCertificate } from './ListAppInstanceDomainsResponseBody';
128
+ export { ListAppInstanceDomainsResponseBodyModuleNextDnsConflictRecords } from './ListAppInstanceDomainsResponseBody';
129
+ export { ListAppInstanceDomainsResponseBodyModuleNextDnsConflict } from './ListAppInstanceDomainsResponseBody';
130
+ export { ListAppInstanceDomainsResponseBodyModuleNextMigration } from './ListAppInstanceDomainsResponseBody';
123
131
  export { ListAppInstanceDomainsResponseBodyModuleNextOwnership } from './ListAppInstanceDomainsResponseBody';
124
132
  export { ListAppInstanceDomainsResponseBodyModuleNextQualification } from './ListAppInstanceDomainsResponseBody';
125
133
  export { ListAppInstanceDomainsResponseBodyModuleNextResolutionDnsRecord } from './ListAppInstanceDomainsResponseBody';