tencentcloud-sdk-wedata 3.0.995 → 3.0.997

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: 8ffd272536b10f29587ef337d31c5bb0450da8b8
4
- data.tar.gz: 1cb71e2e1fea30fa17a5890099d49ea914924822
3
+ metadata.gz: 8da12b23cd05c65b56367e983631a73692ef9392
4
+ data.tar.gz: 4fbfb50e3a5129f793ef4a150ed29dc732ff12da
5
5
  SHA512:
6
- metadata.gz: 9b228119f333fb1e46e2d862391708b8e13e9fd3ad05151fd78415e0a8a6c0e618f1b05521173b3312ee69121210125deaa0e1a1d25c8d1529d89b4a7bad5ddf
7
- data.tar.gz: e8fe428de7f459104b7d184e57cfeb066664315f857c56d7cf575db780b425ceaf282b1232307f19bd914b353f011cfdd92c41f6d9b876ff520c17d63e02ccd0
6
+ metadata.gz: 1070433cbc4d00298f0ffff9a4fc83132a6b126c574e3f7f01fe469cf76d86e39bab5776d64a60fd94e5287b070676480fe5780ae44291342314530368e38ccc
7
+ data.tar.gz: 9fbed353f462fbd22440034ce734130dda226744c41afee89657dc6beda58ac477c7c16b485e3b36c4ab24f261d56b740ffbb3d553ed1046b8243d204bf9a106
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.995
1
+ 3.0.997
@@ -2285,6 +2285,30 @@ module TencentCloud
2285
2285
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2286
2286
  end
2287
2287
 
2288
+ # 实例详情页,返回某个实例所有生命周期信息
2289
+
2290
+ # @param request: Request instance for DescribeInstanceDetailInfo.
2291
+ # @type request: :class:`Tencentcloud::wedata::V20210820::DescribeInstanceDetailInfoRequest`
2292
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeInstanceDetailInfoResponse`
2293
+ def DescribeInstanceDetailInfo(request)
2294
+ body = send_request('DescribeInstanceDetailInfo', request.serialize)
2295
+ response = JSON.parse(body)
2296
+ if response['Response'].key?('Error') == false
2297
+ model = DescribeInstanceDetailInfoResponse.new
2298
+ model.deserialize(response['Response'])
2299
+ model
2300
+ else
2301
+ code = response['Response']['Error']['Code']
2302
+ message = response['Response']['Error']['Message']
2303
+ reqid = response['Response']['RequestId']
2304
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2305
+ end
2306
+ rescue TencentCloud::Common::TencentCloudSDKException => e
2307
+ raise e
2308
+ rescue StandardError => e
2309
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2310
+ end
2311
+
2288
2312
  # 日志获取详情页面
2289
2313
 
2290
2314
  # @param request: Request instance for DescribeInstanceLastLog.
@@ -2272,8 +2272,8 @@ module TencentCloud
2272
2272
 
2273
2273
  attr_accessor :ProjectId, :AlarmRegularName, :TaskId, :Id, :TaskType, :MonitorType
2274
2274
  extend Gem::Deprecate
2275
- deprecate :TaskId, :none, 2025, 1
2276
- deprecate :TaskId=, :none, 2025, 1
2275
+ deprecate :TaskId, :none, 2025, 2
2276
+ deprecate :TaskId=, :none, 2025, 2
2277
2277
 
2278
2278
  def initialize(projectid=nil, alarmregularname=nil, taskid=nil, id=nil, tasktype=nil, monitortype=nil)
2279
2279
  @ProjectId = projectid
@@ -3528,6 +3528,28 @@ module TencentCloud
3528
3528
  end
3529
3529
  end
3530
3530
 
3531
+ # 是否支持creat 或ddl
3532
+ class CreateAndDDLSupport < TencentCloud::Common::AbstractModel
3533
+ # @param SupportSelect: 是否支持select
3534
+ # 注意:此字段可能返回 null,表示取不到有效值。
3535
+ # @type SupportSelect: Boolean
3536
+ # @param SupportDdl: 是否支持ddl
3537
+ # 注意:此字段可能返回 null,表示取不到有效值。
3538
+ # @type SupportDdl: Boolean
3539
+
3540
+ attr_accessor :SupportSelect, :SupportDdl
3541
+
3542
+ def initialize(supportselect=nil, supportddl=nil)
3543
+ @SupportSelect = supportselect
3544
+ @SupportDdl = supportddl
3545
+ end
3546
+
3547
+ def deserialize(params)
3548
+ @SupportSelect = params['SupportSelect']
3549
+ @SupportDdl = params['SupportDdl']
3550
+ end
3551
+ end
3552
+
3531
3553
  # CreateCustomFunction请求参数结构体
3532
3554
  class CreateCustomFunctionRequest < TencentCloud::Common::AbstractModel
3533
3555
  # @param Type: 枚举值:HIVE、SPARK、DLC
@@ -5583,10 +5605,16 @@ module TencentCloud
5583
5605
  # @param ClusterName: 引擎名称
5584
5606
  # 注意:此字段可能返回 null,表示取不到有效值。
5585
5607
  # @type ClusterName: String
5608
+ # @param ModifiedTimeByTables: 库下表的最新更新时间
5609
+ # 注意:此字段可能返回 null,表示取不到有效值。
5610
+ # @type ModifiedTimeByTables: Integer
5611
+ # @param LastAccessTimeByTables: 库下表的最新访问时间
5612
+ # 注意:此字段可能返回 null,表示取不到有效值。
5613
+ # @type LastAccessTimeByTables: Integer
5586
5614
 
5587
- attr_accessor :ProjectId, :MetastoreType, :DatasourceName, :DatasourceId, :ProjectName, :Category, :Description, :Instance, :Region, :Status, :DatabaseName, :ProjectDisplayName, :OwnerAccountName, :DisplayName, :DatabaseId, :Catalog, :StorageSize, :StorageSizeWithUnit, :CreateTime, :TableCount, :DatasourceList, :CollectJobId, :CollectJobName, :ClusterId, :ClusterName
5615
+ attr_accessor :ProjectId, :MetastoreType, :DatasourceName, :DatasourceId, :ProjectName, :Category, :Description, :Instance, :Region, :Status, :DatabaseName, :ProjectDisplayName, :OwnerAccountName, :DisplayName, :DatabaseId, :Catalog, :StorageSize, :StorageSizeWithUnit, :CreateTime, :TableCount, :DatasourceList, :CollectJobId, :CollectJobName, :ClusterId, :ClusterName, :ModifiedTimeByTables, :LastAccessTimeByTables
5588
5616
 
5589
- def initialize(projectid=nil, metastoretype=nil, datasourcename=nil, datasourceid=nil, projectname=nil, category=nil, description=nil, instance=nil, region=nil, status=nil, databasename=nil, projectdisplayname=nil, owneraccountname=nil, displayname=nil, databaseid=nil, catalog=nil, storagesize=nil, storagesizewithunit=nil, createtime=nil, tablecount=nil, datasourcelist=nil, collectjobid=nil, collectjobname=nil, clusterid=nil, clustername=nil)
5617
+ def initialize(projectid=nil, metastoretype=nil, datasourcename=nil, datasourceid=nil, projectname=nil, category=nil, description=nil, instance=nil, region=nil, status=nil, databasename=nil, projectdisplayname=nil, owneraccountname=nil, displayname=nil, databaseid=nil, catalog=nil, storagesize=nil, storagesizewithunit=nil, createtime=nil, tablecount=nil, datasourcelist=nil, collectjobid=nil, collectjobname=nil, clusterid=nil, clustername=nil, modifiedtimebytables=nil, lastaccesstimebytables=nil)
5590
5618
  @ProjectId = projectid
5591
5619
  @MetastoreType = metastoretype
5592
5620
  @DatasourceName = datasourcename
@@ -5612,6 +5640,8 @@ module TencentCloud
5612
5640
  @CollectJobName = collectjobname
5613
5641
  @ClusterId = clusterid
5614
5642
  @ClusterName = clustername
5643
+ @ModifiedTimeByTables = modifiedtimebytables
5644
+ @LastAccessTimeByTables = lastaccesstimebytables
5615
5645
  end
5616
5646
 
5617
5647
  def deserialize(params)
@@ -5647,6 +5677,8 @@ module TencentCloud
5647
5677
  @CollectJobName = params['CollectJobName']
5648
5678
  @ClusterId = params['ClusterId']
5649
5679
  @ClusterName = params['ClusterName']
5680
+ @ModifiedTimeByTables = params['ModifiedTimeByTables']
5681
+ @LastAccessTimeByTables = params['LastAccessTimeByTables']
5650
5682
  end
5651
5683
  end
5652
5684
 
@@ -8750,12 +8782,12 @@ module TencentCloud
8750
8782
 
8751
8783
  attr_accessor :ProjectId, :Category, :PageNumber, :PageSize, :EventName, :EventType, :EventSubType, :EventBroadcastType, :Status, :CreationTimeStart, :CreationTimeEnd, :EventTriggeredTimeStart, :EventTriggeredTimeEnd, :LogTimeStart, :LogTimeEnd, :Dimension, :TimeToLive, :SortItem, :SortType
8752
8784
  extend Gem::Deprecate
8753
- deprecate :EventType, :none, 2025, 1
8754
- deprecate :EventType=, :none, 2025, 1
8755
- deprecate :EventBroadcastType, :none, 2025, 1
8756
- deprecate :EventBroadcastType=, :none, 2025, 1
8757
- deprecate :Status, :none, 2025, 1
8758
- deprecate :Status=, :none, 2025, 1
8785
+ deprecate :EventType, :none, 2025, 2
8786
+ deprecate :EventType=, :none, 2025, 2
8787
+ deprecate :EventBroadcastType, :none, 2025, 2
8788
+ deprecate :EventBroadcastType=, :none, 2025, 2
8789
+ deprecate :Status, :none, 2025, 2
8790
+ deprecate :Status=, :none, 2025, 2
8759
8791
 
8760
8792
  def initialize(projectid=nil, category=nil, pagenumber=nil, pagesize=nil, eventname=nil, eventtype=nil, eventsubtype=nil, eventbroadcasttype=nil, status=nil, creationtimestart=nil, creationtimeend=nil, eventtriggeredtimestart=nil, eventtriggeredtimeend=nil, logtimestart=nil, logtimeend=nil, dimension=nil, timetolive=nil, sortitem=nil, sorttype=nil)
8761
8793
  @ProjectId = projectid
@@ -9263,6 +9295,77 @@ module TencentCloud
9263
9295
  end
9264
9296
  end
9265
9297
 
9298
+ # DescribeInstanceDetailInfo请求参数结构体
9299
+ class DescribeInstanceDetailInfoRequest < TencentCloud::Common::AbstractModel
9300
+ # @param TaskId: 任务ID
9301
+ # @type TaskId: String
9302
+ # @param CurRunDate: 实例数据时间
9303
+ # @type CurRunDate: String
9304
+ # @param ProjectId: 项目id
9305
+ # @type ProjectId: String
9306
+ # @param LifeRound: 实例的第几次执行
9307
+ # @type LifeRound: Integer
9308
+ # @param LifeRoundStartIndex: 生命周期查询起始index
9309
+ # @type LifeRoundStartIndex: Integer
9310
+ # @param LifeRoundSize: 生命周期查询批次数量
9311
+ # @type LifeRoundSize: Integer
9312
+ # @param TotalLifeRound: 生命周期总数,可省略
9313
+ # @type TotalLifeRound: String
9314
+ # @param Dynamic: 动态加载日志标识
9315
+ # @type Dynamic: Boolean
9316
+
9317
+ attr_accessor :TaskId, :CurRunDate, :ProjectId, :LifeRound, :LifeRoundStartIndex, :LifeRoundSize, :TotalLifeRound, :Dynamic
9318
+
9319
+ def initialize(taskid=nil, currundate=nil, projectid=nil, liferound=nil, liferoundstartindex=nil, liferoundsize=nil, totalliferound=nil, dynamic=nil)
9320
+ @TaskId = taskid
9321
+ @CurRunDate = currundate
9322
+ @ProjectId = projectid
9323
+ @LifeRound = liferound
9324
+ @LifeRoundStartIndex = liferoundstartindex
9325
+ @LifeRoundSize = liferoundsize
9326
+ @TotalLifeRound = totalliferound
9327
+ @Dynamic = dynamic
9328
+ end
9329
+
9330
+ def deserialize(params)
9331
+ @TaskId = params['TaskId']
9332
+ @CurRunDate = params['CurRunDate']
9333
+ @ProjectId = params['ProjectId']
9334
+ @LifeRound = params['LifeRound']
9335
+ @LifeRoundStartIndex = params['LifeRoundStartIndex']
9336
+ @LifeRoundSize = params['LifeRoundSize']
9337
+ @TotalLifeRound = params['TotalLifeRound']
9338
+ @Dynamic = params['Dynamic']
9339
+ end
9340
+ end
9341
+
9342
+ # DescribeInstanceDetailInfo返回参数结构体
9343
+ class DescribeInstanceDetailInfoResponse < TencentCloud::Common::AbstractModel
9344
+ # @param Data: 生命周期结果
9345
+ # @type Data: Array
9346
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9347
+ # @type RequestId: String
9348
+
9349
+ attr_accessor :Data, :RequestId
9350
+
9351
+ def initialize(data=nil, requestid=nil)
9352
+ @Data = data
9353
+ @RequestId = requestid
9354
+ end
9355
+
9356
+ def deserialize(params)
9357
+ unless params['Data'].nil?
9358
+ @Data = []
9359
+ params['Data'].each do |i|
9360
+ instancelifecycleopsdto_tmp = InstanceLifeCycleOpsDto.new
9361
+ instancelifecycleopsdto_tmp.deserialize(i)
9362
+ @Data << instancelifecycleopsdto_tmp
9363
+ end
9364
+ end
9365
+ @RequestId = params['RequestId']
9366
+ end
9367
+ end
9368
+
9266
9369
  # DescribeInstanceLastLog请求参数结构体
9267
9370
  class DescribeInstanceLastLogRequest < TencentCloud::Common::AbstractModel
9268
9371
  # @param TaskId: 任务id
@@ -14989,8 +15092,8 @@ module TencentCloud
14989
15092
 
14990
15093
  attr_accessor :DimType, :Count, :QualityDim
14991
15094
  extend Gem::Deprecate
14992
- deprecate :DimType, :none, 2025, 1
14993
- deprecate :DimType=, :none, 2025, 1
15095
+ deprecate :DimType, :none, 2025, 2
15096
+ deprecate :DimType=, :none, 2025, 2
14994
15097
 
14995
15098
  def initialize(dimtype=nil, count=nil, qualitydim=nil)
14996
15099
  @DimType = dimtype
@@ -20684,8 +20787,8 @@ module TencentCloud
20684
20787
 
20685
20788
  attr_accessor :ProjectId, :TaskId, :DelayTime, :StartupTime, :SelfDepend, :StartTime, :EndTime, :TaskAction, :CycleType, :CycleStep, :CrontabExpression, :ExecutionStartTime, :ExecutionEndTime, :TaskName, :RetryWait, :TryLimit, :Retriable, :RunPriority, :TaskExt, :ResourceGroup, :YarnQueue, :BrokerIp, :InCharge, :Notes, :TaskParamInfos, :SourceServer, :TargetServer, :DependencyWorkflow, :DependencyConfigDTOs, :ExecutionTTL, :ScriptChange, :InChargeIds
20686
20789
  extend Gem::Deprecate
20687
- deprecate :InCharge, :none, 2025, 1
20688
- deprecate :InCharge=, :none, 2025, 1
20790
+ deprecate :InCharge, :none, 2025, 2
20791
+ deprecate :InCharge=, :none, 2025, 2
20689
20792
 
20690
20793
  def initialize(projectid=nil, taskid=nil, delaytime=nil, startuptime=nil, selfdepend=nil, starttime=nil, endtime=nil, taskaction=nil, cycletype=nil, cyclestep=nil, crontabexpression=nil, executionstarttime=nil, executionendtime=nil, taskname=nil, retrywait=nil, trylimit=nil, retriable=nil, runpriority=nil, taskext=nil, resourcegroup=nil, yarnqueue=nil, brokerip=nil, incharge=nil, notes=nil, taskparaminfos=nil, sourceserver=nil, targetserver=nil, dependencyworkflow=nil, dependencyconfigdtos=nil, executionttl=nil, scriptchange=nil, inchargeids=nil)
20691
20794
  @ProjectId = projectid
@@ -27696,10 +27799,19 @@ module TencentCloud
27696
27799
  # @param HasBizPermission: 是否有修改业务权限
27697
27800
  # 注意:此字段可能返回 null,表示取不到有效值。
27698
27801
  # @type HasBizPermission: Boolean
27802
+ # @param OwnerByEngine: 引擎侧创建人
27803
+ # 注意:此字段可能返回 null,表示取不到有效值。
27804
+ # @type OwnerByEngine: String
27805
+ # @param ErrorTips: 用户无映射账户,请先完成账户映射后再来申请。
27806
+ # 注意:此字段可能返回 null,表示取不到有效值。
27807
+ # @type ErrorTips: String
27808
+ # @param IfSupportCreateAndDDL: 是否支持select or ddl
27809
+ # 注意:此字段可能返回 null,表示取不到有效值。
27810
+ # @type IfSupportCreateAndDDL: :class:`Tencentcloud::Wedata.v20210820.models.CreateAndDDLSupport`
27699
27811
 
27700
- attr_accessor :TableId, :TableName, :TableOwnerName, :DatasourceId, :ClusterName, :DatasourceName, :DatabaseName, :TablePath, :TableNameCn, :MetastoreId, :MetastoreType, :Description, :ColumnSeparator, :StorageFormat, :StorageSize, :TableType, :CreateTime, :ModifyTime, :DdlModifyTime, :LastAccessTime, :ProjectName, :BizCatalogIds, :BizCatalogNames, :HasFavorite, :LifeCycleTime, :StorageSizeWithUnit, :InstanceId, :TechnologyType, :TableNameEn, :ProjectId, :Partitions, :ReplicationFactor, :ProjectDisplayName, :DataModifyTime, :ClusterId, :HasAdminAuthority, :DatasourceDisplayName, :DatabaseId, :FavoriteCount, :LikeCount, :HasLike, :TablePropertyScore, :TableHeat, :OwnerProjectId, :TableOwnerId, :DataSourceCategory, :Columns, :MetaCrawlType, :IsView, :Location, :IsPartitionTable, :PartitionColumns, :PartitionExpireDays, :TableProperties, :Environment, :Schema, :CollectDatasourceList, :CollectJobId, :CollectJobName, :Urn, :HasBizPermission
27812
+ attr_accessor :TableId, :TableName, :TableOwnerName, :DatasourceId, :ClusterName, :DatasourceName, :DatabaseName, :TablePath, :TableNameCn, :MetastoreId, :MetastoreType, :Description, :ColumnSeparator, :StorageFormat, :StorageSize, :TableType, :CreateTime, :ModifyTime, :DdlModifyTime, :LastAccessTime, :ProjectName, :BizCatalogIds, :BizCatalogNames, :HasFavorite, :LifeCycleTime, :StorageSizeWithUnit, :InstanceId, :TechnologyType, :TableNameEn, :ProjectId, :Partitions, :ReplicationFactor, :ProjectDisplayName, :DataModifyTime, :ClusterId, :HasAdminAuthority, :DatasourceDisplayName, :DatabaseId, :FavoriteCount, :LikeCount, :HasLike, :TablePropertyScore, :TableHeat, :OwnerProjectId, :TableOwnerId, :DataSourceCategory, :Columns, :MetaCrawlType, :IsView, :Location, :IsPartitionTable, :PartitionColumns, :PartitionExpireDays, :TableProperties, :Environment, :Schema, :CollectDatasourceList, :CollectJobId, :CollectJobName, :Urn, :HasBizPermission, :OwnerByEngine, :ErrorTips, :IfSupportCreateAndDDL
27701
27813
 
27702
- def initialize(tableid=nil, tablename=nil, tableownername=nil, datasourceid=nil, clustername=nil, datasourcename=nil, databasename=nil, tablepath=nil, tablenamecn=nil, metastoreid=nil, metastoretype=nil, description=nil, columnseparator=nil, storageformat=nil, storagesize=nil, tabletype=nil, createtime=nil, modifytime=nil, ddlmodifytime=nil, lastaccesstime=nil, projectname=nil, bizcatalogids=nil, bizcatalognames=nil, hasfavorite=nil, lifecycletime=nil, storagesizewithunit=nil, instanceid=nil, technologytype=nil, tablenameen=nil, projectid=nil, partitions=nil, replicationfactor=nil, projectdisplayname=nil, datamodifytime=nil, clusterid=nil, hasadminauthority=nil, datasourcedisplayname=nil, databaseid=nil, favoritecount=nil, likecount=nil, haslike=nil, tablepropertyscore=nil, tableheat=nil, ownerprojectid=nil, tableownerid=nil, datasourcecategory=nil, columns=nil, metacrawltype=nil, isview=nil, location=nil, ispartitiontable=nil, partitioncolumns=nil, partitionexpiredays=nil, tableproperties=nil, environment=nil, schema=nil, collectdatasourcelist=nil, collectjobid=nil, collectjobname=nil, urn=nil, hasbizpermission=nil)
27814
+ def initialize(tableid=nil, tablename=nil, tableownername=nil, datasourceid=nil, clustername=nil, datasourcename=nil, databasename=nil, tablepath=nil, tablenamecn=nil, metastoreid=nil, metastoretype=nil, description=nil, columnseparator=nil, storageformat=nil, storagesize=nil, tabletype=nil, createtime=nil, modifytime=nil, ddlmodifytime=nil, lastaccesstime=nil, projectname=nil, bizcatalogids=nil, bizcatalognames=nil, hasfavorite=nil, lifecycletime=nil, storagesizewithunit=nil, instanceid=nil, technologytype=nil, tablenameen=nil, projectid=nil, partitions=nil, replicationfactor=nil, projectdisplayname=nil, datamodifytime=nil, clusterid=nil, hasadminauthority=nil, datasourcedisplayname=nil, databaseid=nil, favoritecount=nil, likecount=nil, haslike=nil, tablepropertyscore=nil, tableheat=nil, ownerprojectid=nil, tableownerid=nil, datasourcecategory=nil, columns=nil, metacrawltype=nil, isview=nil, location=nil, ispartitiontable=nil, partitioncolumns=nil, partitionexpiredays=nil, tableproperties=nil, environment=nil, schema=nil, collectdatasourcelist=nil, collectjobid=nil, collectjobname=nil, urn=nil, hasbizpermission=nil, ownerbyengine=nil, errortips=nil, ifsupportcreateandddl=nil)
27703
27815
  @TableId = tableid
27704
27816
  @TableName = tablename
27705
27817
  @TableOwnerName = tableownername
@@ -27761,6 +27873,9 @@ module TencentCloud
27761
27873
  @CollectJobName = collectjobname
27762
27874
  @Urn = urn
27763
27875
  @HasBizPermission = hasbizpermission
27876
+ @OwnerByEngine = ownerbyengine
27877
+ @ErrorTips = errortips
27878
+ @IfSupportCreateAndDDL = ifsupportcreateandddl
27764
27879
  end
27765
27880
 
27766
27881
  def deserialize(params)
@@ -27852,6 +27967,12 @@ module TencentCloud
27852
27967
  @CollectJobName = params['CollectJobName']
27853
27968
  @Urn = params['Urn']
27854
27969
  @HasBizPermission = params['HasBizPermission']
27970
+ @OwnerByEngine = params['OwnerByEngine']
27971
+ @ErrorTips = params['ErrorTips']
27972
+ unless params['IfSupportCreateAndDDL'].nil?
27973
+ @IfSupportCreateAndDDL = CreateAndDDLSupport.new
27974
+ @IfSupportCreateAndDDL.deserialize(params['IfSupportCreateAndDDL'])
27975
+ end
27855
27976
  end
27856
27977
  end
27857
27978
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-wedata
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.995
4
+ version: 3.0.997
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-10 00:00:00.000000000 Z
11
+ date: 2025-02-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common