tencentcloud-sdk-tcss 3.0.434 → 3.0.435

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: 4383edf341140702b9f5e1a5df93c3633450f0b4
4
- data.tar.gz: 7f166cfe87f0d7ea535e4500a6271c7fac445f09
3
+ metadata.gz: 38fffeb73eb89832d888a13df4dd66adce5cb699
4
+ data.tar.gz: b45641b080bb3967adc4cc39b0d88dbf2fbaf1fa
5
5
  SHA512:
6
- metadata.gz: 4d246b928b7eda1fa81147b0d5444f9f806ebed72bf98fa9c9ae4d28afb19c7832692a0419a149f56e337f650cb9060fb72695f3b1c34fb7189f2d6be16d93fc
7
- data.tar.gz: 3c9d195cf00eaf629731935a4bb1617795985e850a5622dbde299f2c609dea8faa5d597fe991c35d09246411d974f82adc806e1adaf3d4edffac6f8302626db4
6
+ metadata.gz: 6c2d63e16df8fd69ba1e380c4f037e455f980fb59e590c2051ea4645111fe6d90f47f474daa9976d0713b2f9036c4b1aeacec608edca132822822484384e31f2
7
+ data.tar.gz: 40a0018eae489a234e11f6bd41b79ab7c8105ac7be88932442c51252cc5d64cf24705c74b5a283e970bea2219771b975c728a855f3ad8ce5686a896ded56c3b6
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.434
1
+ 3.0.435
@@ -3752,6 +3752,54 @@ module TencentCloud
3752
3752
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3753
3753
  end
3754
3754
 
3755
+ # 查询导出任务下载URL
3756
+
3757
+ # @param request: Request instance for DescribeExportJobDownloadURL.
3758
+ # @type request: :class:`Tencentcloud::tcss::V20201101::DescribeExportJobDownloadURLRequest`
3759
+ # @rtype: :class:`Tencentcloud::tcss::V20201101::DescribeExportJobDownloadURLResponse`
3760
+ def DescribeExportJobDownloadURL(request)
3761
+ body = send_request('DescribeExportJobDownloadURL', request.serialize)
3762
+ response = JSON.parse(body)
3763
+ if response['Response'].key?('Error') == false
3764
+ model = DescribeExportJobDownloadURLResponse.new
3765
+ model.deserialize(response['Response'])
3766
+ model
3767
+ else
3768
+ code = response['Response']['Error']['Code']
3769
+ message = response['Response']['Error']['Message']
3770
+ reqid = response['Response']['RequestId']
3771
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
3772
+ end
3773
+ rescue TencentCloud::Common::TencentCloudSDKException => e
3774
+ raise e
3775
+ rescue StandardError => e
3776
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3777
+ end
3778
+
3779
+ # 查询导出任务管理列表
3780
+
3781
+ # @param request: Request instance for DescribeExportJobManageList.
3782
+ # @type request: :class:`Tencentcloud::tcss::V20201101::DescribeExportJobManageListRequest`
3783
+ # @rtype: :class:`Tencentcloud::tcss::V20201101::DescribeExportJobManageListResponse`
3784
+ def DescribeExportJobManageList(request)
3785
+ body = send_request('DescribeExportJobManageList', request.serialize)
3786
+ response = JSON.parse(body)
3787
+ if response['Response'].key?('Error') == false
3788
+ model = DescribeExportJobManageListResponse.new
3789
+ model.deserialize(response['Response'])
3790
+ model
3791
+ else
3792
+ code = response['Response']['Error']['Code']
3793
+ message = response['Response']['Error']['Message']
3794
+ reqid = response['Response']['RequestId']
3795
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
3796
+ end
3797
+ rescue TencentCloud::Common::TencentCloudSDKException => e
3798
+ raise e
3799
+ rescue StandardError => e
3800
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3801
+ end
3802
+
3755
3803
  # 查询导出任务的结果
3756
3804
 
3757
3805
  # @param request: Request instance for DescribeExportJobResult.
@@ -3033,10 +3033,13 @@ module TencentCloud
3033
3033
  # @type FixSuggestion: String
3034
3034
  # @param BenchmarkStandardId: 所属的合规标准的ID
3035
3035
  # @type BenchmarkStandardId: Integer
3036
+ # @param ApplicableVersion: 检测项适用的版本
3037
+ # 注意:此字段可能返回 null,表示取不到有效值。
3038
+ # @type ApplicableVersion: String
3036
3039
 
3037
- attr_accessor :CustomerPolicyItemId, :BasePolicyItemId, :Name, :Category, :BenchmarkStandardName, :RiskLevel, :AssetType, :LastCheckTime, :CheckStatus, :CheckResult, :PassedAssetCount, :FailedAssetCount, :WhitelistId, :FixSuggestion, :BenchmarkStandardId
3040
+ attr_accessor :CustomerPolicyItemId, :BasePolicyItemId, :Name, :Category, :BenchmarkStandardName, :RiskLevel, :AssetType, :LastCheckTime, :CheckStatus, :CheckResult, :PassedAssetCount, :FailedAssetCount, :WhitelistId, :FixSuggestion, :BenchmarkStandardId, :ApplicableVersion
3038
3041
 
3039
- def initialize(customerpolicyitemid=nil, basepolicyitemid=nil, name=nil, category=nil, benchmarkstandardname=nil, risklevel=nil, assettype=nil, lastchecktime=nil, checkstatus=nil, checkresult=nil, passedassetcount=nil, failedassetcount=nil, whitelistid=nil, fixsuggestion=nil, benchmarkstandardid=nil)
3042
+ def initialize(customerpolicyitemid=nil, basepolicyitemid=nil, name=nil, category=nil, benchmarkstandardname=nil, risklevel=nil, assettype=nil, lastchecktime=nil, checkstatus=nil, checkresult=nil, passedassetcount=nil, failedassetcount=nil, whitelistid=nil, fixsuggestion=nil, benchmarkstandardid=nil, applicableversion=nil)
3040
3043
  @CustomerPolicyItemId = customerpolicyitemid
3041
3044
  @BasePolicyItemId = basepolicyitemid
3042
3045
  @Name = name
@@ -3052,6 +3055,7 @@ module TencentCloud
3052
3055
  @WhitelistId = whitelistid
3053
3056
  @FixSuggestion = fixsuggestion
3054
3057
  @BenchmarkStandardId = benchmarkstandardid
3058
+ @ApplicableVersion = applicableversion
3055
3059
  end
3056
3060
 
3057
3061
  def deserialize(params)
@@ -3070,6 +3074,7 @@ module TencentCloud
3070
3074
  @WhitelistId = params['WhitelistId']
3071
3075
  @FixSuggestion = params['FixSuggestion']
3072
3076
  @BenchmarkStandardId = params['BenchmarkStandardId']
3077
+ @ApplicableVersion = params['ApplicableVersion']
3073
3078
  end
3074
3079
  end
3075
3080
 
@@ -4328,8 +4333,6 @@ module TencentCloud
4328
4333
 
4329
4334
  # CreateImageExportJob请求参数结构体
4330
4335
  class CreateImageExportJobRequest < TencentCloud::Common::AbstractModel
4331
- # @param ExportField: 导出字段
4332
- # @type ExportField: Array
4333
4336
  # @param Filters: 过滤条件。
4334
4337
  # <li>ImageName- String - 是否必填:否 - 镜像名称筛选,</li>
4335
4338
  # <li>ScanStatus - String - 是否必填:否 - 镜像扫描状态notScan,scanning,scanned,scanErr</li>
@@ -4344,20 +4347,21 @@ module TencentCloud
4344
4347
  # @type By: String
4345
4348
  # @param Order: 排序方式 asc,desc
4346
4349
  # @type Order: String
4350
+ # @param ExportField: 导出字段
4351
+ # @type ExportField: Array
4347
4352
 
4348
- attr_accessor :ExportField, :Filters, :Offset, :Limit, :By, :Order
4353
+ attr_accessor :Filters, :Offset, :Limit, :By, :Order, :ExportField
4349
4354
 
4350
- def initialize(exportfield=nil, filters=nil, offset=nil, limit=nil, by=nil, order=nil)
4351
- @ExportField = exportfield
4355
+ def initialize(filters=nil, offset=nil, limit=nil, by=nil, order=nil, exportfield=nil)
4352
4356
  @Filters = filters
4353
4357
  @Offset = offset
4354
4358
  @Limit = limit
4355
4359
  @By = by
4356
4360
  @Order = order
4361
+ @ExportField = exportfield
4357
4362
  end
4358
4363
 
4359
4364
  def deserialize(params)
4360
- @ExportField = params['ExportField']
4361
4365
  unless params['Filters'].nil?
4362
4366
  @Filters = []
4363
4367
  params['Filters'].each do |i|
@@ -4370,6 +4374,7 @@ module TencentCloud
4370
4374
  @Limit = params['Limit']
4371
4375
  @By = params['By']
4372
4376
  @Order = params['Order']
4377
+ @ExportField = params['ExportField']
4373
4378
  end
4374
4379
  end
4375
4380
 
@@ -11848,6 +11853,116 @@ module TencentCloud
11848
11853
  end
11849
11854
  end
11850
11855
 
11856
+ # DescribeExportJobDownloadURL请求参数结构体
11857
+ class DescribeExportJobDownloadURLRequest < TencentCloud::Common::AbstractModel
11858
+ # @param JobID: 任务ID
11859
+ # @type JobID: String
11860
+
11861
+ attr_accessor :JobID
11862
+
11863
+ def initialize(jobid=nil)
11864
+ @JobID = jobid
11865
+ end
11866
+
11867
+ def deserialize(params)
11868
+ @JobID = params['JobID']
11869
+ end
11870
+ end
11871
+
11872
+ # DescribeExportJobDownloadURL返回参数结构体
11873
+ class DescribeExportJobDownloadURLResponse < TencentCloud::Common::AbstractModel
11874
+ # @param DownloadURL: 下载链接
11875
+ # @type DownloadURL: String
11876
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
11877
+ # @type RequestId: String
11878
+
11879
+ attr_accessor :DownloadURL, :RequestId
11880
+
11881
+ def initialize(downloadurl=nil, requestid=nil)
11882
+ @DownloadURL = downloadurl
11883
+ @RequestId = requestid
11884
+ end
11885
+
11886
+ def deserialize(params)
11887
+ @DownloadURL = params['DownloadURL']
11888
+ @RequestId = params['RequestId']
11889
+ end
11890
+ end
11891
+
11892
+ # DescribeExportJobManageList请求参数结构体
11893
+ class DescribeExportJobManageListRequest < TencentCloud::Common::AbstractModel
11894
+ # @param Filters: 过滤条件。
11895
+ # <li>ExportStatus- string -是否必填: 否 - 导出状态 RUNNING: 导出中 SUCCESS:导出完成 FAILURE:失败
11896
+ # <li>ExportSource- string -是否必填: 否 - 导出来源 LocalImage: 本地镜像
11897
+ # </li>
11898
+ # @type Filters: Array
11899
+ # @param Offset: 偏移量,默认为0。
11900
+ # @type Offset: Integer
11901
+ # @param Limit: 需要返回的数量,默认为10,最大值为100
11902
+ # @type Limit: Integer
11903
+ # @param Order: 排序方式
11904
+ # @type Order: String
11905
+ # @param By: 排序字段
11906
+ # InsertTime: 创建时间
11907
+ # @type By: String
11908
+
11909
+ attr_accessor :Filters, :Offset, :Limit, :Order, :By
11910
+
11911
+ def initialize(filters=nil, offset=nil, limit=nil, order=nil, by=nil)
11912
+ @Filters = filters
11913
+ @Offset = offset
11914
+ @Limit = limit
11915
+ @Order = order
11916
+ @By = by
11917
+ end
11918
+
11919
+ def deserialize(params)
11920
+ unless params['Filters'].nil?
11921
+ @Filters = []
11922
+ params['Filters'].each do |i|
11923
+ runtimefilters_tmp = RunTimeFilters.new
11924
+ runtimefilters_tmp.deserialize(i)
11925
+ @Filters << runtimefilters_tmp
11926
+ end
11927
+ end
11928
+ @Offset = params['Offset']
11929
+ @Limit = params['Limit']
11930
+ @Order = params['Order']
11931
+ @By = params['By']
11932
+ end
11933
+ end
11934
+
11935
+ # DescribeExportJobManageList返回参数结构体
11936
+ class DescribeExportJobManageListResponse < TencentCloud::Common::AbstractModel
11937
+ # @param TotalCount: 总数
11938
+ # @type TotalCount: Integer
11939
+ # @param List: 任务列表
11940
+ # @type List: Array
11941
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
11942
+ # @type RequestId: String
11943
+
11944
+ attr_accessor :TotalCount, :List, :RequestId
11945
+
11946
+ def initialize(totalcount=nil, list=nil, requestid=nil)
11947
+ @TotalCount = totalcount
11948
+ @List = list
11949
+ @RequestId = requestid
11950
+ end
11951
+
11952
+ def deserialize(params)
11953
+ @TotalCount = params['TotalCount']
11954
+ unless params['List'].nil?
11955
+ @List = []
11956
+ params['List'].each do |i|
11957
+ exportjobinfo_tmp = ExportJobInfo.new
11958
+ exportjobinfo_tmp.deserialize(i)
11959
+ @List << exportjobinfo_tmp
11960
+ end
11961
+ end
11962
+ @RequestId = params['RequestId']
11963
+ end
11964
+ end
11965
+
11851
11966
  # DescribeExportJobResult请求参数结构体
11852
11967
  class DescribeExportJobResultRequest < TencentCloud::Common::AbstractModel
11853
11968
  # @param JobId: CreateExportComplianceStatusListJob返回的JobId字段的值
@@ -14850,12 +14965,17 @@ module TencentCloud
14850
14965
 
14851
14966
  # DescribeSecLogDeliveryKafkaOptions请求参数结构体
14852
14967
  class DescribeSecLogDeliveryKafkaOptionsRequest < TencentCloud::Common::AbstractModel
14968
+ # @param RegionID: 地域,若为空则返回所有可选地域
14969
+ # @type RegionID: String
14853
14970
 
14971
+ attr_accessor :RegionID
14854
14972
 
14855
- def initialize()
14973
+ def initialize(regionid=nil)
14974
+ @RegionID = regionid
14856
14975
  end
14857
14976
 
14858
14977
  def deserialize(params)
14978
+ @RegionID = params['RegionID']
14859
14979
  end
14860
14980
  end
14861
14981
 
@@ -14863,13 +14983,16 @@ module TencentCloud
14863
14983
  class DescribeSecLogDeliveryKafkaOptionsResponse < TencentCloud::Common::AbstractModel
14864
14984
  # @param InstanceList: 实例列表
14865
14985
  # @type InstanceList: Array
14986
+ # @param RegionList: 地域列表
14987
+ # @type RegionList: Array
14866
14988
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
14867
14989
  # @type RequestId: String
14868
14990
 
14869
- attr_accessor :InstanceList, :RequestId
14991
+ attr_accessor :InstanceList, :RegionList, :RequestId
14870
14992
 
14871
- def initialize(instancelist=nil, requestid=nil)
14993
+ def initialize(instancelist=nil, regionlist=nil, requestid=nil)
14872
14994
  @InstanceList = instancelist
14995
+ @RegionList = regionlist
14873
14996
  @RequestId = requestid
14874
14997
  end
14875
14998
 
@@ -14882,6 +15005,14 @@ module TencentCloud
14882
15005
  @InstanceList << ckafkainstanceinfo_tmp
14883
15006
  end
14884
15007
  end
15008
+ unless params['RegionList'].nil?
15009
+ @RegionList = []
15010
+ params['RegionList'].each do |i|
15011
+ regioninfo_tmp = RegionInfo.new
15012
+ regioninfo_tmp.deserialize(i)
15013
+ @RegionList << regioninfo_tmp
15014
+ end
15015
+ end
14885
15016
  @RequestId = params['RequestId']
14886
15017
  end
14887
15018
  end
@@ -14914,17 +15045,21 @@ module TencentCloud
14914
15045
  # @param User: 用户名
14915
15046
  # 注意:此字段可能返回 null,表示取不到有效值。
14916
15047
  # @type User: String
15048
+ # @param RegionID: 地域ID
15049
+ # 注意:此字段可能返回 null,表示取不到有效值。
15050
+ # @type RegionID: String
14917
15051
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
14918
15052
  # @type RequestId: String
14919
15053
 
14920
- attr_accessor :InstanceID, :InstanceName, :Domain, :LogTypeList, :User, :RequestId
15054
+ attr_accessor :InstanceID, :InstanceName, :Domain, :LogTypeList, :User, :RegionID, :RequestId
14921
15055
 
14922
- def initialize(instanceid=nil, instancename=nil, domain=nil, logtypelist=nil, user=nil, requestid=nil)
15056
+ def initialize(instanceid=nil, instancename=nil, domain=nil, logtypelist=nil, user=nil, regionid=nil, requestid=nil)
14923
15057
  @InstanceID = instanceid
14924
15058
  @InstanceName = instancename
14925
15059
  @Domain = domain
14926
15060
  @LogTypeList = logtypelist
14927
15061
  @User = user
15062
+ @RegionID = regionid
14928
15063
  @RequestId = requestid
14929
15064
  end
14930
15065
 
@@ -14941,6 +15076,7 @@ module TencentCloud
14941
15076
  end
14942
15077
  end
14943
15078
  @User = params['User']
15079
+ @RegionID = params['RegionID']
14944
15080
  @RequestId = params['RequestId']
14945
15081
  end
14946
15082
  end
@@ -18494,6 +18630,50 @@ module TencentCloud
18494
18630
  end
18495
18631
  end
18496
18632
 
18633
+ # 导出任务详情
18634
+ class ExportJobInfo < TencentCloud::Common::AbstractModel
18635
+ # @param JobID: 任务ID
18636
+ # @type JobID: String
18637
+ # @param JobName: 任务名称
18638
+ # @type JobName: String
18639
+ # @param Source: 来源
18640
+ # @type Source: String
18641
+ # @param ExportStatus: 导出状态
18642
+ # @type ExportStatus: String
18643
+ # @param ExportProgress: 导出进度
18644
+ # @type ExportProgress: Integer
18645
+ # @param FailureMsg: 失败原因
18646
+ # @type FailureMsg: String
18647
+ # @param Timeout: 超时时间
18648
+ # @type Timeout: String
18649
+ # @param InsertTime: 插入时间
18650
+ # @type InsertTime: String
18651
+
18652
+ attr_accessor :JobID, :JobName, :Source, :ExportStatus, :ExportProgress, :FailureMsg, :Timeout, :InsertTime
18653
+
18654
+ def initialize(jobid=nil, jobname=nil, source=nil, exportstatus=nil, exportprogress=nil, failuremsg=nil, timeout=nil, inserttime=nil)
18655
+ @JobID = jobid
18656
+ @JobName = jobname
18657
+ @Source = source
18658
+ @ExportStatus = exportstatus
18659
+ @ExportProgress = exportprogress
18660
+ @FailureMsg = failuremsg
18661
+ @Timeout = timeout
18662
+ @InsertTime = inserttime
18663
+ end
18664
+
18665
+ def deserialize(params)
18666
+ @JobID = params['JobID']
18667
+ @JobName = params['JobName']
18668
+ @Source = params['Source']
18669
+ @ExportStatus = params['ExportStatus']
18670
+ @ExportProgress = params['ExportProgress']
18671
+ @FailureMsg = params['FailureMsg']
18672
+ @Timeout = params['Timeout']
18673
+ @InsertTime = params['InsertTime']
18674
+ end
18675
+ end
18676
+
18497
18677
  # ExportVirusList请求参数结构体
18498
18678
  class ExportVirusListRequest < TencentCloud::Common::AbstractModel
18499
18679
  # @param Filters: 过滤条件。
@@ -18577,16 +18757,22 @@ module TencentCloud
18577
18757
  # @type FileCreateTime: String
18578
18758
  # @param LatestTamperedFileMTime: 最近被篡改文件创建时间
18579
18759
  # @type LatestTamperedFileMTime: String
18760
+ # @param NewFile: 新文件内容
18761
+ # @type NewFile: String
18762
+ # @param FileDiff: 新旧文件的差异
18763
+ # @type FileDiff: String
18580
18764
 
18581
- attr_accessor :FileName, :FileType, :FileSize, :FilePath, :FileCreateTime, :LatestTamperedFileMTime
18765
+ attr_accessor :FileName, :FileType, :FileSize, :FilePath, :FileCreateTime, :LatestTamperedFileMTime, :NewFile, :FileDiff
18582
18766
 
18583
- def initialize(filename=nil, filetype=nil, filesize=nil, filepath=nil, filecreatetime=nil, latesttamperedfilemtime=nil)
18767
+ def initialize(filename=nil, filetype=nil, filesize=nil, filepath=nil, filecreatetime=nil, latesttamperedfilemtime=nil, newfile=nil, filediff=nil)
18584
18768
  @FileName = filename
18585
18769
  @FileType = filetype
18586
18770
  @FileSize = filesize
18587
18771
  @FilePath = filepath
18588
18772
  @FileCreateTime = filecreatetime
18589
18773
  @LatestTamperedFileMTime = latesttamperedfilemtime
18774
+ @NewFile = newfile
18775
+ @FileDiff = filediff
18590
18776
  end
18591
18777
 
18592
18778
  def deserialize(params)
@@ -18596,6 +18782,8 @@ module TencentCloud
18596
18782
  @FilePath = params['FilePath']
18597
18783
  @FileCreateTime = params['FileCreateTime']
18598
18784
  @LatestTamperedFileMTime = params['LatestTamperedFileMTime']
18785
+ @NewFile = params['NewFile']
18786
+ @FileDiff = params['FileDiff']
18599
18787
  end
18600
18788
  end
18601
18789
 
@@ -20602,10 +20790,12 @@ module TencentCloud
20602
20790
  # @type AccessType: Integer
20603
20791
  # @param KafkaVersion: kafka版本号
20604
20792
  # @type KafkaVersion: String
20793
+ # @param RegionID: 地域ID
20794
+ # @type RegionID: String
20605
20795
 
20606
- attr_accessor :InstanceID, :InstanceName, :Domain, :User, :Password, :LogTypeList, :AccessType, :KafkaVersion
20796
+ attr_accessor :InstanceID, :InstanceName, :Domain, :User, :Password, :LogTypeList, :AccessType, :KafkaVersion, :RegionID
20607
20797
 
20608
- def initialize(instanceid=nil, instancename=nil, domain=nil, user=nil, password=nil, logtypelist=nil, accesstype=nil, kafkaversion=nil)
20798
+ def initialize(instanceid=nil, instancename=nil, domain=nil, user=nil, password=nil, logtypelist=nil, accesstype=nil, kafkaversion=nil, regionid=nil)
20609
20799
  @InstanceID = instanceid
20610
20800
  @InstanceName = instancename
20611
20801
  @Domain = domain
@@ -20614,6 +20804,7 @@ module TencentCloud
20614
20804
  @LogTypeList = logtypelist
20615
20805
  @AccessType = accesstype
20616
20806
  @KafkaVersion = kafkaversion
20807
+ @RegionID = regionid
20617
20808
  end
20618
20809
 
20619
20810
  def deserialize(params)
@@ -20632,6 +20823,7 @@ module TencentCloud
20632
20823
  end
20633
20824
  @AccessType = params['AccessType']
20634
20825
  @KafkaVersion = params['KafkaVersion']
20826
+ @RegionID = params['RegionID']
20635
20827
  end
20636
20828
  end
20637
20829
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tcss
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.434
4
+ version: 3.0.435
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-10-24 00:00:00.000000000 Z
11
+ date: 2022-10-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common