tencentcloud-sdk-ivld 1.0.268 → 1.0.269

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cf5134d37a4899dcf758ec3e6e08d58352fe0db2
4
- data.tar.gz: 78256058ed30313d70a071f09c3c8f69771e6e2e
3
+ metadata.gz: 381f4fbd005f59831b2c6dc7108c756c20c1be1b
4
+ data.tar.gz: 2b6d361fa490bb4ca5e5b70d2cbb45eeeefeb4ad
5
5
  SHA512:
6
- metadata.gz: 367332c5e09ad157d9079da102e08e79a873faa3b83c08e4c87f594901ccca2536f84d7f6cc19129f0be91482852cccb33ed48c9e0780c73e6e2cc0a478d2dd5
7
- data.tar.gz: 0f2e400b599b1ac49f7fd49a2c66feefdbec402c7b786ca994c8703f48469dd46f27b7e7d1bd74d6bc33b6da1cdffb91aa1207868dffa9160f2e657ab2c5b148
6
+ metadata.gz: a05191023de099fda4dc4980c91d16437e46b9e8e32391ac96edeedd7072b133a902f552a050ef70d20f0e4307f3ab4edcb6d313ee7dbc89c02a80ac5437a186
7
+ data.tar.gz: ddd6fb451473e8b6482c8d3842544ed447dda04d748736cc7c2a4c46fa775b687f387ba42c566212b5aa12c5ced2771669a16c52dfb8d72a25ee10233673ed9c
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.268
1
+ 1.0.269
@@ -29,7 +29,7 @@ module TencentCloud
29
29
  end
30
30
 
31
31
 
32
- # 增加自定义人脸图片,每个自定义人物最多可包含5张人脸图片
32
+ # 增加自定义人脸图片,每个自定义人物最多可包含10张人脸图片
33
33
 
34
34
  # 请注意,与创建自定义人物一样,图片数据优先级优于图片URL优先级
35
35
 
@@ -292,6 +292,34 @@ module TencentCloud
292
292
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
293
293
  end
294
294
 
295
+ # 删除任务信息
296
+
297
+ # 请注意,本接口**不会**删除媒资文件
298
+
299
+ # 只有已完成(成功或者失败)的任务可以删除,**正在执行中的任务不支持删除**
300
+
301
+ # @param request: Request instance for DeleteTask.
302
+ # @type request: :class:`Tencentcloud::ivld::V20210903::DeleteTaskRequest`
303
+ # @rtype: :class:`Tencentcloud::ivld::V20210903::DeleteTaskResponse`
304
+ def DeleteTask(request)
305
+ body = send_request('DeleteTask', request.serialize)
306
+ response = JSON.parse(body)
307
+ if response['Response'].key?('Error') == false
308
+ model = DeleteTaskResponse.new
309
+ model.deserialize(response['Response'])
310
+ model
311
+ else
312
+ code = response['Response']['Error']['Code']
313
+ message = response['Response']['Error']['Message']
314
+ reqid = response['Response']['RequestId']
315
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
316
+ end
317
+ rescue TencentCloud::Common::TencentCloudSDKException => e
318
+ raise e
319
+ rescue StandardError => e
320
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
321
+ end
322
+
295
323
  # 批量描述自定义人物分类信息
296
324
 
297
325
  # @param request: Request instance for DescribeCustomCategories.
@@ -550,6 +578,88 @@ module TencentCloud
550
578
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
551
579
  end
552
580
 
581
+ # 用户设置对应事件的回调地址
582
+
583
+ # ### 回调事件消息通知协议
584
+
585
+ # #### 网络协议
586
+ # - 回调接口协议目前仅支持http/https协议;
587
+ # - 请求:HTTP POST 请求,包体内容为 JSON,每一种消息的具体包体内容参见后文。
588
+ # - 应答:HTTP STATUS CODE = 200,服务端忽略应答包具体内容,为了协议友好,建议客户应答内容携带 JSON: `{"code":0}`
589
+
590
+ # #### 通知可靠性
591
+
592
+ # 事件通知服务具备重试能力,事件通知失败后会总计重试3次;
593
+ # 为了避免重试对您的服务器以及网络带宽造成冲击,请保持正常回包。触发重试条件如下:
594
+ # - 长时间(20 秒)未回包应答。
595
+ # - 应答 HTTP STATUS 不为200。
596
+
597
+
598
+ # #### 回调接口协议
599
+
600
+ # ##### 分析任务完成消息回调
601
+ # | 参数名称 | 必选 | 类型 | 描述 |
602
+ # |---------|---------|---------|---------|
603
+ # | EventType | 是 | int | 回调时间类型,1-任务分析完成,2-媒资导入完成 |
604
+ # | TaskId | 是 | String | 任务ID |
605
+ # | TaskStatus | 是 | [TaskStatus](/document/product/1611/63373?!preview&preview_docmenu=1&lang=cn&!document=1#TaskStatus) | 任务执行状态 |
606
+ # | FailedReason | 是 | String | 若任务失败,该字段为失败原因 |
607
+
608
+
609
+ # ##### 导入媒资完成消息回调
610
+ # | 参数名称 | 必选 | 类型 | 描述 |
611
+ # |---------|---------|---------|---------|
612
+ # | EventType | 是 | int | 回调时间类型,1-任务分析完成,2-媒资导入完成 |
613
+ # | MediaId | 是 | String | 媒资ID |
614
+ # | MediaStatus | 是 | [MediaStatus](/document/product/1611/63373?!preview&preview_docmenu=1&lang=cn&!document=1#MediaStatus) | 媒资导入状态|
615
+ # | FailedReason | 是 | String | 若任务失败,该字段为失败原因 |
616
+
617
+ # @param request: Request instance for ModifyCallback.
618
+ # @type request: :class:`Tencentcloud::ivld::V20210903::ModifyCallbackRequest`
619
+ # @rtype: :class:`Tencentcloud::ivld::V20210903::ModifyCallbackResponse`
620
+ def ModifyCallback(request)
621
+ body = send_request('ModifyCallback', request.serialize)
622
+ response = JSON.parse(body)
623
+ if response['Response'].key?('Error') == false
624
+ model = ModifyCallbackResponse.new
625
+ model.deserialize(response['Response'])
626
+ model
627
+ else
628
+ code = response['Response']['Error']['Code']
629
+ message = response['Response']['Error']['Message']
630
+ reqid = response['Response']['RequestId']
631
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
632
+ end
633
+ rescue TencentCloud::Common::TencentCloudSDKException => e
634
+ raise e
635
+ rescue StandardError => e
636
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
637
+ end
638
+
639
+ # 查询用户回调设置
640
+
641
+ # @param request: Request instance for QueryCallback.
642
+ # @type request: :class:`Tencentcloud::ivld::V20210903::QueryCallbackRequest`
643
+ # @rtype: :class:`Tencentcloud::ivld::V20210903::QueryCallbackResponse`
644
+ def QueryCallback(request)
645
+ body = send_request('QueryCallback', request.serialize)
646
+ response = JSON.parse(body)
647
+ if response['Response'].key?('Error') == false
648
+ model = QueryCallbackResponse.new
649
+ model.deserialize(response['Response'])
650
+ model
651
+ else
652
+ code = response['Response']['Error']['Code']
653
+ message = response['Response']['Error']['Message']
654
+ reqid = response['Response']['RequestId']
655
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
656
+ end
657
+ rescue TencentCloud::Common::TencentCloudSDKException => e
658
+ raise e
659
+ rescue StandardError => e
660
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
661
+ end
662
+
553
663
  # 更新自定义人物分类
554
664
 
555
665
  # 当L2Category为空时,代表更新CategoryId对应的一级自定义人物类型以及所有二级自定义人物类型所从属的一级自定义人物类型;
@@ -345,14 +345,20 @@ module TencentCloud
345
345
  # @type TaskName: String
346
346
  # @param UploadVideo: 是否上传转码后的视频,仅设置true时上传,默认为false
347
347
  # @type UploadVideo: Boolean
348
+ # @param Label: 自定义标签,可用于查询
349
+ # @type Label: String
350
+ # @param CallbackURL: 任务分析完成的回调地址,该设置优先级高于控制台全局的设置;
351
+ # @type CallbackURL: String
348
352
 
349
- attr_accessor :MediaId, :MediaPreknownInfo, :TaskName, :UploadVideo
353
+ attr_accessor :MediaId, :MediaPreknownInfo, :TaskName, :UploadVideo, :Label, :CallbackURL
350
354
 
351
- def initialize(mediaid=nil, mediapreknowninfo=nil, taskname=nil, uploadvideo=nil)
355
+ def initialize(mediaid=nil, mediapreknowninfo=nil, taskname=nil, uploadvideo=nil, label=nil, callbackurl=nil)
352
356
  @MediaId = mediaid
353
357
  @MediaPreknownInfo = mediapreknowninfo
354
358
  @TaskName = taskname
355
359
  @UploadVideo = uploadvideo
360
+ @Label = label
361
+ @CallbackURL = callbackurl
356
362
  end
357
363
 
358
364
  def deserialize(params)
@@ -363,6 +369,8 @@ module TencentCloud
363
369
  end
364
370
  @TaskName = params['TaskName']
365
371
  @UploadVideo = params['UploadVideo']
372
+ @Label = params['Label']
373
+ @CallbackURL = params['CallbackURL']
366
374
  end
367
375
  end
368
376
 
@@ -653,6 +661,38 @@ module TencentCloud
653
661
  end
654
662
  end
655
663
 
664
+ # DeleteTask请求参数结构体
665
+ class DeleteTaskRequest < TencentCloud::Common::AbstractModel
666
+ # @param TaskId: 任务Id
667
+ # @type TaskId: String
668
+
669
+ attr_accessor :TaskId
670
+
671
+ def initialize(taskid=nil)
672
+ @TaskId = taskid
673
+ end
674
+
675
+ def deserialize(params)
676
+ @TaskId = params['TaskId']
677
+ end
678
+ end
679
+
680
+ # DeleteTask返回参数结构体
681
+ class DeleteTaskResponse < TencentCloud::Common::AbstractModel
682
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
683
+ # @type RequestId: String
684
+
685
+ attr_accessor :RequestId
686
+
687
+ def initialize(requestid=nil)
688
+ @RequestId = requestid
689
+ end
690
+
691
+ def deserialize(params)
692
+ @RequestId = params['RequestId']
693
+ end
694
+ end
695
+
656
696
  # DescribeCustomCategories请求参数结构体
657
697
  class DescribeCustomCategoriesRequest < TencentCloud::Common::AbstractModel
658
698
 
@@ -1101,19 +1141,31 @@ module TencentCloud
1101
1141
  # @type MD5: String
1102
1142
  # @param Name: 待分析视频的名称,指定后可支持筛选,最多100个中文字符
1103
1143
  # @type Name: String
1144
+ # @param WriteBackCosPath: 当非本人外部视频地址导入时,该字段为转存的cos桶地址且不可为空; 示例:https://${Bucket}-${AppId}.cos.${Region}.myqcloud.com/${PathPrefix}/ (注意,cos路径需要以/分隔符结尾)
1145
+ # @type WriteBackCosPath: String
1146
+ # @param Label: 自定义标签,可用于查询
1147
+ # @type Label: String
1148
+ # @param CallbackURL: 媒资导入完成的回调地址,该设置优先级高于控制台全局的设置;
1149
+ # @type CallbackURL: String
1104
1150
 
1105
- attr_accessor :URL, :MD5, :Name
1151
+ attr_accessor :URL, :MD5, :Name, :WriteBackCosPath, :Label, :CallbackURL
1106
1152
 
1107
- def initialize(url=nil, md5=nil, name=nil)
1153
+ def initialize(url=nil, md5=nil, name=nil, writebackcospath=nil, label=nil, callbackurl=nil)
1108
1154
  @URL = url
1109
1155
  @MD5 = md5
1110
1156
  @Name = name
1157
+ @WriteBackCosPath = writebackcospath
1158
+ @Label = label
1159
+ @CallbackURL = callbackurl
1111
1160
  end
1112
1161
 
1113
1162
  def deserialize(params)
1114
1163
  @URL = params['URL']
1115
1164
  @MD5 = params['MD5']
1116
1165
  @Name = params['Name']
1166
+ @WriteBackCosPath = params['WriteBackCosPath']
1167
+ @Label = params['Label']
1168
+ @CallbackURL = params['CallbackURL']
1117
1169
  end
1118
1170
  end
1119
1171
 
@@ -1278,19 +1330,24 @@ module TencentCloud
1278
1330
  # @param MediaIdSet: 媒资ID数组
1279
1331
  # 注意:此字段可能返回 null,表示取不到有效值。
1280
1332
  # @type MediaIdSet: Array
1333
+ # @param LabelSet: 媒资自定义标签数组
1334
+ # 注意:此字段可能返回 null,表示取不到有效值。
1335
+ # @type LabelSet: Array
1281
1336
 
1282
- attr_accessor :MediaNameSet, :StatusSet, :MediaIdSet
1337
+ attr_accessor :MediaNameSet, :StatusSet, :MediaIdSet, :LabelSet
1283
1338
 
1284
- def initialize(medianameset=nil, statusset=nil, mediaidset=nil)
1339
+ def initialize(medianameset=nil, statusset=nil, mediaidset=nil, labelset=nil)
1285
1340
  @MediaNameSet = medianameset
1286
1341
  @StatusSet = statusset
1287
1342
  @MediaIdSet = mediaidset
1343
+ @LabelSet = labelset
1288
1344
  end
1289
1345
 
1290
1346
  def deserialize(params)
1291
1347
  @MediaNameSet = params['MediaNameSet']
1292
1348
  @StatusSet = params['StatusSet']
1293
1349
  @MediaIdSet = params['MediaIdSet']
1350
+ @LabelSet = params['LabelSet']
1294
1351
  end
1295
1352
  end
1296
1353
 
@@ -1331,10 +1388,13 @@ module TencentCloud
1331
1388
  # @param Progress: 导入视频进度,取值范围为[0,100]
1332
1389
  # 注意:此字段可能返回 null,表示取不到有效值。
1333
1390
  # @type Progress: Float
1391
+ # @param Label: 媒资自定义标签
1392
+ # 注意:此字段可能返回 null,表示取不到有效值。
1393
+ # @type Label: String
1334
1394
 
1335
- attr_accessor :MediaId, :Name, :DownLoadURL, :Status, :FailedReason, :Metadata, :Progress
1395
+ attr_accessor :MediaId, :Name, :DownLoadURL, :Status, :FailedReason, :Metadata, :Progress, :Label
1336
1396
 
1337
- def initialize(mediaid=nil, name=nil, downloadurl=nil, status=nil, failedreason=nil, metadata=nil, progress=nil)
1397
+ def initialize(mediaid=nil, name=nil, downloadurl=nil, status=nil, failedreason=nil, metadata=nil, progress=nil, label=nil)
1338
1398
  @MediaId = mediaid
1339
1399
  @Name = name
1340
1400
  @DownLoadURL = downloadurl
@@ -1342,6 +1402,7 @@ module TencentCloud
1342
1402
  @FailedReason = failedreason
1343
1403
  @Metadata = metadata
1344
1404
  @Progress = progress
1405
+ @Label = label
1345
1406
  end
1346
1407
 
1347
1408
  def deserialize(params)
@@ -1355,6 +1416,7 @@ module TencentCloud
1355
1416
  @Metadata.deserialize(params['Metadata'])
1356
1417
  end
1357
1418
  @Progress = params['Progress']
1419
+ @Label = params['Label']
1358
1420
  end
1359
1421
  end
1360
1422
 
@@ -1476,6 +1538,42 @@ module TencentCloud
1476
1538
  end
1477
1539
  end
1478
1540
 
1541
+ # ModifyCallback请求参数结构体
1542
+ class ModifyCallbackRequest < TencentCloud::Common::AbstractModel
1543
+ # @param TaskFinishNotifyURL: 任务分析完成后回调地址
1544
+ # @type TaskFinishNotifyURL: String
1545
+ # @param MediaFinishNotifyURL: 媒体导入完成后回调地址
1546
+ # @type MediaFinishNotifyURL: String
1547
+
1548
+ attr_accessor :TaskFinishNotifyURL, :MediaFinishNotifyURL
1549
+
1550
+ def initialize(taskfinishnotifyurl=nil, mediafinishnotifyurl=nil)
1551
+ @TaskFinishNotifyURL = taskfinishnotifyurl
1552
+ @MediaFinishNotifyURL = mediafinishnotifyurl
1553
+ end
1554
+
1555
+ def deserialize(params)
1556
+ @TaskFinishNotifyURL = params['TaskFinishNotifyURL']
1557
+ @MediaFinishNotifyURL = params['MediaFinishNotifyURL']
1558
+ end
1559
+ end
1560
+
1561
+ # ModifyCallback返回参数结构体
1562
+ class ModifyCallbackResponse < TencentCloud::Common::AbstractModel
1563
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1564
+ # @type RequestId: String
1565
+
1566
+ attr_accessor :RequestId
1567
+
1568
+ def initialize(requestid=nil)
1569
+ @RequestId = requestid
1570
+ end
1571
+
1572
+ def deserialize(params)
1573
+ @RequestId = params['RequestId']
1574
+ end
1575
+ end
1576
+
1479
1577
  # 标签信息结构体
1480
1578
 
1481
1579
  # 包含多级(最多三级)标签结果,以及这些标签在识别结果中的出现位置
@@ -1538,6 +1636,41 @@ module TencentCloud
1538
1636
  end
1539
1637
  end
1540
1638
 
1639
+ # QueryCallback请求参数结构体
1640
+ class QueryCallbackRequest < TencentCloud::Common::AbstractModel
1641
+
1642
+
1643
+ def initialize()
1644
+ end
1645
+
1646
+ def deserialize(params)
1647
+ end
1648
+ end
1649
+
1650
+ # QueryCallback返回参数结构体
1651
+ class QueryCallbackResponse < TencentCloud::Common::AbstractModel
1652
+ # @param TaskFinishNotifyURL: 任务分析完成后回调地址
1653
+ # @type TaskFinishNotifyURL: String
1654
+ # @param MediaFinishNotifyURL: 媒体导入完成后回调地址
1655
+ # @type MediaFinishNotifyURL: String
1656
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1657
+ # @type RequestId: String
1658
+
1659
+ attr_accessor :TaskFinishNotifyURL, :MediaFinishNotifyURL, :RequestId
1660
+
1661
+ def initialize(taskfinishnotifyurl=nil, mediafinishnotifyurl=nil, requestid=nil)
1662
+ @TaskFinishNotifyURL = taskfinishnotifyurl
1663
+ @MediaFinishNotifyURL = mediafinishnotifyurl
1664
+ @RequestId = requestid
1665
+ end
1666
+
1667
+ def deserialize(params)
1668
+ @TaskFinishNotifyURL = params['TaskFinishNotifyURL']
1669
+ @MediaFinishNotifyURL = params['MediaFinishNotifyURL']
1670
+ @RequestId = params['RequestId']
1671
+ end
1672
+ end
1673
+
1541
1674
  # 视频结构化结果
1542
1675
  class ShowInfo < TencentCloud::Common::AbstractModel
1543
1676
  # @param Date: 节目日期(只在新闻有效)
@@ -1676,10 +1809,12 @@ module TencentCloud
1676
1809
  # @type MediaLangSet: Array
1677
1810
  # @param MediaLabelSet: 媒资素材一级类型
1678
1811
  # @type MediaLabelSet: Array
1812
+ # @param LabelSet: 媒资自定义标签数组
1813
+ # @type LabelSet: Array
1679
1814
 
1680
- attr_accessor :MediaTypeSet, :TaskStatusSet, :TaskNameSet, :TaskIdSet, :MediaNameSet, :MediaLangSet, :MediaLabelSet
1815
+ attr_accessor :MediaTypeSet, :TaskStatusSet, :TaskNameSet, :TaskIdSet, :MediaNameSet, :MediaLangSet, :MediaLabelSet, :LabelSet
1681
1816
 
1682
- def initialize(mediatypeset=nil, taskstatusset=nil, tasknameset=nil, taskidset=nil, medianameset=nil, medialangset=nil, medialabelset=nil)
1817
+ def initialize(mediatypeset=nil, taskstatusset=nil, tasknameset=nil, taskidset=nil, medianameset=nil, medialangset=nil, medialabelset=nil, labelset=nil)
1683
1818
  @MediaTypeSet = mediatypeset
1684
1819
  @TaskStatusSet = taskstatusset
1685
1820
  @TaskNameSet = tasknameset
@@ -1687,6 +1822,7 @@ module TencentCloud
1687
1822
  @MediaNameSet = medianameset
1688
1823
  @MediaLangSet = medialangset
1689
1824
  @MediaLabelSet = medialabelset
1825
+ @LabelSet = labelset
1690
1826
  end
1691
1827
 
1692
1828
  def deserialize(params)
@@ -1697,6 +1833,7 @@ module TencentCloud
1697
1833
  @MediaNameSet = params['MediaNameSet']
1698
1834
  @MediaLangSet = params['MediaLangSet']
1699
1835
  @MediaLabelSet = params['MediaLabelSet']
1836
+ @LabelSet = params['LabelSet']
1700
1837
  end
1701
1838
  end
1702
1839
 
@@ -1745,10 +1882,13 @@ module TencentCloud
1745
1882
  # @param MediaName: 媒资文件名称
1746
1883
  # 注意:此字段可能返回 null,表示取不到有效值。
1747
1884
  # @type MediaName: String
1885
+ # @param Label: 媒资自定义标签
1886
+ # 注意:此字段可能返回 null,表示取不到有效值。
1887
+ # @type Label: String
1748
1888
 
1749
- attr_accessor :TaskId, :TaskName, :MediaId, :TaskStatus, :TaskProgress, :TaskTimeCost, :TaskCreateTime, :TaskStartTime, :FailedReason, :MediaPreknownInfo, :MediaName
1889
+ attr_accessor :TaskId, :TaskName, :MediaId, :TaskStatus, :TaskProgress, :TaskTimeCost, :TaskCreateTime, :TaskStartTime, :FailedReason, :MediaPreknownInfo, :MediaName, :Label
1750
1890
 
1751
- def initialize(taskid=nil, taskname=nil, mediaid=nil, taskstatus=nil, taskprogress=nil, tasktimecost=nil, taskcreatetime=nil, taskstarttime=nil, failedreason=nil, mediapreknowninfo=nil, medianame=nil)
1891
+ def initialize(taskid=nil, taskname=nil, mediaid=nil, taskstatus=nil, taskprogress=nil, tasktimecost=nil, taskcreatetime=nil, taskstarttime=nil, failedreason=nil, mediapreknowninfo=nil, medianame=nil, label=nil)
1752
1892
  @TaskId = taskid
1753
1893
  @TaskName = taskname
1754
1894
  @MediaId = mediaid
@@ -1760,6 +1900,7 @@ module TencentCloud
1760
1900
  @FailedReason = failedreason
1761
1901
  @MediaPreknownInfo = mediapreknowninfo
1762
1902
  @MediaName = medianame
1903
+ @Label = label
1763
1904
  end
1764
1905
 
1765
1906
  def deserialize(params)
@@ -1777,6 +1918,7 @@ module TencentCloud
1777
1918
  @MediaPreknownInfo.deserialize(params['MediaPreknownInfo'])
1778
1919
  end
1779
1920
  @MediaName = params['MediaName']
1921
+ @Label = params['Label']
1780
1922
  end
1781
1923
  end
1782
1924
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-ivld
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.268
4
+ version: 1.0.269
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-02 00:00:00.000000000 Z
11
+ date: 2022-03-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common