tencentcloud-sdk-ssl 3.0.851 → 3.0.852

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20191205/models.rb +130 -24
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e70505275598532fb6c6b96814c2c95f02157507
4
- data.tar.gz: 002f6799263832cb50509d329d1196d6ad68283e
3
+ metadata.gz: 3a029b364c49421d9ecdec6b9518485ef0f31b74
4
+ data.tar.gz: bf301bc29773dc8a20ef9da9eba13efe75c1a353
5
5
  SHA512:
6
- metadata.gz: 2128a261485ae19b8a4346d2c339c720791e9ae2dc0c3eff9bb9af75796aad8ce66461e03d99c672a899137b95f2a613f2d642be34816c44512333b9773e077e
7
- data.tar.gz: 2e1ac9387b141d950cf1fb8b1434a904349c0b0f58704027831d67c51aaddafe00369c36171d44c3ee2641e4635ea0b6d5e5252ceae0976592e255cdee591e63
6
+ metadata.gz: 5994df5088f881d31fc5b90c8e41a99b5833bbf79d1dc380a308c6a3cde3d7a4c8b7d49cbdaf537d05530269848e7346a2d28e98071dbdc35a4888e218879374
7
+ data.tar.gz: abb5869fec63899f2ce0ce72c0f186a3a478c2370fd5a5978ddd68c01486a6dbe5b22425e8cfbd3057eb14b7bcdf748cbab070f82c16f35911601553ddc7c05a
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.851
1
+ 3.0.852
@@ -59,13 +59,17 @@ module TencentCloud
59
59
  # @type InstanceList: Array
60
60
  # @param TotalCount: 该地域下apigateway实例总数
61
61
  # @type TotalCount: Integer
62
+ # @param Error: 是否查询异常
63
+ # 注意:此字段可能返回 null,表示取不到有效值。
64
+ # @type Error: String
62
65
 
63
- attr_accessor :Region, :InstanceList, :TotalCount
66
+ attr_accessor :Region, :InstanceList, :TotalCount, :Error
64
67
 
65
- def initialize(region=nil, instancelist=nil, totalcount=nil)
68
+ def initialize(region=nil, instancelist=nil, totalcount=nil, error=nil)
66
69
  @Region = region
67
70
  @InstanceList = instancelist
68
71
  @TotalCount = totalcount
72
+ @Error = error
69
73
  end
70
74
 
71
75
  def deserialize(params)
@@ -79,6 +83,7 @@ module TencentCloud
79
83
  end
80
84
  end
81
85
  @TotalCount = params['TotalCount']
86
+ @Error = params['Error']
82
87
  end
83
88
  end
84
89
 
@@ -222,6 +227,45 @@ module TencentCloud
222
227
  end
223
228
  end
224
229
 
230
+ # cos实例详情 - 异步关联云资源数据结构
231
+ class COSInstanceList < TencentCloud::Common::AbstractModel
232
+ # @param Region: 地域
233
+ # 注意:此字段可能返回 null,表示取不到有效值。
234
+ # @type Region: String
235
+ # @param InstanceList: 实例详情
236
+ # 注意:此字段可能返回 null,表示取不到有效值。
237
+ # @type InstanceList: Array
238
+ # @param TotalCount: 地域下总数
239
+ # 注意:此字段可能返回 null,表示取不到有效值。
240
+ # @type TotalCount: Integer
241
+ # @param Error: 错误信息
242
+ # 注意:此字段可能返回 null,表示取不到有效值。
243
+ # @type Error: String
244
+
245
+ attr_accessor :Region, :InstanceList, :TotalCount, :Error
246
+
247
+ def initialize(region=nil, instancelist=nil, totalcount=nil, error=nil)
248
+ @Region = region
249
+ @InstanceList = instancelist
250
+ @TotalCount = totalcount
251
+ @Error = error
252
+ end
253
+
254
+ def deserialize(params)
255
+ @Region = params['Region']
256
+ unless params['InstanceList'].nil?
257
+ @InstanceList = []
258
+ params['InstanceList'].each do |i|
259
+ cosinstancedetail_tmp = CosInstanceDetail.new
260
+ cosinstancedetail_tmp.deserialize(i)
261
+ @InstanceList << cosinstancedetail_tmp
262
+ end
263
+ end
264
+ @TotalCount = params['TotalCount']
265
+ @Error = params['Error']
266
+ end
267
+ end
268
+
225
269
  # CancelAuditCertificate请求参数结构体
226
270
  class CancelAuditCertificateRequest < TencentCloud::Common::AbstractModel
227
271
  # @param CertificateId: 证书ID
@@ -329,12 +373,16 @@ module TencentCloud
329
373
  # @param InstanceList: cdn域名详情
330
374
  # 注意:此字段可能返回 null,表示取不到有效值。
331
375
  # @type InstanceList: Array
376
+ # @param Error: 是否查询异常
377
+ # 注意:此字段可能返回 null,表示取不到有效值。
378
+ # @type Error: String
332
379
 
333
- attr_accessor :TotalCount, :InstanceList
380
+ attr_accessor :TotalCount, :InstanceList, :Error
334
381
 
335
- def initialize(totalcount=nil, instancelist=nil)
382
+ def initialize(totalcount=nil, instancelist=nil, error=nil)
336
383
  @TotalCount = totalcount
337
384
  @InstanceList = instancelist
385
+ @Error = error
338
386
  end
339
387
 
340
388
  def deserialize(params)
@@ -347,6 +395,7 @@ module TencentCloud
347
395
  @InstanceList << cdninstancedetail_tmp
348
396
  end
349
397
  end
398
+ @Error = params['Error']
350
399
  end
351
400
  end
352
401
 
@@ -829,13 +878,17 @@ module TencentCloud
829
878
  # @type InstanceList: Array
830
879
  # @param TotalCount: 该地域下Clb实例总数
831
880
  # @type TotalCount: Integer
881
+ # @param Error: 是否查询异常
882
+ # 注意:此字段可能返回 null,表示取不到有效值。
883
+ # @type Error: String
832
884
 
833
- attr_accessor :Region, :InstanceList, :TotalCount
885
+ attr_accessor :Region, :InstanceList, :TotalCount, :Error
834
886
 
835
- def initialize(region=nil, instancelist=nil, totalcount=nil)
887
+ def initialize(region=nil, instancelist=nil, totalcount=nil, error=nil)
836
888
  @Region = region
837
889
  @InstanceList = instancelist
838
890
  @TotalCount = totalcount
891
+ @Error = error
839
892
  end
840
893
 
841
894
  def deserialize(params)
@@ -849,6 +902,7 @@ module TencentCloud
849
902
  end
850
903
  end
851
904
  @TotalCount = params['TotalCount']
905
+ @Error = params['Error']
852
906
  end
853
907
  end
854
908
 
@@ -1354,12 +1408,16 @@ module TencentCloud
1354
1408
  # @param InstanceList: ddos实例详情
1355
1409
  # 注意:此字段可能返回 null,表示取不到有效值。
1356
1410
  # @type InstanceList: Array
1411
+ # @param Error: 是否查询异常
1412
+ # 注意:此字段可能返回 null,表示取不到有效值。
1413
+ # @type Error: String
1357
1414
 
1358
- attr_accessor :TotalCount, :InstanceList
1415
+ attr_accessor :TotalCount, :InstanceList, :Error
1359
1416
 
1360
- def initialize(totalcount=nil, instancelist=nil)
1417
+ def initialize(totalcount=nil, instancelist=nil, error=nil)
1361
1418
  @TotalCount = totalcount
1362
1419
  @InstanceList = instancelist
1420
+ @Error = error
1363
1421
  end
1364
1422
 
1365
1423
  def deserialize(params)
@@ -1372,6 +1430,7 @@ module TencentCloud
1372
1430
  @InstanceList << ddosinstancedetail_tmp
1373
1431
  end
1374
1432
  end
1433
+ @Error = params['Error']
1375
1434
  end
1376
1435
  end
1377
1436
 
@@ -1880,12 +1939,15 @@ module TencentCloud
1880
1939
  # @param TSE: 关联tse资源详情
1881
1940
  # 注意:此字段可能返回 null,表示取不到有效值。
1882
1941
  # @type TSE: Array
1942
+ # @param COS: 关联的COS资源详情
1943
+ # 注意:此字段可能返回 null,表示取不到有效值。
1944
+ # @type COS: Array
1883
1945
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1884
1946
  # @type RequestId: String
1885
1947
 
1886
- attr_accessor :CLB, :CDN, :WAF, :DDOS, :LIVE, :VOD, :TKE, :APIGATEWAY, :TCB, :TEO, :Status, :CacheTime, :TSE, :RequestId
1948
+ attr_accessor :CLB, :CDN, :WAF, :DDOS, :LIVE, :VOD, :TKE, :APIGATEWAY, :TCB, :TEO, :Status, :CacheTime, :TSE, :COS, :RequestId
1887
1949
 
1888
- def initialize(clb=nil, cdn=nil, waf=nil, ddos=nil, live=nil, vod=nil, tke=nil, apigateway=nil, tcb=nil, teo=nil, status=nil, cachetime=nil, tse=nil, requestid=nil)
1950
+ def initialize(clb=nil, cdn=nil, waf=nil, ddos=nil, live=nil, vod=nil, tke=nil, apigateway=nil, tcb=nil, teo=nil, status=nil, cachetime=nil, tse=nil, cos=nil, requestid=nil)
1889
1951
  @CLB = clb
1890
1952
  @CDN = cdn
1891
1953
  @WAF = waf
@@ -1899,6 +1961,7 @@ module TencentCloud
1899
1961
  @Status = status
1900
1962
  @CacheTime = cachetime
1901
1963
  @TSE = tse
1964
+ @COS = cos
1902
1965
  @RequestId = requestid
1903
1966
  end
1904
1967
 
@@ -1993,6 +2056,14 @@ module TencentCloud
1993
2056
  @TSE << tseinstancelist_tmp
1994
2057
  end
1995
2058
  end
2059
+ unless params['COS'].nil?
2060
+ @COS = []
2061
+ params['COS'].each do |i|
2062
+ cosinstancelist_tmp = COSInstanceList.new
2063
+ cosinstancelist_tmp.deserialize(i)
2064
+ @COS << cosinstancelist_tmp
2065
+ end
2066
+ end
1996
2067
  @RequestId = params['RequestId']
1997
2068
  end
1998
2069
  end
@@ -4613,12 +4684,16 @@ module TencentCloud
4613
4684
  # @param InstanceList: live实例详情
4614
4685
  # 注意:此字段可能返回 null,表示取不到有效值。
4615
4686
  # @type InstanceList: Array
4687
+ # @param Error: 是否查询异常
4688
+ # 注意:此字段可能返回 null,表示取不到有效值。
4689
+ # @type Error: String
4616
4690
 
4617
- attr_accessor :TotalCount, :InstanceList
4691
+ attr_accessor :TotalCount, :InstanceList, :Error
4618
4692
 
4619
- def initialize(totalcount=nil, instancelist=nil)
4693
+ def initialize(totalcount=nil, instancelist=nil, error=nil)
4620
4694
  @TotalCount = totalcount
4621
4695
  @InstanceList = instancelist
4696
+ @Error = error
4622
4697
  end
4623
4698
 
4624
4699
  def deserialize(params)
@@ -4631,6 +4706,7 @@ module TencentCloud
4631
4706
  @InstanceList << liveinstancedetail_tmp
4632
4707
  end
4633
4708
  end
4709
+ @Error = params['Error']
4634
4710
  end
4635
4711
  end
4636
4712
 
@@ -5915,12 +5991,16 @@ module TencentCloud
5915
5991
  # @param Environments: tcb环境实例详情
5916
5992
  # 注意:此字段可能返回 null,表示取不到有效值。
5917
5993
  # @type Environments: Array
5994
+ # @param Error: 是否查询异常
5995
+ # 注意:此字段可能返回 null,表示取不到有效值。
5996
+ # @type Error: String
5918
5997
 
5919
- attr_accessor :Region, :Environments
5998
+ attr_accessor :Region, :Environments, :Error
5920
5999
 
5921
- def initialize(region=nil, environments=nil)
6000
+ def initialize(region=nil, environments=nil, error=nil)
5922
6001
  @Region = region
5923
6002
  @Environments = environments
6003
+ @Error = error
5924
6004
  end
5925
6005
 
5926
6006
  def deserialize(params)
@@ -5933,6 +6013,7 @@ module TencentCloud
5933
6013
  @Environments << tcbenvironments_tmp
5934
6014
  end
5935
6015
  end
6016
+ @Error = params['Error']
5936
6017
  end
5937
6018
  end
5938
6019
 
@@ -5979,13 +6060,17 @@ module TencentCloud
5979
6060
  # @type TotalCount: Integer
5980
6061
  # @param Region: 地域
5981
6062
  # @type Region: String
6063
+ # @param Error: 是否查询异常
6064
+ # 注意:此字段可能返回 null,表示取不到有效值。
6065
+ # @type Error: String
5982
6066
 
5983
- attr_accessor :InstanceList, :TotalCount, :Region
6067
+ attr_accessor :InstanceList, :TotalCount, :Region, :Error
5984
6068
 
5985
- def initialize(instancelist=nil, totalcount=nil, region=nil)
6069
+ def initialize(instancelist=nil, totalcount=nil, region=nil, error=nil)
5986
6070
  @InstanceList = instancelist
5987
6071
  @TotalCount = totalcount
5988
6072
  @Region = region
6073
+ @Error = error
5989
6074
  end
5990
6075
 
5991
6076
  def deserialize(params)
@@ -5999,6 +6084,7 @@ module TencentCloud
5999
6084
  end
6000
6085
  @TotalCount = params['TotalCount']
6001
6086
  @Region = params['Region']
6087
+ @Error = params['Error']
6002
6088
  end
6003
6089
  end
6004
6090
 
@@ -6058,12 +6144,16 @@ module TencentCloud
6058
6144
  # @type InstanceList: Array
6059
6145
  # @param TotalCount: edgeone实例总数
6060
6146
  # @type TotalCount: Integer
6147
+ # @param Error: 是否查询异常
6148
+ # 注意:此字段可能返回 null,表示取不到有效值。
6149
+ # @type Error: String
6061
6150
 
6062
- attr_accessor :InstanceList, :TotalCount
6151
+ attr_accessor :InstanceList, :TotalCount, :Error
6063
6152
 
6064
- def initialize(instancelist=nil, totalcount=nil)
6153
+ def initialize(instancelist=nil, totalcount=nil, error=nil)
6065
6154
  @InstanceList = instancelist
6066
6155
  @TotalCount = totalcount
6156
+ @Error = error
6067
6157
  end
6068
6158
 
6069
6159
  def deserialize(params)
@@ -6076,6 +6166,7 @@ module TencentCloud
6076
6166
  end
6077
6167
  end
6078
6168
  @TotalCount = params['TotalCount']
6169
+ @Error = params['Error']
6079
6170
  end
6080
6171
  end
6081
6172
 
@@ -6151,13 +6242,17 @@ module TencentCloud
6151
6242
  # @type InstanceList: Array
6152
6243
  # @param TotalCount: 该地域下tke实例总数
6153
6244
  # @type TotalCount: Integer
6245
+ # @param Error: 是否查询异常
6246
+ # 注意:此字段可能返回 null,表示取不到有效值。
6247
+ # @type Error: String
6154
6248
 
6155
- attr_accessor :Region, :InstanceList, :TotalCount
6249
+ attr_accessor :Region, :InstanceList, :TotalCount, :Error
6156
6250
 
6157
- def initialize(region=nil, instancelist=nil, totalcount=nil)
6251
+ def initialize(region=nil, instancelist=nil, totalcount=nil, error=nil)
6158
6252
  @Region = region
6159
6253
  @InstanceList = instancelist
6160
6254
  @TotalCount = totalcount
6255
+ @Error = error
6161
6256
  end
6162
6257
 
6163
6258
  def deserialize(params)
@@ -6171,6 +6266,7 @@ module TencentCloud
6171
6266
  end
6172
6267
  end
6173
6268
  @TotalCount = params['TotalCount']
6269
+ @Error = params['Error']
6174
6270
  end
6175
6271
  end
6176
6272
 
@@ -6851,12 +6947,16 @@ module TencentCloud
6851
6947
  # @type InstanceList: Array
6852
6948
  # @param TotalCount: 该地域下vod实例总数
6853
6949
  # @type TotalCount: Integer
6950
+ # @param Error: 是否查询异常
6951
+ # 注意:此字段可能返回 null,表示取不到有效值。
6952
+ # @type Error: String
6854
6953
 
6855
- attr_accessor :InstanceList, :TotalCount
6954
+ attr_accessor :InstanceList, :TotalCount, :Error
6856
6955
 
6857
- def initialize(instancelist=nil, totalcount=nil)
6956
+ def initialize(instancelist=nil, totalcount=nil, error=nil)
6858
6957
  @InstanceList = instancelist
6859
6958
  @TotalCount = totalcount
6959
+ @Error = error
6860
6960
  end
6861
6961
 
6862
6962
  def deserialize(params)
@@ -6869,6 +6969,7 @@ module TencentCloud
6869
6969
  end
6870
6970
  end
6871
6971
  @TotalCount = params['TotalCount']
6972
+ @Error = params['Error']
6872
6973
  end
6873
6974
  end
6874
6975
 
@@ -6963,13 +7064,17 @@ module TencentCloud
6963
7064
  # @type InstanceList: Array
6964
7065
  # @param TotalCount: 该地域下waf实例总数
6965
7066
  # @type TotalCount: Integer
7067
+ # @param Error: 是否查询异常
7068
+ # 注意:此字段可能返回 null,表示取不到有效值。
7069
+ # @type Error: String
6966
7070
 
6967
- attr_accessor :Region, :InstanceList, :TotalCount
7071
+ attr_accessor :Region, :InstanceList, :TotalCount, :Error
6968
7072
 
6969
- def initialize(region=nil, instancelist=nil, totalcount=nil)
7073
+ def initialize(region=nil, instancelist=nil, totalcount=nil, error=nil)
6970
7074
  @Region = region
6971
7075
  @InstanceList = instancelist
6972
7076
  @TotalCount = totalcount
7077
+ @Error = error
6973
7078
  end
6974
7079
 
6975
7080
  def deserialize(params)
@@ -6983,6 +7088,7 @@ module TencentCloud
6983
7088
  end
6984
7089
  end
6985
7090
  @TotalCount = params['TotalCount']
7091
+ @Error = params['Error']
6986
7092
  end
6987
7093
  end
6988
7094
 
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.851
4
+ version: 3.0.852
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-06-25 00:00:00.000000000 Z
11
+ date: 2024-06-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common