tencentcloud-sdk-nodejs-intl-en 3.0.1301 → 3.0.1303

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-intl-en",
3
- "version": "3.0.1301",
3
+ "version": "3.0.1303",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.1301";
1
+ const sdkVersion = "3.0.1303";
2
2
  module.exports = sdkVersion
@@ -448,13 +448,13 @@ class CdnDomainInfo extends AbstractModel {
448
448
  super();
449
449
 
450
450
  /**
451
- *
451
+ * Total list size.
452
452
  * @type {number || null}
453
453
  */
454
454
  this.TotalSize = null;
455
455
 
456
456
  /**
457
- *
457
+ * List of associated domain name information.
458
458
  * @type {Array.<DomainRecordInfo> || null}
459
459
  */
460
460
  this.Records = null;
@@ -663,6 +663,18 @@ class ClipRangeInfo extends AbstractModel {
663
663
  */
664
664
  this.Offset = null;
665
665
 
666
+ /**
667
+ * Start offset, Valid when the Type is SpecifyTimeRange.
668
+ * @type {number || null}
669
+ */
670
+ this.StartOffset = null;
671
+
672
+ /**
673
+ * End offset, valid when Type is SpecifyTimeRange.
674
+ * @type {number || null}
675
+ */
676
+ this.EndOffset = null;
677
+
666
678
  }
667
679
 
668
680
  /**
@@ -674,6 +686,8 @@ class ClipRangeInfo extends AbstractModel {
674
686
  }
675
687
  this.Type = 'Type' in params ? params.Type : null;
676
688
  this.Offset = 'Offset' in params ? params.Offset : null;
689
+ this.StartOffset = 'StartOffset' in params ? params.StartOffset : null;
690
+ this.EndOffset = 'EndOffset' in params ? params.EndOffset : null;
677
691
 
678
692
  }
679
693
  }
@@ -1821,6 +1835,12 @@ class SSAIChannelInfo extends AbstractModel {
1821
1835
  */
1822
1836
  this.Region = null;
1823
1837
 
1838
+ /**
1839
+ * Used for clickthrough addresses
1840
+ * @type {string || null}
1841
+ */
1842
+ this.SessionInitPrefix = null;
1843
+
1824
1844
  }
1825
1845
 
1826
1846
  /**
@@ -1841,6 +1861,7 @@ class SSAIChannelInfo extends AbstractModel {
1841
1861
  this.SSAIInfo = obj;
1842
1862
  }
1843
1863
  this.Region = 'Region' in params ? params.Region : null;
1864
+ this.SessionInitPrefix = 'SessionInitPrefix' in params ? params.SessionInitPrefix : null;
1844
1865
 
1845
1866
  }
1846
1867
  }
@@ -1992,25 +2013,25 @@ class DomainRecordInfo extends AbstractModel {
1992
2013
  super();
1993
2014
 
1994
2015
  /**
1995
- *
2016
+ * Associated playback domain name.
1996
2017
  * @type {string || null}
1997
2018
  */
1998
2019
  this.CdnDomain = null;
1999
2020
 
2000
2021
  /**
2001
- *
2022
+ * Belonging region.
2002
2023
  * @type {string || null}
2003
2024
  */
2004
2025
  this.Region = null;
2005
2026
 
2006
2027
  /**
2007
- *
2028
+ * Channel ID.
2008
2029
  * @type {string || null}
2009
2030
  */
2010
2031
  this.ChannelId = null;
2011
2032
 
2012
2033
  /**
2013
- *
2034
+ * The ID of a record
2014
2035
  * @type {string || null}
2015
2036
  */
2016
2037
  this.Id = null;
@@ -3471,6 +3492,12 @@ class HarvestJobResp extends AbstractModel {
3471
3492
  */
3472
3493
  this.Region = null;
3473
3494
 
3495
+ /**
3496
+ * Callback URL after recording is completed
3497
+ * @type {string || null}
3498
+ */
3499
+ this.CallbackURL = null;
3500
+
3474
3501
  }
3475
3502
 
3476
3503
  /**
@@ -3493,6 +3520,7 @@ class HarvestJobResp extends AbstractModel {
3493
3520
  this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
3494
3521
  this.ChannelId = 'ChannelId' in params ? params.ChannelId : null;
3495
3522
  this.Region = 'Region' in params ? params.Region : null;
3523
+ this.CallbackURL = 'CallbackURL' in params ? params.CallbackURL : null;
3496
3524
 
3497
3525
  }
3498
3526
  }
@@ -3694,6 +3722,12 @@ The parameters can only contain digits, letters, underscores (_), and hyphens (-
3694
3722
  */
3695
3723
  this.DRMInfo = null;
3696
3724
 
3725
+ /**
3726
+ * The switch of absolute path.
3727
+ * @type {boolean || null}
3728
+ */
3729
+ this.AbsolutePathEnable = null;
3730
+
3697
3731
  }
3698
3732
 
3699
3733
  /**
@@ -3731,6 +3765,7 @@ The parameters can only contain digits, letters, underscores (_), and hyphens (-
3731
3765
  obj.deserialize(params.DRMInfo)
3732
3766
  this.DRMInfo = obj;
3733
3767
  }
3768
+ this.AbsolutePathEnable = 'AbsolutePathEnable' in params ? params.AbsolutePathEnable : null;
3734
3769
 
3735
3770
  }
3736
3771
  }
@@ -5509,19 +5544,19 @@ class CosInputInfo extends AbstractModel {
5509
5544
  super();
5510
5545
 
5511
5546
  /**
5512
- *
5547
+ * COS bucket name
5513
5548
  * @type {string || null}
5514
5549
  */
5515
5550
  this.Bucket = null;
5516
5551
 
5517
5552
  /**
5518
- *
5553
+ * Region
5519
5554
  * @type {string || null}
5520
5555
  */
5521
5556
  this.Region = null;
5522
5557
 
5523
5558
  /**
5524
- *
5559
+ * File object path
5525
5560
  * @type {string || null}
5526
5561
  */
5527
5562
  this.Object = null;
@@ -6607,13 +6642,14 @@ class SourceTag extends AbstractModel {
6607
6642
  super();
6608
6643
 
6609
6644
  /**
6610
- *
6645
+ * The key of the source tag supports capital letters, numbers, underscores, and dashes from 1 to 50 digits
6611
6646
  * @type {string || null}
6612
6647
  */
6613
6648
  this.Key = null;
6614
6649
 
6615
6650
  /**
6616
- *
6651
+ * The value of the source tag supports letters, numbers, underscores, dashes, periods, and percent signs (%) ranging from 1 to 200 characters
6652
+
6617
6653
  * @type {string || null}
6618
6654
  */
6619
6655
  this.Value = null;
@@ -7871,6 +7907,72 @@ class UsageDetail extends AbstractModel {
7871
7907
  */
7872
7908
  this.PreReplaceRate = null;
7873
7909
 
7910
+ /**
7911
+ * Number of ad tags found in the list
7912
+ * @type {number || null}
7913
+ */
7914
+ this.ADMarkerFound = null;
7915
+
7916
+ /**
7917
+ * Request advertising frequency from ADS
7918
+ * @type {number || null}
7919
+ */
7920
+ this.MakeAdsRequest = null;
7921
+
7922
+ /**
7923
+ * Received VAST returns from ADS
7924
+ * @type {number || null}
7925
+ */
7926
+ this.VASTResponse = null;
7927
+
7928
+ /**
7929
+ * Successfully filled the ad count
7930
+ * @type {number || null}
7931
+ */
7932
+ this.FilledAvail = null;
7933
+
7934
+ /**
7935
+ * The number of issues encountered during ad replacement execution
7936
+ * @type {number || null}
7937
+ */
7938
+ this.WarningNoAd = null;
7939
+
7940
+ /**
7941
+ * The number of timeouts returned by ADS
7942
+ * @type {number || null}
7943
+ */
7944
+ this.ErrorAdsTimeout = null;
7945
+
7946
+ /**
7947
+ * The number of empty VAST responses returned by ADS
7948
+ * @type {number || null}
7949
+ */
7950
+ this.EmptyVASTResponse = null;
7951
+
7952
+ /**
7953
+ * The number of empty VMAP responses returned by ADS
7954
+ * @type {number || null}
7955
+ */
7956
+ this.EmptyVMAPResponse = null;
7957
+
7958
+ /**
7959
+ * Date
7960
+ * @type {string || null}
7961
+ */
7962
+ this.Date = null;
7963
+
7964
+ /**
7965
+ * Start time
7966
+ * @type {string || null}
7967
+ */
7968
+ this.StartTime = null;
7969
+
7970
+ /**
7971
+ * End time
7972
+ * @type {string || null}
7973
+ */
7974
+ this.EndTime = null;
7975
+
7874
7976
  }
7875
7977
 
7876
7978
  /**
@@ -7898,6 +8000,17 @@ class UsageDetail extends AbstractModel {
7898
8000
  this.PreReqNum = 'PreReqNum' in params ? params.PreReqNum : null;
7899
8001
  this.PreReplacedNum = 'PreReplacedNum' in params ? params.PreReplacedNum : null;
7900
8002
  this.PreReplaceRate = 'PreReplaceRate' in params ? params.PreReplaceRate : null;
8003
+ this.ADMarkerFound = 'ADMarkerFound' in params ? params.ADMarkerFound : null;
8004
+ this.MakeAdsRequest = 'MakeAdsRequest' in params ? params.MakeAdsRequest : null;
8005
+ this.VASTResponse = 'VASTResponse' in params ? params.VASTResponse : null;
8006
+ this.FilledAvail = 'FilledAvail' in params ? params.FilledAvail : null;
8007
+ this.WarningNoAd = 'WarningNoAd' in params ? params.WarningNoAd : null;
8008
+ this.ErrorAdsTimeout = 'ErrorAdsTimeout' in params ? params.ErrorAdsTimeout : null;
8009
+ this.EmptyVASTResponse = 'EmptyVASTResponse' in params ? params.EmptyVASTResponse : null;
8010
+ this.EmptyVMAPResponse = 'EmptyVMAPResponse' in params ? params.EmptyVMAPResponse : null;
8011
+ this.Date = 'Date' in params ? params.Date : null;
8012
+ this.StartTime = 'StartTime' in params ? params.StartTime : null;
8013
+ this.EndTime = 'EndTime' in params ? params.EndTime : null;
7901
8014
 
7902
8015
  }
7903
8016
  }
@@ -22863,7 +22863,7 @@ class DescribeTimingL7AnalysisDataRequest extends AbstractModel {
22863
22863
  this.MetricNames = null;
22864
22864
 
22865
22865
  /**
22866
- * Site ID list. The parameter will change from optional to mandatory after May 30, 2024.Refer to [Cloud API Change Notification](https://www.tencentcloud.com/document/product/1145/59980). A maximum of 100 site IDs can be imported. Use `*` to query data for all sites under the Tencent Cloud root account. To query account-level data, you must have resource permissions for all sites in this API.
22866
+ * Site ID set. this parameter will change from option to required after may 30, 2024. for details, see the notice: [tencent cloud EdgeOne API change notification](https://www.tencentcloud.com/document/product/1145/59980). a maximum of 100 site ids can be imported. use `*` to query all site data under the tencent cloud root account. querying account-level data requires all resource permissions for all sites in this interface.
22867
22867
  * @type {Array.<string> || null}
22868
22868
  */
22869
22869
  this.ZoneIds = null;
@@ -22879,7 +22879,7 @@ class DescribeTimingL7AnalysisDataRequest extends AbstractModel {
22879
22879
  this.Interval = null;
22880
22880
 
22881
22881
  /**
22882
- * Filter criteria used when filtering data. valid values refer to the available filter options for L7 access traffic, bandwidth, and request count in the [metric analysis filtering condition description](https://www.tencentcloud.comom/document/product/1552/98219?from_cn_redirect=1#1aaf1150-55a4-4b4d-b103-3a8317ac7945).
22882
+ * Filter criteria used when filtering data. valid values refer to the available filter options for L7 access traffic, bandwidth, and request count in the [metric analysis filtering condition description](https://www.tencentcloud.com/document/product/1145/56985#1aaf1150-55a4-4b4d-b103-3a8317ac7945).
22883
22883
  If needed, limit the site or content identifier by importing the corresponding value in the `ZoneIds.N` parameter.
22884
22884
  * @type {Array.<QueryCondition> || null}
22885
22885
  */
@@ -1,3 +1,3 @@
1
1
  module.exports = {
2
- v20180525: require("./v20180525"), v20220501: require("./v20220501"),
2
+ v20220501: require("./v20220501"), v20180525: require("./v20180525"),
3
3
  };
@@ -1,3 +1,3 @@
1
1
  module.exports = {
2
- v20210820: require("./v20210820"), v20250806: require("./v20250806"),
2
+ v20250806: require("./v20250806"), v20210820: require("./v20210820"),
3
3
  };