@alicloud/websitebuild20250429 2.30.1 → 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.
- package/dist/client.d.ts +2 -2
- package/dist/client.js +2 -2
- package/dist/models/BindAppDomainResponseBody.d.ts +36 -3
- package/dist/models/BindAppDomainResponseBody.js +59 -1
- package/dist/models/BindAppDomainResponseBody.js.map +1 -1
- package/dist/models/IntrospectAppInstanceTicketForPreviewRequest.d.ts +2 -2
- package/dist/models/IntrospectAppInstanceTicketForPreviewResponseBody.d.ts +20 -20
- package/dist/models/ListAppInstanceDomainsRequest.d.ts +4 -4
- package/dist/models/ListAppInstanceDomainsResponseBody.d.ts +117 -20
- package/dist/models/ListAppInstanceDomainsResponseBody.js +171 -1
- package/dist/models/ListAppInstanceDomainsResponseBody.js.map +1 -1
- package/dist/models/ListPromotionActivitiesForPartnerResponseBody.d.ts +6 -6
- package/dist/models/model.d.ts +8 -0
- package/dist/models/model.js +50 -34
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +2 -2
- package/src/models/BindAppDomainResponseBody.ts +76 -3
- package/src/models/IntrospectAppInstanceTicketForPreviewRequest.ts +2 -2
- package/src/models/IntrospectAppInstanceTicketForPreviewResponseBody.ts +20 -20
- package/src/models/ListAppInstanceDomainsRequest.ts +4 -4
- package/src/models/ListAppInstanceDomainsResponseBody.ts +233 -20
- package/src/models/ListPromotionActivitiesForPartnerResponseBody.ts +6 -6
- package/src/models/model.ts +8 -0
|
@@ -33,21 +33,79 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
33
33
|
};
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.BindAppDomainResponseBody = exports.BindAppDomainResponseBodyModule = void 0;
|
|
36
|
+
exports.BindAppDomainResponseBody = exports.BindAppDomainResponseBodyModule = exports.BindAppDomainResponseBodyModuleDnsConflict = exports.BindAppDomainResponseBodyModuleDnsConflictRecords = void 0;
|
|
37
37
|
// This file is auto-generated, don't edit it
|
|
38
38
|
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class BindAppDomainResponseBodyModuleDnsConflictRecords extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
host: 'Host',
|
|
43
|
+
recordType: 'RecordType',
|
|
44
|
+
status: 'Status',
|
|
45
|
+
value: 'Value',
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
static types() {
|
|
49
|
+
return {
|
|
50
|
+
host: 'string',
|
|
51
|
+
recordType: 'string',
|
|
52
|
+
status: 'string',
|
|
53
|
+
value: 'string',
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
validate() {
|
|
57
|
+
super.validate();
|
|
58
|
+
}
|
|
59
|
+
constructor(map) {
|
|
60
|
+
super(map);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
exports.BindAppDomainResponseBodyModuleDnsConflictRecords = BindAppDomainResponseBodyModuleDnsConflictRecords;
|
|
64
|
+
class BindAppDomainResponseBodyModuleDnsConflict extends $dara.Model {
|
|
65
|
+
static names() {
|
|
66
|
+
return {
|
|
67
|
+
canAutoResolve: 'CanAutoResolve',
|
|
68
|
+
hasConflict: 'HasConflict',
|
|
69
|
+
message: 'Message',
|
|
70
|
+
records: 'Records',
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
static types() {
|
|
74
|
+
return {
|
|
75
|
+
canAutoResolve: 'boolean',
|
|
76
|
+
hasConflict: 'boolean',
|
|
77
|
+
message: 'string',
|
|
78
|
+
records: { 'type': 'array', 'itemType': BindAppDomainResponseBodyModuleDnsConflictRecords },
|
|
79
|
+
};
|
|
80
|
+
}
|
|
81
|
+
validate() {
|
|
82
|
+
if (Array.isArray(this.records)) {
|
|
83
|
+
$dara.Model.validateArray(this.records);
|
|
84
|
+
}
|
|
85
|
+
super.validate();
|
|
86
|
+
}
|
|
87
|
+
constructor(map) {
|
|
88
|
+
super(map);
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
exports.BindAppDomainResponseBodyModuleDnsConflict = BindAppDomainResponseBodyModuleDnsConflict;
|
|
39
92
|
class BindAppDomainResponseBodyModule extends $dara.Model {
|
|
40
93
|
static names() {
|
|
41
94
|
return {
|
|
95
|
+
dnsConflict: 'DnsConflict',
|
|
42
96
|
success: 'Success',
|
|
43
97
|
};
|
|
44
98
|
}
|
|
45
99
|
static types() {
|
|
46
100
|
return {
|
|
101
|
+
dnsConflict: BindAppDomainResponseBodyModuleDnsConflict,
|
|
47
102
|
success: 'boolean',
|
|
48
103
|
};
|
|
49
104
|
}
|
|
50
105
|
validate() {
|
|
106
|
+
if (this.dnsConflict && typeof this.dnsConflict.validate === 'function') {
|
|
107
|
+
this.dnsConflict.validate();
|
|
108
|
+
}
|
|
51
109
|
super.validate();
|
|
52
110
|
}
|
|
53
111
|
constructor(map) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BindAppDomainResponseBody.js","sourceRoot":"","sources":["../../src/models/BindAppDomainResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,+BAAgC,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"BindAppDomainResponseBody.js","sourceRoot":"","sources":["../../src/models/BindAppDomainResponseBody.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,7 +2,7 @@ import * as $dara from '@darabonba/typescript';
|
|
|
2
2
|
export declare class IntrospectAppInstanceTicketForPreviewRequest extends $dara.Model {
|
|
3
3
|
/**
|
|
4
4
|
* @remarks
|
|
5
|
-
*
|
|
5
|
+
* Business ID
|
|
6
6
|
*
|
|
7
7
|
* @example
|
|
8
8
|
* WS12345678
|
|
@@ -10,7 +10,7 @@ export declare class IntrospectAppInstanceTicketForPreviewRequest extends $dara.
|
|
|
10
10
|
bizId?: string;
|
|
11
11
|
/**
|
|
12
12
|
* @remarks
|
|
13
|
-
*
|
|
13
|
+
* Password-free login access token
|
|
14
14
|
*
|
|
15
15
|
* @example
|
|
16
16
|
* ogxMqT04nnZOqdIqJZldbm-ZNsAVDz5mcqdCSudfX0SL61jjyWfV-ZnAO-OVpCt_aDl8xaaIO1OVkuvEcMn-HR_QddvaxMqIdsMY1cHdD4SDiRfOBGNdnpSdX9gG_Hi_.ab9c10816d913b51d87520ce0a72b2970668144c552689e9d9e211eb4529f0ea
|
|
@@ -2,7 +2,7 @@ import * as $dara from '@darabonba/typescript';
|
|
|
2
2
|
export declare class IntrospectAppInstanceTicketForPreviewResponseBodyModule extends $dara.Model {
|
|
3
3
|
/**
|
|
4
4
|
* @remarks
|
|
5
|
-
*
|
|
5
|
+
* Access token time-to-live (TTL)
|
|
6
6
|
*
|
|
7
7
|
* @example
|
|
8
8
|
* 2025-12-18T22:30:00+08:00
|
|
@@ -10,7 +10,7 @@ export declare class IntrospectAppInstanceTicketForPreviewResponseBodyModule ext
|
|
|
10
10
|
accessTokenExpiresAt?: string;
|
|
11
11
|
/**
|
|
12
12
|
* @remarks
|
|
13
|
-
*
|
|
13
|
+
* Access token issue Time
|
|
14
14
|
*
|
|
15
15
|
* @example
|
|
16
16
|
* 2025-12-18T22:30:00+08:00
|
|
@@ -18,7 +18,7 @@ export declare class IntrospectAppInstanceTicketForPreviewResponseBodyModule ext
|
|
|
18
18
|
accessTokenIssuedAt?: string;
|
|
19
19
|
/**
|
|
20
20
|
* @remarks
|
|
21
|
-
*
|
|
21
|
+
* Access token value
|
|
22
22
|
*
|
|
23
23
|
* @example
|
|
24
24
|
* 2108341e17661121129745384e79f9
|
|
@@ -34,7 +34,7 @@ export declare class IntrospectAppInstanceTicketForPreviewResponseBodyModule ext
|
|
|
34
34
|
aliyunPk?: string;
|
|
35
35
|
/**
|
|
36
36
|
* @remarks
|
|
37
|
-
*
|
|
37
|
+
* Extension property
|
|
38
38
|
*
|
|
39
39
|
* @example
|
|
40
40
|
* {}
|
|
@@ -42,7 +42,7 @@ export declare class IntrospectAppInstanceTicketForPreviewResponseBodyModule ext
|
|
|
42
42
|
attributes?: string;
|
|
43
43
|
/**
|
|
44
44
|
* @remarks
|
|
45
|
-
*
|
|
45
|
+
* Authorization code Type
|
|
46
46
|
*
|
|
47
47
|
* @example
|
|
48
48
|
* authorization_code
|
|
@@ -58,7 +58,7 @@ export declare class IntrospectAppInstanceTicketForPreviewResponseBodyModule ext
|
|
|
58
58
|
bid?: string;
|
|
59
59
|
/**
|
|
60
60
|
* @remarks
|
|
61
|
-
*
|
|
61
|
+
* Parent Alibaba Cloud PK
|
|
62
62
|
*
|
|
63
63
|
* @example
|
|
64
64
|
* 12343131221311
|
|
@@ -66,7 +66,7 @@ export declare class IntrospectAppInstanceTicketForPreviewResponseBodyModule ext
|
|
|
66
66
|
parentPk?: string;
|
|
67
67
|
/**
|
|
68
68
|
* @remarks
|
|
69
|
-
*
|
|
69
|
+
* Time-to-live (TTL) of the refresh token
|
|
70
70
|
*
|
|
71
71
|
* @example
|
|
72
72
|
* 1768619049924
|
|
@@ -74,7 +74,7 @@ export declare class IntrospectAppInstanceTicketForPreviewResponseBodyModule ext
|
|
|
74
74
|
refreshTokenExpiresAt?: string;
|
|
75
75
|
/**
|
|
76
76
|
* @remarks
|
|
77
|
-
*
|
|
77
|
+
* Refresh token issue Time
|
|
78
78
|
*
|
|
79
79
|
* @example
|
|
80
80
|
* 1768619049924
|
|
@@ -82,7 +82,7 @@ export declare class IntrospectAppInstanceTicketForPreviewResponseBodyModule ext
|
|
|
82
82
|
refreshTokenIssuedAt?: string;
|
|
83
83
|
/**
|
|
84
84
|
* @remarks
|
|
85
|
-
*
|
|
85
|
+
* Refresh token value
|
|
86
86
|
*
|
|
87
87
|
* @example
|
|
88
88
|
* be9750d595b6cd7c93a80b46
|
|
@@ -90,7 +90,7 @@ export declare class IntrospectAppInstanceTicketForPreviewResponseBodyModule ext
|
|
|
90
90
|
refreshTokenValue?: string;
|
|
91
91
|
/**
|
|
92
92
|
* @remarks
|
|
93
|
-
*
|
|
93
|
+
* Externally Unique
|
|
94
94
|
*
|
|
95
95
|
* @example
|
|
96
96
|
* hdm_33be9750d595b6cd7c93a80b46734b22
|
|
@@ -110,7 +110,7 @@ export declare class IntrospectAppInstanceTicketForPreviewResponseBodyModule ext
|
|
|
110
110
|
export declare class IntrospectAppInstanceTicketForPreviewResponseBody extends $dara.Model {
|
|
111
111
|
/**
|
|
112
112
|
* @remarks
|
|
113
|
-
*
|
|
113
|
+
* Detailed reason for access denial.
|
|
114
114
|
*
|
|
115
115
|
* @example
|
|
116
116
|
* {}
|
|
@@ -126,7 +126,7 @@ export declare class IntrospectAppInstanceTicketForPreviewResponseBody extends $
|
|
|
126
126
|
allowRetry?: boolean;
|
|
127
127
|
/**
|
|
128
128
|
* @remarks
|
|
129
|
-
*
|
|
129
|
+
* App Name.
|
|
130
130
|
*
|
|
131
131
|
* @example
|
|
132
132
|
* or
|
|
@@ -134,7 +134,7 @@ export declare class IntrospectAppInstanceTicketForPreviewResponseBody extends $
|
|
|
134
134
|
appName?: string;
|
|
135
135
|
/**
|
|
136
136
|
* @remarks
|
|
137
|
-
*
|
|
137
|
+
* Dynamic error code.
|
|
138
138
|
*
|
|
139
139
|
* @example
|
|
140
140
|
* ERROR-oo1
|
|
@@ -142,8 +142,8 @@ export declare class IntrospectAppInstanceTicketForPreviewResponseBody extends $
|
|
|
142
142
|
dynamicCode?: string;
|
|
143
143
|
/**
|
|
144
144
|
* @remarks
|
|
145
|
-
*
|
|
146
|
-
* > If **ErrMessage** returns **The Value of Input Parameter %s is not valid** and **DynamicMessage** returns **DtsJobId**,
|
|
145
|
+
* Dynamic error message used to replace the `%s` placeholder in the **ErrMessage** error message.
|
|
146
|
+
* > If **ErrMessage** returns **The Value of Input Parameter %s is not valid** and **DynamicMessage** returns **DtsJobId**, it indicates that the provided request parameter **DtsJobId** is invalid.
|
|
147
147
|
*
|
|
148
148
|
* @example
|
|
149
149
|
* SYSTEM_ERROR
|
|
@@ -151,12 +151,12 @@ export declare class IntrospectAppInstanceTicketForPreviewResponseBody extends $
|
|
|
151
151
|
dynamicMessage?: string;
|
|
152
152
|
/**
|
|
153
153
|
* @remarks
|
|
154
|
-
*
|
|
154
|
+
* Returned error parameters
|
|
155
155
|
*/
|
|
156
156
|
errorArgs?: any[];
|
|
157
157
|
/**
|
|
158
158
|
* @remarks
|
|
159
|
-
*
|
|
159
|
+
* Returned object.
|
|
160
160
|
*/
|
|
161
161
|
module?: IntrospectAppInstanceTicketForPreviewResponseBodyModule;
|
|
162
162
|
/**
|
|
@@ -169,7 +169,7 @@ export declare class IntrospectAppInstanceTicketForPreviewResponseBody extends $
|
|
|
169
169
|
requestId?: string;
|
|
170
170
|
/**
|
|
171
171
|
* @remarks
|
|
172
|
-
*
|
|
172
|
+
* Error code
|
|
173
173
|
*
|
|
174
174
|
* @example
|
|
175
175
|
* SYSTEM.ERROR
|
|
@@ -177,7 +177,7 @@ export declare class IntrospectAppInstanceTicketForPreviewResponseBody extends $
|
|
|
177
177
|
rootErrorCode?: string;
|
|
178
178
|
/**
|
|
179
179
|
* @remarks
|
|
180
|
-
*
|
|
180
|
+
* Abnormal message
|
|
181
181
|
*
|
|
182
182
|
* @example
|
|
183
183
|
* 系统异常
|
|
@@ -185,7 +185,7 @@ export declare class IntrospectAppInstanceTicketForPreviewResponseBody extends $
|
|
|
185
185
|
rootErrorMsg?: string;
|
|
186
186
|
/**
|
|
187
187
|
* @remarks
|
|
188
|
-
*
|
|
188
|
+
* Reserved parameter.
|
|
189
189
|
*
|
|
190
190
|
* @example
|
|
191
191
|
* True
|
|
@@ -11,7 +11,7 @@ export declare class ListAppInstanceDomainsRequest extends $dara.Model {
|
|
|
11
11
|
domainKeyword?: string;
|
|
12
12
|
/**
|
|
13
13
|
* @remarks
|
|
14
|
-
* The maximum number of entries
|
|
14
|
+
* The maximum number of entries per query.
|
|
15
15
|
*
|
|
16
16
|
* Valid values: 10 to 100. Default value: 20.
|
|
17
17
|
*
|
|
@@ -21,7 +21,7 @@ export declare class ListAppInstanceDomainsRequest extends $dara.Model {
|
|
|
21
21
|
maxResults?: number;
|
|
22
22
|
/**
|
|
23
23
|
* @remarks
|
|
24
|
-
* The token for the next query. This parameter is empty if
|
|
24
|
+
* The token for the next query. This parameter is empty if no more results exist.
|
|
25
25
|
*
|
|
26
26
|
* @example
|
|
27
27
|
* 0l45bkwM022Dt+rOvPi/oQ==
|
|
@@ -29,7 +29,7 @@ export declare class ListAppInstanceDomainsRequest extends $dara.Model {
|
|
|
29
29
|
nextToken?: string;
|
|
30
30
|
/**
|
|
31
31
|
* @remarks
|
|
32
|
-
* The field
|
|
32
|
+
* The field used for sorting.
|
|
33
33
|
*
|
|
34
34
|
* @example
|
|
35
35
|
* CreationTime
|
|
@@ -37,7 +37,7 @@ export declare class ListAppInstanceDomainsRequest extends $dara.Model {
|
|
|
37
37
|
orderColumn?: string;
|
|
38
38
|
/**
|
|
39
39
|
* @remarks
|
|
40
|
-
* The sort
|
|
40
|
+
* The sort type. Valid values: ASC and DESC.
|
|
41
41
|
*
|
|
42
42
|
* @example
|
|
43
43
|
* BUY
|
|
@@ -2,7 +2,7 @@ import * as $dara from '@darabonba/typescript';
|
|
|
2
2
|
export declare class ListAppInstanceDomainsResponseBodyModuleDataCertificate extends $dara.Model {
|
|
3
3
|
/**
|
|
4
4
|
* @remarks
|
|
5
|
-
* The certificate
|
|
5
|
+
* The name of the certificate.
|
|
6
6
|
*
|
|
7
7
|
* @example
|
|
8
8
|
* 2024
|
|
@@ -10,7 +10,7 @@ export declare class ListAppInstanceDomainsResponseBodyModuleDataCertificate ext
|
|
|
10
10
|
certificateName?: string;
|
|
11
11
|
/**
|
|
12
12
|
* @remarks
|
|
13
|
-
* The certificate
|
|
13
|
+
* The status of the certificate.
|
|
14
14
|
*
|
|
15
15
|
* @example
|
|
16
16
|
* ACTIVE
|
|
@@ -18,7 +18,7 @@ export declare class ListAppInstanceDomainsResponseBodyModuleDataCertificate ext
|
|
|
18
18
|
certificateStatus?: string;
|
|
19
19
|
/**
|
|
20
20
|
* @remarks
|
|
21
|
-
* The certificate
|
|
21
|
+
* The type of the certificate.
|
|
22
22
|
*
|
|
23
23
|
* @example
|
|
24
24
|
* self-signed
|
|
@@ -43,6 +43,52 @@ export declare class ListAppInstanceDomainsResponseBodyModuleDataCertificate ext
|
|
|
43
43
|
[key: string]: any;
|
|
44
44
|
});
|
|
45
45
|
}
|
|
46
|
+
export declare class ListAppInstanceDomainsResponseBodyModuleDataDnsConflictRecords extends $dara.Model {
|
|
47
|
+
host?: string;
|
|
48
|
+
recordType?: string;
|
|
49
|
+
status?: string;
|
|
50
|
+
value?: string;
|
|
51
|
+
static names(): {
|
|
52
|
+
[key: string]: string;
|
|
53
|
+
};
|
|
54
|
+
static types(): {
|
|
55
|
+
[key: string]: any;
|
|
56
|
+
};
|
|
57
|
+
validate(): void;
|
|
58
|
+
constructor(map?: {
|
|
59
|
+
[key: string]: any;
|
|
60
|
+
});
|
|
61
|
+
}
|
|
62
|
+
export declare class ListAppInstanceDomainsResponseBodyModuleDataDnsConflict extends $dara.Model {
|
|
63
|
+
canAutoResolve?: boolean;
|
|
64
|
+
hasConflict?: boolean;
|
|
65
|
+
message?: string;
|
|
66
|
+
records?: ListAppInstanceDomainsResponseBodyModuleDataDnsConflictRecords[];
|
|
67
|
+
static names(): {
|
|
68
|
+
[key: string]: string;
|
|
69
|
+
};
|
|
70
|
+
static types(): {
|
|
71
|
+
[key: string]: any;
|
|
72
|
+
};
|
|
73
|
+
validate(): void;
|
|
74
|
+
constructor(map?: {
|
|
75
|
+
[key: string]: any;
|
|
76
|
+
});
|
|
77
|
+
}
|
|
78
|
+
export declare class ListAppInstanceDomainsResponseBodyModuleDataMigration extends $dara.Model {
|
|
79
|
+
migrationStatus?: string;
|
|
80
|
+
previousDomain?: any;
|
|
81
|
+
static names(): {
|
|
82
|
+
[key: string]: string;
|
|
83
|
+
};
|
|
84
|
+
static types(): {
|
|
85
|
+
[key: string]: any;
|
|
86
|
+
};
|
|
87
|
+
validate(): void;
|
|
88
|
+
constructor(map?: {
|
|
89
|
+
[key: string]: any;
|
|
90
|
+
});
|
|
91
|
+
}
|
|
46
92
|
export declare class ListAppInstanceDomainsResponseBodyModuleDataOwnership extends $dara.Model {
|
|
47
93
|
/**
|
|
48
94
|
* @remarks
|
|
@@ -255,17 +301,18 @@ export declare class ListAppInstanceDomainsResponseBodyModuleDataVerification ex
|
|
|
255
301
|
export declare class ListAppInstanceDomainsResponseBodyModuleData extends $dara.Model {
|
|
256
302
|
/**
|
|
257
303
|
* @remarks
|
|
258
|
-
* The SSL certificate information
|
|
304
|
+
* The domain name SSL certificate information.
|
|
259
305
|
*/
|
|
260
306
|
certificate?: ListAppInstanceDomainsResponseBodyModuleDataCertificate;
|
|
261
307
|
/**
|
|
262
308
|
* @remarks
|
|
263
|
-
* The
|
|
309
|
+
* The instance creation time. Format: yyyy-MM-dd HH:mm:ss.
|
|
264
310
|
*
|
|
265
311
|
* @example
|
|
266
312
|
* 1683256054000
|
|
267
313
|
*/
|
|
268
314
|
createTime?: string;
|
|
315
|
+
dnsConflict?: ListAppInstanceDomainsResponseBodyModuleDataDnsConflict;
|
|
269
316
|
/**
|
|
270
317
|
* @remarks
|
|
271
318
|
* The domain name.
|
|
@@ -274,6 +321,7 @@ export declare class ListAppInstanceDomainsResponseBodyModuleData extends $dara.
|
|
|
274
321
|
* kaibaidu.com
|
|
275
322
|
*/
|
|
276
323
|
domainName?: string;
|
|
324
|
+
migration?: ListAppInstanceDomainsResponseBodyModuleDataMigration;
|
|
277
325
|
/**
|
|
278
326
|
* @remarks
|
|
279
327
|
* The overall binding status.
|
|
@@ -316,7 +364,7 @@ export declare class ListAppInstanceDomainsResponseBodyModuleData extends $dara.
|
|
|
316
364
|
export declare class ListAppInstanceDomainsResponseBodyModuleNextCertificate extends $dara.Model {
|
|
317
365
|
/**
|
|
318
366
|
* @remarks
|
|
319
|
-
* The certificate
|
|
367
|
+
* The name of the certificate.
|
|
320
368
|
*
|
|
321
369
|
* @example
|
|
322
370
|
* jfztkg202502
|
|
@@ -324,7 +372,7 @@ export declare class ListAppInstanceDomainsResponseBodyModuleNextCertificate ext
|
|
|
324
372
|
certificateName?: string;
|
|
325
373
|
/**
|
|
326
374
|
* @remarks
|
|
327
|
-
* The certificate
|
|
375
|
+
* The status of the certificate.
|
|
328
376
|
*
|
|
329
377
|
* @example
|
|
330
378
|
* ACTIVE
|
|
@@ -332,7 +380,7 @@ export declare class ListAppInstanceDomainsResponseBodyModuleNextCertificate ext
|
|
|
332
380
|
certificateStatus?: string;
|
|
333
381
|
/**
|
|
334
382
|
* @remarks
|
|
335
|
-
* The certificate
|
|
383
|
+
* The type of the certificate.
|
|
336
384
|
*
|
|
337
385
|
* @example
|
|
338
386
|
* Server
|
|
@@ -357,6 +405,51 @@ export declare class ListAppInstanceDomainsResponseBodyModuleNextCertificate ext
|
|
|
357
405
|
[key: string]: any;
|
|
358
406
|
});
|
|
359
407
|
}
|
|
408
|
+
export declare class ListAppInstanceDomainsResponseBodyModuleNextDnsConflictRecords extends $dara.Model {
|
|
409
|
+
host?: string;
|
|
410
|
+
recordType?: string;
|
|
411
|
+
value?: string;
|
|
412
|
+
static names(): {
|
|
413
|
+
[key: string]: string;
|
|
414
|
+
};
|
|
415
|
+
static types(): {
|
|
416
|
+
[key: string]: any;
|
|
417
|
+
};
|
|
418
|
+
validate(): void;
|
|
419
|
+
constructor(map?: {
|
|
420
|
+
[key: string]: any;
|
|
421
|
+
});
|
|
422
|
+
}
|
|
423
|
+
export declare class ListAppInstanceDomainsResponseBodyModuleNextDnsConflict extends $dara.Model {
|
|
424
|
+
canAutoResolve?: boolean;
|
|
425
|
+
hasConflict?: boolean;
|
|
426
|
+
message?: string;
|
|
427
|
+
records?: ListAppInstanceDomainsResponseBodyModuleNextDnsConflictRecords[];
|
|
428
|
+
static names(): {
|
|
429
|
+
[key: string]: string;
|
|
430
|
+
};
|
|
431
|
+
static types(): {
|
|
432
|
+
[key: string]: any;
|
|
433
|
+
};
|
|
434
|
+
validate(): void;
|
|
435
|
+
constructor(map?: {
|
|
436
|
+
[key: string]: any;
|
|
437
|
+
});
|
|
438
|
+
}
|
|
439
|
+
export declare class ListAppInstanceDomainsResponseBodyModuleNextMigration extends $dara.Model {
|
|
440
|
+
migrationStatus?: string;
|
|
441
|
+
previousDomain?: any;
|
|
442
|
+
static names(): {
|
|
443
|
+
[key: string]: string;
|
|
444
|
+
};
|
|
445
|
+
static types(): {
|
|
446
|
+
[key: string]: any;
|
|
447
|
+
};
|
|
448
|
+
validate(): void;
|
|
449
|
+
constructor(map?: {
|
|
450
|
+
[key: string]: any;
|
|
451
|
+
});
|
|
452
|
+
}
|
|
360
453
|
export declare class ListAppInstanceDomainsResponseBodyModuleNextOwnership extends $dara.Model {
|
|
361
454
|
/**
|
|
362
455
|
* @remarks
|
|
@@ -374,6 +467,7 @@ export declare class ListAppInstanceDomainsResponseBodyModuleNextOwnership exten
|
|
|
374
467
|
* pai
|
|
375
468
|
*/
|
|
376
469
|
provider?: string;
|
|
470
|
+
rootDomain?: string;
|
|
377
471
|
static names(): {
|
|
378
472
|
[key: string]: string;
|
|
379
473
|
};
|
|
@@ -539,6 +633,7 @@ export declare class ListAppInstanceDomainsResponseBodyModuleNextVerification ex
|
|
|
539
633
|
* SUCCESSFUL
|
|
540
634
|
*/
|
|
541
635
|
verificationStatus?: string;
|
|
636
|
+
verificationStatusCode?: string;
|
|
542
637
|
static names(): {
|
|
543
638
|
[key: string]: string;
|
|
544
639
|
};
|
|
@@ -553,17 +648,18 @@ export declare class ListAppInstanceDomainsResponseBodyModuleNextVerification ex
|
|
|
553
648
|
export declare class ListAppInstanceDomainsResponseBodyModuleNext extends $dara.Model {
|
|
554
649
|
/**
|
|
555
650
|
* @remarks
|
|
556
|
-
* The SSL certificate information
|
|
651
|
+
* The domain name SSL certificate information.
|
|
557
652
|
*/
|
|
558
653
|
certificate?: ListAppInstanceDomainsResponseBodyModuleNextCertificate;
|
|
559
654
|
/**
|
|
560
655
|
* @remarks
|
|
561
|
-
* The
|
|
656
|
+
* The instance creation time. Format: yyyy-MM-dd HH:mm:ss.
|
|
562
657
|
*
|
|
563
658
|
* @example
|
|
564
659
|
* 1741572465000
|
|
565
660
|
*/
|
|
566
661
|
createTime?: string;
|
|
662
|
+
dnsConflict?: ListAppInstanceDomainsResponseBodyModuleNextDnsConflict;
|
|
567
663
|
/**
|
|
568
664
|
* @remarks
|
|
569
665
|
* The domain name.
|
|
@@ -572,6 +668,7 @@ export declare class ListAppInstanceDomainsResponseBodyModuleNext extends $dara.
|
|
|
572
668
|
* usdcoin.xin
|
|
573
669
|
*/
|
|
574
670
|
domainName?: string;
|
|
671
|
+
migration?: ListAppInstanceDomainsResponseBodyModuleNextMigration;
|
|
575
672
|
/**
|
|
576
673
|
* @remarks
|
|
577
674
|
* The overall binding status.
|
|
@@ -622,7 +719,7 @@ export declare class ListAppInstanceDomainsResponseBodyModule extends $dara.Mode
|
|
|
622
719
|
currentPageNum?: number;
|
|
623
720
|
/**
|
|
624
721
|
* @remarks
|
|
625
|
-
* The
|
|
722
|
+
* The request results.
|
|
626
723
|
*/
|
|
627
724
|
data?: ListAppInstanceDomainsResponseBodyModuleData[];
|
|
628
725
|
/**
|
|
@@ -650,7 +747,7 @@ export declare class ListAppInstanceDomainsResponseBodyModule extends $dara.Mode
|
|
|
650
747
|
prePage?: boolean;
|
|
651
748
|
/**
|
|
652
749
|
* @remarks
|
|
653
|
-
*
|
|
750
|
+
* 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**.
|
|
654
751
|
*/
|
|
655
752
|
resultLimit?: boolean;
|
|
656
753
|
/**
|
|
@@ -683,7 +780,7 @@ export declare class ListAppInstanceDomainsResponseBodyModule extends $dara.Mode
|
|
|
683
780
|
export declare class ListAppInstanceDomainsResponseBody extends $dara.Model {
|
|
684
781
|
/**
|
|
685
782
|
* @remarks
|
|
686
|
-
* The
|
|
783
|
+
* The detailed reason why access was denied.
|
|
687
784
|
*
|
|
688
785
|
* @example
|
|
689
786
|
* {}
|
|
@@ -691,7 +788,7 @@ export declare class ListAppInstanceDomainsResponseBody extends $dara.Model {
|
|
|
691
788
|
accessDeniedDetail?: string;
|
|
692
789
|
/**
|
|
693
790
|
* @remarks
|
|
694
|
-
* Indicates whether
|
|
791
|
+
* Indicates whether retry is allowed.
|
|
695
792
|
*
|
|
696
793
|
* @example
|
|
697
794
|
* False
|
|
@@ -715,8 +812,8 @@ export declare class ListAppInstanceDomainsResponseBody extends $dara.Model {
|
|
|
715
812
|
dynamicCode?: string;
|
|
716
813
|
/**
|
|
717
814
|
* @remarks
|
|
718
|
-
* The dynamic error message, which is used to replace the `%s`
|
|
719
|
-
* > If **ErrMessage** returns **The Value of Input Parameter %s is not valid** and **DynamicMessage** returns **DtsJobId**, the
|
|
815
|
+
* The dynamic error message, which is used to replace the `%s` in the **ErrMessage** return parameter.
|
|
816
|
+
* > If **ErrMessage** returns **The Value of Input Parameter %s is not valid** and **DynamicMessage** returns **DtsJobId**, the request parameter **DtsJobId** is invalid.
|
|
720
817
|
*
|
|
721
818
|
* @example
|
|
722
819
|
* SYSTEM_ERROR
|
|
@@ -724,12 +821,12 @@ export declare class ListAppInstanceDomainsResponseBody extends $dara.Model {
|
|
|
724
821
|
dynamicMessage?: string;
|
|
725
822
|
/**
|
|
726
823
|
* @remarks
|
|
727
|
-
* The error parameters.
|
|
824
|
+
* The error parameters returned.
|
|
728
825
|
*/
|
|
729
826
|
errorArgs?: any[];
|
|
730
827
|
/**
|
|
731
828
|
* @remarks
|
|
732
|
-
* The maximum number of entries
|
|
829
|
+
* The maximum number of entries per query.
|
|
733
830
|
*
|
|
734
831
|
* Valid values: 10 to 100. Default value: 20.
|
|
735
832
|
*
|
|
@@ -744,7 +841,7 @@ export declare class ListAppInstanceDomainsResponseBody extends $dara.Model {
|
|
|
744
841
|
module?: ListAppInstanceDomainsResponseBodyModule;
|
|
745
842
|
/**
|
|
746
843
|
* @remarks
|
|
747
|
-
* The token for the next query. This parameter is empty if
|
|
844
|
+
* The token for the next query. This parameter is empty if no more results exist.
|
|
748
845
|
*
|
|
749
846
|
* @example
|
|
750
847
|
* dw+qdTi1EjVSWX/INJdYNw==
|
|
@@ -768,7 +865,7 @@ export declare class ListAppInstanceDomainsResponseBody extends $dara.Model {
|
|
|
768
865
|
rootErrorCode?: string;
|
|
769
866
|
/**
|
|
770
867
|
* @remarks
|
|
771
|
-
* The
|
|
868
|
+
* The exception message.
|
|
772
869
|
*
|
|
773
870
|
* @example
|
|
774
871
|
* 系统异常
|