tencentcloud-sdk-cdn 1.0.234 → 1.0.235
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180606/models.rb +37 -6
- 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: 7f6a34f19fe53132eddf35b2886a6e457a4cb091
|
4
|
+
data.tar.gz: cc2f8a1d5ebd7b46b24ff54ca2e63a43e86d552d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c4ed9cfd0b523492ef58d15e1dfda69c85301437426ac0b9e3c1c36da91a545f08dcc175e058855bf8fbf279398b7c63985a29cdf1fe79c949217540eec9916a
|
7
|
+
data.tar.gz: 4106ac529917ddd652ace87c426fc2f1a239a08f8838da200cf5350db169f06e7b99a5db25b374cf185cdf3ae968679d5a2be8a5004fc8ea86cabd53411d51fe
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.235
|
data/lib/v20180606/models.rb
CHANGED
@@ -8718,10 +8718,16 @@ module TencentCloud
|
|
8718
8718
|
# @param VideoSeek: 视频拖拽配置。
|
8719
8719
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
8720
8720
|
# @type VideoSeek: :class:`Tencentcloud::Cdn.v20180606.models.VideoSeek`
|
8721
|
+
# @param AwsPrivateAccess: 回源S3私有鉴权。
|
8722
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8723
|
+
# @type AwsPrivateAccess: :class:`Tencentcloud::Cdn.v20180606.models.AwsPrivateAccess`
|
8724
|
+
# @param OssPrivateAccess: 回源OSS私有鉴权。
|
8725
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8726
|
+
# @type OssPrivateAccess: :class:`Tencentcloud::Cdn.v20180606.models.OssPrivateAccess`
|
8721
8727
|
|
8722
|
-
attr_accessor :Authentication, :BandwidthAlert, :Cache, :CacheKey, :Compression, :DownstreamCapping, :ErrorPage, :FollowRedirect, :ForceRedirect, :Https, :IpFilter, :IpFreqLimit, :MaxAge, :Origin, :OriginPullOptimization, :RangeOriginPull, :Referer, :RequestHeader, :ResponseHeader, :ResponseHeaderCache, :Seo, :ServiceType, :StatusCodeCache, :VideoSeek
|
8728
|
+
attr_accessor :Authentication, :BandwidthAlert, :Cache, :CacheKey, :Compression, :DownstreamCapping, :ErrorPage, :FollowRedirect, :ForceRedirect, :Https, :IpFilter, :IpFreqLimit, :MaxAge, :Origin, :OriginPullOptimization, :RangeOriginPull, :Referer, :RequestHeader, :ResponseHeader, :ResponseHeaderCache, :Seo, :ServiceType, :StatusCodeCache, :VideoSeek, :AwsPrivateAccess, :OssPrivateAccess
|
8723
8729
|
|
8724
|
-
def initialize(authentication=nil, bandwidthalert=nil, cache=nil, cachekey=nil, compression=nil, downstreamcapping=nil, errorpage=nil, followredirect=nil, forceredirect=nil, https=nil, ipfilter=nil, ipfreqlimit=nil, maxage=nil, origin=nil, originpulloptimization=nil, rangeoriginpull=nil, referer=nil, requestheader=nil, responseheader=nil, responseheadercache=nil, seo=nil, servicetype=nil, statuscodecache=nil, videoseek=nil)
|
8730
|
+
def initialize(authentication=nil, bandwidthalert=nil, cache=nil, cachekey=nil, compression=nil, downstreamcapping=nil, errorpage=nil, followredirect=nil, forceredirect=nil, https=nil, ipfilter=nil, ipfreqlimit=nil, maxage=nil, origin=nil, originpulloptimization=nil, rangeoriginpull=nil, referer=nil, requestheader=nil, responseheader=nil, responseheadercache=nil, seo=nil, servicetype=nil, statuscodecache=nil, videoseek=nil, awsprivateaccess=nil, ossprivateaccess=nil)
|
8725
8731
|
@Authentication = authentication
|
8726
8732
|
@BandwidthAlert = bandwidthalert
|
8727
8733
|
@Cache = cache
|
@@ -8746,6 +8752,8 @@ module TencentCloud
|
|
8746
8752
|
@ServiceType = servicetype
|
8747
8753
|
@StatusCodeCache = statuscodecache
|
8748
8754
|
@VideoSeek = videoseek
|
8755
|
+
@AwsPrivateAccess = awsprivateaccess
|
8756
|
+
@OssPrivateAccess = ossprivateaccess
|
8749
8757
|
end
|
8750
8758
|
|
8751
8759
|
def deserialize(params)
|
@@ -8842,6 +8850,14 @@ module TencentCloud
|
|
8842
8850
|
@VideoSeek = VideoSeek.new
|
8843
8851
|
@VideoSeek.deserialize(params['VideoSeek'])
|
8844
8852
|
end
|
8853
|
+
unless params['AwsPrivateAccess'].nil?
|
8854
|
+
@AwsPrivateAccess = AwsPrivateAccess.new
|
8855
|
+
@AwsPrivateAccess.deserialize(params['AwsPrivateAccess'])
|
8856
|
+
end
|
8857
|
+
unless params['OssPrivateAccess'].nil?
|
8858
|
+
@OssPrivateAccess = OssPrivateAccess.new
|
8859
|
+
@OssPrivateAccess.deserialize(params['OssPrivateAccess'])
|
8860
|
+
end
|
8845
8861
|
end
|
8846
8862
|
end
|
8847
8863
|
|
@@ -9402,10 +9418,16 @@ module TencentCloud
|
|
9402
9418
|
# @param VideoSeek: 视频拖拽配置。
|
9403
9419
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
9404
9420
|
# @type VideoSeek: :class:`Tencentcloud::Cdn.v20180606.models.VideoSeek`
|
9421
|
+
# @param AwsPrivateAccess: 回源S3私有鉴权。
|
9422
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9423
|
+
# @type AwsPrivateAccess: :class:`Tencentcloud::Cdn.v20180606.models.AwsPrivateAccess`
|
9424
|
+
# @param OssPrivateAccess: 回源OSS私有鉴权。
|
9425
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9426
|
+
# @type OssPrivateAccess: :class:`Tencentcloud::Cdn.v20180606.models.OssPrivateAccess`
|
9405
9427
|
|
9406
|
-
attr_accessor :Authentication, :BandwidthAlert, :Cache, :CacheKey, :Compression, :DownstreamCapping, :ErrorPage, :FollowRedirect, :ForceRedirect, :Https, :IpFilter, :IpFreqLimit, :MaxAge, :Origin, :OriginPullOptimization, :RangeOriginPull, :Referer, :RequestHeader, :ResponseHeader, :ResponseHeaderCache, :Seo, :ServiceType, :StatusCodeCache, :VideoSeek
|
9428
|
+
attr_accessor :Authentication, :BandwidthAlert, :Cache, :CacheKey, :Compression, :DownstreamCapping, :ErrorPage, :FollowRedirect, :ForceRedirect, :Https, :IpFilter, :IpFreqLimit, :MaxAge, :Origin, :OriginPullOptimization, :RangeOriginPull, :Referer, :RequestHeader, :ResponseHeader, :ResponseHeaderCache, :Seo, :ServiceType, :StatusCodeCache, :VideoSeek, :AwsPrivateAccess, :OssPrivateAccess
|
9407
9429
|
|
9408
|
-
def initialize(authentication=nil, bandwidthalert=nil, cache=nil, cachekey=nil, compression=nil, downstreamcapping=nil, errorpage=nil, followredirect=nil, forceredirect=nil, https=nil, ipfilter=nil, ipfreqlimit=nil, maxage=nil, origin=nil, originpulloptimization=nil, rangeoriginpull=nil, referer=nil, requestheader=nil, responseheader=nil, responseheadercache=nil, seo=nil, servicetype=nil, statuscodecache=nil, videoseek=nil)
|
9430
|
+
def initialize(authentication=nil, bandwidthalert=nil, cache=nil, cachekey=nil, compression=nil, downstreamcapping=nil, errorpage=nil, followredirect=nil, forceredirect=nil, https=nil, ipfilter=nil, ipfreqlimit=nil, maxage=nil, origin=nil, originpulloptimization=nil, rangeoriginpull=nil, referer=nil, requestheader=nil, responseheader=nil, responseheadercache=nil, seo=nil, servicetype=nil, statuscodecache=nil, videoseek=nil, awsprivateaccess=nil, ossprivateaccess=nil)
|
9409
9431
|
@Authentication = authentication
|
9410
9432
|
@BandwidthAlert = bandwidthalert
|
9411
9433
|
@Cache = cache
|
@@ -9430,6 +9452,8 @@ module TencentCloud
|
|
9430
9452
|
@ServiceType = servicetype
|
9431
9453
|
@StatusCodeCache = statuscodecache
|
9432
9454
|
@VideoSeek = videoseek
|
9455
|
+
@AwsPrivateAccess = awsprivateaccess
|
9456
|
+
@OssPrivateAccess = ossprivateaccess
|
9433
9457
|
end
|
9434
9458
|
|
9435
9459
|
def deserialize(params)
|
@@ -9526,6 +9550,14 @@ module TencentCloud
|
|
9526
9550
|
@VideoSeek = VideoSeek.new
|
9527
9551
|
@VideoSeek.deserialize(params['VideoSeek'])
|
9528
9552
|
end
|
9553
|
+
unless params['AwsPrivateAccess'].nil?
|
9554
|
+
@AwsPrivateAccess = AwsPrivateAccess.new
|
9555
|
+
@AwsPrivateAccess.deserialize(params['AwsPrivateAccess'])
|
9556
|
+
end
|
9557
|
+
unless params['OssPrivateAccess'].nil?
|
9558
|
+
@OssPrivateAccess = OssPrivateAccess.new
|
9559
|
+
@OssPrivateAccess.deserialize(params['OssPrivateAccess'])
|
9560
|
+
end
|
9529
9561
|
end
|
9530
9562
|
end
|
9531
9563
|
|
@@ -11463,8 +11495,7 @@ module TencentCloud
|
|
11463
11495
|
# + 支持上传 PEM 格式的证书进行部署
|
11464
11496
|
# 注意:上传 PEM 证书时,需要进行 Base 64 编码
|
11465
11497
|
class ServerCert < TencentCloud::Common::AbstractModel
|
11466
|
-
# @param CertId: 服务器证书 ID
|
11467
|
-
# 在 SSL 证书管理进行证书托管时自动生成
|
11498
|
+
# @param CertId: 服务器证书 ID 在 SSL 证书管理进行证书托管时自动生成
|
11468
11499
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
11469
11500
|
# @type CertId: String
|
11470
11501
|
# @param CertName: 服务器证书名称
|
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.235
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|