tencentcloud-sdk-ssl 3.0.1101 → 3.0.1105
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/v20191205/models.rb +26 -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: 80c4b6387b0faf04650ee42075a3784613d6f7a7
|
4
|
+
data.tar.gz: 714717ee51e19dd4f0021c181874145f49b0d383
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 82e93eedd36930c4c5eb99b70724a1a05107b7df185bec9b973c428839bd33fe2058e4beeb67fac44047992866b75030194ac1f5cc46f7654a75ef94bdc7576b
|
7
|
+
data.tar.gz: ca0a4ea76659a84fe22fd08281e40896d0caa5dd97a3fd64134c72ce98ef772e35872a8c0a2ca8fec7bcb9361f7210f403c9205b709f9257e37c66fc2f43c625
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1105
|
data/lib/v20191205/models.rb
CHANGED
@@ -2550,10 +2550,14 @@ module TencentCloud
|
|
2550
2550
|
# @type Region: String
|
2551
2551
|
# @param Url: 部署CLB监听器的Url
|
2552
2552
|
# @type Url: Array
|
2553
|
+
# @param Algorithm: 当前部署证书加密算法
|
2554
|
+
# @type Algorithm: String
|
2555
|
+
# @param OldAlgorithm: 原证书加密算法
|
2556
|
+
# @type OldAlgorithm: String
|
2553
2557
|
|
2554
|
-
attr_accessor :Id, :CertId, :OldCertId, :InstanceId, :InstanceName, :ListenerId, :Domains, :Protocol, :Status, :ErrorMsg, :CreateTime, :UpdateTime, :ListenerName, :SniSwitch, :Bucket, :Namespace, :SecretName, :Port, :EnvId, :TCBType, :Region, :Url
|
2558
|
+
attr_accessor :Id, :CertId, :OldCertId, :InstanceId, :InstanceName, :ListenerId, :Domains, :Protocol, :Status, :ErrorMsg, :CreateTime, :UpdateTime, :ListenerName, :SniSwitch, :Bucket, :Namespace, :SecretName, :Port, :EnvId, :TCBType, :Region, :Url, :Algorithm, :OldAlgorithm
|
2555
2559
|
|
2556
|
-
def initialize(id=nil, certid=nil, oldcertid=nil, instanceid=nil, instancename=nil, listenerid=nil, domains=nil, protocol=nil, status=nil, errormsg=nil, createtime=nil, updatetime=nil, listenername=nil, sniswitch=nil, bucket=nil, namespace=nil, secretname=nil, port=nil, envid=nil, tcbtype=nil, region=nil, url=nil)
|
2560
|
+
def initialize(id=nil, certid=nil, oldcertid=nil, instanceid=nil, instancename=nil, listenerid=nil, domains=nil, protocol=nil, status=nil, errormsg=nil, createtime=nil, updatetime=nil, listenername=nil, sniswitch=nil, bucket=nil, namespace=nil, secretname=nil, port=nil, envid=nil, tcbtype=nil, region=nil, url=nil, algorithm=nil, oldalgorithm=nil)
|
2557
2561
|
@Id = id
|
2558
2562
|
@CertId = certid
|
2559
2563
|
@OldCertId = oldcertid
|
@@ -2576,6 +2580,8 @@ module TencentCloud
|
|
2576
2580
|
@TCBType = tcbtype
|
2577
2581
|
@Region = region
|
2578
2582
|
@Url = url
|
2583
|
+
@Algorithm = algorithm
|
2584
|
+
@OldAlgorithm = oldalgorithm
|
2579
2585
|
end
|
2580
2586
|
|
2581
2587
|
def deserialize(params)
|
@@ -2601,6 +2607,8 @@ module TencentCloud
|
|
2601
2607
|
@TCBType = params['TCBType']
|
2602
2608
|
@Region = params['Region']
|
2603
2609
|
@Url = params['Url']
|
2610
|
+
@Algorithm = params['Algorithm']
|
2611
|
+
@OldAlgorithm = params['OldAlgorithm']
|
2604
2612
|
end
|
2605
2613
|
end
|
2606
2614
|
|
@@ -7483,14 +7491,17 @@ module TencentCloud
|
|
7483
7491
|
# failed:申请失败;
|
7484
7492
|
# issued:绑定失败。
|
7485
7493
|
# @type Status: String
|
7494
|
+
# @param Algorithm: 证书加密算法
|
7495
|
+
# @type Algorithm: String
|
7486
7496
|
|
7487
|
-
attr_accessor :Host, :CertId, :ZoneId, :Status
|
7497
|
+
attr_accessor :Host, :CertId, :ZoneId, :Status, :Algorithm
|
7488
7498
|
|
7489
|
-
def initialize(host=nil, certid=nil, zoneid=nil, status=nil)
|
7499
|
+
def initialize(host=nil, certid=nil, zoneid=nil, status=nil, algorithm=nil)
|
7490
7500
|
@Host = host
|
7491
7501
|
@CertId = certid
|
7492
7502
|
@ZoneId = zoneid
|
7493
7503
|
@Status = status
|
7504
|
+
@Algorithm = algorithm
|
7494
7505
|
end
|
7495
7506
|
|
7496
7507
|
def deserialize(params)
|
@@ -7498,6 +7509,7 @@ module TencentCloud
|
|
7498
7509
|
@CertId = params['CertId']
|
7499
7510
|
@ZoneId = params['ZoneId']
|
7500
7511
|
@Status = params['Status']
|
7512
|
+
@Algorithm = params['Algorithm']
|
7501
7513
|
end
|
7502
7514
|
end
|
7503
7515
|
|
@@ -7962,10 +7974,14 @@ module TencentCloud
|
|
7962
7974
|
# @type TCBType: String
|
7963
7975
|
# @param Url: 监听器Url(clb专属)
|
7964
7976
|
# @type Url: String
|
7977
|
+
# @param Algorithm: 新证书加密算法
|
7978
|
+
# @type Algorithm: String
|
7979
|
+
# @param OldAlgorithm: 旧证书加密算法
|
7980
|
+
# @type OldAlgorithm: String
|
7965
7981
|
|
7966
|
-
attr_accessor :Id, :CertId, :OldCertId, :Domains, :ResourceType, :Region, :Status, :ErrorMsg, :CreateTime, :UpdateTime, :InstanceId, :InstanceName, :ListenerId, :ListenerName, :Protocol, :SniSwitch, :Bucket, :Port, :Namespace, :SecretName, :EnvId, :TCBType, :Url
|
7982
|
+
attr_accessor :Id, :CertId, :OldCertId, :Domains, :ResourceType, :Region, :Status, :ErrorMsg, :CreateTime, :UpdateTime, :InstanceId, :InstanceName, :ListenerId, :ListenerName, :Protocol, :SniSwitch, :Bucket, :Port, :Namespace, :SecretName, :EnvId, :TCBType, :Url, :Algorithm, :OldAlgorithm
|
7967
7983
|
|
7968
|
-
def initialize(id=nil, certid=nil, oldcertid=nil, domains=nil, resourcetype=nil, region=nil, status=nil, errormsg=nil, createtime=nil, updatetime=nil, instanceid=nil, instancename=nil, listenerid=nil, listenername=nil, protocol=nil, sniswitch=nil, bucket=nil, port=nil, namespace=nil, secretname=nil, envid=nil, tcbtype=nil, url=nil)
|
7984
|
+
def initialize(id=nil, certid=nil, oldcertid=nil, domains=nil, resourcetype=nil, region=nil, status=nil, errormsg=nil, createtime=nil, updatetime=nil, instanceid=nil, instancename=nil, listenerid=nil, listenername=nil, protocol=nil, sniswitch=nil, bucket=nil, port=nil, namespace=nil, secretname=nil, envid=nil, tcbtype=nil, url=nil, algorithm=nil, oldalgorithm=nil)
|
7969
7985
|
@Id = id
|
7970
7986
|
@CertId = certid
|
7971
7987
|
@OldCertId = oldcertid
|
@@ -7989,6 +8005,8 @@ module TencentCloud
|
|
7989
8005
|
@EnvId = envid
|
7990
8006
|
@TCBType = tcbtype
|
7991
8007
|
@Url = url
|
8008
|
+
@Algorithm = algorithm
|
8009
|
+
@OldAlgorithm = oldalgorithm
|
7992
8010
|
end
|
7993
8011
|
|
7994
8012
|
def deserialize(params)
|
@@ -8015,6 +8033,8 @@ module TencentCloud
|
|
8015
8033
|
@EnvId = params['EnvId']
|
8016
8034
|
@TCBType = params['TCBType']
|
8017
8035
|
@Url = params['Url']
|
8036
|
+
@Algorithm = params['Algorithm']
|
8037
|
+
@OldAlgorithm = params['OldAlgorithm']
|
8018
8038
|
end
|
8019
8039
|
end
|
8020
8040
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-ssl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1105
|
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-07-
|
11
|
+
date: 2025-07-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|