tencentcloud-sdk-ssl 3.0.1094 → 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 +45 -13
- 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
@@ -2467,10 +2467,12 @@ module TencentCloud
|
|
2467
2467
|
# @type Status: Integer
|
2468
2468
|
# @param CreateTime: 托管资源创建时间
|
2469
2469
|
# @type CreateTime: String
|
2470
|
+
# @param PendingTotalCount: 待部署总数
|
2471
|
+
# @type PendingTotalCount: Integer
|
2470
2472
|
|
2471
|
-
attr_accessor :TotalCount, :SuccessTotalCount, :FailedTotalCount, :RunningTotalCount, :Type, :RecordDetailList, :Status, :CreateTime
|
2473
|
+
attr_accessor :TotalCount, :SuccessTotalCount, :FailedTotalCount, :RunningTotalCount, :Type, :RecordDetailList, :Status, :CreateTime, :PendingTotalCount
|
2472
2474
|
|
2473
|
-
def initialize(totalcount=nil, successtotalcount=nil, failedtotalcount=nil, runningtotalcount=nil, type=nil, recorddetaillist=nil, status=nil, createtime=nil)
|
2475
|
+
def initialize(totalcount=nil, successtotalcount=nil, failedtotalcount=nil, runningtotalcount=nil, type=nil, recorddetaillist=nil, status=nil, createtime=nil, pendingtotalcount=nil)
|
2474
2476
|
@TotalCount = totalcount
|
2475
2477
|
@SuccessTotalCount = successtotalcount
|
2476
2478
|
@FailedTotalCount = failedtotalcount
|
@@ -2479,6 +2481,7 @@ module TencentCloud
|
|
2479
2481
|
@RecordDetailList = recorddetaillist
|
2480
2482
|
@Status = status
|
2481
2483
|
@CreateTime = createtime
|
2484
|
+
@PendingTotalCount = pendingtotalcount
|
2482
2485
|
end
|
2483
2486
|
|
2484
2487
|
def deserialize(params)
|
@@ -2497,6 +2500,7 @@ module TencentCloud
|
|
2497
2500
|
end
|
2498
2501
|
@Status = params['Status']
|
2499
2502
|
@CreateTime = params['CreateTime']
|
2503
|
+
@PendingTotalCount = params['PendingTotalCount']
|
2500
2504
|
end
|
2501
2505
|
end
|
2502
2506
|
|
@@ -2546,10 +2550,14 @@ module TencentCloud
|
|
2546
2550
|
# @type Region: String
|
2547
2551
|
# @param Url: 部署CLB监听器的Url
|
2548
2552
|
# @type Url: Array
|
2553
|
+
# @param Algorithm: 当前部署证书加密算法
|
2554
|
+
# @type Algorithm: String
|
2555
|
+
# @param OldAlgorithm: 原证书加密算法
|
2556
|
+
# @type OldAlgorithm: String
|
2549
2557
|
|
2550
|
-
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
|
2551
2559
|
|
2552
|
-
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)
|
2553
2561
|
@Id = id
|
2554
2562
|
@CertId = certid
|
2555
2563
|
@OldCertId = oldcertid
|
@@ -2572,6 +2580,8 @@ module TencentCloud
|
|
2572
2580
|
@TCBType = tcbtype
|
2573
2581
|
@Region = region
|
2574
2582
|
@Url = url
|
2583
|
+
@Algorithm = algorithm
|
2584
|
+
@OldAlgorithm = oldalgorithm
|
2575
2585
|
end
|
2576
2586
|
|
2577
2587
|
def deserialize(params)
|
@@ -2597,6 +2607,8 @@ module TencentCloud
|
|
2597
2607
|
@TCBType = params['TCBType']
|
2598
2608
|
@Region = params['Region']
|
2599
2609
|
@Url = params['Url']
|
2610
|
+
@Algorithm = params['Algorithm']
|
2611
|
+
@OldAlgorithm = params['OldAlgorithm']
|
2600
2612
|
end
|
2601
2613
|
end
|
2602
2614
|
|
@@ -4583,17 +4595,20 @@ module TencentCloud
|
|
4583
4595
|
# @type FailedTotalCount: Integer
|
4584
4596
|
# @param RunningTotalCount: 部署中总数
|
4585
4597
|
# @type RunningTotalCount: Integer
|
4598
|
+
# @param PendingTotalCount: 带部署总数
|
4599
|
+
# @type PendingTotalCount: Integer
|
4586
4600
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4587
4601
|
# @type RequestId: String
|
4588
4602
|
|
4589
|
-
attr_accessor :TotalCount, :DeployRecordDetailList, :SuccessTotalCount, :FailedTotalCount, :RunningTotalCount, :RequestId
|
4603
|
+
attr_accessor :TotalCount, :DeployRecordDetailList, :SuccessTotalCount, :FailedTotalCount, :RunningTotalCount, :PendingTotalCount, :RequestId
|
4590
4604
|
|
4591
|
-
def initialize(totalcount=nil, deployrecorddetaillist=nil, successtotalcount=nil, failedtotalcount=nil, runningtotalcount=nil, requestid=nil)
|
4605
|
+
def initialize(totalcount=nil, deployrecorddetaillist=nil, successtotalcount=nil, failedtotalcount=nil, runningtotalcount=nil, pendingtotalcount=nil, requestid=nil)
|
4592
4606
|
@TotalCount = totalcount
|
4593
4607
|
@DeployRecordDetailList = deployrecorddetaillist
|
4594
4608
|
@SuccessTotalCount = successtotalcount
|
4595
4609
|
@FailedTotalCount = failedtotalcount
|
4596
4610
|
@RunningTotalCount = runningtotalcount
|
4611
|
+
@PendingTotalCount = pendingtotalcount
|
4597
4612
|
@RequestId = requestid
|
4598
4613
|
end
|
4599
4614
|
|
@@ -4610,6 +4625,7 @@ module TencentCloud
|
|
4610
4625
|
@SuccessTotalCount = params['SuccessTotalCount']
|
4611
4626
|
@FailedTotalCount = params['FailedTotalCount']
|
4612
4627
|
@RunningTotalCount = params['RunningTotalCount']
|
4628
|
+
@PendingTotalCount = params['PendingTotalCount']
|
4613
4629
|
@RequestId = params['RequestId']
|
4614
4630
|
end
|
4615
4631
|
end
|
@@ -5022,17 +5038,20 @@ module TencentCloud
|
|
5022
5038
|
# @type FailedTotalCount: Integer
|
5023
5039
|
# @param RunningTotalCount: 部署中总数,如果取不到返回0
|
5024
5040
|
# @type RunningTotalCount: Integer
|
5041
|
+
# @param PendingTotalCount: 待部署总数
|
5042
|
+
# @type PendingTotalCount: Integer
|
5025
5043
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5026
5044
|
# @type RequestId: String
|
5027
5045
|
|
5028
|
-
attr_accessor :TotalCount, :RecordDetailList, :SuccessTotalCount, :FailedTotalCount, :RunningTotalCount, :RequestId
|
5046
|
+
attr_accessor :TotalCount, :RecordDetailList, :SuccessTotalCount, :FailedTotalCount, :RunningTotalCount, :PendingTotalCount, :RequestId
|
5029
5047
|
|
5030
|
-
def initialize(totalcount=nil, recorddetaillist=nil, successtotalcount=nil, failedtotalcount=nil, runningtotalcount=nil, requestid=nil)
|
5048
|
+
def initialize(totalcount=nil, recorddetaillist=nil, successtotalcount=nil, failedtotalcount=nil, runningtotalcount=nil, pendingtotalcount=nil, requestid=nil)
|
5031
5049
|
@TotalCount = totalcount
|
5032
5050
|
@RecordDetailList = recorddetaillist
|
5033
5051
|
@SuccessTotalCount = successtotalcount
|
5034
5052
|
@FailedTotalCount = failedtotalcount
|
5035
5053
|
@RunningTotalCount = runningtotalcount
|
5054
|
+
@PendingTotalCount = pendingtotalcount
|
5036
5055
|
@RequestId = requestid
|
5037
5056
|
end
|
5038
5057
|
|
@@ -5049,6 +5068,7 @@ module TencentCloud
|
|
5049
5068
|
@SuccessTotalCount = params['SuccessTotalCount']
|
5050
5069
|
@FailedTotalCount = params['FailedTotalCount']
|
5051
5070
|
@RunningTotalCount = params['RunningTotalCount']
|
5071
|
+
@PendingTotalCount = params['PendingTotalCount']
|
5052
5072
|
@RequestId = params['RequestId']
|
5053
5073
|
end
|
5054
5074
|
end
|
@@ -7471,14 +7491,17 @@ module TencentCloud
|
|
7471
7491
|
# failed:申请失败;
|
7472
7492
|
# issued:绑定失败。
|
7473
7493
|
# @type Status: String
|
7494
|
+
# @param Algorithm: 证书加密算法
|
7495
|
+
# @type Algorithm: String
|
7474
7496
|
|
7475
|
-
attr_accessor :Host, :CertId, :ZoneId, :Status
|
7497
|
+
attr_accessor :Host, :CertId, :ZoneId, :Status, :Algorithm
|
7476
7498
|
|
7477
|
-
def initialize(host=nil, certid=nil, zoneid=nil, status=nil)
|
7499
|
+
def initialize(host=nil, certid=nil, zoneid=nil, status=nil, algorithm=nil)
|
7478
7500
|
@Host = host
|
7479
7501
|
@CertId = certid
|
7480
7502
|
@ZoneId = zoneid
|
7481
7503
|
@Status = status
|
7504
|
+
@Algorithm = algorithm
|
7482
7505
|
end
|
7483
7506
|
|
7484
7507
|
def deserialize(params)
|
@@ -7486,6 +7509,7 @@ module TencentCloud
|
|
7486
7509
|
@CertId = params['CertId']
|
7487
7510
|
@ZoneId = params['ZoneId']
|
7488
7511
|
@Status = params['Status']
|
7512
|
+
@Algorithm = params['Algorithm']
|
7489
7513
|
end
|
7490
7514
|
end
|
7491
7515
|
|
@@ -7950,10 +7974,14 @@ module TencentCloud
|
|
7950
7974
|
# @type TCBType: String
|
7951
7975
|
# @param Url: 监听器Url(clb专属)
|
7952
7976
|
# @type Url: String
|
7977
|
+
# @param Algorithm: 新证书加密算法
|
7978
|
+
# @type Algorithm: String
|
7979
|
+
# @param OldAlgorithm: 旧证书加密算法
|
7980
|
+
# @type OldAlgorithm: String
|
7953
7981
|
|
7954
|
-
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
|
7955
7983
|
|
7956
|
-
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)
|
7957
7985
|
@Id = id
|
7958
7986
|
@CertId = certid
|
7959
7987
|
@OldCertId = oldcertid
|
@@ -7977,6 +8005,8 @@ module TencentCloud
|
|
7977
8005
|
@EnvId = envid
|
7978
8006
|
@TCBType = tcbtype
|
7979
8007
|
@Url = url
|
8008
|
+
@Algorithm = algorithm
|
8009
|
+
@OldAlgorithm = oldalgorithm
|
7980
8010
|
end
|
7981
8011
|
|
7982
8012
|
def deserialize(params)
|
@@ -8003,6 +8033,8 @@ module TencentCloud
|
|
8003
8033
|
@EnvId = params['EnvId']
|
8004
8034
|
@TCBType = params['TCBType']
|
8005
8035
|
@Url = params['Url']
|
8036
|
+
@Algorithm = params['Algorithm']
|
8037
|
+
@OldAlgorithm = params['OldAlgorithm']
|
8006
8038
|
end
|
8007
8039
|
end
|
8008
8040
|
|
@@ -8214,7 +8246,7 @@ module TencentCloud
|
|
8214
8246
|
class UploadCertificateResponse < TencentCloud::Common::AbstractModel
|
8215
8247
|
# @param CertificateId: 证书 ID。
|
8216
8248
|
# @type CertificateId: String
|
8217
|
-
# @param RepeatCertId:
|
8249
|
+
# @param RepeatCertId: 当入参Repeatable为false的时候 返回的重复证书的ID,注意当用户上传相同的证书超过5000张的时候,当前接口会无视入参Repeatable,直接返回重复证书的ID。
|
8218
8250
|
# @type RepeatCertId: String
|
8219
8251
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
8220
8252
|
# @type RequestId: String
|
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
|