tencentcloud-sdk-ssl 3.0.880 → 3.0.881
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20191205/models.rb +34 -10
- 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: 5dce987b50ba8ea91c441951f898eb408c1eece0
|
4
|
+
data.tar.gz: 5bf79301e288cc21f0d12d0ecaff6e85983932e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cdc8c54e8984deb1d4246960bac523f710207c43e2078ab5bf27747594f92ca918384c1bc2f9ee088127b7bba404824111a6482d78e8bf87e2f0efaca6c7fc4d
|
7
|
+
data.tar.gz: db1579f9f4cebb4034be2e7913db5c61206e6eee8afc16de8019be3381d7314d71ae97a17a875457a3102044a131f194e37c1a74b97ae19ab59b796a3b8db33f
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.881
|
data/lib/v20191205/models.rb
CHANGED
@@ -1094,10 +1094,13 @@ module TencentCloud
|
|
1094
1094
|
# @param IdNumber: ID号
|
1095
1095
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1096
1096
|
# @type IdNumber: String
|
1097
|
+
# @param Tags: 标签
|
1098
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1099
|
+
# @type Tags: Array
|
1097
1100
|
|
1098
|
-
attr_accessor :CompanyName, :CompanyId, :CompanyCountry, :CompanyProvince, :CompanyCity, :CompanyAddress, :CompanyPhone, :IdType, :IdNumber
|
1101
|
+
attr_accessor :CompanyName, :CompanyId, :CompanyCountry, :CompanyProvince, :CompanyCity, :CompanyAddress, :CompanyPhone, :IdType, :IdNumber, :Tags
|
1099
1102
|
|
1100
|
-
def initialize(companyname=nil, companyid=nil, companycountry=nil, companyprovince=nil, companycity=nil, companyaddress=nil, companyphone=nil, idtype=nil, idnumber=nil)
|
1103
|
+
def initialize(companyname=nil, companyid=nil, companycountry=nil, companyprovince=nil, companycity=nil, companyaddress=nil, companyphone=nil, idtype=nil, idnumber=nil, tags=nil)
|
1101
1104
|
@CompanyName = companyname
|
1102
1105
|
@CompanyId = companyid
|
1103
1106
|
@CompanyCountry = companycountry
|
@@ -1107,6 +1110,7 @@ module TencentCloud
|
|
1107
1110
|
@CompanyPhone = companyphone
|
1108
1111
|
@IdType = idtype
|
1109
1112
|
@IdNumber = idnumber
|
1113
|
+
@Tags = tags
|
1110
1114
|
end
|
1111
1115
|
|
1112
1116
|
def deserialize(params)
|
@@ -1119,6 +1123,14 @@ module TencentCloud
|
|
1119
1123
|
@CompanyPhone = params['CompanyPhone']
|
1120
1124
|
@IdType = params['IdType']
|
1121
1125
|
@IdNumber = params['IdNumber']
|
1126
|
+
unless params['Tags'].nil?
|
1127
|
+
@Tags = []
|
1128
|
+
params['Tags'].each do |i|
|
1129
|
+
tags_tmp = Tags.new
|
1130
|
+
tags_tmp.deserialize(i)
|
1131
|
+
@Tags << tags_tmp
|
1132
|
+
end
|
1133
|
+
end
|
1122
1134
|
end
|
1123
1135
|
end
|
1124
1136
|
|
@@ -4230,10 +4242,10 @@ module TencentCloud
|
|
4230
4242
|
|
4231
4243
|
attr_accessor :ManagerId, :Limit, :Offset
|
4232
4244
|
extend Gem::Deprecate
|
4233
|
-
deprecate :Limit, :none, 2024,
|
4234
|
-
deprecate :Limit=, :none, 2024,
|
4235
|
-
deprecate :Offset, :none, 2024,
|
4236
|
-
deprecate :Offset=, :none, 2024,
|
4245
|
+
deprecate :Limit, :none, 2024, 8
|
4246
|
+
deprecate :Limit=, :none, 2024, 8
|
4247
|
+
deprecate :Offset, :none, 2024, 8
|
4248
|
+
deprecate :Offset=, :none, 2024, 8
|
4237
4249
|
|
4238
4250
|
def initialize(managerid=nil, limit=nil, offset=nil)
|
4239
4251
|
@ManagerId = managerid
|
@@ -4842,10 +4854,13 @@ module TencentCloud
|
|
4842
4854
|
# @param StatusInfo: 具体审核状态信息
|
4843
4855
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4844
4856
|
# @type StatusInfo: Array
|
4857
|
+
# @param Tags: 标签
|
4858
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4859
|
+
# @type Tags: Array
|
4845
4860
|
|
4846
|
-
attr_accessor :Status, :ManagerFirstName, :ManagerLastName, :ManagerPosition, :ManagerPhone, :ManagerMail, :ManagerDepartment, :CreateTime, :DomainCount, :CertCount, :ManagerId, :ExpireTime, :SubmitAuditTime, :VerifyTime, :StatusInfo
|
4861
|
+
attr_accessor :Status, :ManagerFirstName, :ManagerLastName, :ManagerPosition, :ManagerPhone, :ManagerMail, :ManagerDepartment, :CreateTime, :DomainCount, :CertCount, :ManagerId, :ExpireTime, :SubmitAuditTime, :VerifyTime, :StatusInfo, :Tags
|
4847
4862
|
|
4848
|
-
def initialize(status=nil, managerfirstname=nil, managerlastname=nil, managerposition=nil, managerphone=nil, managermail=nil, managerdepartment=nil, createtime=nil, domaincount=nil, certcount=nil, managerid=nil, expiretime=nil, submitaudittime=nil, verifytime=nil, statusinfo=nil)
|
4863
|
+
def initialize(status=nil, managerfirstname=nil, managerlastname=nil, managerposition=nil, managerphone=nil, managermail=nil, managerdepartment=nil, createtime=nil, domaincount=nil, certcount=nil, managerid=nil, expiretime=nil, submitaudittime=nil, verifytime=nil, statusinfo=nil, tags=nil)
|
4849
4864
|
@Status = status
|
4850
4865
|
@ManagerFirstName = managerfirstname
|
4851
4866
|
@ManagerLastName = managerlastname
|
@@ -4861,6 +4876,7 @@ module TencentCloud
|
|
4861
4876
|
@SubmitAuditTime = submitaudittime
|
4862
4877
|
@VerifyTime = verifytime
|
4863
4878
|
@StatusInfo = statusinfo
|
4879
|
+
@Tags = tags
|
4864
4880
|
end
|
4865
4881
|
|
4866
4882
|
def deserialize(params)
|
@@ -4886,6 +4902,14 @@ module TencentCloud
|
|
4886
4902
|
@StatusInfo << managerstatusinfo_tmp
|
4887
4903
|
end
|
4888
4904
|
end
|
4905
|
+
unless params['Tags'].nil?
|
4906
|
+
@Tags = []
|
4907
|
+
params['Tags'].each do |i|
|
4908
|
+
tags_tmp = Tags.new
|
4909
|
+
tags_tmp.deserialize(i)
|
4910
|
+
@Tags << tags_tmp
|
4911
|
+
end
|
4912
|
+
end
|
4889
4913
|
end
|
4890
4914
|
end
|
4891
4915
|
|
@@ -6478,8 +6502,8 @@ module TencentCloud
|
|
6478
6502
|
|
6479
6503
|
attr_accessor :OldCertificateId, :ResourceTypes, :CertificateId, :Regions, :ResourceTypesRegions, :CertificatePublicKey, :CertificatePrivateKey, :ExpiringNotificationSwitch, :Repeatable, :AllowDownload, :Tags, :ProjectId
|
6480
6504
|
extend Gem::Deprecate
|
6481
|
-
deprecate :Regions, :none, 2024,
|
6482
|
-
deprecate :Regions=, :none, 2024,
|
6505
|
+
deprecate :Regions, :none, 2024, 8
|
6506
|
+
deprecate :Regions=, :none, 2024, 8
|
6483
6507
|
|
6484
6508
|
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)
|
6485
6509
|
@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.881
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-08-
|
11
|
+
date: 2024-08-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|