tencentcloud-sdk-nodejs-intl-en 3.0.1051 → 3.0.1052
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/package.json +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/privatedns/v20201028/models.js +845 -86
- package/tencentcloud/privatedns/v20201028/privatedns_client.js +110 -43
- package/tencentcloud/vod/v20180717/models.js +14 -1
- package/tencentcloud/vpc/v20170312/models.js +1 -1
|
@@ -115,18 +115,36 @@ class ModifyPrivateZoneVpcRequest extends AbstractModel {
|
|
|
115
115
|
}
|
|
116
116
|
|
|
117
117
|
/**
|
|
118
|
-
*
|
|
118
|
+
* CreateEndPointAndEndPointService response structure.
|
|
119
119
|
* @class
|
|
120
120
|
*/
|
|
121
|
-
class
|
|
121
|
+
class CreateEndPointAndEndPointServiceResponse extends AbstractModel {
|
|
122
122
|
constructor(){
|
|
123
123
|
super();
|
|
124
124
|
|
|
125
125
|
/**
|
|
126
|
-
*
|
|
127
|
-
* @type {
|
|
126
|
+
* Endpoint ID.
|
|
127
|
+
* @type {string || null}
|
|
128
128
|
*/
|
|
129
|
-
this.
|
|
129
|
+
this.EndPointId = null;
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* Endpoint name.
|
|
133
|
+
* @type {string || null}
|
|
134
|
+
*/
|
|
135
|
+
this.EndPointName = null;
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* Endpoint service ID.
|
|
139
|
+
* @type {string || null}
|
|
140
|
+
*/
|
|
141
|
+
this.EndPointServiceId = null;
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* IP address list of the endpoint.
|
|
145
|
+
* @type {Array.<string> || null}
|
|
146
|
+
*/
|
|
147
|
+
this.EndPointVipSet = null;
|
|
130
148
|
|
|
131
149
|
/**
|
|
132
150
|
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
@@ -143,15 +161,10 @@ class DescribeAuditLogResponse extends AbstractModel {
|
|
|
143
161
|
if (!params) {
|
|
144
162
|
return;
|
|
145
163
|
}
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
let obj = new AuditLog();
|
|
151
|
-
obj.deserialize(params.Data[z]);
|
|
152
|
-
this.Data.push(obj);
|
|
153
|
-
}
|
|
154
|
-
}
|
|
164
|
+
this.EndPointId = 'EndPointId' in params ? params.EndPointId : null;
|
|
165
|
+
this.EndPointName = 'EndPointName' in params ? params.EndPointName : null;
|
|
166
|
+
this.EndPointServiceId = 'EndPointServiceId' in params ? params.EndPointServiceId : null;
|
|
167
|
+
this.EndPointVipSet = 'EndPointVipSet' in params ? params.EndPointVipSet : null;
|
|
155
168
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
156
169
|
|
|
157
170
|
}
|
|
@@ -208,36 +221,36 @@ class DescribePrivateDNSAccountListResponse extends AbstractModel {
|
|
|
208
221
|
}
|
|
209
222
|
|
|
210
223
|
/**
|
|
211
|
-
*
|
|
224
|
+
* CreateForwardRule request structure.
|
|
212
225
|
* @class
|
|
213
226
|
*/
|
|
214
|
-
class
|
|
227
|
+
class CreateForwardRuleRequest extends AbstractModel {
|
|
215
228
|
constructor(){
|
|
216
229
|
super();
|
|
217
230
|
|
|
218
231
|
/**
|
|
219
|
-
*
|
|
232
|
+
* Forwarding rule name.
|
|
220
233
|
* @type {string || null}
|
|
221
234
|
*/
|
|
222
|
-
this.
|
|
235
|
+
this.RuleName = null;
|
|
223
236
|
|
|
224
237
|
/**
|
|
225
|
-
*
|
|
226
|
-
* @type {
|
|
238
|
+
* Forwarding rule type. DOWN: From cloud to off-cloud; UP: From off-cloud to cloud.
|
|
239
|
+
* @type {string || null}
|
|
227
240
|
*/
|
|
228
|
-
this.
|
|
241
|
+
this.RuleType = null;
|
|
229
242
|
|
|
230
243
|
/**
|
|
231
|
-
*
|
|
232
|
-
* @type {
|
|
244
|
+
* Private domain ID, which can be viewed on the private domain list page.
|
|
245
|
+
* @type {string || null}
|
|
233
246
|
*/
|
|
234
|
-
this.
|
|
247
|
+
this.ZoneId = null;
|
|
235
248
|
|
|
236
249
|
/**
|
|
237
|
-
*
|
|
238
|
-
* @type {
|
|
250
|
+
* Endpoint ID.
|
|
251
|
+
* @type {string || null}
|
|
239
252
|
*/
|
|
240
|
-
this.
|
|
253
|
+
this.EndPointId = null;
|
|
241
254
|
|
|
242
255
|
}
|
|
243
256
|
|
|
@@ -248,18 +261,10 @@ class DescribePrivateZoneRecordListRequest extends AbstractModel {
|
|
|
248
261
|
if (!params) {
|
|
249
262
|
return;
|
|
250
263
|
}
|
|
264
|
+
this.RuleName = 'RuleName' in params ? params.RuleName : null;
|
|
265
|
+
this.RuleType = 'RuleType' in params ? params.RuleType : null;
|
|
251
266
|
this.ZoneId = 'ZoneId' in params ? params.ZoneId : null;
|
|
252
|
-
|
|
253
|
-
if (params.Filters) {
|
|
254
|
-
this.Filters = new Array();
|
|
255
|
-
for (let z in params.Filters) {
|
|
256
|
-
let obj = new Filter();
|
|
257
|
-
obj.deserialize(params.Filters[z]);
|
|
258
|
-
this.Filters.push(obj);
|
|
259
|
-
}
|
|
260
|
-
}
|
|
261
|
-
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
262
|
-
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
267
|
+
this.EndPointId = 'EndPointId' in params ? params.EndPointId : null;
|
|
263
268
|
|
|
264
269
|
}
|
|
265
270
|
}
|
|
@@ -306,6 +311,113 @@ class PrivateDNSAccount extends AbstractModel {
|
|
|
306
311
|
}
|
|
307
312
|
}
|
|
308
313
|
|
|
314
|
+
/**
|
|
315
|
+
* DescribeForwardRuleList request structure.
|
|
316
|
+
* @class
|
|
317
|
+
*/
|
|
318
|
+
class DescribeForwardRuleListRequest extends AbstractModel {
|
|
319
|
+
constructor(){
|
|
320
|
+
super();
|
|
321
|
+
|
|
322
|
+
/**
|
|
323
|
+
* Pagination offset, starting from 0.
|
|
324
|
+
* @type {number || null}
|
|
325
|
+
*/
|
|
326
|
+
this.Offset = null;
|
|
327
|
+
|
|
328
|
+
/**
|
|
329
|
+
* Pagination limit. Maximum value: 100. Default value: 20.
|
|
330
|
+
* @type {number || null}
|
|
331
|
+
*/
|
|
332
|
+
this.Limit = null;
|
|
333
|
+
|
|
334
|
+
/**
|
|
335
|
+
* Filter parameters.
|
|
336
|
+
* @type {Array.<Filter> || null}
|
|
337
|
+
*/
|
|
338
|
+
this.Filters = null;
|
|
339
|
+
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
/**
|
|
343
|
+
* @private
|
|
344
|
+
*/
|
|
345
|
+
deserialize(params) {
|
|
346
|
+
if (!params) {
|
|
347
|
+
return;
|
|
348
|
+
}
|
|
349
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
350
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
351
|
+
|
|
352
|
+
if (params.Filters) {
|
|
353
|
+
this.Filters = new Array();
|
|
354
|
+
for (let z in params.Filters) {
|
|
355
|
+
let obj = new Filter();
|
|
356
|
+
obj.deserialize(params.Filters[z]);
|
|
357
|
+
this.Filters.push(obj);
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
/**
|
|
365
|
+
* DescribePrivateZoneRecordList request structure.
|
|
366
|
+
* @class
|
|
367
|
+
*/
|
|
368
|
+
class DescribePrivateZoneRecordListRequest extends AbstractModel {
|
|
369
|
+
constructor(){
|
|
370
|
+
super();
|
|
371
|
+
|
|
372
|
+
/**
|
|
373
|
+
* Private domain ID: zone-xxxxxx
|
|
374
|
+
* @type {string || null}
|
|
375
|
+
*/
|
|
376
|
+
this.ZoneId = null;
|
|
377
|
+
|
|
378
|
+
/**
|
|
379
|
+
* Filter parameter
|
|
380
|
+
* @type {Array.<Filter> || null}
|
|
381
|
+
*/
|
|
382
|
+
this.Filters = null;
|
|
383
|
+
|
|
384
|
+
/**
|
|
385
|
+
* Pagination offset, starting from 0
|
|
386
|
+
* @type {number || null}
|
|
387
|
+
*/
|
|
388
|
+
this.Offset = null;
|
|
389
|
+
|
|
390
|
+
/**
|
|
391
|
+
* Number of entries per page. Maximum value: 100. Default value: 20
|
|
392
|
+
* @type {number || null}
|
|
393
|
+
*/
|
|
394
|
+
this.Limit = null;
|
|
395
|
+
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
/**
|
|
399
|
+
* @private
|
|
400
|
+
*/
|
|
401
|
+
deserialize(params) {
|
|
402
|
+
if (!params) {
|
|
403
|
+
return;
|
|
404
|
+
}
|
|
405
|
+
this.ZoneId = 'ZoneId' in params ? params.ZoneId : null;
|
|
406
|
+
|
|
407
|
+
if (params.Filters) {
|
|
408
|
+
this.Filters = new Array();
|
|
409
|
+
for (let z in params.Filters) {
|
|
410
|
+
let obj = new Filter();
|
|
411
|
+
obj.deserialize(params.Filters[z]);
|
|
412
|
+
this.Filters.push(obj);
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
416
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
417
|
+
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
|
|
309
421
|
/**
|
|
310
422
|
* DescribePrivateZoneRecordList response structure.
|
|
311
423
|
* @class
|
|
@@ -448,6 +560,49 @@ class AccountVpcInfoOutput extends AbstractModel {
|
|
|
448
560
|
}
|
|
449
561
|
}
|
|
450
562
|
|
|
563
|
+
/**
|
|
564
|
+
* DescribeAuditLog response structure.
|
|
565
|
+
* @class
|
|
566
|
+
*/
|
|
567
|
+
class DescribeAuditLogResponse extends AbstractModel {
|
|
568
|
+
constructor(){
|
|
569
|
+
super();
|
|
570
|
+
|
|
571
|
+
/**
|
|
572
|
+
* List of operation logs
|
|
573
|
+
* @type {Array.<AuditLog> || null}
|
|
574
|
+
*/
|
|
575
|
+
this.Data = null;
|
|
576
|
+
|
|
577
|
+
/**
|
|
578
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
579
|
+
* @type {string || null}
|
|
580
|
+
*/
|
|
581
|
+
this.RequestId = null;
|
|
582
|
+
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
/**
|
|
586
|
+
* @private
|
|
587
|
+
*/
|
|
588
|
+
deserialize(params) {
|
|
589
|
+
if (!params) {
|
|
590
|
+
return;
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
if (params.Data) {
|
|
594
|
+
this.Data = new Array();
|
|
595
|
+
for (let z in params.Data) {
|
|
596
|
+
let obj = new AuditLog();
|
|
597
|
+
obj.deserialize(params.Data[z]);
|
|
598
|
+
this.Data.push(obj);
|
|
599
|
+
}
|
|
600
|
+
}
|
|
601
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
602
|
+
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
|
|
451
606
|
/**
|
|
452
607
|
* ModifyRecordsStatus response structure.
|
|
453
608
|
* @class
|
|
@@ -711,6 +866,56 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
711
866
|
}
|
|
712
867
|
}
|
|
713
868
|
|
|
869
|
+
/**
|
|
870
|
+
* DescribePrivateDNSAccountList request structure.
|
|
871
|
+
* @class
|
|
872
|
+
*/
|
|
873
|
+
class DescribePrivateDNSAccountListRequest extends AbstractModel {
|
|
874
|
+
constructor(){
|
|
875
|
+
super();
|
|
876
|
+
|
|
877
|
+
/**
|
|
878
|
+
* Pagination offset, starting from `0`
|
|
879
|
+
* @type {number || null}
|
|
880
|
+
*/
|
|
881
|
+
this.Offset = null;
|
|
882
|
+
|
|
883
|
+
/**
|
|
884
|
+
* Number of entries per page. Maximum value: `100`. Default value: `20`
|
|
885
|
+
* @type {number || null}
|
|
886
|
+
*/
|
|
887
|
+
this.Limit = null;
|
|
888
|
+
|
|
889
|
+
/**
|
|
890
|
+
* Filter parameters
|
|
891
|
+
* @type {Array.<Filter> || null}
|
|
892
|
+
*/
|
|
893
|
+
this.Filters = null;
|
|
894
|
+
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
/**
|
|
898
|
+
* @private
|
|
899
|
+
*/
|
|
900
|
+
deserialize(params) {
|
|
901
|
+
if (!params) {
|
|
902
|
+
return;
|
|
903
|
+
}
|
|
904
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
905
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
906
|
+
|
|
907
|
+
if (params.Filters) {
|
|
908
|
+
this.Filters = new Array();
|
|
909
|
+
for (let z in params.Filters) {
|
|
910
|
+
let obj = new Filter();
|
|
911
|
+
obj.deserialize(params.Filters[z]);
|
|
912
|
+
this.Filters.push(obj);
|
|
913
|
+
}
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
}
|
|
917
|
+
}
|
|
918
|
+
|
|
714
919
|
/**
|
|
715
920
|
* Log details
|
|
716
921
|
* @class
|
|
@@ -938,6 +1143,57 @@ class DescribeRequestDataResponse extends AbstractModel {
|
|
|
938
1143
|
}
|
|
939
1144
|
}
|
|
940
1145
|
|
|
1146
|
+
/**
|
|
1147
|
+
* DescribeEndPointList response structure.
|
|
1148
|
+
* @class
|
|
1149
|
+
*/
|
|
1150
|
+
class DescribeEndPointListResponse extends AbstractModel {
|
|
1151
|
+
constructor(){
|
|
1152
|
+
super();
|
|
1153
|
+
|
|
1154
|
+
/**
|
|
1155
|
+
* Total number of endpoints.
|
|
1156
|
+
* @type {number || null}
|
|
1157
|
+
*/
|
|
1158
|
+
this.TotalCount = null;
|
|
1159
|
+
|
|
1160
|
+
/**
|
|
1161
|
+
* Endpoint list.
|
|
1162
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1163
|
+
* @type {Array.<EndPointInfo> || null}
|
|
1164
|
+
*/
|
|
1165
|
+
this.EndPointSet = null;
|
|
1166
|
+
|
|
1167
|
+
/**
|
|
1168
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1169
|
+
* @type {string || null}
|
|
1170
|
+
*/
|
|
1171
|
+
this.RequestId = null;
|
|
1172
|
+
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
/**
|
|
1176
|
+
* @private
|
|
1177
|
+
*/
|
|
1178
|
+
deserialize(params) {
|
|
1179
|
+
if (!params) {
|
|
1180
|
+
return;
|
|
1181
|
+
}
|
|
1182
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
1183
|
+
|
|
1184
|
+
if (params.EndPointSet) {
|
|
1185
|
+
this.EndPointSet = new Array();
|
|
1186
|
+
for (let z in params.EndPointSet) {
|
|
1187
|
+
let obj = new EndPointInfo();
|
|
1188
|
+
obj.deserialize(params.EndPointSet[z]);
|
|
1189
|
+
this.EndPointSet.push(obj);
|
|
1190
|
+
}
|
|
1191
|
+
}
|
|
1192
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1193
|
+
|
|
1194
|
+
}
|
|
1195
|
+
}
|
|
1196
|
+
|
|
941
1197
|
/**
|
|
942
1198
|
* Tag
|
|
943
1199
|
* @class
|
|
@@ -1132,24 +1388,30 @@ class CreatePrivateZoneRequest extends AbstractModel {
|
|
|
1132
1388
|
}
|
|
1133
1389
|
|
|
1134
1390
|
/**
|
|
1135
|
-
*
|
|
1391
|
+
* DescribeEndPointList request structure.
|
|
1136
1392
|
* @class
|
|
1137
1393
|
*/
|
|
1138
|
-
class
|
|
1394
|
+
class DescribeEndPointListRequest extends AbstractModel {
|
|
1139
1395
|
constructor(){
|
|
1140
1396
|
super();
|
|
1141
1397
|
|
|
1142
1398
|
/**
|
|
1143
|
-
*
|
|
1144
|
-
* @type {
|
|
1399
|
+
* Pagination offset, starting from 0.
|
|
1400
|
+
* @type {number || null}
|
|
1145
1401
|
*/
|
|
1146
|
-
this.
|
|
1402
|
+
this.Offset = null;
|
|
1147
1403
|
|
|
1148
1404
|
/**
|
|
1149
|
-
*
|
|
1150
|
-
* @type {
|
|
1405
|
+
* Pagination limit. Maximum value: 100. Default value: 20.
|
|
1406
|
+
* @type {number || null}
|
|
1151
1407
|
*/
|
|
1152
|
-
this.
|
|
1408
|
+
this.Limit = null;
|
|
1409
|
+
|
|
1410
|
+
/**
|
|
1411
|
+
* Filter parameters. Valid values: EndPointName, EndPointId, EndPointServiceId, and EndPointVip.
|
|
1412
|
+
* @type {Array.<Filter> || null}
|
|
1413
|
+
*/
|
|
1414
|
+
this.Filters = null;
|
|
1153
1415
|
|
|
1154
1416
|
}
|
|
1155
1417
|
|
|
@@ -1160,8 +1422,17 @@ class VpcInfo extends AbstractModel {
|
|
|
1160
1422
|
if (!params) {
|
|
1161
1423
|
return;
|
|
1162
1424
|
}
|
|
1163
|
-
this.
|
|
1164
|
-
this.
|
|
1425
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
1426
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
1427
|
+
|
|
1428
|
+
if (params.Filters) {
|
|
1429
|
+
this.Filters = new Array();
|
|
1430
|
+
for (let z in params.Filters) {
|
|
1431
|
+
let obj = new Filter();
|
|
1432
|
+
obj.deserialize(params.Filters[z]);
|
|
1433
|
+
this.Filters.push(obj);
|
|
1434
|
+
}
|
|
1435
|
+
}
|
|
1165
1436
|
|
|
1166
1437
|
}
|
|
1167
1438
|
}
|
|
@@ -1246,6 +1517,129 @@ class ModifyPrivateZoneResponse extends AbstractModel {
|
|
|
1246
1517
|
}
|
|
1247
1518
|
}
|
|
1248
1519
|
|
|
1520
|
+
/**
|
|
1521
|
+
* Forwarding rule details.
|
|
1522
|
+
* @class
|
|
1523
|
+
*/
|
|
1524
|
+
class ForwardRule extends AbstractModel {
|
|
1525
|
+
constructor(){
|
|
1526
|
+
super();
|
|
1527
|
+
|
|
1528
|
+
/**
|
|
1529
|
+
* Private domain name.
|
|
1530
|
+
* @type {string || null}
|
|
1531
|
+
*/
|
|
1532
|
+
this.Domain = null;
|
|
1533
|
+
|
|
1534
|
+
/**
|
|
1535
|
+
* Forwarding rule name.
|
|
1536
|
+
* @type {string || null}
|
|
1537
|
+
*/
|
|
1538
|
+
this.RuleName = null;
|
|
1539
|
+
|
|
1540
|
+
/**
|
|
1541
|
+
* Rule ID
|
|
1542
|
+
* @type {string || null}
|
|
1543
|
+
*/
|
|
1544
|
+
this.RuleId = null;
|
|
1545
|
+
|
|
1546
|
+
/**
|
|
1547
|
+
* Forwarding rule type. DOWN: From cloud to off-cloud; UP: From off-cloud to cloud.
|
|
1548
|
+
* @type {string || null}
|
|
1549
|
+
*/
|
|
1550
|
+
this.RuleType = null;
|
|
1551
|
+
|
|
1552
|
+
/**
|
|
1553
|
+
* Creation time
|
|
1554
|
+
* @type {string || null}
|
|
1555
|
+
*/
|
|
1556
|
+
this.CreatedAt = null;
|
|
1557
|
+
|
|
1558
|
+
/**
|
|
1559
|
+
* Update time
|
|
1560
|
+
* @type {string || null}
|
|
1561
|
+
*/
|
|
1562
|
+
this.UpdatedAt = null;
|
|
1563
|
+
|
|
1564
|
+
/**
|
|
1565
|
+
* Endpoint name.
|
|
1566
|
+
* @type {string || null}
|
|
1567
|
+
*/
|
|
1568
|
+
this.EndPointName = null;
|
|
1569
|
+
|
|
1570
|
+
/**
|
|
1571
|
+
* Endpoint ID.
|
|
1572
|
+
* @type {string || null}
|
|
1573
|
+
*/
|
|
1574
|
+
this.EndPointId = null;
|
|
1575
|
+
|
|
1576
|
+
/**
|
|
1577
|
+
* Forwarding address.
|
|
1578
|
+
* @type {Array.<string> || null}
|
|
1579
|
+
*/
|
|
1580
|
+
this.ForwardAddress = null;
|
|
1581
|
+
|
|
1582
|
+
/**
|
|
1583
|
+
* List of VPCs bound to the private domain.
|
|
1584
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1585
|
+
* @type {Array.<VpcInfo> || null}
|
|
1586
|
+
*/
|
|
1587
|
+
this.VpcSet = null;
|
|
1588
|
+
|
|
1589
|
+
/**
|
|
1590
|
+
* ID of the bound private domain.
|
|
1591
|
+
* @type {string || null}
|
|
1592
|
+
*/
|
|
1593
|
+
this.ZoneId = null;
|
|
1594
|
+
|
|
1595
|
+
/**
|
|
1596
|
+
* Tag.
|
|
1597
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1598
|
+
* @type {Array.<TagInfo> || null}
|
|
1599
|
+
*/
|
|
1600
|
+
this.Tags = null;
|
|
1601
|
+
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1604
|
+
/**
|
|
1605
|
+
* @private
|
|
1606
|
+
*/
|
|
1607
|
+
deserialize(params) {
|
|
1608
|
+
if (!params) {
|
|
1609
|
+
return;
|
|
1610
|
+
}
|
|
1611
|
+
this.Domain = 'Domain' in params ? params.Domain : null;
|
|
1612
|
+
this.RuleName = 'RuleName' in params ? params.RuleName : null;
|
|
1613
|
+
this.RuleId = 'RuleId' in params ? params.RuleId : null;
|
|
1614
|
+
this.RuleType = 'RuleType' in params ? params.RuleType : null;
|
|
1615
|
+
this.CreatedAt = 'CreatedAt' in params ? params.CreatedAt : null;
|
|
1616
|
+
this.UpdatedAt = 'UpdatedAt' in params ? params.UpdatedAt : null;
|
|
1617
|
+
this.EndPointName = 'EndPointName' in params ? params.EndPointName : null;
|
|
1618
|
+
this.EndPointId = 'EndPointId' in params ? params.EndPointId : null;
|
|
1619
|
+
this.ForwardAddress = 'ForwardAddress' in params ? params.ForwardAddress : null;
|
|
1620
|
+
|
|
1621
|
+
if (params.VpcSet) {
|
|
1622
|
+
this.VpcSet = new Array();
|
|
1623
|
+
for (let z in params.VpcSet) {
|
|
1624
|
+
let obj = new VpcInfo();
|
|
1625
|
+
obj.deserialize(params.VpcSet[z]);
|
|
1626
|
+
this.VpcSet.push(obj);
|
|
1627
|
+
}
|
|
1628
|
+
}
|
|
1629
|
+
this.ZoneId = 'ZoneId' in params ? params.ZoneId : null;
|
|
1630
|
+
|
|
1631
|
+
if (params.Tags) {
|
|
1632
|
+
this.Tags = new Array();
|
|
1633
|
+
for (let z in params.Tags) {
|
|
1634
|
+
let obj = new TagInfo();
|
|
1635
|
+
obj.deserialize(params.Tags[z]);
|
|
1636
|
+
this.Tags.push(obj);
|
|
1637
|
+
}
|
|
1638
|
+
}
|
|
1639
|
+
|
|
1640
|
+
}
|
|
1641
|
+
}
|
|
1642
|
+
|
|
1249
1643
|
/**
|
|
1250
1644
|
* DescribePrivateZoneList request structure.
|
|
1251
1645
|
* @class
|
|
@@ -1481,10 +1875,86 @@ class CreatePrivateZoneRecordResponse extends AbstractModel {
|
|
|
1481
1875
|
super();
|
|
1482
1876
|
|
|
1483
1877
|
/**
|
|
1484
|
-
* Record ID
|
|
1485
|
-
* @type {string || null}
|
|
1878
|
+
* Record ID
|
|
1879
|
+
* @type {string || null}
|
|
1880
|
+
*/
|
|
1881
|
+
this.RecordId = null;
|
|
1882
|
+
|
|
1883
|
+
/**
|
|
1884
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1885
|
+
* @type {string || null}
|
|
1886
|
+
*/
|
|
1887
|
+
this.RequestId = null;
|
|
1888
|
+
|
|
1889
|
+
}
|
|
1890
|
+
|
|
1891
|
+
/**
|
|
1892
|
+
* @private
|
|
1893
|
+
*/
|
|
1894
|
+
deserialize(params) {
|
|
1895
|
+
if (!params) {
|
|
1896
|
+
return;
|
|
1897
|
+
}
|
|
1898
|
+
this.RecordId = 'RecordId' in params ? params.RecordId : null;
|
|
1899
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1900
|
+
|
|
1901
|
+
}
|
|
1902
|
+
}
|
|
1903
|
+
|
|
1904
|
+
/**
|
|
1905
|
+
* DescribePrivateZoneService response structure.
|
|
1906
|
+
* @class
|
|
1907
|
+
*/
|
|
1908
|
+
class DescribePrivateZoneServiceResponse extends AbstractModel {
|
|
1909
|
+
constructor(){
|
|
1910
|
+
super();
|
|
1911
|
+
|
|
1912
|
+
/**
|
|
1913
|
+
* Private DNS service activation status. Valid values: ENABLED, DISABLED
|
|
1914
|
+
* @type {string || null}
|
|
1915
|
+
*/
|
|
1916
|
+
this.ServiceStatus = null;
|
|
1917
|
+
|
|
1918
|
+
/**
|
|
1919
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1920
|
+
* @type {string || null}
|
|
1921
|
+
*/
|
|
1922
|
+
this.RequestId = null;
|
|
1923
|
+
|
|
1924
|
+
}
|
|
1925
|
+
|
|
1926
|
+
/**
|
|
1927
|
+
* @private
|
|
1928
|
+
*/
|
|
1929
|
+
deserialize(params) {
|
|
1930
|
+
if (!params) {
|
|
1931
|
+
return;
|
|
1932
|
+
}
|
|
1933
|
+
this.ServiceStatus = 'ServiceStatus' in params ? params.ServiceStatus : null;
|
|
1934
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1935
|
+
|
|
1936
|
+
}
|
|
1937
|
+
}
|
|
1938
|
+
|
|
1939
|
+
/**
|
|
1940
|
+
* DescribeForwardRuleList response structure.
|
|
1941
|
+
* @class
|
|
1942
|
+
*/
|
|
1943
|
+
class DescribeForwardRuleListResponse extends AbstractModel {
|
|
1944
|
+
constructor(){
|
|
1945
|
+
super();
|
|
1946
|
+
|
|
1947
|
+
/**
|
|
1948
|
+
* Number of private domains.
|
|
1949
|
+
* @type {number || null}
|
|
1950
|
+
*/
|
|
1951
|
+
this.TotalCount = null;
|
|
1952
|
+
|
|
1953
|
+
/**
|
|
1954
|
+
* Private domain list.
|
|
1955
|
+
* @type {Array.<ForwardRule> || null}
|
|
1486
1956
|
*/
|
|
1487
|
-
this.
|
|
1957
|
+
this.ForwardRuleSet = null;
|
|
1488
1958
|
|
|
1489
1959
|
/**
|
|
1490
1960
|
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
@@ -1501,31 +1971,66 @@ class CreatePrivateZoneRecordResponse extends AbstractModel {
|
|
|
1501
1971
|
if (!params) {
|
|
1502
1972
|
return;
|
|
1503
1973
|
}
|
|
1504
|
-
this.
|
|
1974
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
1975
|
+
|
|
1976
|
+
if (params.ForwardRuleSet) {
|
|
1977
|
+
this.ForwardRuleSet = new Array();
|
|
1978
|
+
for (let z in params.ForwardRuleSet) {
|
|
1979
|
+
let obj = new ForwardRule();
|
|
1980
|
+
obj.deserialize(params.ForwardRuleSet[z]);
|
|
1981
|
+
this.ForwardRuleSet.push(obj);
|
|
1982
|
+
}
|
|
1983
|
+
}
|
|
1505
1984
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1506
1985
|
|
|
1507
1986
|
}
|
|
1508
1987
|
}
|
|
1509
1988
|
|
|
1510
1989
|
/**
|
|
1511
|
-
*
|
|
1990
|
+
* Endpoint information.
|
|
1512
1991
|
* @class
|
|
1513
1992
|
*/
|
|
1514
|
-
class
|
|
1993
|
+
class EndPointInfo extends AbstractModel {
|
|
1515
1994
|
constructor(){
|
|
1516
1995
|
super();
|
|
1517
1996
|
|
|
1518
1997
|
/**
|
|
1519
|
-
*
|
|
1998
|
+
* Endpoint ID.
|
|
1520
1999
|
* @type {string || null}
|
|
1521
2000
|
*/
|
|
1522
|
-
this.
|
|
2001
|
+
this.EndPointId = null;
|
|
1523
2002
|
|
|
1524
2003
|
/**
|
|
1525
|
-
*
|
|
2004
|
+
* Endpoint name.
|
|
1526
2005
|
* @type {string || null}
|
|
1527
2006
|
*/
|
|
1528
|
-
this.
|
|
2007
|
+
this.EndPointName = null;
|
|
2008
|
+
|
|
2009
|
+
/**
|
|
2010
|
+
* Endpoint service ID.
|
|
2011
|
+
* @type {string || null}
|
|
2012
|
+
*/
|
|
2013
|
+
this.EndPointServiceId = null;
|
|
2014
|
+
|
|
2015
|
+
/**
|
|
2016
|
+
* VIP list of the endpoint.
|
|
2017
|
+
* @type {Array.<string> || null}
|
|
2018
|
+
*/
|
|
2019
|
+
this.EndPointVipSet = null;
|
|
2020
|
+
|
|
2021
|
+
/**
|
|
2022
|
+
* ap-guangzhou
|
|
2023
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2024
|
+
* @type {string || null}
|
|
2025
|
+
*/
|
|
2026
|
+
this.RegionCode = null;
|
|
2027
|
+
|
|
2028
|
+
/**
|
|
2029
|
+
* Tag key-value pair collection.
|
|
2030
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2031
|
+
* @type {Array.<TagInfo> || null}
|
|
2032
|
+
*/
|
|
2033
|
+
this.Tags = null;
|
|
1529
2034
|
|
|
1530
2035
|
}
|
|
1531
2036
|
|
|
@@ -1536,8 +2041,20 @@ class DescribePrivateZoneServiceResponse extends AbstractModel {
|
|
|
1536
2041
|
if (!params) {
|
|
1537
2042
|
return;
|
|
1538
2043
|
}
|
|
1539
|
-
this.
|
|
1540
|
-
this.
|
|
2044
|
+
this.EndPointId = 'EndPointId' in params ? params.EndPointId : null;
|
|
2045
|
+
this.EndPointName = 'EndPointName' in params ? params.EndPointName : null;
|
|
2046
|
+
this.EndPointServiceId = 'EndPointServiceId' in params ? params.EndPointServiceId : null;
|
|
2047
|
+
this.EndPointVipSet = 'EndPointVipSet' in params ? params.EndPointVipSet : null;
|
|
2048
|
+
this.RegionCode = 'RegionCode' in params ? params.RegionCode : null;
|
|
2049
|
+
|
|
2050
|
+
if (params.Tags) {
|
|
2051
|
+
this.Tags = new Array();
|
|
2052
|
+
for (let z in params.Tags) {
|
|
2053
|
+
let obj = new TagInfo();
|
|
2054
|
+
obj.deserialize(params.Tags[z]);
|
|
2055
|
+
this.Tags.push(obj);
|
|
2056
|
+
}
|
|
2057
|
+
}
|
|
1541
2058
|
|
|
1542
2059
|
}
|
|
1543
2060
|
}
|
|
@@ -1655,6 +2172,62 @@ class DescribeDashboardRequest extends AbstractModel {
|
|
|
1655
2172
|
}
|
|
1656
2173
|
}
|
|
1657
2174
|
|
|
2175
|
+
/**
|
|
2176
|
+
* CreateEndPoint response structure.
|
|
2177
|
+
* @class
|
|
2178
|
+
*/
|
|
2179
|
+
class CreateEndPointResponse extends AbstractModel {
|
|
2180
|
+
constructor(){
|
|
2181
|
+
super();
|
|
2182
|
+
|
|
2183
|
+
/**
|
|
2184
|
+
* Endpoint ID.
|
|
2185
|
+
* @type {string || null}
|
|
2186
|
+
*/
|
|
2187
|
+
this.EndPointId = null;
|
|
2188
|
+
|
|
2189
|
+
/**
|
|
2190
|
+
* Endpoint name.
|
|
2191
|
+
* @type {string || null}
|
|
2192
|
+
*/
|
|
2193
|
+
this.EndPointName = null;
|
|
2194
|
+
|
|
2195
|
+
/**
|
|
2196
|
+
* Endpoint service ID.
|
|
2197
|
+
* @type {string || null}
|
|
2198
|
+
*/
|
|
2199
|
+
this.EndPointServiceId = null;
|
|
2200
|
+
|
|
2201
|
+
/**
|
|
2202
|
+
* IP address list of the endpoint.
|
|
2203
|
+
* @type {Array.<string> || null}
|
|
2204
|
+
*/
|
|
2205
|
+
this.EndPointVipSet = null;
|
|
2206
|
+
|
|
2207
|
+
/**
|
|
2208
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2209
|
+
* @type {string || null}
|
|
2210
|
+
*/
|
|
2211
|
+
this.RequestId = null;
|
|
2212
|
+
|
|
2213
|
+
}
|
|
2214
|
+
|
|
2215
|
+
/**
|
|
2216
|
+
* @private
|
|
2217
|
+
*/
|
|
2218
|
+
deserialize(params) {
|
|
2219
|
+
if (!params) {
|
|
2220
|
+
return;
|
|
2221
|
+
}
|
|
2222
|
+
this.EndPointId = 'EndPointId' in params ? params.EndPointId : null;
|
|
2223
|
+
this.EndPointName = 'EndPointName' in params ? params.EndPointName : null;
|
|
2224
|
+
this.EndPointServiceId = 'EndPointServiceId' in params ? params.EndPointServiceId : null;
|
|
2225
|
+
this.EndPointVipSet = 'EndPointVipSet' in params ? params.EndPointVipSet : null;
|
|
2226
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2227
|
+
|
|
2228
|
+
}
|
|
2229
|
+
}
|
|
2230
|
+
|
|
1658
2231
|
/**
|
|
1659
2232
|
* Operation log
|
|
1660
2233
|
* @class
|
|
@@ -1873,6 +2446,55 @@ class Filter extends AbstractModel {
|
|
|
1873
2446
|
}
|
|
1874
2447
|
}
|
|
1875
2448
|
|
|
2449
|
+
/**
|
|
2450
|
+
* CreateEndPoint request structure.
|
|
2451
|
+
* @class
|
|
2452
|
+
*/
|
|
2453
|
+
class CreateEndPointRequest extends AbstractModel {
|
|
2454
|
+
constructor(){
|
|
2455
|
+
super();
|
|
2456
|
+
|
|
2457
|
+
/**
|
|
2458
|
+
* Endpoint name.
|
|
2459
|
+
* @type {string || null}
|
|
2460
|
+
*/
|
|
2461
|
+
this.EndPointName = null;
|
|
2462
|
+
|
|
2463
|
+
/**
|
|
2464
|
+
* Endpoint service ID (namely, VPC endpoint service ID).
|
|
2465
|
+
* @type {string || null}
|
|
2466
|
+
*/
|
|
2467
|
+
this.EndPointServiceId = null;
|
|
2468
|
+
|
|
2469
|
+
/**
|
|
2470
|
+
* Endpoint region, which should be consistent with the region of the endpoint service.
|
|
2471
|
+
* @type {string || null}
|
|
2472
|
+
*/
|
|
2473
|
+
this.EndPointRegion = null;
|
|
2474
|
+
|
|
2475
|
+
/**
|
|
2476
|
+
* Number of endpoint IP addresses.
|
|
2477
|
+
* @type {number || null}
|
|
2478
|
+
*/
|
|
2479
|
+
this.IpNum = null;
|
|
2480
|
+
|
|
2481
|
+
}
|
|
2482
|
+
|
|
2483
|
+
/**
|
|
2484
|
+
* @private
|
|
2485
|
+
*/
|
|
2486
|
+
deserialize(params) {
|
|
2487
|
+
if (!params) {
|
|
2488
|
+
return;
|
|
2489
|
+
}
|
|
2490
|
+
this.EndPointName = 'EndPointName' in params ? params.EndPointName : null;
|
|
2491
|
+
this.EndPointServiceId = 'EndPointServiceId' in params ? params.EndPointServiceId : null;
|
|
2492
|
+
this.EndPointRegion = 'EndPointRegion' in params ? params.EndPointRegion : null;
|
|
2493
|
+
this.IpNum = 'IpNum' in params ? params.IpNum : null;
|
|
2494
|
+
|
|
2495
|
+
}
|
|
2496
|
+
}
|
|
2497
|
+
|
|
1876
2498
|
/**
|
|
1877
2499
|
* ModifyRecordsStatus request structure.
|
|
1878
2500
|
* @class
|
|
@@ -2256,6 +2878,83 @@ class DescribeQuotaUsageRequest extends AbstractModel {
|
|
|
2256
2878
|
}
|
|
2257
2879
|
}
|
|
2258
2880
|
|
|
2881
|
+
/**
|
|
2882
|
+
* CreateEndPointAndEndPointService request structure.
|
|
2883
|
+
* @class
|
|
2884
|
+
*/
|
|
2885
|
+
class CreateEndPointAndEndPointServiceRequest extends AbstractModel {
|
|
2886
|
+
constructor(){
|
|
2887
|
+
super();
|
|
2888
|
+
|
|
2889
|
+
/**
|
|
2890
|
+
* VPC instance ID.
|
|
2891
|
+
* @type {string || null}
|
|
2892
|
+
*/
|
|
2893
|
+
this.VpcId = null;
|
|
2894
|
+
|
|
2895
|
+
/**
|
|
2896
|
+
* Whether automatic forwarding is supported.
|
|
2897
|
+
* @type {boolean || null}
|
|
2898
|
+
*/
|
|
2899
|
+
this.AutoAcceptFlag = null;
|
|
2900
|
+
|
|
2901
|
+
/**
|
|
2902
|
+
* Backend service ID.
|
|
2903
|
+
* @type {string || null}
|
|
2904
|
+
*/
|
|
2905
|
+
this.ServiceInstanceId = null;
|
|
2906
|
+
|
|
2907
|
+
/**
|
|
2908
|
+
* Endpoint name.
|
|
2909
|
+
* @type {string || null}
|
|
2910
|
+
*/
|
|
2911
|
+
this.EndPointName = null;
|
|
2912
|
+
|
|
2913
|
+
/**
|
|
2914
|
+
* Endpoint region, which should be consistent with the region of the endpoint service.
|
|
2915
|
+
* @type {string || null}
|
|
2916
|
+
*/
|
|
2917
|
+
this.EndPointRegion = null;
|
|
2918
|
+
|
|
2919
|
+
/**
|
|
2920
|
+
* Endpoint service name.
|
|
2921
|
+
* @type {string || null}
|
|
2922
|
+
*/
|
|
2923
|
+
this.EndPointServiceName = null;
|
|
2924
|
+
|
|
2925
|
+
/**
|
|
2926
|
+
* Mounted PaaS service type. Valid values: CLB, CDB, and CRS.
|
|
2927
|
+
* @type {string || null}
|
|
2928
|
+
*/
|
|
2929
|
+
this.ServiceType = null;
|
|
2930
|
+
|
|
2931
|
+
/**
|
|
2932
|
+
* Number of endpoint IP addresses.
|
|
2933
|
+
* @type {number || null}
|
|
2934
|
+
*/
|
|
2935
|
+
this.IpNum = null;
|
|
2936
|
+
|
|
2937
|
+
}
|
|
2938
|
+
|
|
2939
|
+
/**
|
|
2940
|
+
* @private
|
|
2941
|
+
*/
|
|
2942
|
+
deserialize(params) {
|
|
2943
|
+
if (!params) {
|
|
2944
|
+
return;
|
|
2945
|
+
}
|
|
2946
|
+
this.VpcId = 'VpcId' in params ? params.VpcId : null;
|
|
2947
|
+
this.AutoAcceptFlag = 'AutoAcceptFlag' in params ? params.AutoAcceptFlag : null;
|
|
2948
|
+
this.ServiceInstanceId = 'ServiceInstanceId' in params ? params.ServiceInstanceId : null;
|
|
2949
|
+
this.EndPointName = 'EndPointName' in params ? params.EndPointName : null;
|
|
2950
|
+
this.EndPointRegion = 'EndPointRegion' in params ? params.EndPointRegion : null;
|
|
2951
|
+
this.EndPointServiceName = 'EndPointServiceName' in params ? params.EndPointServiceName : null;
|
|
2952
|
+
this.ServiceType = 'ServiceType' in params ? params.ServiceType : null;
|
|
2953
|
+
this.IpNum = 'IpNum' in params ? params.IpNum : null;
|
|
2954
|
+
|
|
2955
|
+
}
|
|
2956
|
+
}
|
|
2957
|
+
|
|
2259
2958
|
/**
|
|
2260
2959
|
* ModifyPrivateZoneRecord request structure.
|
|
2261
2960
|
* @class
|
|
@@ -2333,6 +3032,41 @@ class ModifyPrivateZoneRecordRequest extends AbstractModel {
|
|
|
2333
3032
|
}
|
|
2334
3033
|
}
|
|
2335
3034
|
|
|
3035
|
+
/**
|
|
3036
|
+
* VPC information
|
|
3037
|
+
* @class
|
|
3038
|
+
*/
|
|
3039
|
+
class VpcInfo extends AbstractModel {
|
|
3040
|
+
constructor(){
|
|
3041
|
+
super();
|
|
3042
|
+
|
|
3043
|
+
/**
|
|
3044
|
+
* VpcId: vpc-xadsafsdasd
|
|
3045
|
+
* @type {string || null}
|
|
3046
|
+
*/
|
|
3047
|
+
this.UniqVpcId = null;
|
|
3048
|
+
|
|
3049
|
+
/**
|
|
3050
|
+
* VPC region: ap-guangzhou, ap-shanghai
|
|
3051
|
+
* @type {string || null}
|
|
3052
|
+
*/
|
|
3053
|
+
this.Region = null;
|
|
3054
|
+
|
|
3055
|
+
}
|
|
3056
|
+
|
|
3057
|
+
/**
|
|
3058
|
+
* @private
|
|
3059
|
+
*/
|
|
3060
|
+
deserialize(params) {
|
|
3061
|
+
if (!params) {
|
|
3062
|
+
return;
|
|
3063
|
+
}
|
|
3064
|
+
this.UniqVpcId = 'UniqVpcId' in params ? params.UniqVpcId : null;
|
|
3065
|
+
this.Region = 'Region' in params ? params.Region : null;
|
|
3066
|
+
|
|
3067
|
+
}
|
|
3068
|
+
}
|
|
3069
|
+
|
|
2336
3070
|
/**
|
|
2337
3071
|
* Traffic package usage
|
|
2338
3072
|
* @class
|
|
@@ -2376,30 +3110,48 @@ class FlowUsage extends AbstractModel {
|
|
|
2376
3110
|
}
|
|
2377
3111
|
|
|
2378
3112
|
/**
|
|
2379
|
-
*
|
|
3113
|
+
* CreateForwardRule response structure.
|
|
2380
3114
|
* @class
|
|
2381
3115
|
*/
|
|
2382
|
-
class
|
|
3116
|
+
class CreateForwardRuleResponse extends AbstractModel {
|
|
2383
3117
|
constructor(){
|
|
2384
3118
|
super();
|
|
2385
3119
|
|
|
2386
3120
|
/**
|
|
2387
|
-
*
|
|
2388
|
-
* @type {
|
|
3121
|
+
* Forwarding rule ID.
|
|
3122
|
+
* @type {string || null}
|
|
2389
3123
|
*/
|
|
2390
|
-
this.
|
|
3124
|
+
this.RuleId = null;
|
|
2391
3125
|
|
|
2392
3126
|
/**
|
|
2393
|
-
*
|
|
2394
|
-
* @type {
|
|
3127
|
+
* Forwarding rule name.
|
|
3128
|
+
* @type {string || null}
|
|
2395
3129
|
*/
|
|
2396
|
-
this.
|
|
3130
|
+
this.RuleName = null;
|
|
2397
3131
|
|
|
2398
3132
|
/**
|
|
2399
|
-
*
|
|
2400
|
-
* @type {
|
|
3133
|
+
* Forwarding rule type.
|
|
3134
|
+
* @type {string || null}
|
|
2401
3135
|
*/
|
|
2402
|
-
this.
|
|
3136
|
+
this.RuleType = null;
|
|
3137
|
+
|
|
3138
|
+
/**
|
|
3139
|
+
* Private domain ID.
|
|
3140
|
+
* @type {string || null}
|
|
3141
|
+
*/
|
|
3142
|
+
this.ZoneId = null;
|
|
3143
|
+
|
|
3144
|
+
/**
|
|
3145
|
+
* Endpoint ID.
|
|
3146
|
+
* @type {string || null}
|
|
3147
|
+
*/
|
|
3148
|
+
this.EndPointId = null;
|
|
3149
|
+
|
|
3150
|
+
/**
|
|
3151
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
3152
|
+
* @type {string || null}
|
|
3153
|
+
*/
|
|
3154
|
+
this.RequestId = null;
|
|
2403
3155
|
|
|
2404
3156
|
}
|
|
2405
3157
|
|
|
@@ -2410,17 +3162,12 @@ class DescribePrivateDNSAccountListRequest extends AbstractModel {
|
|
|
2410
3162
|
if (!params) {
|
|
2411
3163
|
return;
|
|
2412
3164
|
}
|
|
2413
|
-
this.
|
|
2414
|
-
this.
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
let obj = new Filter();
|
|
2420
|
-
obj.deserialize(params.Filters[z]);
|
|
2421
|
-
this.Filters.push(obj);
|
|
2422
|
-
}
|
|
2423
|
-
}
|
|
3165
|
+
this.RuleId = 'RuleId' in params ? params.RuleId : null;
|
|
3166
|
+
this.RuleName = 'RuleName' in params ? params.RuleName : null;
|
|
3167
|
+
this.RuleType = 'RuleType' in params ? params.RuleType : null;
|
|
3168
|
+
this.ZoneId = 'ZoneId' in params ? params.ZoneId : null;
|
|
3169
|
+
this.EndPointId = 'EndPointId' in params ? params.EndPointId : null;
|
|
3170
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2424
3171
|
|
|
2425
3172
|
}
|
|
2426
3173
|
}
|
|
@@ -2493,29 +3240,35 @@ class ModifyPrivateZoneVpcResponse extends AbstractModel {
|
|
|
2493
3240
|
module.exports = {
|
|
2494
3241
|
DescribeQuotaUsageResponse: DescribeQuotaUsageResponse,
|
|
2495
3242
|
ModifyPrivateZoneVpcRequest: ModifyPrivateZoneVpcRequest,
|
|
2496
|
-
|
|
3243
|
+
CreateEndPointAndEndPointServiceResponse: CreateEndPointAndEndPointServiceResponse,
|
|
2497
3244
|
DescribePrivateDNSAccountListResponse: DescribePrivateDNSAccountListResponse,
|
|
2498
|
-
|
|
3245
|
+
CreateForwardRuleRequest: CreateForwardRuleRequest,
|
|
2499
3246
|
PrivateDNSAccount: PrivateDNSAccount,
|
|
3247
|
+
DescribeForwardRuleListRequest: DescribeForwardRuleListRequest,
|
|
3248
|
+
DescribePrivateZoneRecordListRequest: DescribePrivateZoneRecordListRequest,
|
|
2500
3249
|
DescribePrivateZoneRecordListResponse: DescribePrivateZoneRecordListResponse,
|
|
2501
3250
|
DescribePrivateZoneListResponse: DescribePrivateZoneListResponse,
|
|
2502
3251
|
AccountVpcInfoOutput: AccountVpcInfoOutput,
|
|
3252
|
+
DescribeAuditLogResponse: DescribeAuditLogResponse,
|
|
2503
3253
|
ModifyRecordsStatusResponse: ModifyRecordsStatusResponse,
|
|
2504
3254
|
DatePoint: DatePoint,
|
|
2505
3255
|
DescribeAccountVpcListResponse: DescribeAccountVpcListResponse,
|
|
2506
3256
|
DescribePrivateZoneServiceRequest: DescribePrivateZoneServiceRequest,
|
|
2507
3257
|
PrivateZoneRecord: PrivateZoneRecord,
|
|
3258
|
+
DescribePrivateDNSAccountListRequest: DescribePrivateDNSAccountListRequest,
|
|
2508
3259
|
AuditLogInfo: AuditLogInfo,
|
|
2509
3260
|
DescribeRequestDataRequest: DescribeRequestDataRequest,
|
|
2510
3261
|
ModifyPrivateZoneRecordResponse: ModifyPrivateZoneRecordResponse,
|
|
2511
3262
|
DescribeAccountVpcListRequest: DescribeAccountVpcListRequest,
|
|
2512
3263
|
DescribeRequestDataResponse: DescribeRequestDataResponse,
|
|
3264
|
+
DescribeEndPointListResponse: DescribeEndPointListResponse,
|
|
2513
3265
|
TagInfo: TagInfo,
|
|
2514
3266
|
TldQuota: TldQuota,
|
|
2515
3267
|
CreatePrivateZoneRequest: CreatePrivateZoneRequest,
|
|
2516
|
-
|
|
3268
|
+
DescribeEndPointListRequest: DescribeEndPointListRequest,
|
|
2517
3269
|
AccountVpcInfo: AccountVpcInfo,
|
|
2518
3270
|
ModifyPrivateZoneResponse: ModifyPrivateZoneResponse,
|
|
3271
|
+
ForwardRule: ForwardRule,
|
|
2519
3272
|
DescribePrivateZoneListRequest: DescribePrivateZoneListRequest,
|
|
2520
3273
|
SubscribePrivateZoneServiceRequest: SubscribePrivateZoneServiceRequest,
|
|
2521
3274
|
ModifyPrivateZoneRequest: ModifyPrivateZoneRequest,
|
|
@@ -2523,14 +3276,18 @@ module.exports = {
|
|
|
2523
3276
|
DescribeDashboardResponse: DescribeDashboardResponse,
|
|
2524
3277
|
CreatePrivateZoneRecordResponse: CreatePrivateZoneRecordResponse,
|
|
2525
3278
|
DescribePrivateZoneServiceResponse: DescribePrivateZoneServiceResponse,
|
|
3279
|
+
DescribeForwardRuleListResponse: DescribeForwardRuleListResponse,
|
|
3280
|
+
EndPointInfo: EndPointInfo,
|
|
2526
3281
|
CreatePrivateDNSAccountResponse: CreatePrivateDNSAccountResponse,
|
|
2527
3282
|
DescribeAuditLogRequest: DescribeAuditLogRequest,
|
|
2528
3283
|
DescribeDashboardRequest: DescribeDashboardRequest,
|
|
3284
|
+
CreateEndPointResponse: CreateEndPointResponse,
|
|
2529
3285
|
AuditLog: AuditLog,
|
|
2530
3286
|
SubscribePrivateZoneServiceResponse: SubscribePrivateZoneServiceResponse,
|
|
2531
3287
|
AccountVpcInfoOut: AccountVpcInfoOut,
|
|
2532
3288
|
DeletePrivateZoneRecordRequest: DeletePrivateZoneRecordRequest,
|
|
2533
3289
|
Filter: Filter,
|
|
3290
|
+
CreateEndPointRequest: CreateEndPointRequest,
|
|
2534
3291
|
ModifyRecordsStatusRequest: ModifyRecordsStatusRequest,
|
|
2535
3292
|
CreatePrivateDNSAccountRequest: CreatePrivateDNSAccountRequest,
|
|
2536
3293
|
MetricData: MetricData,
|
|
@@ -2538,9 +3295,11 @@ module.exports = {
|
|
|
2538
3295
|
PrivateZone: PrivateZone,
|
|
2539
3296
|
CreatePrivateZoneRecordRequest: CreatePrivateZoneRecordRequest,
|
|
2540
3297
|
DescribeQuotaUsageRequest: DescribeQuotaUsageRequest,
|
|
3298
|
+
CreateEndPointAndEndPointServiceRequest: CreateEndPointAndEndPointServiceRequest,
|
|
2541
3299
|
ModifyPrivateZoneRecordRequest: ModifyPrivateZoneRecordRequest,
|
|
3300
|
+
VpcInfo: VpcInfo,
|
|
2542
3301
|
FlowUsage: FlowUsage,
|
|
2543
|
-
|
|
3302
|
+
CreateForwardRuleResponse: CreateForwardRuleResponse,
|
|
2544
3303
|
ModifyPrivateZoneVpcResponse: ModifyPrivateZoneVpcResponse,
|
|
2545
3304
|
|
|
2546
3305
|
}
|