tencentcloud-sdk-wedata 3.0.1055 → 3.0.1056

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: fdb93b23d94a0026ae655297d4a361eafe299e11
4
- data.tar.gz: 5f62a3cf457b3224050991ad973e518cc26ff220
3
+ metadata.gz: 92cfba72bc15e6f63289e2c6366ae8b3b4e38069
4
+ data.tar.gz: c11153a72927dbb6d46c09cca8c50ebf92975d7c
5
5
  SHA512:
6
- metadata.gz: e4dd85d2cacfba06dce43cebf2d57517129cecfab29c16e59c3eb78059b1dcd2eceabbf2b9e2671e2ce9a96325f9583a62f1f4fc4b106cd1a7ae703fdf3f3c5f
7
- data.tar.gz: 5be51e119f10393ceca471a40c661770ac374c237c8c95873b2bebeb8b6b08cdf52114f87f70cbee3d49160f2cdf752e4ba18751aa7edb51cfe922ecff87c2ac
6
+ metadata.gz: c414b8e791c77b3fd6fd2ff51adbf230d886f14d14515d9e67a7b1bc6a1c547a63d7de91439fe8629a2312143499094b43ed4b89e9e9813c4722c9f826849487
7
+ data.tar.gz: 27da14a89498691f8ac3a2f88b377705fdaeb9603dc316d77d56850aecf2d02e664bfc8480698acde3c04a00a0e79d1e24bcd196d2e23cc9e512edad181191ba
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1055
1
+ 3.0.1056
@@ -1661,6 +1661,30 @@ module TencentCloud
1661
1661
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1662
1662
  end
1663
1663
 
1664
+ # 数据地图-信息配置 数据类目列表
1665
+
1666
+ # @param request: Request instance for DescribeBaseBizCatalogs.
1667
+ # @type request: :class:`Tencentcloud::wedata::V20210820::DescribeBaseBizCatalogsRequest`
1668
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeBaseBizCatalogsResponse`
1669
+ def DescribeBaseBizCatalogs(request)
1670
+ body = send_request('DescribeBaseBizCatalogs', request.serialize)
1671
+ response = JSON.parse(body)
1672
+ if response['Response'].key?('Error') == false
1673
+ model = DescribeBaseBizCatalogsResponse.new
1674
+ model.deserialize(response['Response'])
1675
+ model
1676
+ else
1677
+ code = response['Response']['Error']['Code']
1678
+ message = response['Response']['Error']['Message']
1679
+ reqid = response['Response']['RequestId']
1680
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1681
+ end
1682
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1683
+ raise e
1684
+ rescue StandardError => e
1685
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1686
+ end
1687
+
1664
1688
  # 批量操作页面获取任务列表
1665
1689
 
1666
1690
  # @param request: Request instance for DescribeBatchOperateTask.
@@ -2380,6 +2380,48 @@ module TencentCloud
2380
2380
  end
2381
2381
  end
2382
2382
 
2383
+ # 数据地图-数据类目信息
2384
+ class BizCatalogsInfo < TencentCloud::Common::AbstractModel
2385
+ # @param AppId: 应用id
2386
+ # 注意:此字段可能返回 null,表示取不到有效值。
2387
+ # @type AppId: String
2388
+ # @param Id: 类目id
2389
+ # 注意:此字段可能返回 null,表示取不到有效值。
2390
+ # @type Id: Integer
2391
+ # @param Level: 类目层级
2392
+ # 注意:此字段可能返回 null,表示取不到有效值。
2393
+ # @type Level: Integer
2394
+ # @param Name: 类目名称
2395
+ # 注意:此字段可能返回 null,表示取不到有效值。
2396
+ # @type Name: String
2397
+ # @param ParentId: 上级类目id
2398
+ # 注意:此字段可能返回 null,表示取不到有效值。
2399
+ # @type ParentId: Integer
2400
+ # @param Position: 类目顺序
2401
+ # 注意:此字段可能返回 null,表示取不到有效值。
2402
+ # @type Position: Integer
2403
+
2404
+ attr_accessor :AppId, :Id, :Level, :Name, :ParentId, :Position
2405
+
2406
+ def initialize(appid=nil, id=nil, level=nil, name=nil, parentid=nil, position=nil)
2407
+ @AppId = appid
2408
+ @Id = id
2409
+ @Level = level
2410
+ @Name = name
2411
+ @ParentId = parentid
2412
+ @Position = position
2413
+ end
2414
+
2415
+ def deserialize(params)
2416
+ @AppId = params['AppId']
2417
+ @Id = params['Id']
2418
+ @Level = params['Level']
2419
+ @Name = params['Name']
2420
+ @ParentId = params['ParentId']
2421
+ @Position = params['Position']
2422
+ end
2423
+ end
2424
+
2383
2425
  # 实时任务同步速度 字节/s
2384
2426
  class BytesSpeed < TencentCloud::Common::AbstractModel
2385
2427
  # @param NodeType: 节点类型
@@ -7492,6 +7534,45 @@ module TencentCloud
7492
7534
  end
7493
7535
  end
7494
7536
 
7537
+ # DescribeBaseBizCatalogs请求参数结构体
7538
+ class DescribeBaseBizCatalogsRequest < TencentCloud::Common::AbstractModel
7539
+
7540
+
7541
+ def initialize()
7542
+ end
7543
+
7544
+ def deserialize(params)
7545
+ end
7546
+ end
7547
+
7548
+ # DescribeBaseBizCatalogs返回参数结构体
7549
+ class DescribeBaseBizCatalogsResponse < TencentCloud::Common::AbstractModel
7550
+ # @param Data: 类目列表
7551
+ # 注意:此字段可能返回 null,表示取不到有效值。
7552
+ # @type Data: Array
7553
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7554
+ # @type RequestId: String
7555
+
7556
+ attr_accessor :Data, :RequestId
7557
+
7558
+ def initialize(data=nil, requestid=nil)
7559
+ @Data = data
7560
+ @RequestId = requestid
7561
+ end
7562
+
7563
+ def deserialize(params)
7564
+ unless params['Data'].nil?
7565
+ @Data = []
7566
+ params['Data'].each do |i|
7567
+ bizcatalogsinfo_tmp = BizCatalogsInfo.new
7568
+ bizcatalogsinfo_tmp.deserialize(i)
7569
+ @Data << bizcatalogsinfo_tmp
7570
+ end
7571
+ end
7572
+ @RequestId = params['RequestId']
7573
+ end
7574
+ end
7575
+
7495
7576
  # 批量操作任务列表
7496
7577
  class DescribeBatchOperateTaskDTO < TencentCloud::Common::AbstractModel
7497
7578
  # @param TaskId: 任务ID
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.1055
4
+ version: 3.0.1056
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-05-08 00:00:00.000000000 Z
11
+ date: 2025-05-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common