tencentcloud-sdk-cdn 1.0.290 → 1.0.293

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dac62afa3bcdc5019822d0c87b2e631999de4f90
4
- data.tar.gz: fff9134efc2b46dfbcdb976f81dc5843bbd04d9e
3
+ metadata.gz: 88039696f1d3949881792f0cb4347e736ec116d8
4
+ data.tar.gz: c3d27fccfbd45fa5b33757379a2f1dfdfe05efd2
5
5
  SHA512:
6
- metadata.gz: ef0e0567dfd7a3327991aade396134fefdb08f904cfbb1273d5027b34cef9eb0b7869ff8fbaf52cbbbe721681063e61fad2fa6655c9ccb766f5ddf9afddfd209
7
- data.tar.gz: 54d91dc7122a26a7bd1cc028a6a3fb6efcfb9b98c7ea2f369500e9dfafc0d7f974f6c0548affb903f45757eadf4b998598e812d42fa505006d1af0ce7286c762
6
+ metadata.gz: 5c4b328baa127ab9b1f93da031f12fbf431cd05ca5cdfa203593892618f8e929adbca91eb0290db49b4bb902d7ea28d5f9765956724952e125cbdd16f4d03a39
7
+ data.tar.gz: d8d254d665452b6e7a58ffbc0da12bc0f7d7cbb9fbf450a25bf8b5b84292165b65b17474c8c9f958227e47c3d74f69c9271b459ea957ac437b6197e3fcde1ad6
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.290
1
+ 1.0.293
@@ -1053,7 +1053,7 @@ module TencentCloud
1053
1053
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1054
1054
  end
1055
1055
 
1056
- # DescribeTrafficPackages 用于查询中国境内 CDN 流量包详情。
1056
+ # DescribeTrafficPackages 用于查询 CDN 流量包详情。
1057
1057
 
1058
1058
  # @param request: Request instance for DescribeTrafficPackages.
1059
1059
  # @type request: :class:`Tencentcloud::cdn::V20180606::DescribeTrafficPackagesRequest`
@@ -5579,10 +5579,14 @@ module TencentCloud
5579
5579
  # DescribeTopData请求参数结构体
5580
5580
  class DescribeTopDataRequest < TencentCloud::Common::AbstractModel
5581
5581
  # @param StartTime: 查询起始日期:yyyy-MM-dd HH:mm:ss
5582
- # 当前仅支持按天粒度的数据查询,参数需为某天的起点时刻
5582
+ # 仅支持按天粒度的数据查询,取入参中的天信息作为起始日期
5583
+ # 返回大于等于起始日期当天 00:00:00 点产生的数据,如 StartTime为2018-09-04 10:40:00,返回数据的起始时间为2018-09-04 00:00:00
5584
+ # 仅支持 90 天内数据查询
5583
5585
  # @type StartTime: String
5584
- # @param EndTime: 查询起始日期:yyyy-MM-dd HH:mm:ss
5585
- # 当前仅支持按天粒度的数据查询,参数需为某天的结束时刻
5586
+ # @param EndTime: 查询结束日期:yyyy-MM-dd HH:mm:ss
5587
+ # 仅支持按天粒度的数据查询,取入参中的天信息作为结束日期
5588
+ # 返回小于等于结束日期当天 23:59:59 产生的数据,如EndTime为2018-09-05 22:40:00,返回数据的结束时间为2018-09-05 23:59:59
5589
+ # EndTime 需要大于等于 StartTime
5586
5590
  # @type EndTime: String
5587
5591
  # @param Metric: 排序对象,支持以下几种形式:
5588
5592
  # ip、ua_device、ua_browser、ua_os、referer
@@ -5597,9 +5601,11 @@ module TencentCloud
5597
5601
  # @type Project: Integer
5598
5602
  # @param Detail: 是否详细显示每个域名的的具体数值
5599
5603
  # @type Detail: Boolean
5600
- # @param Area: 地域,目前可不填,默认是大陆
5604
+ # @param Area: 指定服务地域查询,不填充表示查询中国境内 CDN 数据
5605
+ # mainland:指定查询中国境内 CDN 数据
5606
+ # overseas:指定查询中国境外 CDN 数据
5601
5607
  # @type Area: String
5602
- # @param Product: 产品名,目前仅可使用cdn
5608
+ # @param Product: 指定查询的产品数据,目前仅可使用cdn
5603
5609
  # @type Product: String
5604
5610
 
5605
5611
  attr_accessor :StartTime, :EndTime, :Metric, :Filter, :Domains, :Project, :Detail, :Area, :Product
@@ -5662,17 +5668,27 @@ module TencentCloud
5662
5668
  # @type Offset: Integer
5663
5669
  # @param Limit: 分页查询记录个数,默认100,最大1000
5664
5670
  # @type Limit: Integer
5665
-
5666
- attr_accessor :Offset, :Limit
5667
-
5668
- def initialize(offset=nil, limit=nil)
5671
+ # @param SortBy: 流量包排序方式,支持以下值:
5672
+ # expireTimeDesc:默认值,按过期时间倒序
5673
+ # expireTimeAsc:按过期时间正序
5674
+ # createTimeDesc:按创建时间倒序
5675
+ # createTimeAsc:按创建时间正序
5676
+ # status:按状态排序,正常抵扣>未生效>已用尽>已过期
5677
+ # channel:按来源排序,主动购买>自动续订>CDN赠送
5678
+ # @type SortBy: String
5679
+
5680
+ attr_accessor :Offset, :Limit, :SortBy
5681
+
5682
+ def initialize(offset=nil, limit=nil, sortby=nil)
5669
5683
  @Offset = offset
5670
5684
  @Limit = limit
5685
+ @SortBy = sortby
5671
5686
  end
5672
5687
 
5673
5688
  def deserialize(params)
5674
5689
  @Offset = params['Offset']
5675
5690
  @Limit = params['Limit']
5691
+ @SortBy = params['SortBy']
5676
5692
  end
5677
5693
  end
5678
5694
 
@@ -5686,16 +5702,19 @@ module TencentCloud
5686
5702
  # @type ExpiringCount: Integer
5687
5703
  # @param EnabledCount: 有效流量包个数
5688
5704
  # @type EnabledCount: Integer
5705
+ # @param PaidCount: 付费流量包个数
5706
+ # @type PaidCount: Integer
5689
5707
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5690
5708
  # @type RequestId: String
5691
5709
 
5692
- attr_accessor :TotalCount, :TrafficPackages, :ExpiringCount, :EnabledCount, :RequestId
5710
+ attr_accessor :TotalCount, :TrafficPackages, :ExpiringCount, :EnabledCount, :PaidCount, :RequestId
5693
5711
 
5694
- def initialize(totalcount=nil, trafficpackages=nil, expiringcount=nil, enabledcount=nil, requestid=nil)
5712
+ def initialize(totalcount=nil, trafficpackages=nil, expiringcount=nil, enabledcount=nil, paidcount=nil, requestid=nil)
5695
5713
  @TotalCount = totalcount
5696
5714
  @TrafficPackages = trafficpackages
5697
5715
  @ExpiringCount = expiringcount
5698
5716
  @EnabledCount = enabledcount
5717
+ @PaidCount = paidcount
5699
5718
  @RequestId = requestid
5700
5719
  end
5701
5720
 
@@ -5711,6 +5730,7 @@ module TencentCloud
5711
5730
  end
5712
5731
  @ExpiringCount = params['ExpiringCount']
5713
5732
  @EnabledCount = params['EnabledCount']
5733
+ @PaidCount = params['PaidCount']
5714
5734
  @RequestId = params['RequestId']
5715
5735
  end
5716
5736
  end
@@ -9930,15 +9950,20 @@ module TencentCloud
9930
9950
  # 2. 当前只支持递归解析一级索引和子索引中的ts分片,递归深度不超过3层
9931
9951
  # 3. 解析获取的ts分片会正常累加每日预热用量,当用量超出配额时,会静默处理,不再执行预热
9932
9952
  # @type ParseM3U8: Boolean
9953
+ # @param DisableRange: 是否关闭Range回源
9954
+ # 注意事项:
9955
+ # 此功能灰度发布中,敬请期待
9956
+ # @type DisableRange: Boolean
9933
9957
 
9934
- attr_accessor :Urls, :UserAgent, :Area, :Layer, :ParseM3U8
9958
+ attr_accessor :Urls, :UserAgent, :Area, :Layer, :ParseM3U8, :DisableRange
9935
9959
 
9936
- def initialize(urls=nil, useragent=nil, area=nil, layer=nil, parsem3u8=nil)
9960
+ def initialize(urls=nil, useragent=nil, area=nil, layer=nil, parsem3u8=nil, disablerange=nil)
9937
9961
  @Urls = urls
9938
9962
  @UserAgent = useragent
9939
9963
  @Area = area
9940
9964
  @Layer = layer
9941
9965
  @ParseM3U8 = parsem3u8
9966
+ @DisableRange = disablerange
9942
9967
  end
9943
9968
 
9944
9969
  def deserialize(params)
@@ -9947,6 +9972,7 @@ module TencentCloud
9947
9972
  @Area = params['Area']
9948
9973
  @Layer = params['Layer']
9949
9974
  @ParseM3U8 = params['ParseM3U8']
9975
+ @DisableRange = params['DisableRange']
9950
9976
  end
9951
9977
  end
9952
9978
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cdn
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.290
4
+ version: 1.0.293
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-06 00:00:00.000000000 Z
11
+ date: 2022-04-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common