tencentcloud-sdk-nodejs-intl-en 3.0.415 → 3.0.416
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.
|
@@ -72,6 +72,12 @@ class CreateTawInstanceRequest extends AbstractModel {
|
|
|
72
72
|
*/
|
|
73
73
|
this.PeriodRetain = null;
|
|
74
74
|
|
|
75
|
+
/**
|
|
76
|
+
* Instance purchase channel. Valid value: `cdn`.
|
|
77
|
+
* @type {string || null}
|
|
78
|
+
*/
|
|
79
|
+
this.BuyingChannel = null;
|
|
80
|
+
|
|
75
81
|
}
|
|
76
82
|
|
|
77
83
|
/**
|
|
@@ -97,6 +103,7 @@ class CreateTawInstanceRequest extends AbstractModel {
|
|
|
97
103
|
this.InstanceDesc = 'InstanceDesc' in params ? params.InstanceDesc : null;
|
|
98
104
|
this.CountNum = 'CountNum' in params ? params.CountNum : null;
|
|
99
105
|
this.PeriodRetain = 'PeriodRetain' in params ? params.PeriodRetain : null;
|
|
106
|
+
this.BuyingChannel = 'BuyingChannel' in params ? params.BuyingChannel : null;
|
|
100
107
|
|
|
101
108
|
}
|
|
102
109
|
}
|
|
@@ -424,91 +431,6 @@ class DescribeProjectLimitsResponse extends AbstractModel {
|
|
|
424
431
|
}
|
|
425
432
|
}
|
|
426
433
|
|
|
427
|
-
/**
|
|
428
|
-
* DescribeTawInstances request structure.
|
|
429
|
-
* @class
|
|
430
|
-
*/
|
|
431
|
-
class DescribeTawInstancesRequest extends AbstractModel {
|
|
432
|
-
constructor(){
|
|
433
|
-
super();
|
|
434
|
-
|
|
435
|
-
/**
|
|
436
|
-
* Billing status
|
|
437
|
-
* @type {Array.<number> || null}
|
|
438
|
-
*/
|
|
439
|
-
this.ChargeStatuses = null;
|
|
440
|
-
|
|
441
|
-
/**
|
|
442
|
-
* Billing type
|
|
443
|
-
* @type {Array.<number> || null}
|
|
444
|
-
*/
|
|
445
|
-
this.ChargeTypes = null;
|
|
446
|
-
|
|
447
|
-
/**
|
|
448
|
-
* Pagination limit
|
|
449
|
-
* @type {number || null}
|
|
450
|
-
*/
|
|
451
|
-
this.Limit = null;
|
|
452
|
-
|
|
453
|
-
/**
|
|
454
|
-
* Pagination offset
|
|
455
|
-
* @type {number || null}
|
|
456
|
-
*/
|
|
457
|
-
this.Offset = null;
|
|
458
|
-
|
|
459
|
-
/**
|
|
460
|
-
* Region ID
|
|
461
|
-
* @type {Array.<number> || null}
|
|
462
|
-
*/
|
|
463
|
-
this.AreaIds = null;
|
|
464
|
-
|
|
465
|
-
/**
|
|
466
|
-
* Instance status (1: creating; 2: running; 3: exceptional; 4: restarting; 5: stopping; 6: stopped; 7: terminating; 8: terminated)
|
|
467
|
-
* @type {Array.<number> || null}
|
|
468
|
-
*/
|
|
469
|
-
this.InstanceStatuses = null;
|
|
470
|
-
|
|
471
|
-
/**
|
|
472
|
-
* Instance ID
|
|
473
|
-
* @type {Array.<string> || null}
|
|
474
|
-
*/
|
|
475
|
-
this.InstanceIds = null;
|
|
476
|
-
|
|
477
|
-
/**
|
|
478
|
-
* Filter parameter
|
|
479
|
-
* @type {Array.<Filter> || null}
|
|
480
|
-
*/
|
|
481
|
-
this.Filters = null;
|
|
482
|
-
|
|
483
|
-
}
|
|
484
|
-
|
|
485
|
-
/**
|
|
486
|
-
* @private
|
|
487
|
-
*/
|
|
488
|
-
deserialize(params) {
|
|
489
|
-
if (!params) {
|
|
490
|
-
return;
|
|
491
|
-
}
|
|
492
|
-
this.ChargeStatuses = 'ChargeStatuses' in params ? params.ChargeStatuses : null;
|
|
493
|
-
this.ChargeTypes = 'ChargeTypes' in params ? params.ChargeTypes : null;
|
|
494
|
-
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
495
|
-
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
496
|
-
this.AreaIds = 'AreaIds' in params ? params.AreaIds : null;
|
|
497
|
-
this.InstanceStatuses = 'InstanceStatuses' in params ? params.InstanceStatuses : null;
|
|
498
|
-
this.InstanceIds = 'InstanceIds' in params ? params.InstanceIds : null;
|
|
499
|
-
|
|
500
|
-
if (params.Filters) {
|
|
501
|
-
this.Filters = new Array();
|
|
502
|
-
for (let z in params.Filters) {
|
|
503
|
-
let obj = new Filter();
|
|
504
|
-
obj.deserialize(params.Filters[z]);
|
|
505
|
-
this.Filters.push(obj);
|
|
506
|
-
}
|
|
507
|
-
}
|
|
508
|
-
|
|
509
|
-
}
|
|
510
|
-
}
|
|
511
|
-
|
|
512
434
|
/**
|
|
513
435
|
* DeleteOfflineLogConfig response structure.
|
|
514
436
|
* @class
|
|
@@ -764,7 +686,7 @@ class DescribeLogListRequest extends AbstractModel {
|
|
|
764
686
|
this.Context = null;
|
|
765
687
|
|
|
766
688
|
/**
|
|
767
|
-
* Query statement
|
|
689
|
+
* Query statement, which can contain up to 4,096 characters.
|
|
768
690
|
* @type {string || null}
|
|
769
691
|
*/
|
|
770
692
|
this.Query = null;
|
|
@@ -1071,48 +993,6 @@ class DescribeOfflineLogsRequest extends AbstractModel {
|
|
|
1071
993
|
}
|
|
1072
994
|
}
|
|
1073
995
|
|
|
1074
|
-
/**
|
|
1075
|
-
* DescribeScores request structure.
|
|
1076
|
-
* @class
|
|
1077
|
-
*/
|
|
1078
|
-
class DescribeScoresRequest extends AbstractModel {
|
|
1079
|
-
constructor(){
|
|
1080
|
-
super();
|
|
1081
|
-
|
|
1082
|
-
/**
|
|
1083
|
-
* End time
|
|
1084
|
-
* @type {string || null}
|
|
1085
|
-
*/
|
|
1086
|
-
this.EndTime = null;
|
|
1087
|
-
|
|
1088
|
-
/**
|
|
1089
|
-
* Start time
|
|
1090
|
-
* @type {string || null}
|
|
1091
|
-
*/
|
|
1092
|
-
this.StartTime = null;
|
|
1093
|
-
|
|
1094
|
-
/**
|
|
1095
|
-
* Project ID
|
|
1096
|
-
* @type {number || null}
|
|
1097
|
-
*/
|
|
1098
|
-
this.ID = null;
|
|
1099
|
-
|
|
1100
|
-
}
|
|
1101
|
-
|
|
1102
|
-
/**
|
|
1103
|
-
* @private
|
|
1104
|
-
*/
|
|
1105
|
-
deserialize(params) {
|
|
1106
|
-
if (!params) {
|
|
1107
|
-
return;
|
|
1108
|
-
}
|
|
1109
|
-
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
1110
|
-
this.StartTime = 'StartTime' in params ? params.StartTime : null;
|
|
1111
|
-
this.ID = 'ID' in params ? params.ID : null;
|
|
1112
|
-
|
|
1113
|
-
}
|
|
1114
|
-
}
|
|
1115
|
-
|
|
1116
996
|
/**
|
|
1117
997
|
* DescribeDataReportCount request structure.
|
|
1118
998
|
* @class
|
|
@@ -4215,49 +4095,6 @@ class DeleteReleaseFileResponse extends AbstractModel {
|
|
|
4215
4095
|
}
|
|
4216
4096
|
}
|
|
4217
4097
|
|
|
4218
|
-
/**
|
|
4219
|
-
* DescribeScores response structure.
|
|
4220
|
-
* @class
|
|
4221
|
-
*/
|
|
4222
|
-
class DescribeScoresResponse extends AbstractModel {
|
|
4223
|
-
constructor(){
|
|
4224
|
-
super();
|
|
4225
|
-
|
|
4226
|
-
/**
|
|
4227
|
-
* Array
|
|
4228
|
-
* @type {Array.<ScoreInfo> || null}
|
|
4229
|
-
*/
|
|
4230
|
-
this.ScoreSet = null;
|
|
4231
|
-
|
|
4232
|
-
/**
|
|
4233
|
-
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
4234
|
-
* @type {string || null}
|
|
4235
|
-
*/
|
|
4236
|
-
this.RequestId = null;
|
|
4237
|
-
|
|
4238
|
-
}
|
|
4239
|
-
|
|
4240
|
-
/**
|
|
4241
|
-
* @private
|
|
4242
|
-
*/
|
|
4243
|
-
deserialize(params) {
|
|
4244
|
-
if (!params) {
|
|
4245
|
-
return;
|
|
4246
|
-
}
|
|
4247
|
-
|
|
4248
|
-
if (params.ScoreSet) {
|
|
4249
|
-
this.ScoreSet = new Array();
|
|
4250
|
-
for (let z in params.ScoreSet) {
|
|
4251
|
-
let obj = new ScoreInfo();
|
|
4252
|
-
obj.deserialize(params.ScoreSet[z]);
|
|
4253
|
-
this.ScoreSet.push(obj);
|
|
4254
|
-
}
|
|
4255
|
-
}
|
|
4256
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
4257
|
-
|
|
4258
|
-
}
|
|
4259
|
-
}
|
|
4260
|
-
|
|
4261
4098
|
/**
|
|
4262
4099
|
* DescribeOfflineLogConfigs response structure.
|
|
4263
4100
|
* @class
|
|
@@ -4497,44 +4334,6 @@ class DescribeTawAreasRequest extends AbstractModel {
|
|
|
4497
4334
|
}
|
|
4498
4335
|
}
|
|
4499
4336
|
|
|
4500
|
-
/**
|
|
4501
|
-
* Key-Value pair filter for conditional filtering queries, such as filtering ID, name, status, etc.
|
|
4502
|
-
|
|
4503
|
-
· If more than one filter exists, the logical relationship between these filters is `AND`.
|
|
4504
|
-
· If multiple values exist in one filter, the logical relationship between these values is `OR`.
|
|
4505
|
-
* @class
|
|
4506
|
-
*/
|
|
4507
|
-
class Filter extends AbstractModel {
|
|
4508
|
-
constructor(){
|
|
4509
|
-
super();
|
|
4510
|
-
|
|
4511
|
-
/**
|
|
4512
|
-
* One or more filter values.
|
|
4513
|
-
* @type {Array.<string> || null}
|
|
4514
|
-
*/
|
|
4515
|
-
this.Values = null;
|
|
4516
|
-
|
|
4517
|
-
/**
|
|
4518
|
-
* Filter name.
|
|
4519
|
-
* @type {string || null}
|
|
4520
|
-
*/
|
|
4521
|
-
this.Name = null;
|
|
4522
|
-
|
|
4523
|
-
}
|
|
4524
|
-
|
|
4525
|
-
/**
|
|
4526
|
-
* @private
|
|
4527
|
-
*/
|
|
4528
|
-
deserialize(params) {
|
|
4529
|
-
if (!params) {
|
|
4530
|
-
return;
|
|
4531
|
-
}
|
|
4532
|
-
this.Values = 'Values' in params ? params.Values : null;
|
|
4533
|
-
this.Name = 'Name' in params ? params.Name : null;
|
|
4534
|
-
|
|
4535
|
-
}
|
|
4536
|
-
}
|
|
4537
|
-
|
|
4538
4337
|
/**
|
|
4539
4338
|
* DescribeDataLogUrlStatistics request structure.
|
|
4540
4339
|
* @class
|
|
@@ -5518,287 +5317,125 @@ class CreateWhitelistResponse extends AbstractModel {
|
|
|
5518
5317
|
}
|
|
5519
5318
|
|
|
5520
5319
|
/**
|
|
5521
|
-
*
|
|
5320
|
+
* DescribeDataWebVitalsPage response structure.
|
|
5522
5321
|
* @class
|
|
5523
5322
|
*/
|
|
5524
|
-
class
|
|
5323
|
+
class DescribeDataWebVitalsPageResponse extends AbstractModel {
|
|
5525
5324
|
constructor(){
|
|
5526
5325
|
super();
|
|
5527
5326
|
|
|
5528
5327
|
/**
|
|
5529
|
-
*
|
|
5328
|
+
* Returned value
|
|
5530
5329
|
* @type {string || null}
|
|
5531
5330
|
*/
|
|
5532
|
-
this.
|
|
5331
|
+
this.Result = null;
|
|
5533
5332
|
|
|
5534
5333
|
/**
|
|
5535
|
-
*
|
|
5334
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
5536
5335
|
* @type {string || null}
|
|
5537
5336
|
*/
|
|
5538
|
-
this.
|
|
5337
|
+
this.RequestId = null;
|
|
5338
|
+
|
|
5339
|
+
}
|
|
5340
|
+
|
|
5341
|
+
/**
|
|
5342
|
+
* @private
|
|
5343
|
+
*/
|
|
5344
|
+
deserialize(params) {
|
|
5345
|
+
if (!params) {
|
|
5346
|
+
return;
|
|
5347
|
+
}
|
|
5348
|
+
this.Result = 'Result' in params ? params.Result : null;
|
|
5349
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
5350
|
+
|
|
5351
|
+
}
|
|
5352
|
+
}
|
|
5353
|
+
|
|
5354
|
+
/**
|
|
5355
|
+
* DescribeDataEventUrl request structure.
|
|
5356
|
+
* @class
|
|
5357
|
+
*/
|
|
5358
|
+
class DescribeDataEventUrlRequest extends AbstractModel {
|
|
5359
|
+
constructor(){
|
|
5360
|
+
super();
|
|
5539
5361
|
|
|
5540
5362
|
/**
|
|
5541
|
-
*
|
|
5542
|
-
* @type {
|
|
5363
|
+
* Start time
|
|
5364
|
+
* @type {number || null}
|
|
5543
5365
|
*/
|
|
5544
|
-
this.
|
|
5366
|
+
this.StartTime = null;
|
|
5545
5367
|
|
|
5546
5368
|
/**
|
|
5547
|
-
*
|
|
5369
|
+
* `allcount`: performance view; `day`: 14-day data; `condition`: condition list; `ckuv`: UV trend; `ckpv`: PV trend; `nettype`/`version`/`platform`/`isp`/`region`/`device`/`browser`/`ext1`/`ext2`/`ext3`/`ret`/`status`/`from`/`url`/`env`: network/platform view; version view; device view; ISP view; region view; browser view; custom view, and so on.
|
|
5548
5370
|
* @type {string || null}
|
|
5549
5371
|
*/
|
|
5550
|
-
this.
|
|
5372
|
+
this.Type = null;
|
|
5551
5373
|
|
|
5552
5374
|
/**
|
|
5553
|
-
*
|
|
5554
|
-
* @type {
|
|
5375
|
+
* End time
|
|
5376
|
+
* @type {number || null}
|
|
5555
5377
|
*/
|
|
5556
|
-
this.
|
|
5378
|
+
this.EndTime = null;
|
|
5557
5379
|
|
|
5558
5380
|
/**
|
|
5559
5381
|
* Project ID
|
|
5560
5382
|
* @type {number || null}
|
|
5561
5383
|
*/
|
|
5562
|
-
this.
|
|
5384
|
+
this.ID = null;
|
|
5563
5385
|
|
|
5564
5386
|
/**
|
|
5565
|
-
*
|
|
5387
|
+
* Custom 2
|
|
5566
5388
|
* @type {string || null}
|
|
5567
5389
|
*/
|
|
5568
|
-
this.
|
|
5390
|
+
this.ExtSecond = null;
|
|
5569
5391
|
|
|
5570
5392
|
/**
|
|
5571
|
-
*
|
|
5393
|
+
* Browser engine
|
|
5572
5394
|
* @type {string || null}
|
|
5573
5395
|
*/
|
|
5574
|
-
this.
|
|
5396
|
+
this.Engine = null;
|
|
5575
5397
|
|
|
5576
5398
|
/**
|
|
5577
|
-
*
|
|
5399
|
+
* ISP
|
|
5578
5400
|
* @type {string || null}
|
|
5579
5401
|
*/
|
|
5580
|
-
this.
|
|
5402
|
+
this.Isp = null;
|
|
5581
5403
|
|
|
5582
5404
|
/**
|
|
5583
|
-
*
|
|
5405
|
+
* Source page
|
|
5584
5406
|
* @type {string || null}
|
|
5585
5407
|
*/
|
|
5586
|
-
this.
|
|
5408
|
+
this.From = null;
|
|
5587
5409
|
|
|
5588
5410
|
/**
|
|
5589
|
-
*
|
|
5411
|
+
* Log level
|
|
5590
5412
|
* @type {string || null}
|
|
5591
5413
|
*/
|
|
5592
|
-
this.
|
|
5414
|
+
this.Level = null;
|
|
5593
5415
|
|
|
5594
5416
|
/**
|
|
5595
|
-
*
|
|
5596
|
-
* @type {
|
|
5417
|
+
* Brand
|
|
5418
|
+
* @type {string || null}
|
|
5597
5419
|
*/
|
|
5598
|
-
this.
|
|
5420
|
+
this.Brand = null;
|
|
5599
5421
|
|
|
5600
5422
|
/**
|
|
5601
|
-
*
|
|
5423
|
+
* Region
|
|
5602
5424
|
* @type {string || null}
|
|
5603
5425
|
*/
|
|
5604
|
-
this.
|
|
5605
|
-
|
|
5606
|
-
}
|
|
5607
|
-
|
|
5608
|
-
/**
|
|
5609
|
-
* @private
|
|
5610
|
-
*/
|
|
5611
|
-
deserialize(params) {
|
|
5612
|
-
if (!params) {
|
|
5613
|
-
return;
|
|
5614
|
-
}
|
|
5615
|
-
this.StaticDuration = 'StaticDuration' in params ? params.StaticDuration : null;
|
|
5616
|
-
this.PagePv = 'PagePv' in params ? params.PagePv : null;
|
|
5617
|
-
this.ApiFail = 'ApiFail' in params ? params.ApiFail : null;
|
|
5618
|
-
this.ApiNum = 'ApiNum' in params ? params.ApiNum : null;
|
|
5619
|
-
this.StaticFail = 'StaticFail' in params ? params.StaticFail : null;
|
|
5620
|
-
this.ProjectID = 'ProjectID' in params ? params.ProjectID : null;
|
|
5621
|
-
this.PageUv = 'PageUv' in params ? params.PageUv : null;
|
|
5622
|
-
this.ApiDuration = 'ApiDuration' in params ? params.ApiDuration : null;
|
|
5623
|
-
this.Score = 'Score' in params ? params.Score : null;
|
|
5624
|
-
this.PageError = 'PageError' in params ? params.PageError : null;
|
|
5625
|
-
this.StaticNum = 'StaticNum' in params ? params.StaticNum : null;
|
|
5626
|
-
this.RecordNum = 'RecordNum' in params ? params.RecordNum : null;
|
|
5627
|
-
this.PageDuration = 'PageDuration' in params ? params.PageDuration : null;
|
|
5628
|
-
|
|
5629
|
-
}
|
|
5630
|
-
}
|
|
5631
|
-
|
|
5632
|
-
/**
|
|
5633
|
-
* DescribeDataWebVitalsPage response structure.
|
|
5634
|
-
* @class
|
|
5635
|
-
*/
|
|
5636
|
-
class DescribeDataWebVitalsPageResponse extends AbstractModel {
|
|
5637
|
-
constructor(){
|
|
5638
|
-
super();
|
|
5426
|
+
this.Area = null;
|
|
5639
5427
|
|
|
5640
5428
|
/**
|
|
5641
|
-
*
|
|
5429
|
+
* Version
|
|
5642
5430
|
* @type {string || null}
|
|
5643
5431
|
*/
|
|
5644
|
-
this.
|
|
5432
|
+
this.VersionNum = null;
|
|
5645
5433
|
|
|
5646
5434
|
/**
|
|
5647
|
-
*
|
|
5435
|
+
* Platform
|
|
5648
5436
|
* @type {string || null}
|
|
5649
5437
|
*/
|
|
5650
|
-
this.
|
|
5651
|
-
|
|
5652
|
-
}
|
|
5653
|
-
|
|
5654
|
-
/**
|
|
5655
|
-
* @private
|
|
5656
|
-
*/
|
|
5657
|
-
deserialize(params) {
|
|
5658
|
-
if (!params) {
|
|
5659
|
-
return;
|
|
5660
|
-
}
|
|
5661
|
-
this.Result = 'Result' in params ? params.Result : null;
|
|
5662
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
5663
|
-
|
|
5664
|
-
}
|
|
5665
|
-
}
|
|
5666
|
-
|
|
5667
|
-
/**
|
|
5668
|
-
* DescribeProjects request structure.
|
|
5669
|
-
* @class
|
|
5670
|
-
*/
|
|
5671
|
-
class DescribeProjectsRequest extends AbstractModel {
|
|
5672
|
-
constructor(){
|
|
5673
|
-
super();
|
|
5674
|
-
|
|
5675
|
-
/**
|
|
5676
|
-
* Number of items per page (integer)
|
|
5677
|
-
* @type {number || null}
|
|
5678
|
-
*/
|
|
5679
|
-
this.Limit = null;
|
|
5680
|
-
|
|
5681
|
-
/**
|
|
5682
|
-
* Page number (integer)
|
|
5683
|
-
* @type {number || null}
|
|
5684
|
-
*/
|
|
5685
|
-
this.Offset = null;
|
|
5686
|
-
|
|
5687
|
-
/**
|
|
5688
|
-
* Filter
|
|
5689
|
-
* @type {Array.<Filter> || null}
|
|
5690
|
-
*/
|
|
5691
|
-
this.Filters = null;
|
|
5692
|
-
|
|
5693
|
-
}
|
|
5694
|
-
|
|
5695
|
-
/**
|
|
5696
|
-
* @private
|
|
5697
|
-
*/
|
|
5698
|
-
deserialize(params) {
|
|
5699
|
-
if (!params) {
|
|
5700
|
-
return;
|
|
5701
|
-
}
|
|
5702
|
-
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
5703
|
-
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
5704
|
-
|
|
5705
|
-
if (params.Filters) {
|
|
5706
|
-
this.Filters = new Array();
|
|
5707
|
-
for (let z in params.Filters) {
|
|
5708
|
-
let obj = new Filter();
|
|
5709
|
-
obj.deserialize(params.Filters[z]);
|
|
5710
|
-
this.Filters.push(obj);
|
|
5711
|
-
}
|
|
5712
|
-
}
|
|
5713
|
-
|
|
5714
|
-
}
|
|
5715
|
-
}
|
|
5716
|
-
|
|
5717
|
-
/**
|
|
5718
|
-
* DescribeDataEventUrl request structure.
|
|
5719
|
-
* @class
|
|
5720
|
-
*/
|
|
5721
|
-
class DescribeDataEventUrlRequest extends AbstractModel {
|
|
5722
|
-
constructor(){
|
|
5723
|
-
super();
|
|
5724
|
-
|
|
5725
|
-
/**
|
|
5726
|
-
* Start time
|
|
5727
|
-
* @type {number || null}
|
|
5728
|
-
*/
|
|
5729
|
-
this.StartTime = null;
|
|
5730
|
-
|
|
5731
|
-
/**
|
|
5732
|
-
* `allcount`: performance view; `day`: 14-day data; `condition`: condition list; `ckuv`: UV trend; `ckpv`: PV trend; `nettype`/`version`/`platform`/`isp`/`region`/`device`/`browser`/`ext1`/`ext2`/`ext3`/`ret`/`status`/`from`/`url`/`env`: network/platform view; version view; device view; ISP view; region view; browser view; custom view, and so on.
|
|
5733
|
-
* @type {string || null}
|
|
5734
|
-
*/
|
|
5735
|
-
this.Type = null;
|
|
5736
|
-
|
|
5737
|
-
/**
|
|
5738
|
-
* End time
|
|
5739
|
-
* @type {number || null}
|
|
5740
|
-
*/
|
|
5741
|
-
this.EndTime = null;
|
|
5742
|
-
|
|
5743
|
-
/**
|
|
5744
|
-
* Project ID
|
|
5745
|
-
* @type {number || null}
|
|
5746
|
-
*/
|
|
5747
|
-
this.ID = null;
|
|
5748
|
-
|
|
5749
|
-
/**
|
|
5750
|
-
* Custom 2
|
|
5751
|
-
* @type {string || null}
|
|
5752
|
-
*/
|
|
5753
|
-
this.ExtSecond = null;
|
|
5754
|
-
|
|
5755
|
-
/**
|
|
5756
|
-
* Browser engine
|
|
5757
|
-
* @type {string || null}
|
|
5758
|
-
*/
|
|
5759
|
-
this.Engine = null;
|
|
5760
|
-
|
|
5761
|
-
/**
|
|
5762
|
-
* ISP
|
|
5763
|
-
* @type {string || null}
|
|
5764
|
-
*/
|
|
5765
|
-
this.Isp = null;
|
|
5766
|
-
|
|
5767
|
-
/**
|
|
5768
|
-
* Source page
|
|
5769
|
-
* @type {string || null}
|
|
5770
|
-
*/
|
|
5771
|
-
this.From = null;
|
|
5772
|
-
|
|
5773
|
-
/**
|
|
5774
|
-
* Log level
|
|
5775
|
-
* @type {string || null}
|
|
5776
|
-
*/
|
|
5777
|
-
this.Level = null;
|
|
5778
|
-
|
|
5779
|
-
/**
|
|
5780
|
-
* Brand
|
|
5781
|
-
* @type {string || null}
|
|
5782
|
-
*/
|
|
5783
|
-
this.Brand = null;
|
|
5784
|
-
|
|
5785
|
-
/**
|
|
5786
|
-
* Region
|
|
5787
|
-
* @type {string || null}
|
|
5788
|
-
*/
|
|
5789
|
-
this.Area = null;
|
|
5790
|
-
|
|
5791
|
-
/**
|
|
5792
|
-
* Version
|
|
5793
|
-
* @type {string || null}
|
|
5794
|
-
*/
|
|
5795
|
-
this.VersionNum = null;
|
|
5796
|
-
|
|
5797
|
-
/**
|
|
5798
|
-
* Platform
|
|
5799
|
-
* @type {string || null}
|
|
5800
|
-
*/
|
|
5801
|
-
this.Platform = null;
|
|
5438
|
+
this.Platform = null;
|
|
5802
5439
|
|
|
5803
5440
|
/**
|
|
5804
5441
|
* Custom 3
|
|
@@ -5952,56 +5589,6 @@ class DeleteOfflineLogConfigRequest extends AbstractModel {
|
|
|
5952
5589
|
}
|
|
5953
5590
|
}
|
|
5954
5591
|
|
|
5955
|
-
/**
|
|
5956
|
-
* DescribeProjects response structure.
|
|
5957
|
-
* @class
|
|
5958
|
-
*/
|
|
5959
|
-
class DescribeProjectsResponse extends AbstractModel {
|
|
5960
|
-
constructor(){
|
|
5961
|
-
super();
|
|
5962
|
-
|
|
5963
|
-
/**
|
|
5964
|
-
* Total number of items in the list
|
|
5965
|
-
* @type {number || null}
|
|
5966
|
-
*/
|
|
5967
|
-
this.TotalCount = null;
|
|
5968
|
-
|
|
5969
|
-
/**
|
|
5970
|
-
* Project list
|
|
5971
|
-
* @type {Array.<RumProject> || null}
|
|
5972
|
-
*/
|
|
5973
|
-
this.ProjectSet = null;
|
|
5974
|
-
|
|
5975
|
-
/**
|
|
5976
|
-
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
5977
|
-
* @type {string || null}
|
|
5978
|
-
*/
|
|
5979
|
-
this.RequestId = null;
|
|
5980
|
-
|
|
5981
|
-
}
|
|
5982
|
-
|
|
5983
|
-
/**
|
|
5984
|
-
* @private
|
|
5985
|
-
*/
|
|
5986
|
-
deserialize(params) {
|
|
5987
|
-
if (!params) {
|
|
5988
|
-
return;
|
|
5989
|
-
}
|
|
5990
|
-
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
5991
|
-
|
|
5992
|
-
if (params.ProjectSet) {
|
|
5993
|
-
this.ProjectSet = new Array();
|
|
5994
|
-
for (let z in params.ProjectSet) {
|
|
5995
|
-
let obj = new RumProject();
|
|
5996
|
-
obj.deserialize(params.ProjectSet[z]);
|
|
5997
|
-
this.ProjectSet.push(obj);
|
|
5998
|
-
}
|
|
5999
|
-
}
|
|
6000
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
6001
|
-
|
|
6002
|
-
}
|
|
6003
|
-
}
|
|
6004
|
-
|
|
6005
5592
|
/**
|
|
6006
5593
|
* ModifyProject response structure.
|
|
6007
5594
|
* @class
|
|
@@ -6548,56 +6135,6 @@ class DescribeDataStaticResourceRequest extends AbstractModel {
|
|
|
6548
6135
|
}
|
|
6549
6136
|
}
|
|
6550
6137
|
|
|
6551
|
-
/**
|
|
6552
|
-
* DescribeTawInstances response structure.
|
|
6553
|
-
* @class
|
|
6554
|
-
*/
|
|
6555
|
-
class DescribeTawInstancesResponse extends AbstractModel {
|
|
6556
|
-
constructor(){
|
|
6557
|
-
super();
|
|
6558
|
-
|
|
6559
|
-
/**
|
|
6560
|
-
* Instance list
|
|
6561
|
-
* @type {Array.<RumInstanceInfo> || null}
|
|
6562
|
-
*/
|
|
6563
|
-
this.InstanceSet = null;
|
|
6564
|
-
|
|
6565
|
-
/**
|
|
6566
|
-
* Total number of instances
|
|
6567
|
-
* @type {number || null}
|
|
6568
|
-
*/
|
|
6569
|
-
this.TotalCount = null;
|
|
6570
|
-
|
|
6571
|
-
/**
|
|
6572
|
-
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
6573
|
-
* @type {string || null}
|
|
6574
|
-
*/
|
|
6575
|
-
this.RequestId = null;
|
|
6576
|
-
|
|
6577
|
-
}
|
|
6578
|
-
|
|
6579
|
-
/**
|
|
6580
|
-
* @private
|
|
6581
|
-
*/
|
|
6582
|
-
deserialize(params) {
|
|
6583
|
-
if (!params) {
|
|
6584
|
-
return;
|
|
6585
|
-
}
|
|
6586
|
-
|
|
6587
|
-
if (params.InstanceSet) {
|
|
6588
|
-
this.InstanceSet = new Array();
|
|
6589
|
-
for (let z in params.InstanceSet) {
|
|
6590
|
-
let obj = new RumInstanceInfo();
|
|
6591
|
-
obj.deserialize(params.InstanceSet[z]);
|
|
6592
|
-
this.InstanceSet.push(obj);
|
|
6593
|
-
}
|
|
6594
|
-
}
|
|
6595
|
-
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
6596
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
6597
|
-
|
|
6598
|
-
}
|
|
6599
|
-
}
|
|
6600
|
-
|
|
6601
6138
|
/**
|
|
6602
6139
|
* DescribePvList request structure.
|
|
6603
6140
|
* @class
|
|
@@ -6997,136 +6534,6 @@ class Whitelist extends AbstractModel {
|
|
|
6997
6534
|
}
|
|
6998
6535
|
}
|
|
6999
6536
|
|
|
7000
|
-
/**
|
|
7001
|
-
* RUM project information
|
|
7002
|
-
* @class
|
|
7003
|
-
*/
|
|
7004
|
-
class RumProject extends AbstractModel {
|
|
7005
|
-
constructor(){
|
|
7006
|
-
super();
|
|
7007
|
-
|
|
7008
|
-
/**
|
|
7009
|
-
* Project name
|
|
7010
|
-
* @type {string || null}
|
|
7011
|
-
*/
|
|
7012
|
-
this.Name = null;
|
|
7013
|
-
|
|
7014
|
-
/**
|
|
7015
|
-
* Creator ID
|
|
7016
|
-
* @type {string || null}
|
|
7017
|
-
*/
|
|
7018
|
-
this.Creator = null;
|
|
7019
|
-
|
|
7020
|
-
/**
|
|
7021
|
-
* Instance ID
|
|
7022
|
-
* @type {string || null}
|
|
7023
|
-
*/
|
|
7024
|
-
this.InstanceID = null;
|
|
7025
|
-
|
|
7026
|
-
/**
|
|
7027
|
-
* Project type
|
|
7028
|
-
* @type {string || null}
|
|
7029
|
-
*/
|
|
7030
|
-
this.Type = null;
|
|
7031
|
-
|
|
7032
|
-
/**
|
|
7033
|
-
* Creation time
|
|
7034
|
-
* @type {string || null}
|
|
7035
|
-
*/
|
|
7036
|
-
this.CreateTime = null;
|
|
7037
|
-
|
|
7038
|
-
/**
|
|
7039
|
-
* Project repository address
|
|
7040
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
7041
|
-
* @type {string || null}
|
|
7042
|
-
*/
|
|
7043
|
-
this.Repo = null;
|
|
7044
|
-
|
|
7045
|
-
/**
|
|
7046
|
-
* Project URL
|
|
7047
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
7048
|
-
* @type {string || null}
|
|
7049
|
-
*/
|
|
7050
|
-
this.URL = null;
|
|
7051
|
-
|
|
7052
|
-
/**
|
|
7053
|
-
* Project sample rate
|
|
7054
|
-
* @type {string || null}
|
|
7055
|
-
*/
|
|
7056
|
-
this.Rate = null;
|
|
7057
|
-
|
|
7058
|
-
/**
|
|
7059
|
-
* Unique project key (12 characters)
|
|
7060
|
-
* @type {string || null}
|
|
7061
|
-
*/
|
|
7062
|
-
this.Key = null;
|
|
7063
|
-
|
|
7064
|
-
/**
|
|
7065
|
-
* Whether to enable URL aggregation
|
|
7066
|
-
* @type {number || null}
|
|
7067
|
-
*/
|
|
7068
|
-
this.EnableURLGroup = null;
|
|
7069
|
-
|
|
7070
|
-
/**
|
|
7071
|
-
* Instance name
|
|
7072
|
-
* @type {string || null}
|
|
7073
|
-
*/
|
|
7074
|
-
this.InstanceName = null;
|
|
7075
|
-
|
|
7076
|
-
/**
|
|
7077
|
-
* Project ID
|
|
7078
|
-
* @type {number || null}
|
|
7079
|
-
*/
|
|
7080
|
-
this.ID = null;
|
|
7081
|
-
|
|
7082
|
-
/**
|
|
7083
|
-
* Instance key
|
|
7084
|
-
* @type {string || null}
|
|
7085
|
-
*/
|
|
7086
|
-
this.InstanceKey = null;
|
|
7087
|
-
|
|
7088
|
-
/**
|
|
7089
|
-
* Project description
|
|
7090
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
7091
|
-
* @type {string || null}
|
|
7092
|
-
*/
|
|
7093
|
-
this.Desc = null;
|
|
7094
|
-
|
|
7095
|
-
/**
|
|
7096
|
-
* Starred status. 1: yes; 0: no
|
|
7097
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
7098
|
-
* @type {number || null}
|
|
7099
|
-
*/
|
|
7100
|
-
this.IsStar = null;
|
|
7101
|
-
|
|
7102
|
-
}
|
|
7103
|
-
|
|
7104
|
-
/**
|
|
7105
|
-
* @private
|
|
7106
|
-
*/
|
|
7107
|
-
deserialize(params) {
|
|
7108
|
-
if (!params) {
|
|
7109
|
-
return;
|
|
7110
|
-
}
|
|
7111
|
-
this.Name = 'Name' in params ? params.Name : null;
|
|
7112
|
-
this.Creator = 'Creator' in params ? params.Creator : null;
|
|
7113
|
-
this.InstanceID = 'InstanceID' in params ? params.InstanceID : null;
|
|
7114
|
-
this.Type = 'Type' in params ? params.Type : null;
|
|
7115
|
-
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
7116
|
-
this.Repo = 'Repo' in params ? params.Repo : null;
|
|
7117
|
-
this.URL = 'URL' in params ? params.URL : null;
|
|
7118
|
-
this.Rate = 'Rate' in params ? params.Rate : null;
|
|
7119
|
-
this.Key = 'Key' in params ? params.Key : null;
|
|
7120
|
-
this.EnableURLGroup = 'EnableURLGroup' in params ? params.EnableURLGroup : null;
|
|
7121
|
-
this.InstanceName = 'InstanceName' in params ? params.InstanceName : null;
|
|
7122
|
-
this.ID = 'ID' in params ? params.ID : null;
|
|
7123
|
-
this.InstanceKey = 'InstanceKey' in params ? params.InstanceKey : null;
|
|
7124
|
-
this.Desc = 'Desc' in params ? params.Desc : null;
|
|
7125
|
-
this.IsStar = 'IsStar' in params ? params.IsStar : null;
|
|
7126
|
-
|
|
7127
|
-
}
|
|
7128
|
-
}
|
|
7129
|
-
|
|
7130
6537
|
/**
|
|
7131
6538
|
* DescribeDataSetUrlStatistics response structure.
|
|
7132
6539
|
* @class
|
|
@@ -7162,119 +6569,6 @@ class DescribeDataSetUrlStatisticsResponse extends AbstractModel {
|
|
|
7162
6569
|
}
|
|
7163
6570
|
}
|
|
7164
6571
|
|
|
7165
|
-
/**
|
|
7166
|
-
* RUM instance information
|
|
7167
|
-
* @class
|
|
7168
|
-
*/
|
|
7169
|
-
class RumInstanceInfo extends AbstractModel {
|
|
7170
|
-
constructor(){
|
|
7171
|
-
super();
|
|
7172
|
-
|
|
7173
|
-
/**
|
|
7174
|
-
* Instance status (1: creating; 2: running; 3: exceptional; 4: restarting; 5: stopping; 6: stopped; 7: deleted)
|
|
7175
|
-
* @type {number || null}
|
|
7176
|
-
*/
|
|
7177
|
-
this.InstanceStatus = null;
|
|
7178
|
-
|
|
7179
|
-
/**
|
|
7180
|
-
* Region ID
|
|
7181
|
-
* @type {number || null}
|
|
7182
|
-
*/
|
|
7183
|
-
this.AreaId = null;
|
|
7184
|
-
|
|
7185
|
-
/**
|
|
7186
|
-
* Tag list
|
|
7187
|
-
* @type {Array.<Tag> || null}
|
|
7188
|
-
*/
|
|
7189
|
-
this.Tags = null;
|
|
7190
|
-
|
|
7191
|
-
/**
|
|
7192
|
-
* Instance ID
|
|
7193
|
-
* @type {string || null}
|
|
7194
|
-
*/
|
|
7195
|
-
this.InstanceId = null;
|
|
7196
|
-
|
|
7197
|
-
/**
|
|
7198
|
-
* Cluster ID
|
|
7199
|
-
* @type {number || null}
|
|
7200
|
-
*/
|
|
7201
|
-
this.ClusterId = null;
|
|
7202
|
-
|
|
7203
|
-
/**
|
|
7204
|
-
* Instance description
|
|
7205
|
-
* @type {string || null}
|
|
7206
|
-
*/
|
|
7207
|
-
this.InstanceDesc = null;
|
|
7208
|
-
|
|
7209
|
-
/**
|
|
7210
|
-
* Billing status (1: in use; 2: expired; 3: terminated; 4: assigning; 5: assignment failed)
|
|
7211
|
-
* @type {number || null}
|
|
7212
|
-
*/
|
|
7213
|
-
this.ChargeStatus = null;
|
|
7214
|
-
|
|
7215
|
-
/**
|
|
7216
|
-
* Billing type (1: free; 2: prepaid; 3: postpaid)
|
|
7217
|
-
* @type {number || null}
|
|
7218
|
-
*/
|
|
7219
|
-
this.ChargeType = null;
|
|
7220
|
-
|
|
7221
|
-
/**
|
|
7222
|
-
* Update time
|
|
7223
|
-
* @type {string || null}
|
|
7224
|
-
*/
|
|
7225
|
-
this.UpdatedAt = null;
|
|
7226
|
-
|
|
7227
|
-
/**
|
|
7228
|
-
* Data retention period (in days)
|
|
7229
|
-
* @type {number || null}
|
|
7230
|
-
*/
|
|
7231
|
-
this.DataRetentionDays = null;
|
|
7232
|
-
|
|
7233
|
-
/**
|
|
7234
|
-
* Instance name
|
|
7235
|
-
* @type {string || null}
|
|
7236
|
-
*/
|
|
7237
|
-
this.InstanceName = null;
|
|
7238
|
-
|
|
7239
|
-
/**
|
|
7240
|
-
* Creation time
|
|
7241
|
-
* @type {string || null}
|
|
7242
|
-
*/
|
|
7243
|
-
this.CreatedAt = null;
|
|
7244
|
-
|
|
7245
|
-
}
|
|
7246
|
-
|
|
7247
|
-
/**
|
|
7248
|
-
* @private
|
|
7249
|
-
*/
|
|
7250
|
-
deserialize(params) {
|
|
7251
|
-
if (!params) {
|
|
7252
|
-
return;
|
|
7253
|
-
}
|
|
7254
|
-
this.InstanceStatus = 'InstanceStatus' in params ? params.InstanceStatus : null;
|
|
7255
|
-
this.AreaId = 'AreaId' in params ? params.AreaId : null;
|
|
7256
|
-
|
|
7257
|
-
if (params.Tags) {
|
|
7258
|
-
this.Tags = new Array();
|
|
7259
|
-
for (let z in params.Tags) {
|
|
7260
|
-
let obj = new Tag();
|
|
7261
|
-
obj.deserialize(params.Tags[z]);
|
|
7262
|
-
this.Tags.push(obj);
|
|
7263
|
-
}
|
|
7264
|
-
}
|
|
7265
|
-
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
7266
|
-
this.ClusterId = 'ClusterId' in params ? params.ClusterId : null;
|
|
7267
|
-
this.InstanceDesc = 'InstanceDesc' in params ? params.InstanceDesc : null;
|
|
7268
|
-
this.ChargeStatus = 'ChargeStatus' in params ? params.ChargeStatus : null;
|
|
7269
|
-
this.ChargeType = 'ChargeType' in params ? params.ChargeType : null;
|
|
7270
|
-
this.UpdatedAt = 'UpdatedAt' in params ? params.UpdatedAt : null;
|
|
7271
|
-
this.DataRetentionDays = 'DataRetentionDays' in params ? params.DataRetentionDays : null;
|
|
7272
|
-
this.InstanceName = 'InstanceName' in params ? params.InstanceName : null;
|
|
7273
|
-
this.CreatedAt = 'CreatedAt' in params ? params.CreatedAt : null;
|
|
7274
|
-
|
|
7275
|
-
}
|
|
7276
|
-
}
|
|
7277
|
-
|
|
7278
6572
|
module.exports = {
|
|
7279
6573
|
CreateTawInstanceRequest: CreateTawInstanceRequest,
|
|
7280
6574
|
DescribeDataFetchProjectRequest: DescribeDataFetchProjectRequest,
|
|
@@ -7282,7 +6576,6 @@ module.exports = {
|
|
|
7282
6576
|
CreateTawInstanceResponse: CreateTawInstanceResponse,
|
|
7283
6577
|
DeleteProjectRequest: DeleteProjectRequest,
|
|
7284
6578
|
DescribeProjectLimitsResponse: DescribeProjectLimitsResponse,
|
|
7285
|
-
DescribeTawInstancesRequest: DescribeTawInstancesRequest,
|
|
7286
6579
|
DeleteOfflineLogConfigResponse: DeleteOfflineLogConfigResponse,
|
|
7287
6580
|
DescribeDataPvUrlInfoResponse: DescribeDataPvUrlInfoResponse,
|
|
7288
6581
|
DescribeDataFetchUrlResponse: DescribeDataFetchUrlResponse,
|
|
@@ -7296,7 +6589,6 @@ module.exports = {
|
|
|
7296
6589
|
DescribePvListResponse: DescribePvListResponse,
|
|
7297
6590
|
RumUvInfo: RumUvInfo,
|
|
7298
6591
|
DescribeOfflineLogsRequest: DescribeOfflineLogsRequest,
|
|
7299
|
-
DescribeScoresRequest: DescribeScoresRequest,
|
|
7300
6592
|
DescribeDataReportCountRequest: DescribeDataReportCountRequest,
|
|
7301
6593
|
DeleteOfflineLogRecordRequest: DeleteOfflineLogRecordRequest,
|
|
7302
6594
|
DescribeReleaseFilesRequest: DescribeReleaseFilesRequest,
|
|
@@ -7352,13 +6644,11 @@ module.exports = {
|
|
|
7352
6644
|
DescribeDataLogUrlInfoResponse: DescribeDataLogUrlInfoResponse,
|
|
7353
6645
|
RumPvInfo: RumPvInfo,
|
|
7354
6646
|
DeleteReleaseFileResponse: DeleteReleaseFileResponse,
|
|
7355
|
-
DescribeScoresResponse: DescribeScoresResponse,
|
|
7356
6647
|
DescribeOfflineLogConfigsResponse: DescribeOfflineLogConfigsResponse,
|
|
7357
6648
|
DeleteLogExportResponse: DeleteLogExportResponse,
|
|
7358
6649
|
DescribeReleaseFileSignResponse: DescribeReleaseFileSignResponse,
|
|
7359
6650
|
DescribeOfflineLogsResponse: DescribeOfflineLogsResponse,
|
|
7360
6651
|
DescribeTawAreasRequest: DescribeTawAreasRequest,
|
|
7361
|
-
Filter: Filter,
|
|
7362
6652
|
DescribeDataLogUrlStatisticsRequest: DescribeDataLogUrlStatisticsRequest,
|
|
7363
6653
|
DeleteStarProjectResponse: DeleteStarProjectResponse,
|
|
7364
6654
|
DescribeDataPerformancePageResponse: DescribeDataPerformancePageResponse,
|
|
@@ -7373,28 +6663,22 @@ module.exports = {
|
|
|
7373
6663
|
CreateOfflineLogConfigRequest: CreateOfflineLogConfigRequest,
|
|
7374
6664
|
DescribeDataStaticUrlResponse: DescribeDataStaticUrlResponse,
|
|
7375
6665
|
CreateWhitelistResponse: CreateWhitelistResponse,
|
|
7376
|
-
ScoreInfo: ScoreInfo,
|
|
7377
6666
|
DescribeDataWebVitalsPageResponse: DescribeDataWebVitalsPageResponse,
|
|
7378
|
-
DescribeProjectsRequest: DescribeProjectsRequest,
|
|
7379
6667
|
DescribeDataEventUrlRequest: DescribeDataEventUrlRequest,
|
|
7380
6668
|
DescribeOfflineLogConfigsRequest: DescribeOfflineLogConfigsRequest,
|
|
7381
6669
|
DeleteOfflineLogConfigRequest: DeleteOfflineLogConfigRequest,
|
|
7382
|
-
DescribeProjectsResponse: DescribeProjectsResponse,
|
|
7383
6670
|
ModifyProjectResponse: ModifyProjectResponse,
|
|
7384
6671
|
DescribeLogExportsRequest: DescribeLogExportsRequest,
|
|
7385
6672
|
DescribeDataReportCountResponse: DescribeDataReportCountResponse,
|
|
7386
6673
|
DescribeDataPerformanceProjectRequest: DescribeDataPerformanceProjectRequest,
|
|
7387
6674
|
ModifyProjectRequest: ModifyProjectRequest,
|
|
7388
6675
|
DescribeDataStaticResourceRequest: DescribeDataStaticResourceRequest,
|
|
7389
|
-
DescribeTawInstancesResponse: DescribeTawInstancesResponse,
|
|
7390
6676
|
DescribePvListRequest: DescribePvListRequest,
|
|
7391
6677
|
DescribeDataPvUrlInfoRequest: DescribeDataPvUrlInfoRequest,
|
|
7392
6678
|
CreateReleaseFileResponse: CreateReleaseFileResponse,
|
|
7393
6679
|
CreateLogExportResponse: CreateLogExportResponse,
|
|
7394
6680
|
DescribeDataFetchProjectResponse: DescribeDataFetchProjectResponse,
|
|
7395
6681
|
Whitelist: Whitelist,
|
|
7396
|
-
RumProject: RumProject,
|
|
7397
6682
|
DescribeDataSetUrlStatisticsResponse: DescribeDataSetUrlStatisticsResponse,
|
|
7398
|
-
RumInstanceInfo: RumInstanceInfo,
|
|
7399
6683
|
|
|
7400
6684
|
}
|