tencentcloud-sdk-ssl 3.0.993 → 3.0.995
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/client.rb +48 -0
- data/lib/v20191205/models.rb +244 -12
- 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: f3968ec65055bf0c18cf60410234f9a63d2ff0da
|
4
|
+
data.tar.gz: a9c70615c288d1a56ffda8f938eef72b9d1c8249
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5844cc48fc5ab5361508de9a1ac107686bfbc1dc8ce2585dbdb1e0d78ef9f8b859d039feea196c77468437972967c82c8df486b045c97a2a0ff88e929c19fa0a
|
7
|
+
data.tar.gz: 7190baf0a90cbe183bc1ddf8fb8096335d659ef15e545c04bcbfaf9bc010f016af566b4abcb24b2f1a372bbb403302059b2343dd3593729add9d0d87babc6db6
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.995
|
data/lib/v20191205/client.rb
CHANGED
@@ -101,6 +101,54 @@ module TencentCloud
|
|
101
101
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
102
102
|
end
|
103
103
|
|
104
|
+
# 付费提交证书资料
|
105
|
+
|
106
|
+
# @param request: Request instance for CertificateInfoSubmit.
|
107
|
+
# @type request: :class:`Tencentcloud::ssl::V20191205::CertificateInfoSubmitRequest`
|
108
|
+
# @rtype: :class:`Tencentcloud::ssl::V20191205::CertificateInfoSubmitResponse`
|
109
|
+
def CertificateInfoSubmit(request)
|
110
|
+
body = send_request('CertificateInfoSubmit', request.serialize)
|
111
|
+
response = JSON.parse(body)
|
112
|
+
if response['Response'].key?('Error') == false
|
113
|
+
model = CertificateInfoSubmitResponse.new
|
114
|
+
model.deserialize(response['Response'])
|
115
|
+
model
|
116
|
+
else
|
117
|
+
code = response['Response']['Error']['Code']
|
118
|
+
message = response['Response']['Error']['Message']
|
119
|
+
reqid = response['Response']['RequestId']
|
120
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
121
|
+
end
|
122
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
123
|
+
raise e
|
124
|
+
rescue StandardError => e
|
125
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
126
|
+
end
|
127
|
+
|
128
|
+
# 提交付费证书订单
|
129
|
+
|
130
|
+
# @param request: Request instance for CertificateOrderSubmit.
|
131
|
+
# @type request: :class:`Tencentcloud::ssl::V20191205::CertificateOrderSubmitRequest`
|
132
|
+
# @rtype: :class:`Tencentcloud::ssl::V20191205::CertificateOrderSubmitResponse`
|
133
|
+
def CertificateOrderSubmit(request)
|
134
|
+
body = send_request('CertificateOrderSubmit', request.serialize)
|
135
|
+
response = JSON.parse(body)
|
136
|
+
if response['Response'].key?('Error') == false
|
137
|
+
model = CertificateOrderSubmitResponse.new
|
138
|
+
model.deserialize(response['Response'])
|
139
|
+
model
|
140
|
+
else
|
141
|
+
code = response['Response']['Error']['Code']
|
142
|
+
message = response['Response']['Error']['Message']
|
143
|
+
reqid = response['Response']['RequestId']
|
144
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
145
|
+
end
|
146
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
147
|
+
raise e
|
148
|
+
rescue StandardError => e
|
149
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
150
|
+
end
|
151
|
+
|
104
152
|
# 本接口(CheckCertificateChain)用于检查证书链是否完整。
|
105
153
|
|
106
154
|
# @param request: Request instance for CheckCertificateChain.
|
data/lib/v20191205/models.rb
CHANGED
@@ -555,6 +555,238 @@ module TencentCloud
|
|
555
555
|
end
|
556
556
|
end
|
557
557
|
|
558
|
+
# CertificateInfoSubmit请求参数结构体
|
559
|
+
class CertificateInfoSubmitRequest < TencentCloud::Common::AbstractModel
|
560
|
+
# @param CertId: 证书 ID。
|
561
|
+
# @type CertId: String
|
562
|
+
# @param GenCsrType: CSR 生成方式:online = 在线生成, upload = 手动上传。
|
563
|
+
# @type GenCsrType: String
|
564
|
+
# @param CertCommonName: 绑定证书的主域名。
|
565
|
+
# @type CertCommonName: String
|
566
|
+
# @param CompanyType: 组织信息类型:1,个人; 2, 公司;
|
567
|
+
# @type CompanyType: Integer
|
568
|
+
# @param OrgIdType: 公司证件类型()
|
569
|
+
# @type OrgIdType: String
|
570
|
+
# @param OrgIdNumber: 公司证件号码
|
571
|
+
# @type OrgIdNumber: String
|
572
|
+
# @param AdminIdType: 管理人证件类型
|
573
|
+
# @type AdminIdType: String
|
574
|
+
# @param AdminIdNumber: 管理人证件号码
|
575
|
+
# @type AdminIdNumber: String
|
576
|
+
# @param TechIdType: 联系人证件类型
|
577
|
+
# @type TechIdType: String
|
578
|
+
# @param TechIdNumber: 联系人证件号码
|
579
|
+
# @type TechIdNumber: String
|
580
|
+
# @param CompanyId: 公司ID
|
581
|
+
# @type CompanyId: String
|
582
|
+
# @param Csr: 上传的 CSR 内容。如果GenCsrType为upload则该字段必传
|
583
|
+
# @type Csr: String
|
584
|
+
# @param DnsNames: 域名数组(多域名证书可以上传)。
|
585
|
+
# @type DnsNames: Array
|
586
|
+
# @param KeyPass: 私钥密码(非必填)。
|
587
|
+
# @type KeyPass: String
|
588
|
+
# @param OrgOrganization: 公司名称。
|
589
|
+
# @type OrgOrganization: String
|
590
|
+
# @param OrgDivision: 部门名称。
|
591
|
+
# @type OrgDivision: String
|
592
|
+
# @param OrgAddress: 公司详细地址。
|
593
|
+
# @type OrgAddress: String
|
594
|
+
# @param OrgCountry: 国家名称,如中国:CN 。
|
595
|
+
# @type OrgCountry: String
|
596
|
+
# @param OrgCity: 公司所在城市。
|
597
|
+
# @type OrgCity: String
|
598
|
+
# @param OrgRegion: 公司所在省份。
|
599
|
+
# @type OrgRegion: String
|
600
|
+
# @param OrgPhoneArea: 公司座机区号。
|
601
|
+
# @type OrgPhoneArea: String
|
602
|
+
# @param OrgPhoneNumber: 公司座机号码。
|
603
|
+
# @type OrgPhoneNumber: String
|
604
|
+
# @param VerifyType: 证书验证方式。验证类型:DNS_AUTO = 自动DNS验证(仅支持在腾讯云解析且解析状态正常的域名使用该验证类型),DNS = 手动DNS验证,FILE = 文件验证。
|
605
|
+
# @type VerifyType: String
|
606
|
+
# @param AdminFirstName: 管理人名。
|
607
|
+
# @type AdminFirstName: String
|
608
|
+
# @param AdminLastName: 管理人姓。
|
609
|
+
# @type AdminLastName: String
|
610
|
+
# @param AdminPhone: 管理人手机号码。
|
611
|
+
# @type AdminPhone: String
|
612
|
+
# @param AdminEmail: 管理人邮箱地址。
|
613
|
+
# @type AdminEmail: String
|
614
|
+
# @param AdminTitle: 管理人职位。
|
615
|
+
# @type AdminTitle: String
|
616
|
+
# @param TechFirstName: 联系人名。
|
617
|
+
# @type TechFirstName: String
|
618
|
+
# @param TechLastName: 联系人姓。
|
619
|
+
# @type TechLastName: String
|
620
|
+
# @param ContactEmail: 联系人邮箱地址。
|
621
|
+
# @type ContactEmail: String
|
622
|
+
# @param AutoRenewFlag: 是否开启自动续费: 0, 不开启; 1, 开启; 默认为0
|
623
|
+
# @type AutoRenewFlag: Integer
|
624
|
+
# @param CsrKeyParameter: 证书加密参数
|
625
|
+
# @type CsrKeyParameter: String
|
626
|
+
# @param CsrEncryptAlgo: 证书加密方式
|
627
|
+
# @type CsrEncryptAlgo: String
|
628
|
+
# @param ManagerId: 管理人ID
|
629
|
+
# @type ManagerId: String
|
630
|
+
# @param TechPhone: 联系人电话
|
631
|
+
# @type TechPhone: String
|
632
|
+
# @param TechEmail: 联系人邮箱
|
633
|
+
# @type TechEmail: String
|
634
|
+
# @param TechTitle: 联系人职位
|
635
|
+
# @type TechTitle: String
|
636
|
+
|
637
|
+
attr_accessor :CertId, :GenCsrType, :CertCommonName, :CompanyType, :OrgIdType, :OrgIdNumber, :AdminIdType, :AdminIdNumber, :TechIdType, :TechIdNumber, :CompanyId, :Csr, :DnsNames, :KeyPass, :OrgOrganization, :OrgDivision, :OrgAddress, :OrgCountry, :OrgCity, :OrgRegion, :OrgPhoneArea, :OrgPhoneNumber, :VerifyType, :AdminFirstName, :AdminLastName, :AdminPhone, :AdminEmail, :AdminTitle, :TechFirstName, :TechLastName, :ContactEmail, :AutoRenewFlag, :CsrKeyParameter, :CsrEncryptAlgo, :ManagerId, :TechPhone, :TechEmail, :TechTitle
|
638
|
+
|
639
|
+
def initialize(certid=nil, gencsrtype=nil, certcommonname=nil, companytype=nil, orgidtype=nil, orgidnumber=nil, adminidtype=nil, adminidnumber=nil, techidtype=nil, techidnumber=nil, companyid=nil, csr=nil, dnsnames=nil, keypass=nil, orgorganization=nil, orgdivision=nil, orgaddress=nil, orgcountry=nil, orgcity=nil, orgregion=nil, orgphonearea=nil, orgphonenumber=nil, verifytype=nil, adminfirstname=nil, adminlastname=nil, adminphone=nil, adminemail=nil, admintitle=nil, techfirstname=nil, techlastname=nil, contactemail=nil, autorenewflag=nil, csrkeyparameter=nil, csrencryptalgo=nil, managerid=nil, techphone=nil, techemail=nil, techtitle=nil)
|
640
|
+
@CertId = certid
|
641
|
+
@GenCsrType = gencsrtype
|
642
|
+
@CertCommonName = certcommonname
|
643
|
+
@CompanyType = companytype
|
644
|
+
@OrgIdType = orgidtype
|
645
|
+
@OrgIdNumber = orgidnumber
|
646
|
+
@AdminIdType = adminidtype
|
647
|
+
@AdminIdNumber = adminidnumber
|
648
|
+
@TechIdType = techidtype
|
649
|
+
@TechIdNumber = techidnumber
|
650
|
+
@CompanyId = companyid
|
651
|
+
@Csr = csr
|
652
|
+
@DnsNames = dnsnames
|
653
|
+
@KeyPass = keypass
|
654
|
+
@OrgOrganization = orgorganization
|
655
|
+
@OrgDivision = orgdivision
|
656
|
+
@OrgAddress = orgaddress
|
657
|
+
@OrgCountry = orgcountry
|
658
|
+
@OrgCity = orgcity
|
659
|
+
@OrgRegion = orgregion
|
660
|
+
@OrgPhoneArea = orgphonearea
|
661
|
+
@OrgPhoneNumber = orgphonenumber
|
662
|
+
@VerifyType = verifytype
|
663
|
+
@AdminFirstName = adminfirstname
|
664
|
+
@AdminLastName = adminlastname
|
665
|
+
@AdminPhone = adminphone
|
666
|
+
@AdminEmail = adminemail
|
667
|
+
@AdminTitle = admintitle
|
668
|
+
@TechFirstName = techfirstname
|
669
|
+
@TechLastName = techlastname
|
670
|
+
@ContactEmail = contactemail
|
671
|
+
@AutoRenewFlag = autorenewflag
|
672
|
+
@CsrKeyParameter = csrkeyparameter
|
673
|
+
@CsrEncryptAlgo = csrencryptalgo
|
674
|
+
@ManagerId = managerid
|
675
|
+
@TechPhone = techphone
|
676
|
+
@TechEmail = techemail
|
677
|
+
@TechTitle = techtitle
|
678
|
+
end
|
679
|
+
|
680
|
+
def deserialize(params)
|
681
|
+
@CertId = params['CertId']
|
682
|
+
@GenCsrType = params['GenCsrType']
|
683
|
+
@CertCommonName = params['CertCommonName']
|
684
|
+
@CompanyType = params['CompanyType']
|
685
|
+
@OrgIdType = params['OrgIdType']
|
686
|
+
@OrgIdNumber = params['OrgIdNumber']
|
687
|
+
@AdminIdType = params['AdminIdType']
|
688
|
+
@AdminIdNumber = params['AdminIdNumber']
|
689
|
+
@TechIdType = params['TechIdType']
|
690
|
+
@TechIdNumber = params['TechIdNumber']
|
691
|
+
@CompanyId = params['CompanyId']
|
692
|
+
@Csr = params['Csr']
|
693
|
+
@DnsNames = params['DnsNames']
|
694
|
+
@KeyPass = params['KeyPass']
|
695
|
+
@OrgOrganization = params['OrgOrganization']
|
696
|
+
@OrgDivision = params['OrgDivision']
|
697
|
+
@OrgAddress = params['OrgAddress']
|
698
|
+
@OrgCountry = params['OrgCountry']
|
699
|
+
@OrgCity = params['OrgCity']
|
700
|
+
@OrgRegion = params['OrgRegion']
|
701
|
+
@OrgPhoneArea = params['OrgPhoneArea']
|
702
|
+
@OrgPhoneNumber = params['OrgPhoneNumber']
|
703
|
+
@VerifyType = params['VerifyType']
|
704
|
+
@AdminFirstName = params['AdminFirstName']
|
705
|
+
@AdminLastName = params['AdminLastName']
|
706
|
+
@AdminPhone = params['AdminPhone']
|
707
|
+
@AdminEmail = params['AdminEmail']
|
708
|
+
@AdminTitle = params['AdminTitle']
|
709
|
+
@TechFirstName = params['TechFirstName']
|
710
|
+
@TechLastName = params['TechLastName']
|
711
|
+
@ContactEmail = params['ContactEmail']
|
712
|
+
@AutoRenewFlag = params['AutoRenewFlag']
|
713
|
+
@CsrKeyParameter = params['CsrKeyParameter']
|
714
|
+
@CsrEncryptAlgo = params['CsrEncryptAlgo']
|
715
|
+
@ManagerId = params['ManagerId']
|
716
|
+
@TechPhone = params['TechPhone']
|
717
|
+
@TechEmail = params['TechEmail']
|
718
|
+
@TechTitle = params['TechTitle']
|
719
|
+
end
|
720
|
+
end
|
721
|
+
|
722
|
+
# CertificateInfoSubmit返回参数结构体
|
723
|
+
class CertificateInfoSubmitResponse < TencentCloud::Common::AbstractModel
|
724
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
725
|
+
# @type RequestId: String
|
726
|
+
|
727
|
+
attr_accessor :RequestId
|
728
|
+
|
729
|
+
def initialize(requestid=nil)
|
730
|
+
@RequestId = requestid
|
731
|
+
end
|
732
|
+
|
733
|
+
def deserialize(params)
|
734
|
+
@RequestId = params['RequestId']
|
735
|
+
end
|
736
|
+
end
|
737
|
+
|
738
|
+
# CertificateOrderSubmit请求参数结构体
|
739
|
+
class CertificateOrderSubmitRequest < TencentCloud::Common::AbstractModel
|
740
|
+
# @param CertId: 证书 ID。
|
741
|
+
# @type CertId: String
|
742
|
+
# @param DeleteDnsAutoRecord: 是否删除自动DNS验证值:0,不删除; 1,删除; 默认不删除
|
743
|
+
# @type DeleteDnsAutoRecord: Integer
|
744
|
+
# @param VerifyType: 域名验证方式:DNS_AUTO 自动DNS验证, DNS DNS验证, FILE 文件验证
|
745
|
+
# @type VerifyType: String
|
746
|
+
|
747
|
+
attr_accessor :CertId, :DeleteDnsAutoRecord, :VerifyType
|
748
|
+
|
749
|
+
def initialize(certid=nil, deletednsautorecord=nil, verifytype=nil)
|
750
|
+
@CertId = certid
|
751
|
+
@DeleteDnsAutoRecord = deletednsautorecord
|
752
|
+
@VerifyType = verifytype
|
753
|
+
end
|
754
|
+
|
755
|
+
def deserialize(params)
|
756
|
+
@CertId = params['CertId']
|
757
|
+
@DeleteDnsAutoRecord = params['DeleteDnsAutoRecord']
|
758
|
+
@VerifyType = params['VerifyType']
|
759
|
+
end
|
760
|
+
end
|
761
|
+
|
762
|
+
# CertificateOrderSubmit返回参数结构体
|
763
|
+
class CertificateOrderSubmitResponse < TencentCloud::Common::AbstractModel
|
764
|
+
# @param OrderId: CA机构侧订单号。
|
765
|
+
# @type OrderId: String
|
766
|
+
# @param Status: 证书状态:0 = 审核中,1 = 已通过,2 = 审核失败,3 = 已过期,4 = 已添加DNS记录,5 = 企业证书,待提交,6 = 订单取消中,7 = 已取消,8 = 已提交资料, 待上传确认函,9 = 证书吊销中,10 = 已吊销,11 = 重颁发中,12 = 待上传吊销确认函,13 = 免费证书待提交资料。
|
767
|
+
# @type Status: Integer
|
768
|
+
# @param IsAudited: 是否预审核
|
769
|
+
# @type IsAudited: Boolean
|
770
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
771
|
+
# @type RequestId: String
|
772
|
+
|
773
|
+
attr_accessor :OrderId, :Status, :IsAudited, :RequestId
|
774
|
+
|
775
|
+
def initialize(orderid=nil, status=nil, isaudited=nil, requestid=nil)
|
776
|
+
@OrderId = orderid
|
777
|
+
@Status = status
|
778
|
+
@IsAudited = isaudited
|
779
|
+
@RequestId = requestid
|
780
|
+
end
|
781
|
+
|
782
|
+
def deserialize(params)
|
783
|
+
@OrderId = params['OrderId']
|
784
|
+
@Status = params['Status']
|
785
|
+
@IsAudited = params['IsAudited']
|
786
|
+
@RequestId = params['RequestId']
|
787
|
+
end
|
788
|
+
end
|
789
|
+
|
558
790
|
# 获取证书列表(DescribeCertificates)返回参数键为 Certificates 的内容。
|
559
791
|
class Certificates < TencentCloud::Common::AbstractModel
|
560
792
|
# @param OwnerUin: 用户 UIN。
|
@@ -3952,8 +4184,8 @@ module TencentCloud
|
|
3952
4184
|
|
3953
4185
|
attr_accessor :CertificateId, :IsCache, :Filters, :ResourceType, :OldCertificateId
|
3954
4186
|
extend Gem::Deprecate
|
3955
|
-
deprecate :ResourceType, :none, 2025,
|
3956
|
-
deprecate :ResourceType=, :none, 2025,
|
4187
|
+
deprecate :ResourceType, :none, 2025, 2
|
4188
|
+
deprecate :ResourceType=, :none, 2025, 2
|
3957
4189
|
|
3958
4190
|
def initialize(certificateid=nil, iscache=nil, filters=nil, resourcetype=nil, oldcertificateid=nil)
|
3959
4191
|
@CertificateId = certificateid
|
@@ -4333,8 +4565,8 @@ module TencentCloud
|
|
4333
4565
|
|
4334
4566
|
attr_accessor :CertificateId, :IsCache, :Filters, :ResourceType, :OldCertificateId
|
4335
4567
|
extend Gem::Deprecate
|
4336
|
-
deprecate :ResourceType, :none, 2025,
|
4337
|
-
deprecate :ResourceType=, :none, 2025,
|
4568
|
+
deprecate :ResourceType, :none, 2025, 2
|
4569
|
+
deprecate :ResourceType=, :none, 2025, 2
|
4338
4570
|
|
4339
4571
|
def initialize(certificateid=nil, iscache=nil, filters=nil, resourcetype=nil, oldcertificateid=nil)
|
4340
4572
|
@CertificateId = certificateid
|
@@ -4408,8 +4640,8 @@ module TencentCloud
|
|
4408
4640
|
|
4409
4641
|
attr_accessor :CertificateId, :IsCache, :Filters, :ResourceType, :OldCertificateId
|
4410
4642
|
extend Gem::Deprecate
|
4411
|
-
deprecate :ResourceType, :none, 2025,
|
4412
|
-
deprecate :ResourceType=, :none, 2025,
|
4643
|
+
deprecate :ResourceType, :none, 2025, 2
|
4644
|
+
deprecate :ResourceType=, :none, 2025, 2
|
4413
4645
|
|
4414
4646
|
def initialize(certificateid=nil, iscache=nil, filters=nil, resourcetype=nil, oldcertificateid=nil)
|
4415
4647
|
@CertificateId = certificateid
|
@@ -4474,10 +4706,10 @@ module TencentCloud
|
|
4474
4706
|
|
4475
4707
|
attr_accessor :ManagerId, :Limit, :Offset
|
4476
4708
|
extend Gem::Deprecate
|
4477
|
-
deprecate :Limit, :none, 2025,
|
4478
|
-
deprecate :Limit=, :none, 2025,
|
4479
|
-
deprecate :Offset, :none, 2025,
|
4480
|
-
deprecate :Offset=, :none, 2025,
|
4709
|
+
deprecate :Limit, :none, 2025, 2
|
4710
|
+
deprecate :Limit=, :none, 2025, 2
|
4711
|
+
deprecate :Offset, :none, 2025, 2
|
4712
|
+
deprecate :Offset=, :none, 2025, 2
|
4481
4713
|
|
4482
4714
|
def initialize(managerid=nil, limit=nil, offset=nil)
|
4483
4715
|
@ManagerId = managerid
|
@@ -6815,8 +7047,8 @@ module TencentCloud
|
|
6815
7047
|
|
6816
7048
|
attr_accessor :OldCertificateId, :ResourceTypes, :CertificateId, :Regions, :ResourceTypesRegions, :CertificatePublicKey, :CertificatePrivateKey, :ExpiringNotificationSwitch, :Repeatable, :AllowDownload, :Tags, :ProjectId
|
6817
7049
|
extend Gem::Deprecate
|
6818
|
-
deprecate :Regions, :none, 2025,
|
6819
|
-
deprecate :Regions=, :none, 2025,
|
7050
|
+
deprecate :Regions, :none, 2025, 2
|
7051
|
+
deprecate :Regions=, :none, 2025, 2
|
6820
7052
|
|
6821
7053
|
def initialize(oldcertificateid=nil, resourcetypes=nil, certificateid=nil, regions=nil, resourcetypesregions=nil, certificatepublickey=nil, certificateprivatekey=nil, expiringnotificationswitch=nil, repeatable=nil, allowdownload=nil, tags=nil, projectid=nil)
|
6822
7054
|
@OldCertificateId = oldcertificateid
|
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.995
|
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-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|