tencentcloud-sdk-clb 3.0.1006 → 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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180317/models.rb +24 -8
- 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: 6a0a90cfd3469a4d66e9b491ed61091edc999d4b
|
4
|
+
data.tar.gz: 66ac70ee3750ed8b2b2b314a7e3492d5bc9e918e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 034d71eafced775015b4a5b0720ec5ea59715de0e6890d0b4e9cd415c051c1092afd753ff6b2f935acf265f14ea30b7bbc1ded8ae6784bd659b4b450e44da780
|
7
|
+
data.tar.gz: bcdfb22b81b3e77079c15b2570e15035f98d43890640125c8d8d593baf8e1013d7b5769c9fcf7fbfc1c6ab7b14c393cb4bd263ae6e4cd4a8891853c80853ef27
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1008
|
data/lib/v20180317/models.rb
CHANGED
@@ -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']
|
@@ -1892,6 +1900,8 @@ module TencentCloud
|
|
1892
1900
|
# @type Port: Integer
|
1893
1901
|
# @param TargetGroupInstances: 目标组绑定的后端服务器
|
1894
1902
|
# @type TargetGroupInstances: Array
|
1903
|
+
# @param Type: 目标组类型,当前支持v1(旧版目标组), v2(新版目标组), 默认为v1(旧版目标组)。
|
1904
|
+
# @type Type: String
|
1895
1905
|
# @param Tags: 标签。
|
1896
1906
|
# @type Tags: Array
|
1897
1907
|
# @param Weight: 后端服务默认权重。
|
@@ -1901,13 +1911,14 @@ module TencentCloud
|
|
1901
1911
|
# </ul>
|
1902
1912
|
# @type Weight: Integer
|
1903
1913
|
|
1904
|
-
attr_accessor :TargetGroupName, :VpcId, :Port, :TargetGroupInstances, :Tags, :Weight
|
1914
|
+
attr_accessor :TargetGroupName, :VpcId, :Port, :TargetGroupInstances, :Type, :Tags, :Weight
|
1905
1915
|
|
1906
|
-
def initialize(targetgroupname=nil, vpcid=nil, port=nil, targetgroupinstances=nil, tags=nil, weight=nil)
|
1916
|
+
def initialize(targetgroupname=nil, vpcid=nil, port=nil, targetgroupinstances=nil, type=nil, tags=nil, weight=nil)
|
1907
1917
|
@TargetGroupName = targetgroupname
|
1908
1918
|
@VpcId = vpcid
|
1909
1919
|
@Port = port
|
1910
1920
|
@TargetGroupInstances = targetgroupinstances
|
1921
|
+
@Type = type
|
1911
1922
|
@Tags = tags
|
1912
1923
|
@Weight = weight
|
1913
1924
|
end
|
@@ -1924,6 +1935,7 @@ module TencentCloud
|
|
1924
1935
|
@TargetGroupInstances << targetgroupinstance_tmp
|
1925
1936
|
end
|
1926
1937
|
end
|
1938
|
+
@Type = params['Type']
|
1927
1939
|
unless params['Tags'].nil?
|
1928
1940
|
@Tags = []
|
1929
1941
|
params['Tags'].each do |i|
|
@@ -6964,12 +6976,15 @@ module TencentCloud
|
|
6964
6976
|
# @type SSLMode: String
|
6965
6977
|
# @param CertList: 监听器或规则证书列表,单双向认证,多本服务端证书算法类型不能重复;若SSLMode为双向认证,证书列表必须包含一本ca证书。
|
6966
6978
|
# @type CertList: Array
|
6979
|
+
# @param SSLVerifyClient: 双向认证时,是否开启客户端认证,ON:开启,OPTIONAL:自适应,默认ON
|
6980
|
+
# @type SSLVerifyClient: String
|
6967
6981
|
|
6968
|
-
attr_accessor :SSLMode, :CertList
|
6982
|
+
attr_accessor :SSLMode, :CertList, :SSLVerifyClient
|
6969
6983
|
|
6970
|
-
def initialize(sslmode=nil, certlist=nil)
|
6984
|
+
def initialize(sslmode=nil, certlist=nil, sslverifyclient=nil)
|
6971
6985
|
@SSLMode = sslmode
|
6972
6986
|
@CertList = certlist
|
6987
|
+
@SSLVerifyClient = sslverifyclient
|
6973
6988
|
end
|
6974
6989
|
|
6975
6990
|
def deserialize(params)
|
@@ -6982,6 +6997,7 @@ module TencentCloud
|
|
6982
6997
|
@CertList << certinfo_tmp
|
6983
6998
|
end
|
6984
6999
|
end
|
7000
|
+
@SSLVerifyClient = params['SSLVerifyClient']
|
6985
7001
|
end
|
6986
7002
|
end
|
6987
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.
|
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-
|
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
|