tencentcloud-sdk-nodejs-intl-en 3.0.1368 → 3.0.1370
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/cdb/v20170320/cdb_client.js +338 -138
- package/tencentcloud/cdb/v20170320/models.js +3697 -1474
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/cynosdb/v20190107/cynosdb_client.js +3 -2
- package/tencentcloud/cynosdb/v20190107/models.js +164 -120
- package/tencentcloud/mdc/v20200828/models.js +112 -0
|
@@ -468,6 +468,96 @@ class FlowSRTInfo extends AbstractModel {
|
|
|
468
468
|
*/
|
|
469
469
|
this.RecvPacketDropNumber = null;
|
|
470
470
|
|
|
471
|
+
/**
|
|
472
|
+
* bandwidth
|
|
473
|
+
* @type {number || null}
|
|
474
|
+
*/
|
|
475
|
+
this.Bandwidth = null;
|
|
476
|
+
|
|
477
|
+
/**
|
|
478
|
+
* Transmit bandwidth
|
|
479
|
+
* @type {number || null}
|
|
480
|
+
*/
|
|
481
|
+
this.SendBandwidth = null;
|
|
482
|
+
|
|
483
|
+
/**
|
|
484
|
+
* Receive bandwidth
|
|
485
|
+
* @type {number || null}
|
|
486
|
+
*/
|
|
487
|
+
this.RecvBandwidth = null;
|
|
488
|
+
|
|
489
|
+
/**
|
|
490
|
+
* Number of packets sent
|
|
491
|
+
* @type {number || null}
|
|
492
|
+
*/
|
|
493
|
+
this.SendPackets = null;
|
|
494
|
+
|
|
495
|
+
/**
|
|
496
|
+
* Number of received packets
|
|
497
|
+
* @type {number || null}
|
|
498
|
+
*/
|
|
499
|
+
this.RecvPackets = null;
|
|
500
|
+
|
|
501
|
+
/**
|
|
502
|
+
* Send lost package
|
|
503
|
+
* @type {number || null}
|
|
504
|
+
*/
|
|
505
|
+
this.SendLostPackets = null;
|
|
506
|
+
|
|
507
|
+
/**
|
|
508
|
+
* Accept lost packages
|
|
509
|
+
* @type {number || null}
|
|
510
|
+
*/
|
|
511
|
+
this.RecvLostPackets = null;
|
|
512
|
+
|
|
513
|
+
/**
|
|
514
|
+
* Number of retransmission packets sent
|
|
515
|
+
* @type {number || null}
|
|
516
|
+
*/
|
|
517
|
+
this.SendRetransmitPackets = null;
|
|
518
|
+
|
|
519
|
+
/**
|
|
520
|
+
* Number of received retransmission packets
|
|
521
|
+
* @type {number || null}
|
|
522
|
+
*/
|
|
523
|
+
this.RecvRetransmitPackets = null;
|
|
524
|
+
|
|
525
|
+
/**
|
|
526
|
+
* Flight window size
|
|
527
|
+
* @type {number || null}
|
|
528
|
+
*/
|
|
529
|
+
this.FlightSize = null;
|
|
530
|
+
|
|
531
|
+
/**
|
|
532
|
+
* congestion window
|
|
533
|
+
* @type {number || null}
|
|
534
|
+
*/
|
|
535
|
+
this.CongestionWindow = null;
|
|
536
|
+
|
|
537
|
+
/**
|
|
538
|
+
* Send buffer (ms)
|
|
539
|
+
* @type {number || null}
|
|
540
|
+
*/
|
|
541
|
+
this.SendBuffer = null;
|
|
542
|
+
|
|
543
|
+
/**
|
|
544
|
+
* Receive buffer (ms)
|
|
545
|
+
* @type {number || null}
|
|
546
|
+
*/
|
|
547
|
+
this.RecvBuffer = null;
|
|
548
|
+
|
|
549
|
+
/**
|
|
550
|
+
* Sending delay
|
|
551
|
+
* @type {number || null}
|
|
552
|
+
*/
|
|
553
|
+
this.SendLatency = null;
|
|
554
|
+
|
|
555
|
+
/**
|
|
556
|
+
* Receiving delay
|
|
557
|
+
* @type {number || null}
|
|
558
|
+
*/
|
|
559
|
+
this.RecvLatency = null;
|
|
560
|
+
|
|
471
561
|
}
|
|
472
562
|
|
|
473
563
|
/**
|
|
@@ -486,6 +576,21 @@ class FlowSRTInfo extends AbstractModel {
|
|
|
486
576
|
this.SessionId = 'SessionId' in params ? params.SessionId : null;
|
|
487
577
|
this.SendPacketDropNumber = 'SendPacketDropNumber' in params ? params.SendPacketDropNumber : null;
|
|
488
578
|
this.RecvPacketDropNumber = 'RecvPacketDropNumber' in params ? params.RecvPacketDropNumber : null;
|
|
579
|
+
this.Bandwidth = 'Bandwidth' in params ? params.Bandwidth : null;
|
|
580
|
+
this.SendBandwidth = 'SendBandwidth' in params ? params.SendBandwidth : null;
|
|
581
|
+
this.RecvBandwidth = 'RecvBandwidth' in params ? params.RecvBandwidth : null;
|
|
582
|
+
this.SendPackets = 'SendPackets' in params ? params.SendPackets : null;
|
|
583
|
+
this.RecvPackets = 'RecvPackets' in params ? params.RecvPackets : null;
|
|
584
|
+
this.SendLostPackets = 'SendLostPackets' in params ? params.SendLostPackets : null;
|
|
585
|
+
this.RecvLostPackets = 'RecvLostPackets' in params ? params.RecvLostPackets : null;
|
|
586
|
+
this.SendRetransmitPackets = 'SendRetransmitPackets' in params ? params.SendRetransmitPackets : null;
|
|
587
|
+
this.RecvRetransmitPackets = 'RecvRetransmitPackets' in params ? params.RecvRetransmitPackets : null;
|
|
588
|
+
this.FlightSize = 'FlightSize' in params ? params.FlightSize : null;
|
|
589
|
+
this.CongestionWindow = 'CongestionWindow' in params ? params.CongestionWindow : null;
|
|
590
|
+
this.SendBuffer = 'SendBuffer' in params ? params.SendBuffer : null;
|
|
591
|
+
this.RecvBuffer = 'RecvBuffer' in params ? params.RecvBuffer : null;
|
|
592
|
+
this.SendLatency = 'SendLatency' in params ? params.SendLatency : null;
|
|
593
|
+
this.RecvLatency = 'RecvLatency' in params ? params.RecvLatency : null;
|
|
489
594
|
|
|
490
595
|
}
|
|
491
596
|
}
|
|
@@ -3127,6 +3232,12 @@ It must be in UTC format, such as `2020-01-01T12:00:00Z`.
|
|
|
3127
3232
|
*/
|
|
3128
3233
|
this.Period = null;
|
|
3129
3234
|
|
|
3235
|
+
/**
|
|
3236
|
+
* Peer IP address
|
|
3237
|
+
* @type {string || null}
|
|
3238
|
+
*/
|
|
3239
|
+
this.RemoteIp = null;
|
|
3240
|
+
|
|
3130
3241
|
}
|
|
3131
3242
|
|
|
3132
3243
|
/**
|
|
@@ -3143,6 +3254,7 @@ It must be in UTC format, such as `2020-01-01T12:00:00Z`.
|
|
|
3143
3254
|
this.StartTime = 'StartTime' in params ? params.StartTime : null;
|
|
3144
3255
|
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
3145
3256
|
this.Period = 'Period' in params ? params.Period : null;
|
|
3257
|
+
this.RemoteIp = 'RemoteIp' in params ? params.RemoteIp : null;
|
|
3146
3258
|
|
|
3147
3259
|
}
|
|
3148
3260
|
}
|