tencentcloud-sdk-cdn 1.0.289 → 1.0.290
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180606/client.rb +2 -2
- data/lib/v20180606/models.rb +17 -9
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dac62afa3bcdc5019822d0c87b2e631999de4f90
|
4
|
+
data.tar.gz: fff9134efc2b46dfbcdb976f81dc5843bbd04d9e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef0e0567dfd7a3327991aade396134fefdb08f904cfbb1273d5027b34cef9eb0b7869ff8fbaf52cbbbe721681063e61fad2fa6655c9ccb766f5ddf9afddfd209
|
7
|
+
data.tar.gz: 54d91dc7122a26a7bd1cc028a6a3fb6efcfb9b98c7ea2f369500e9dfafc0d7f974f6c0548affb903f45757eadf4b998598e812d42fa505006d1af0ce7286c762
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.290
|
data/lib/v20180606/client.rb
CHANGED
@@ -1615,7 +1615,7 @@ module TencentCloud
|
|
1615
1615
|
end
|
1616
1616
|
|
1617
1617
|
# PurgePathCache 用于批量提交目录刷新,根据域名的加速区域进行对应区域的刷新。
|
1618
|
-
# 默认情况下境内、境外加速区域每日目录刷新额度为各 100 条,每次最多可提交
|
1618
|
+
# 默认情况下境内、境外加速区域每日目录刷新额度为各 100 条,每次最多可提交 500 条。
|
1619
1619
|
|
1620
1620
|
# @param request: Request instance for PurgePathCache.
|
1621
1621
|
# @type request: :class:`Tencentcloud::cdn::V20180606::PurgePathCacheRequest`
|
@@ -1665,7 +1665,7 @@ module TencentCloud
|
|
1665
1665
|
end
|
1666
1666
|
|
1667
1667
|
# PushUrlsCache 用于将指定 URL 资源列表加载至 CDN 节点,支持指定加速区域预热。
|
1668
|
-
# 默认情况下境内、境外每日预热 URL 限额为各 1000 条,每次最多可提交
|
1668
|
+
# 默认情况下境内、境外每日预热 URL 限额为各 1000 条,每次最多可提交 500 条。注意:中国境外区域预热,资源默认加载至中国境外边缘节点,所产生的边缘层流量会计入计费流量。
|
1669
1669
|
|
1670
1670
|
# @param request: Request instance for PushUrlsCache.
|
1671
1671
|
# @type request: :class:`Tencentcloud::cdn::V20180606::PushUrlsCacheRequest`
|
data/lib/v20180606/models.rb
CHANGED
@@ -3931,12 +3931,15 @@ module TencentCloud
|
|
3931
3931
|
# @type MidNodeInfo: :class:`Tencentcloud::Cdn.v20180606.models.DiagnoseData`
|
3932
3932
|
# @param OriginInfo: 源站检测信息
|
3933
3933
|
# @type OriginInfo: :class:`Tencentcloud::Cdn.v20180606.models.DiagnoseData`
|
3934
|
+
# @param PurgeInfo: 刷新检测信息
|
3935
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3936
|
+
# @type PurgeInfo: :class:`Tencentcloud::Cdn.v20180606.models.DiagnoseData`
|
3934
3937
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3935
3938
|
# @type RequestId: String
|
3936
3939
|
|
3937
|
-
attr_accessor :BaskInfo, :CnameInfo, :ClientInfo, :DnsInfo, :NetworkInfo, :OcNodeInfo, :MidNodeInfo, :OriginInfo, :RequestId
|
3940
|
+
attr_accessor :BaskInfo, :CnameInfo, :ClientInfo, :DnsInfo, :NetworkInfo, :OcNodeInfo, :MidNodeInfo, :OriginInfo, :PurgeInfo, :RequestId
|
3938
3941
|
|
3939
|
-
def initialize(baskinfo=nil, cnameinfo=nil, clientinfo=nil, dnsinfo=nil, networkinfo=nil, ocnodeinfo=nil, midnodeinfo=nil, origininfo=nil, requestid=nil)
|
3942
|
+
def initialize(baskinfo=nil, cnameinfo=nil, clientinfo=nil, dnsinfo=nil, networkinfo=nil, ocnodeinfo=nil, midnodeinfo=nil, origininfo=nil, purgeinfo=nil, requestid=nil)
|
3940
3943
|
@BaskInfo = baskinfo
|
3941
3944
|
@CnameInfo = cnameinfo
|
3942
3945
|
@ClientInfo = clientinfo
|
@@ -3945,6 +3948,7 @@ module TencentCloud
|
|
3945
3948
|
@OcNodeInfo = ocnodeinfo
|
3946
3949
|
@MidNodeInfo = midnodeinfo
|
3947
3950
|
@OriginInfo = origininfo
|
3951
|
+
@PurgeInfo = purgeinfo
|
3948
3952
|
@RequestId = requestid
|
3949
3953
|
end
|
3950
3954
|
|
@@ -3981,6 +3985,10 @@ module TencentCloud
|
|
3981
3985
|
@OriginInfo = DiagnoseData.new
|
3982
3986
|
@OriginInfo.deserialize(params['OriginInfo'])
|
3983
3987
|
end
|
3988
|
+
unless params['PurgeInfo'].nil?
|
3989
|
+
@PurgeInfo = DiagnoseData.new
|
3990
|
+
@PurgeInfo.deserialize(params['PurgeInfo'])
|
3991
|
+
end
|
3984
3992
|
@RequestId = params['RequestId']
|
3985
3993
|
end
|
3986
3994
|
end
|
@@ -12350,14 +12358,14 @@ module TencentCloud
|
|
12350
12358
|
# @type Referer: :class:`Tencentcloud::Cdn.v20180606.models.Referer`
|
12351
12359
|
# @param MaxAge: 浏览器缓存配置(功能灰度中,尚未全量)
|
12352
12360
|
# @type MaxAge: :class:`Tencentcloud::Cdn.v20180606.models.MaxAge`
|
12361
|
+
# @param SpecificConfig: 地域属性特殊配置
|
12362
|
+
# 适用于域名境内加速、境外加速配置不一致场景
|
12363
|
+
# @type SpecificConfig: :class:`Tencentcloud::Cdn.v20180606.models.SpecificConfig`
|
12353
12364
|
# @param ServiceType: 域名业务类型
|
12354
12365
|
# web:静态加速
|
12355
12366
|
# download:下载加速
|
12356
12367
|
# media:流媒体点播加速
|
12357
12368
|
# @type ServiceType: String
|
12358
|
-
# @param SpecificConfig: 地域属性特殊配置
|
12359
|
-
# 适用于域名境内加速、境外加速配置不一致场景
|
12360
|
-
# @type SpecificConfig: :class:`Tencentcloud::Cdn.v20180606.models.SpecificConfig`
|
12361
12369
|
# @param Area: 域名加速区域
|
12362
12370
|
# mainland:中国境内加速
|
12363
12371
|
# overseas:中国境外加速
|
@@ -12397,9 +12405,9 @@ module TencentCloud
|
|
12397
12405
|
# @param ShareCname: 共享CNAME配置,白名单功能
|
12398
12406
|
# @type ShareCname: :class:`Tencentcloud::Cdn.v20180606.models.ShareCname`
|
12399
12407
|
|
12400
|
-
attr_accessor :Domain, :ProjectId, :Origin, :IpFilter, :IpFreqLimit, :StatusCodeCache, :Compression, :BandwidthAlert, :RangeOriginPull, :FollowRedirect, :ErrorPage, :RequestHeader, :ResponseHeader, :DownstreamCapping, :CacheKey, :ResponseHeaderCache, :VideoSeek, :Cache, :OriginPullOptimization, :Https, :Authentication, :Seo, :ForceRedirect, :Referer, :MaxAge, :
|
12408
|
+
attr_accessor :Domain, :ProjectId, :Origin, :IpFilter, :IpFreqLimit, :StatusCodeCache, :Compression, :BandwidthAlert, :RangeOriginPull, :FollowRedirect, :ErrorPage, :RequestHeader, :ResponseHeader, :DownstreamCapping, :CacheKey, :ResponseHeaderCache, :VideoSeek, :Cache, :OriginPullOptimization, :Https, :Authentication, :Seo, :ForceRedirect, :Referer, :MaxAge, :SpecificConfig, :ServiceType, :Area, :OriginPullTimeout, :AwsPrivateAccess, :UserAgentFilter, :AccessControl, :UrlRedirect, :AccessPort, :AdvancedAuthentication, :OriginAuthentication, :Ipv6Access, :OfflineCache, :OriginCombine, :Quic, :OssPrivateAccess, :WebSocket, :RemoteAuthentication, :ShareCname
|
12401
12409
|
|
12402
|
-
def initialize(domain=nil, projectid=nil, origin=nil, ipfilter=nil, ipfreqlimit=nil, statuscodecache=nil, compression=nil, bandwidthalert=nil, rangeoriginpull=nil, followredirect=nil, errorpage=nil, requestheader=nil, responseheader=nil, downstreamcapping=nil, cachekey=nil, responseheadercache=nil, videoseek=nil, cache=nil, originpulloptimization=nil, https=nil, authentication=nil, seo=nil, forceredirect=nil, referer=nil, maxage=nil,
|
12410
|
+
def initialize(domain=nil, projectid=nil, origin=nil, ipfilter=nil, ipfreqlimit=nil, statuscodecache=nil, compression=nil, bandwidthalert=nil, rangeoriginpull=nil, followredirect=nil, errorpage=nil, requestheader=nil, responseheader=nil, downstreamcapping=nil, cachekey=nil, responseheadercache=nil, videoseek=nil, cache=nil, originpulloptimization=nil, https=nil, authentication=nil, seo=nil, forceredirect=nil, referer=nil, maxage=nil, specificconfig=nil, servicetype=nil, area=nil, originpulltimeout=nil, awsprivateaccess=nil, useragentfilter=nil, accesscontrol=nil, urlredirect=nil, accessport=nil, advancedauthentication=nil, originauthentication=nil, ipv6access=nil, offlinecache=nil, origincombine=nil, quic=nil, ossprivateaccess=nil, websocket=nil, remoteauthentication=nil, sharecname=nil)
|
12403
12411
|
@Domain = domain
|
12404
12412
|
@ProjectId = projectid
|
12405
12413
|
@Origin = origin
|
@@ -12425,8 +12433,8 @@ module TencentCloud
|
|
12425
12433
|
@ForceRedirect = forceredirect
|
12426
12434
|
@Referer = referer
|
12427
12435
|
@MaxAge = maxage
|
12428
|
-
@ServiceType = servicetype
|
12429
12436
|
@SpecificConfig = specificconfig
|
12437
|
+
@ServiceType = servicetype
|
12430
12438
|
@Area = area
|
12431
12439
|
@OriginPullTimeout = originpulltimeout
|
12432
12440
|
@AwsPrivateAccess = awsprivateaccess
|
@@ -12541,11 +12549,11 @@ module TencentCloud
|
|
12541
12549
|
@MaxAge = MaxAge.new
|
12542
12550
|
@MaxAge.deserialize(params['MaxAge'])
|
12543
12551
|
end
|
12544
|
-
@ServiceType = params['ServiceType']
|
12545
12552
|
unless params['SpecificConfig'].nil?
|
12546
12553
|
@SpecificConfig = SpecificConfig.new
|
12547
12554
|
@SpecificConfig.deserialize(params['SpecificConfig'])
|
12548
12555
|
end
|
12556
|
+
@ServiceType = params['ServiceType']
|
12549
12557
|
@Area = params['Area']
|
12550
12558
|
unless params['OriginPullTimeout'].nil?
|
12551
12559
|
@OriginPullTimeout = OriginPullTimeout.new
|
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.
|
4
|
+
version: 1.0.290
|
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-
|
11
|
+
date: 2022-04-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|