tencentcloud-sdk-cdn 1.0.216 → 1.0.220

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 +128 -10
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: baf8fc61c46fec757b6e957ca2beffcae96c7cec
4
- data.tar.gz: e0f107d0ce155c0d67d48955a71a2723040c58c1
3
+ metadata.gz: d87e8ad4b621896fc9c896b56c31bc359fc7c463
4
+ data.tar.gz: d0543ad129425a6f2fad9f70b6511bdd89bd60f7
5
5
  SHA512:
6
- metadata.gz: b5933868524da96f87eb52730faddaf69f6431e7661b0bd91be1022deaae8a663b2102272f6299bafe261bf20deaacbe908b836e8af161c123dcf534415bc342
7
- data.tar.gz: f16917a038d788bdf946af972568fb96db3667aa0c658d3a8415d82fa7adcf8b5fb16673577f0e6a5efe558fd5e0e97e7799c4b1aeecc55b37d80abb2bdfb658
6
+ metadata.gz: 6e4ab15df7d6d4c8260208f206c9b0e46d18cad3a823cf9f70acc4ec589cb9076dcbefadddee8059198cbc1ea27c61ad0f17b6ea355aefc11c88fefbc19c5608
7
+ data.tar.gz: e4ff05f547de055ccefa5e0514f2bfd09022d6504e6ff9250ec5c0364e0a8de642a4878ae37a660c9add9cb3cb4dbe1f8963c375f6a161fc1458fd3200e90f41
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.216
1
+ 1.0.220
@@ -426,6 +426,57 @@ module TencentCloud
426
426
  end
427
427
  end
428
428
 
429
+ # 回源的自定义Https配置
430
+ class AdvanceHttps < TencentCloud::Common::AbstractModel
431
+ # @param CustomTlsStatus: 自定义Tls数据开关
432
+ # 注意:此字段可能返回 null,表示取不到有效值。
433
+ # @type CustomTlsStatus: String
434
+ # @param TlsVersion: Tls版本列表,支持设置 TLSv1, TLSV1.1, TLSV1.2, TLSv1.3,修改时必须开启连续的版本
435
+ # 注意:此字段可能返回 null,表示取不到有效值。
436
+ # @type TlsVersion: Array
437
+ # @param Cipher: 自定义加密套件
438
+ # 注意:此字段可能返回 null,表示取不到有效值。
439
+ # @type Cipher: String
440
+ # @param VerifyOriginType: 回源双向校验开启状态
441
+ # off - 关闭校验
442
+ # oneWay - 校验源站
443
+ # twoWay - 双向校验
444
+ # 注意:此字段可能返回 null,表示取不到有效值。
445
+ # @type VerifyOriginType: String
446
+ # @param CertInfo: 回源层证书配置信息
447
+ # 注意:此字段可能返回 null,表示取不到有效值。
448
+ # @type CertInfo: :class:`Tencentcloud::Cdn.v20180606.models.ServerCert`
449
+ # @param OriginCertInfo: 源站证书配置信息
450
+ # 注意:此字段可能返回 null,表示取不到有效值。
451
+ # @type OriginCertInfo: :class:`Tencentcloud::Cdn.v20180606.models.ClientCert`
452
+
453
+ attr_accessor :CustomTlsStatus, :TlsVersion, :Cipher, :VerifyOriginType, :CertInfo, :OriginCertInfo
454
+
455
+ def initialize(customtlsstatus=nil, tlsversion=nil, cipher=nil, verifyorigintype=nil, certinfo=nil, origincertinfo=nil)
456
+ @CustomTlsStatus = customtlsstatus
457
+ @TlsVersion = tlsversion
458
+ @Cipher = cipher
459
+ @VerifyOriginType = verifyorigintype
460
+ @CertInfo = certinfo
461
+ @OriginCertInfo = origincertinfo
462
+ end
463
+
464
+ def deserialize(params)
465
+ @CustomTlsStatus = params['CustomTlsStatus']
466
+ @TlsVersion = params['TlsVersion']
467
+ @Cipher = params['Cipher']
468
+ @VerifyOriginType = params['VerifyOriginType']
469
+ unless params['CertInfo'].nil?
470
+ @CertInfo = ServerCert.new
471
+ @CertInfo.deserialize(params['CertInfo'])
472
+ end
473
+ unless params['OriginCertInfo'].nil?
474
+ @OriginCertInfo = ClientCert.new
475
+ @OriginCertInfo.deserialize(params['OriginCertInfo'])
476
+ end
477
+ end
478
+ end
479
+
429
480
  # 时间戳防盗链高级版配置,白名单功能
430
481
  class AdvancedAuthentication < TencentCloud::Common::AbstractModel
431
482
  # @param Switch: 防盗链配置开关,on或off,开启时必须且只能配置一种模式,其余模式为null。
@@ -6945,6 +6996,38 @@ module TencentCloud
6945
6996
  end
6946
6997
  end
6947
6998
 
6999
+ # 除上海外其他区域日志集和日志主题信息
7000
+ class ExtraLogset < TencentCloud::Common::AbstractModel
7001
+ # @param Logset: 日志集信息
7002
+ # 注意:此字段可能返回 null,表示取不到有效值。
7003
+ # @type Logset: :class:`Tencentcloud::Cdn.v20180606.models.LogSetInfo`
7004
+ # @param Topics: 日志主题信息列表
7005
+ # 注意:此字段可能返回 null,表示取不到有效值。
7006
+ # @type Topics: Array
7007
+
7008
+ attr_accessor :Logset, :Topics
7009
+
7010
+ def initialize(logset=nil, topics=nil)
7011
+ @Logset = logset
7012
+ @Topics = topics
7013
+ end
7014
+
7015
+ def deserialize(params)
7016
+ unless params['Logset'].nil?
7017
+ @Logset = LogSetInfo.new
7018
+ @Logset.deserialize(params['Logset'])
7019
+ end
7020
+ unless params['Topics'].nil?
7021
+ @Topics = []
7022
+ params['Topics'].each do |i|
7023
+ topicinfo_tmp = TopicInfo.new
7024
+ topicinfo_tmp.deserialize(i)
7025
+ @Topics << topicinfo_tmp
7026
+ end
7027
+ end
7028
+ end
7029
+ end
7030
+
6948
7031
  # 回源 301/302 状态码自动跟随配置,默认为关闭状态
6949
7032
  class FollowRedirect < TencentCloud::Common::AbstractModel
6950
7033
  # @param Switch: 回源跟随开关
@@ -7598,19 +7681,23 @@ module TencentCloud
7598
7681
 
7599
7682
  # ListClsLogTopics返回参数结构体
7600
7683
  class ListClsLogTopicsResponse < TencentCloud::Common::AbstractModel
7601
- # @param Logset: 日志集信息
7684
+ # @param Logset: 上海区域日志集信息
7602
7685
  # @type Logset: :class:`Tencentcloud::Cdn.v20180606.models.LogSetInfo`
7603
- # @param Topics: 日志主题信息列表
7686
+ # @param Topics: 上海区域日志主题信息列表
7604
7687
  # 注意:此字段可能返回 null,表示取不到有效值。
7605
7688
  # @type Topics: Array
7689
+ # @param ExtraLogset: 其他区域日志集信息列表
7690
+ # 注意:此字段可能返回 null,表示取不到有效值。
7691
+ # @type ExtraLogset: Array
7606
7692
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7607
7693
  # @type RequestId: String
7608
7694
 
7609
- attr_accessor :Logset, :Topics, :RequestId
7695
+ attr_accessor :Logset, :Topics, :ExtraLogset, :RequestId
7610
7696
 
7611
- def initialize(logset=nil, topics=nil, requestid=nil)
7697
+ def initialize(logset=nil, topics=nil, extralogset=nil, requestid=nil)
7612
7698
  @Logset = logset
7613
7699
  @Topics = topics
7700
+ @ExtraLogset = extralogset
7614
7701
  @RequestId = requestid
7615
7702
  end
7616
7703
 
@@ -7627,6 +7714,14 @@ module TencentCloud
7627
7714
  @Topics << topicinfo_tmp
7628
7715
  end
7629
7716
  end
7717
+ unless params['ExtraLogset'].nil?
7718
+ @ExtraLogset = []
7719
+ params['ExtraLogset'].each do |i|
7720
+ extralogset_tmp = ExtraLogset.new
7721
+ extralogset_tmp.deserialize(i)
7722
+ @ExtraLogset << extralogset_tmp
7723
+ end
7724
+ end
7630
7725
  @RequestId = params['RequestId']
7631
7726
  end
7632
7727
  end
@@ -8498,10 +8593,16 @@ module TencentCloud
8498
8593
  # @type CreateTime: String
8499
8594
  # @param Region: 区域
8500
8595
  # @type Region: String
8596
+ # @param Deleted: cls侧是否已经被删除
8597
+ # 注意:此字段可能返回 null,表示取不到有效值。
8598
+ # @type Deleted: String
8599
+ # @param RegionEn: 英文区域
8600
+ # 注意:此字段可能返回 null,表示取不到有效值。
8601
+ # @type RegionEn: String
8501
8602
 
8502
- attr_accessor :AppId, :Channel, :LogsetId, :LogsetName, :IsDefault, :LogsetSavePeriod, :CreateTime, :Region
8603
+ attr_accessor :AppId, :Channel, :LogsetId, :LogsetName, :IsDefault, :LogsetSavePeriod, :CreateTime, :Region, :Deleted, :RegionEn
8503
8604
 
8504
- def initialize(appid=nil, channel=nil, logsetid=nil, logsetname=nil, isdefault=nil, logsetsaveperiod=nil, createtime=nil, region=nil)
8605
+ def initialize(appid=nil, channel=nil, logsetid=nil, logsetname=nil, isdefault=nil, logsetsaveperiod=nil, createtime=nil, region=nil, deleted=nil, regionen=nil)
8505
8606
  @AppId = appid
8506
8607
  @Channel = channel
8507
8608
  @LogsetId = logsetid
@@ -8510,6 +8611,8 @@ module TencentCloud
8510
8611
  @LogsetSavePeriod = logsetsaveperiod
8511
8612
  @CreateTime = createtime
8512
8613
  @Region = region
8614
+ @Deleted = deleted
8615
+ @RegionEn = regionen
8513
8616
  end
8514
8617
 
8515
8618
  def deserialize(params)
@@ -8521,6 +8624,8 @@ module TencentCloud
8521
8624
  @LogsetSavePeriod = params['LogsetSavePeriod']
8522
8625
  @CreateTime = params['CreateTime']
8523
8626
  @Region = params['Region']
8627
+ @Deleted = params['Deleted']
8628
+ @RegionEn = params['RegionEn']
8524
8629
  end
8525
8630
  end
8526
8631
 
@@ -9007,10 +9112,13 @@ module TencentCloud
9007
9112
  # @param PathBasedOrigin: 分路径回源配置
9008
9113
  # 注意:此字段可能返回 null,表示取不到有效值。
9009
9114
  # @type PathBasedOrigin: Array
9115
+ # @param AdvanceHttps: HTTPS回源高级配置
9116
+ # 注意:此字段可能返回 null,表示取不到有效值。
9117
+ # @type AdvanceHttps: :class:`Tencentcloud::Cdn.v20180606.models.AdvanceHttps`
9010
9118
 
9011
- attr_accessor :Origins, :OriginType, :ServerName, :CosPrivateAccess, :OriginPullProtocol, :BackupOrigins, :BackupOriginType, :BackupServerName, :BasePath, :PathRules, :PathBasedOrigin
9119
+ attr_accessor :Origins, :OriginType, :ServerName, :CosPrivateAccess, :OriginPullProtocol, :BackupOrigins, :BackupOriginType, :BackupServerName, :BasePath, :PathRules, :PathBasedOrigin, :AdvanceHttps
9012
9120
 
9013
- def initialize(origins=nil, origintype=nil, servername=nil, cosprivateaccess=nil, originpullprotocol=nil, backuporigins=nil, backuporigintype=nil, backupservername=nil, basepath=nil, pathrules=nil, pathbasedorigin=nil)
9121
+ 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)
9014
9122
  @Origins = origins
9015
9123
  @OriginType = origintype
9016
9124
  @ServerName = servername
@@ -9022,6 +9130,7 @@ module TencentCloud
9022
9130
  @BasePath = basepath
9023
9131
  @PathRules = pathrules
9024
9132
  @PathBasedOrigin = pathbasedorigin
9133
+ @AdvanceHttps = advancehttps
9025
9134
  end
9026
9135
 
9027
9136
  def deserialize(params)
@@ -9050,6 +9159,10 @@ module TencentCloud
9050
9159
  @PathBasedOrigin << pathbasedoriginrule_tmp
9051
9160
  end
9052
9161
  end
9162
+ unless params['AdvanceHttps'].nil?
9163
+ @AdvanceHttps = AdvanceHttps.new
9164
+ @AdvanceHttps.deserialize(params['AdvanceHttps'])
9165
+ end
9053
9166
  end
9054
9167
  end
9055
9168
 
@@ -11942,15 +12055,19 @@ module TencentCloud
11942
12055
  # @param Channel: 归属于cdn或ecdn
11943
12056
  # 注意:此字段可能返回 null,表示取不到有效值。
11944
12057
  # @type Channel: String
12058
+ # @param Deleted: cls侧是否已经被删除
12059
+ # 注意:此字段可能返回 null,表示取不到有效值。
12060
+ # @type Deleted: String
11945
12061
 
11946
- attr_accessor :TopicId, :TopicName, :Enabled, :CreateTime, :Channel
12062
+ attr_accessor :TopicId, :TopicName, :Enabled, :CreateTime, :Channel, :Deleted
11947
12063
 
11948
- def initialize(topicid=nil, topicname=nil, enabled=nil, createtime=nil, channel=nil)
12064
+ def initialize(topicid=nil, topicname=nil, enabled=nil, createtime=nil, channel=nil, deleted=nil)
11949
12065
  @TopicId = topicid
11950
12066
  @TopicName = topicname
11951
12067
  @Enabled = enabled
11952
12068
  @CreateTime = createtime
11953
12069
  @Channel = channel
12070
+ @Deleted = deleted
11954
12071
  end
11955
12072
 
11956
12073
  def deserialize(params)
@@ -11959,6 +12076,7 @@ module TencentCloud
11959
12076
  @Enabled = params['Enabled']
11960
12077
  @CreateTime = params['CreateTime']
11961
12078
  @Channel = params['Channel']
12079
+ @Deleted = params['Deleted']
11962
12080
  end
11963
12081
  end
11964
12082
 
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.216
4
+ version: 1.0.220
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-03 00:00:00.000000000 Z
11
+ date: 2021-12-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common