tencentcloud-sdk-cdn 3.0.583 → 3.0.585

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180606/models.rb +33 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f0853a891cb418f119190f95fc9824a43460b306
4
- data.tar.gz: 3ea72d18e1ad3cd19fe529e05abec866f3ba244f
3
+ metadata.gz: d420b3a1fcdc9401e98c4ab82bb6b05519b9c18c
4
+ data.tar.gz: 43f77148d9d40e6f0467bd195dfd1e42b0d4f44f
5
5
  SHA512:
6
- metadata.gz: 584ed5c6e2d99443661b79c86eeddacd801ce6adc056bf1360a29260ced76026e0e65479ce4cdacf566875cd78af5cd705e5e7a9700a2d2f336e0bdcc98a037d
7
- data.tar.gz: a8469ca34209ff9f6f4f451a4247e2c9d9680efe60f999f6dc6e5f52c53e0d330ddc5d9a08123826bba0bbb1b7281acde3f6746823064aebcd217994d81a4334
6
+ metadata.gz: 563b866231b5a0e1075861d9d7f1116b1e962c0c4abcc34c7ae5c5f03bba04d4aed3c6c67769215a1d28215ac85eb8d1b789eda5ea7d9ea69a2b4c299efe298a
7
+ data.tar.gz: f9adeb93179880c17dfdb7a24be1a94401cc9ccfddea2e819c95e25331a79187fc92a505f6b2cb38ebc89f5552a8183179cdf425679827138f77b8c2cf5b88d4
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.583
1
+ 3.0.585
@@ -9943,6 +9943,9 @@ module TencentCloud
9943
9943
  # @param PathBasedOrigin: 分路径回源配置
9944
9944
  # 注意:此字段可能返回 null,表示取不到有效值。
9945
9945
  # @type PathBasedOrigin: Array
9946
+ # @param Sni: HTTPS回源SNI配置
9947
+ # 注意:此字段可能返回 null,表示取不到有效值。
9948
+ # @type Sni: :class:`Tencentcloud::Cdn.v20180606.models.OriginSni`
9946
9949
  # @param AdvanceHttps: HTTPS回源高级配置
9947
9950
  # 注意:此字段可能返回 null,表示取不到有效值。
9948
9951
  # @type AdvanceHttps: :class:`Tencentcloud::Cdn.v20180606.models.AdvanceHttps`
@@ -9955,9 +9958,9 @@ module TencentCloud
9955
9958
  # 注意:此字段可能返回 null,表示取不到有效值。
9956
9959
  # @type OriginCompany: String
9957
9960
 
9958
- attr_accessor :Origins, :OriginType, :ServerName, :CosPrivateAccess, :OriginPullProtocol, :BackupOrigins, :BackupOriginType, :BackupServerName, :BasePath, :PathRules, :PathBasedOrigin, :AdvanceHttps, :OriginCompany
9961
+ attr_accessor :Origins, :OriginType, :ServerName, :CosPrivateAccess, :OriginPullProtocol, :BackupOrigins, :BackupOriginType, :BackupServerName, :BasePath, :PathRules, :PathBasedOrigin, :Sni, :AdvanceHttps, :OriginCompany
9959
9962
 
9960
- def initialize(origins=nil, origintype=nil, servername=nil, cosprivateaccess=nil, originpullprotocol=nil, backuporigins=nil, backuporigintype=nil, backupservername=nil, basepath=nil, pathrules=nil, pathbasedorigin=nil, advancehttps=nil, origincompany=nil)
9963
+ def initialize(origins=nil, origintype=nil, servername=nil, cosprivateaccess=nil, originpullprotocol=nil, backuporigins=nil, backuporigintype=nil, backupservername=nil, basepath=nil, pathrules=nil, pathbasedorigin=nil, sni=nil, advancehttps=nil, origincompany=nil)
9961
9964
  @Origins = origins
9962
9965
  @OriginType = origintype
9963
9966
  @ServerName = servername
@@ -9969,6 +9972,7 @@ module TencentCloud
9969
9972
  @BasePath = basepath
9970
9973
  @PathRules = pathrules
9971
9974
  @PathBasedOrigin = pathbasedorigin
9975
+ @Sni = sni
9972
9976
  @AdvanceHttps = advancehttps
9973
9977
  @OriginCompany = origincompany
9974
9978
  end
@@ -9999,6 +10003,10 @@ module TencentCloud
9999
10003
  @PathBasedOrigin << pathbasedoriginrule_tmp
10000
10004
  end
10001
10005
  end
10006
+ unless params['Sni'].nil?
10007
+ @Sni = OriginSni.new
10008
+ @Sni.deserialize(params['Sni'])
10009
+ end
10002
10010
  unless params['AdvanceHttps'].nil?
10003
10011
  @AdvanceHttps = AdvanceHttps.new
10004
10012
  @AdvanceHttps.deserialize(params['AdvanceHttps'])
@@ -10133,6 +10141,29 @@ module TencentCloud
10133
10141
  end
10134
10142
  end
10135
10143
 
10144
+ # HTTPS回源SNI
10145
+ class OriginSni < TencentCloud::Common::AbstractModel
10146
+ # @param Switch: 是否开启HTTPS回源SNI。
10147
+ # 开启:on,
10148
+ # 关闭:off
10149
+ # @type Switch: String
10150
+ # @param ServerName: 回源域名。
10151
+ # 注意:此字段可能返回 null,表示取不到有效值。
10152
+ # @type ServerName: String
10153
+
10154
+ attr_accessor :Switch, :ServerName
10155
+
10156
+ def initialize(switch=nil, servername=nil)
10157
+ @Switch = switch
10158
+ @ServerName = servername
10159
+ end
10160
+
10161
+ def deserialize(params)
10162
+ @Switch = params['Switch']
10163
+ @ServerName = params['ServerName']
10164
+ end
10165
+ end
10166
+
10136
10167
  # oss回源鉴权
10137
10168
  class OssPrivateAccess < TencentCloud::Common::AbstractModel
10138
10169
  # @param Switch: oss回源鉴权配置开关,取值有:
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: 3.0.583
4
+ version: 3.0.585
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-02 00:00:00.000000000 Z
11
+ date: 2023-06-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common