tencentcloud-sdk-ssl 3.0.671 → 3.0.673

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 29e454333b3e3a315b02de5d0a5f3e5c2a476000
4
- data.tar.gz: c475bf5f88d23a1ad37747ce387e0f0dc4418d45
3
+ metadata.gz: 52cecfb3886555f68a4dd2a9b8e67a010db8e091
4
+ data.tar.gz: 3d8048a9042c8e4141c37f0aef3e0fa2bed2efea
5
5
  SHA512:
6
- metadata.gz: 839961ffa295a76dc1f19d9fcfc5f682a6ec48fc89ce59e49a9340e7523b39c0cc122524236bd9e92a6ecbf367f91dcb2795af955d4a54c99c6d92980ad15fa2
7
- data.tar.gz: e86bf5ab91bd6cd0bb1301c9d1ccfb57548c7864b618a615415e693fb265f9e9a1f2c16acb70fd82c1fe1882b7346c8b3185340cec41eb3d0675f8cb00b5efb1
6
+ metadata.gz: 9c154708e40a72d64fec0fee37027874f4b2135456f6164018b308f289805aafa0ebed354b6c049ac1e3f512a521d3759ad9ac5262e34d5d7c566b2980ad45f5
7
+ data.tar.gz: 55c8e66ae0063796d48686cf948baca4bb0646936aa4826a6a6da49fee4ce4b3232f5f92f8d8a478818255beab873d096c8a214767b24173116a29ff94486224
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.671
1
+ 3.0.673
@@ -1013,6 +1013,8 @@ module TencentCloud
1013
1013
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1014
1014
  end
1015
1015
 
1016
+ # 证书托管接口已重构, 旧接口预下线, 近30天无请求
1017
+
1016
1018
  # 云资源托管
1017
1019
 
1018
1020
  # @param request: Request instance for HostCertificate.
@@ -5896,34 +5896,55 @@ module TencentCloud
5896
5896
 
5897
5897
  # UpdateCertificateInstance请求参数结构体
5898
5898
  class UpdateCertificateInstanceRequest < TencentCloud::Common::AbstractModel
5899
- # @param CertificateId: 一键更新新证书ID
5900
- # @type CertificateId: String
5901
5899
  # @param OldCertificateId: 一键更新原证书ID
5902
5900
  # @type OldCertificateId: String
5903
5901
  # @param ResourceTypes: 需要部署的资源类型,参数值可选:clb、cdn、waf、live、ddos、teo、apigateway、vod、tke、tcb
5904
5902
  # @type ResourceTypes: Array
5903
+ # @param CertificateId: 一键更新新证书ID
5904
+ # @type CertificateId: String
5905
5905
  # @param Regions: 需要部署的地域列表(废弃)
5906
5906
  # @type Regions: Array
5907
5907
  # @param ResourceTypesRegions: 云资源需要部署的地域列表
5908
5908
  # @type ResourceTypesRegions: Array
5909
+ # @param CertificatePublicKey: 证书公钥, 若上传证书公钥, 则CertificateId不用传
5910
+ # @type CertificatePublicKey: String
5911
+ # @param CertificatePrivateKey: 证书私钥,若上传证书公钥, 则证书私钥必填
5912
+ # @type CertificatePrivateKey: String
5913
+ # @param ExpiringNotificationSwitch: 旧证书是否忽略到期提醒 0:不忽略通知。1:忽略通知
5914
+ # @type ExpiringNotificationSwitch: Integer
5915
+ # @param Repeatable: 相同的证书是否允许重复上传,若上传证书公钥, 则可以配置该参数
5916
+ # @type Repeatable: Boolean
5917
+ # @param AllowDownload: 是否允许下载,若上传证书公钥, 则可以配置该参数
5918
+ # @type AllowDownload: Boolean
5919
+ # @param Tags: 标签列表,若上传证书公钥, 则可以配置该参数
5920
+ # @type Tags: Array
5921
+ # @param ProjectId: 项目 ID,若上传证书公钥, 则可以配置该参数
5922
+ # @type ProjectId: Integer
5909
5923
 
5910
- attr_accessor :CertificateId, :OldCertificateId, :ResourceTypes, :Regions, :ResourceTypesRegions
5924
+ attr_accessor :OldCertificateId, :ResourceTypes, :CertificateId, :Regions, :ResourceTypesRegions, :CertificatePublicKey, :CertificatePrivateKey, :ExpiringNotificationSwitch, :Repeatable, :AllowDownload, :Tags, :ProjectId
5911
5925
  extend Gem::Deprecate
5912
- deprecate :Regions, :none, 2023, 9
5913
- deprecate :Regions=, :none, 2023, 9
5926
+ deprecate :Regions, :none, 2023, 10
5927
+ deprecate :Regions=, :none, 2023, 10
5914
5928
 
5915
- def initialize(certificateid=nil, oldcertificateid=nil, resourcetypes=nil, regions=nil, resourcetypesregions=nil)
5916
- @CertificateId = certificateid
5929
+ 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)
5917
5930
  @OldCertificateId = oldcertificateid
5918
5931
  @ResourceTypes = resourcetypes
5932
+ @CertificateId = certificateid
5919
5933
  @Regions = regions
5920
5934
  @ResourceTypesRegions = resourcetypesregions
5935
+ @CertificatePublicKey = certificatepublickey
5936
+ @CertificatePrivateKey = certificateprivatekey
5937
+ @ExpiringNotificationSwitch = expiringnotificationswitch
5938
+ @Repeatable = repeatable
5939
+ @AllowDownload = allowdownload
5940
+ @Tags = tags
5941
+ @ProjectId = projectid
5921
5942
  end
5922
5943
 
5923
5944
  def deserialize(params)
5924
- @CertificateId = params['CertificateId']
5925
5945
  @OldCertificateId = params['OldCertificateId']
5926
5946
  @ResourceTypes = params['ResourceTypes']
5947
+ @CertificateId = params['CertificateId']
5927
5948
  @Regions = params['Regions']
5928
5949
  unless params['ResourceTypesRegions'].nil?
5929
5950
  @ResourceTypesRegions = []
@@ -5933,6 +5954,20 @@ module TencentCloud
5933
5954
  @ResourceTypesRegions << resourcetyperegions_tmp
5934
5955
  end
5935
5956
  end
5957
+ @CertificatePublicKey = params['CertificatePublicKey']
5958
+ @CertificatePrivateKey = params['CertificatePrivateKey']
5959
+ @ExpiringNotificationSwitch = params['ExpiringNotificationSwitch']
5960
+ @Repeatable = params['Repeatable']
5961
+ @AllowDownload = params['AllowDownload']
5962
+ unless params['Tags'].nil?
5963
+ @Tags = []
5964
+ params['Tags'].each do |i|
5965
+ tags_tmp = Tags.new
5966
+ tags_tmp.deserialize(i)
5967
+ @Tags << tags_tmp
5968
+ end
5969
+ end
5970
+ @ProjectId = params['ProjectId']
5936
5971
  end
5937
5972
  end
5938
5973
 
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.671
4
+ version: 3.0.673
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-07 00:00:00.000000000 Z
11
+ date: 2023-10-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common