tencentcloud-sdk-clb 3.0.1007 → 3.0.1008

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/v20180317/models.rb +18 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e822b72104f8cf7f3da0bef99b93a31da89091d5
4
- data.tar.gz: 25a82f9a9f69348e1c799bf7a230030e1aa5d663
3
+ metadata.gz: 6a0a90cfd3469a4d66e9b491ed61091edc999d4b
4
+ data.tar.gz: 66ac70ee3750ed8b2b2b314a7e3492d5bc9e918e
5
5
  SHA512:
6
- metadata.gz: 19491383f7f868e4eddef6c9256477c0559f431cbd2e28bde3e00df3113a24e52f5770814bf3bf736e8394e995950fcb91f9101144f6e5da08312b945eddcdb2
7
- data.tar.gz: e0938cceec58e6bd39d8609dfc25cfdc1d6c099ff653b1df9aaaba7a728f499ee17bfcf2a9ef9074d9a1c414f8d0a9033f33bdd80056f523995eeeeb04ba83b2
6
+ metadata.gz: 034d71eafced775015b4a5b0720ec5ea59715de0e6890d0b4e9cd415c051c1092afd753ff6b2f935acf265f14ea30b7bbc1ded8ae6784bd659b4b450e44da780
7
+ data.tar.gz: bcdfb22b81b3e77079c15b2570e15035f98d43890640125c8d8d593baf8e1013d7b5769c9fcf7fbfc1c6ab7b14c393cb4bd263ae6e4cd4a8891853c80853ef27
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1007
1
+ 3.0.1008
@@ -730,6 +730,8 @@ module TencentCloud
730
730
  class CertificateInput < TencentCloud::Common::AbstractModel
731
731
  # @param SSLMode: 认证类型,UNIDIRECTIONAL:单向认证,MUTUAL:双向认证
732
732
  # @type SSLMode: String
733
+ # @param SSLVerifyClient: 双向认证时,是否开启客户端认证,ON:开启,OPTIONAL:自适应,默认ON。
734
+ # @type SSLVerifyClient: String
733
735
  # @param CertId: 服务端证书的 ID,如果不填写此项则必须上传证书,包括 CertContent,CertKey,CertName。
734
736
  # @type CertId: String
735
737
  # @param CertCaId: 客户端证书的 ID,当监听器采用双向认证,即 SSLMode=MUTUAL 时,如果不填写此项则必须上传客户端证书,包括 CertCaContent,CertCaName。
@@ -745,10 +747,11 @@ module TencentCloud
745
747
  # @param CertCaContent: 上传客户端证书的内容,如果 SSLMode=mutual,如果没有 CertCaId,则此项必传。
746
748
  # @type CertCaContent: String
747
749
 
748
- attr_accessor :SSLMode, :CertId, :CertCaId, :CertName, :CertKey, :CertContent, :CertCaName, :CertCaContent
750
+ attr_accessor :SSLMode, :SSLVerifyClient, :CertId, :CertCaId, :CertName, :CertKey, :CertContent, :CertCaName, :CertCaContent
749
751
 
750
- def initialize(sslmode=nil, certid=nil, certcaid=nil, certname=nil, certkey=nil, certcontent=nil, certcaname=nil, certcacontent=nil)
752
+ def initialize(sslmode=nil, sslverifyclient=nil, certid=nil, certcaid=nil, certname=nil, certkey=nil, certcontent=nil, certcaname=nil, certcacontent=nil)
751
753
  @SSLMode = sslmode
754
+ @SSLVerifyClient = sslverifyclient
752
755
  @CertId = certid
753
756
  @CertCaId = certcaid
754
757
  @CertName = certname
@@ -760,6 +763,7 @@ module TencentCloud
760
763
 
761
764
  def deserialize(params)
762
765
  @SSLMode = params['SSLMode']
766
+ @SSLVerifyClient = params['SSLVerifyClient']
763
767
  @CertId = params['CertId']
764
768
  @CertCaId = params['CertCaId']
765
769
  @CertName = params['CertName']
@@ -774,6 +778,8 @@ module TencentCloud
774
778
  class CertificateOutput < TencentCloud::Common::AbstractModel
775
779
  # @param SSLMode: 认证类型,UNIDIRECTIONAL:单向认证,MUTUAL:双向认证
776
780
  # @type SSLMode: String
781
+ # @param SSLVerifyClient: 是否开启客户端证书验证,只在双向认证时生效。
782
+ # @type SSLVerifyClient: String
777
783
  # @param CertId: 服务端证书的ID。
778
784
  # @type CertId: String
779
785
  # @param CertCaId: 客户端证书的 ID。
@@ -783,10 +789,11 @@ module TencentCloud
783
789
  # 注意:此字段可能返回 null,表示取不到有效值。
784
790
  # @type ExtCertIds: Array
785
791
 
786
- attr_accessor :SSLMode, :CertId, :CertCaId, :ExtCertIds
792
+ attr_accessor :SSLMode, :SSLVerifyClient, :CertId, :CertCaId, :ExtCertIds
787
793
 
788
- def initialize(sslmode=nil, certid=nil, certcaid=nil, extcertids=nil)
794
+ def initialize(sslmode=nil, sslverifyclient=nil, certid=nil, certcaid=nil, extcertids=nil)
789
795
  @SSLMode = sslmode
796
+ @SSLVerifyClient = sslverifyclient
790
797
  @CertId = certid
791
798
  @CertCaId = certcaid
792
799
  @ExtCertIds = extcertids
@@ -794,6 +801,7 @@ module TencentCloud
794
801
 
795
802
  def deserialize(params)
796
803
  @SSLMode = params['SSLMode']
804
+ @SSLVerifyClient = params['SSLVerifyClient']
797
805
  @CertId = params['CertId']
798
806
  @CertCaId = params['CertCaId']
799
807
  @ExtCertIds = params['ExtCertIds']
@@ -6968,12 +6976,15 @@ module TencentCloud
6968
6976
  # @type SSLMode: String
6969
6977
  # @param CertList: 监听器或规则证书列表,单双向认证,多本服务端证书算法类型不能重复;若SSLMode为双向认证,证书列表必须包含一本ca证书。
6970
6978
  # @type CertList: Array
6979
+ # @param SSLVerifyClient: 双向认证时,是否开启客户端认证,ON:开启,OPTIONAL:自适应,默认ON
6980
+ # @type SSLVerifyClient: String
6971
6981
 
6972
- attr_accessor :SSLMode, :CertList
6982
+ attr_accessor :SSLMode, :CertList, :SSLVerifyClient
6973
6983
 
6974
- def initialize(sslmode=nil, certlist=nil)
6984
+ def initialize(sslmode=nil, certlist=nil, sslverifyclient=nil)
6975
6985
  @SSLMode = sslmode
6976
6986
  @CertList = certlist
6987
+ @SSLVerifyClient = sslverifyclient
6977
6988
  end
6978
6989
 
6979
6990
  def deserialize(params)
@@ -6986,6 +6997,7 @@ module TencentCloud
6986
6997
  @CertList << certinfo_tmp
6987
6998
  end
6988
6999
  end
7000
+ @SSLVerifyClient = params['SSLVerifyClient']
6989
7001
  end
6990
7002
  end
6991
7003
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-clb
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1007
4
+ version: 3.0.1008
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-26 00:00:00.000000000 Z
11
+ date: 2025-02-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common