tencentcloud-sdk-wedata 3.0.1073 → 3.0.1076

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: fc30af1a0635c20855944bb03a231af22a1e82a9
4
- data.tar.gz: abff7f275e58b6c3f784f10fcdc02e9f63698c56
3
+ metadata.gz: 3964b267efddc3452f2ef60004138729084742b2
4
+ data.tar.gz: a9eb9327033ad23473d9fb384d6e0832a7724f70
5
5
  SHA512:
6
- metadata.gz: d2bcf8325a5b4d91105cab8cd16d3f6ce7f88e937132d4800c36fe9f46f1270798696efa3913c1cea0905644c28adbf720e57880a6a939f7dc7d6c93185e35f3
7
- data.tar.gz: 8fb9a55fcfd964140fcc65220dcc44f455369e087294ade03e41aa8505d3d04bab01005c52fbf1667314f7608189ba68f498fbad121460934fdfe894bc401a44
6
+ metadata.gz: af41d7f6e308512be55ffcb7816489d2a9e7f15a5cb979e22beb6041b01a1a6a1fbb92908cfd512b1282ef70aea72153296ba6bf44a309ae1b997a1b98c23537
7
+ data.tar.gz: 50c65826469d790fb06369fbb963ac289243b2e7a203583c19798bfb317470b4bbddf04a308207cb63c611723a4f7b08287d688baaee2036b34f8cd3ff34cec2
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1073
1
+ 3.0.1076
@@ -2335,6 +2335,30 @@ module TencentCloud
2335
2335
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2336
2336
  end
2337
2337
 
2338
+ # 商业化版本:根据id查询执行资源组指标
2339
+
2340
+ # @param request: Request instance for DescribeExecutorGroupMetric.
2341
+ # @type request: :class:`Tencentcloud::wedata::V20210820::DescribeExecutorGroupMetricRequest`
2342
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeExecutorGroupMetricResponse`
2343
+ def DescribeExecutorGroupMetric(request)
2344
+ body = send_request('DescribeExecutorGroupMetric', request.serialize)
2345
+ response = JSON.parse(body)
2346
+ if response['Response'].key?('Error') == false
2347
+ model = DescribeExecutorGroupMetricResponse.new
2348
+ model.deserialize(response['Response'])
2349
+ model
2350
+ else
2351
+ code = response['Response']['Error']['Code']
2352
+ message = response['Response']['Error']['Message']
2353
+ reqid = response['Response']['RequestId']
2354
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2355
+ end
2356
+ rescue TencentCloud::Common::TencentCloudSDKException => e
2357
+ raise e
2358
+ rescue StandardError => e
2359
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2360
+ end
2361
+
2338
2362
  # 元数据模型-字段基础信息查询接口
2339
2363
 
2340
2364
  # @param request: Request instance for DescribeFieldBasicInfo.
@@ -2539,8 +2539,8 @@ module TencentCloud
2539
2539
 
2540
2540
  attr_accessor :ProjectId, :AlarmRegularName, :TaskId, :Id, :TaskType, :MonitorType
2541
2541
  extend Gem::Deprecate
2542
- deprecate :TaskId, :none, 2025, 5
2543
- deprecate :TaskId=, :none, 2025, 5
2542
+ deprecate :TaskId, :none, 2025, 6
2543
+ deprecate :TaskId=, :none, 2025, 6
2544
2544
 
2545
2545
  def initialize(projectid=nil, alarmregularname=nil, taskid=nil, id=nil, tasktype=nil, monitortype=nil)
2546
2546
  @ProjectId = projectid
@@ -9736,12 +9736,12 @@ module TencentCloud
9736
9736
 
9737
9737
  attr_accessor :ProjectId, :Category, :PageNumber, :PageSize, :EventName, :EventType, :EventSubType, :EventBroadcastType, :Status, :CreationTimeStart, :CreationTimeEnd, :EventTriggeredTimeStart, :EventTriggeredTimeEnd, :LogTimeStart, :LogTimeEnd, :Dimension, :TimeToLive, :SortItem, :SortType
9738
9738
  extend Gem::Deprecate
9739
- deprecate :EventType, :none, 2025, 5
9740
- deprecate :EventType=, :none, 2025, 5
9741
- deprecate :EventBroadcastType, :none, 2025, 5
9742
- deprecate :EventBroadcastType=, :none, 2025, 5
9743
- deprecate :Status, :none, 2025, 5
9744
- deprecate :Status=, :none, 2025, 5
9739
+ deprecate :EventType, :none, 2025, 6
9740
+ deprecate :EventType=, :none, 2025, 6
9741
+ deprecate :EventBroadcastType, :none, 2025, 6
9742
+ deprecate :EventBroadcastType=, :none, 2025, 6
9743
+ deprecate :Status, :none, 2025, 6
9744
+ deprecate :Status=, :none, 2025, 6
9745
9745
 
9746
9746
  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)
9747
9747
  @ProjectId = projectid
@@ -9952,6 +9952,74 @@ module TencentCloud
9952
9952
  end
9953
9953
  end
9954
9954
 
9955
+ # DescribeExecutorGroupMetric请求参数结构体
9956
+ class DescribeExecutorGroupMetricRequest < TencentCloud::Common::AbstractModel
9957
+ # @param ExecutorGroupId: 执行资源组id
9958
+ # @type ExecutorGroupId: String
9959
+ # @param TrendStartTime: 使用趋势开始时间(毫秒)
9960
+ # @type TrendStartTime: Integer
9961
+ # @param TrendEndTime: 使用趋势结束时间(毫秒)
9962
+ # @type TrendEndTime: Integer
9963
+ # @param ExecutorGroupType: 执行资源组类型
9964
+ # @type ExecutorGroupType: String
9965
+ # @param ExecutorResourceType: 执行资源类型
9966
+ # @type ExecutorResourceType: String
9967
+ # @param LoaderId: 执行机ID
9968
+ # @type LoaderId: String
9969
+ # @param MetricType: 指标维度
9970
+ # @type MetricType: String
9971
+ # @param Granularity: 指标采集粒度
9972
+ # @type Granularity: Integer
9973
+
9974
+ attr_accessor :ExecutorGroupId, :TrendStartTime, :TrendEndTime, :ExecutorGroupType, :ExecutorResourceType, :LoaderId, :MetricType, :Granularity
9975
+
9976
+ def initialize(executorgroupid=nil, trendstarttime=nil, trendendtime=nil, executorgrouptype=nil, executorresourcetype=nil, loaderid=nil, metrictype=nil, granularity=nil)
9977
+ @ExecutorGroupId = executorgroupid
9978
+ @TrendStartTime = trendstarttime
9979
+ @TrendEndTime = trendendtime
9980
+ @ExecutorGroupType = executorgrouptype
9981
+ @ExecutorResourceType = executorresourcetype
9982
+ @LoaderId = loaderid
9983
+ @MetricType = metrictype
9984
+ @Granularity = granularity
9985
+ end
9986
+
9987
+ def deserialize(params)
9988
+ @ExecutorGroupId = params['ExecutorGroupId']
9989
+ @TrendStartTime = params['TrendStartTime']
9990
+ @TrendEndTime = params['TrendEndTime']
9991
+ @ExecutorGroupType = params['ExecutorGroupType']
9992
+ @ExecutorResourceType = params['ExecutorResourceType']
9993
+ @LoaderId = params['LoaderId']
9994
+ @MetricType = params['MetricType']
9995
+ @Granularity = params['Granularity']
9996
+ end
9997
+ end
9998
+
9999
+ # DescribeExecutorGroupMetric返回参数结构体
10000
+ class DescribeExecutorGroupMetricResponse < TencentCloud::Common::AbstractModel
10001
+ # @param Data: 执行组指标信息
10002
+ # 注意:此字段可能返回 null,表示取不到有效值。
10003
+ # @type Data: :class:`Tencentcloud::Wedata.v20210820.models.ExecutorResourceGroupInfo`
10004
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10005
+ # @type RequestId: String
10006
+
10007
+ attr_accessor :Data, :RequestId
10008
+
10009
+ def initialize(data=nil, requestid=nil)
10010
+ @Data = data
10011
+ @RequestId = requestid
10012
+ end
10013
+
10014
+ def deserialize(params)
10015
+ unless params['Data'].nil?
10016
+ @Data = ExecutorResourceGroupInfo.new
10017
+ @Data.deserialize(params['Data'])
10018
+ end
10019
+ @RequestId = params['RequestId']
10020
+ end
10021
+ end
10022
+
9955
10023
  # DescribeFieldBasicInfo请求参数结构体
9956
10024
  class DescribeFieldBasicInfoRequest < TencentCloud::Common::AbstractModel
9957
10025
  # @param PageNumber: 分页页码
@@ -16715,8 +16783,8 @@ module TencentCloud
16715
16783
 
16716
16784
  attr_accessor :DimType, :Count, :QualityDim
16717
16785
  extend Gem::Deprecate
16718
- deprecate :DimType, :none, 2025, 5
16719
- deprecate :DimType=, :none, 2025, 5
16786
+ deprecate :DimType, :none, 2025, 6
16787
+ deprecate :DimType=, :none, 2025, 6
16720
16788
 
16721
16789
  def initialize(dimtype=nil, count=nil, qualitydim=nil)
16722
16790
  @DimType = dimtype
@@ -18237,6 +18305,528 @@ module TencentCloud
18237
18305
  end
18238
18306
  end
18239
18307
 
18308
+ # 资源组详情
18309
+ class ExecutorResourceGroupInfo < TencentCloud::Common::AbstractModel
18310
+ # @param ExecutorGroupId: 执行组id, 仅更新资源时需要传
18311
+ # 注意:此字段可能返回 null,表示取不到有效值。
18312
+ # @type ExecutorGroupId: String
18313
+ # @param ExecutorGroupName: 执行组名称
18314
+ # 注意:此字段可能返回 null,表示取不到有效值。
18315
+ # @type ExecutorGroupName: String
18316
+ # @param ExecutorGroupDesc: 执行组描述
18317
+ # 注意:此字段可能返回 null,表示取不到有效值。
18318
+ # @type ExecutorGroupDesc: String
18319
+ # @param ExecutorResourceType: SCHEDULER (标准调度资源组),CUSTOM_SCHEDULER (自定义调度资源),INTEGRATION(集成资源组),DATA_SERVICE(数据服务资源组)
18320
+ # 注意:此字段可能返回 null,表示取不到有效值。
18321
+ # @type ExecutorResourceType: Integer
18322
+ # @param Region: 区域中文
18323
+ # 注意:此字段可能返回 null,表示取不到有效值。
18324
+ # @type Region: String
18325
+ # @param VpcId: vpcId, 托管服务时需要传递
18326
+ # 注意:此字段可能返回 null,表示取不到有效值。
18327
+ # @type VpcId: String
18328
+ # @param SubnetId: subnetId, 托管服务时需要传递
18329
+ # 注意:此字段可能返回 null,表示取不到有效值。
18330
+ # @type SubnetId: String
18331
+ # @param ProjectId: 项目id
18332
+ # 注意:此字段可能返回 null,表示取不到有效值。
18333
+ # @type ProjectId: String
18334
+ # @param BasicResourcePackage: 基础资源包,资源组至少包含一个基础资源包
18335
+ # 注意:此字段可能返回 null,表示取不到有效值。
18336
+ # @type BasicResourcePackage: :class:`Tencentcloud::Wedata.v20210820.models.ExecutorResourcePackageInfo`
18337
+ # @param AdvanceResourcePackage: 增强资源包
18338
+ # 注意:此字段可能返回 null,表示取不到有效值。
18339
+ # @type AdvanceResourcePackage: :class:`Tencentcloud::Wedata.v20210820.models.ExecutorResourcePackageInfo`
18340
+ # @param AutoRenewFlag: 是否自动续费
18341
+ # 注意:此字段可能返回 null,表示取不到有效值。
18342
+ # @type AutoRenewFlag: Integer
18343
+ # @param RegionEn: 区域英文
18344
+ # 注意:此字段可能返回 null,表示取不到有效值。
18345
+ # @type RegionEn: String
18346
+ # @param RegionId: 区域Id
18347
+ # 注意:此字段可能返回 null,表示取不到有效值。
18348
+ # @type RegionId: Integer
18349
+ # @param ProjectName: 项目名称
18350
+ # 注意:此字段可能返回 null,表示取不到有效值。
18351
+ # @type ProjectName: String
18352
+ # @param ProjectDisplayName: 项目展示名称
18353
+ # 注意:此字段可能返回 null,表示取不到有效值。
18354
+ # @type ProjectDisplayName: String
18355
+ # @param AssociateProjectNums: 资源组关联项目数
18356
+ # 注意:此字段可能返回 null,表示取不到有效值。
18357
+ # @type AssociateProjectNums: Integer
18358
+ # @param IsLocked: 是否锁定,false为未锁定,true为锁定
18359
+ # 注意:此字段可能返回 null,表示取不到有效值。
18360
+ # @type IsLocked: Boolean
18361
+ # @param SourceType: 来源类型,0为系统默认,1为自定义
18362
+ # 注意:此字段可能返回 null,表示取不到有效值。
18363
+ # @type SourceType: Integer
18364
+ # @param MQPackageVO: 队列资源包
18365
+ # 注意:此字段可能返回 null,表示取不到有效值。
18366
+ # @type MQPackageVO: :class:`Tencentcloud::Wedata.v20210820.models.MQPackageVO`
18367
+ # @param FirstChoice: 是否首选
18368
+ # 注意:此字段可能返回 null,表示取不到有效值。
18369
+ # @type FirstChoice: Boolean
18370
+ # @param PythonSubVersions: 资源组python版本绑定详情
18371
+ # @type PythonSubVersions: Array
18372
+
18373
+ attr_accessor :ExecutorGroupId, :ExecutorGroupName, :ExecutorGroupDesc, :ExecutorResourceType, :Region, :VpcId, :SubnetId, :ProjectId, :BasicResourcePackage, :AdvanceResourcePackage, :AutoRenewFlag, :RegionEn, :RegionId, :ProjectName, :ProjectDisplayName, :AssociateProjectNums, :IsLocked, :SourceType, :MQPackageVO, :FirstChoice, :PythonSubVersions
18374
+
18375
+ def initialize(executorgroupid=nil, executorgroupname=nil, executorgroupdesc=nil, executorresourcetype=nil, region=nil, vpcid=nil, subnetid=nil, projectid=nil, basicresourcepackage=nil, advanceresourcepackage=nil, autorenewflag=nil, regionen=nil, regionid=nil, projectname=nil, projectdisplayname=nil, associateprojectnums=nil, islocked=nil, sourcetype=nil, mqpackagevo=nil, firstchoice=nil, pythonsubversions=nil)
18376
+ @ExecutorGroupId = executorgroupid
18377
+ @ExecutorGroupName = executorgroupname
18378
+ @ExecutorGroupDesc = executorgroupdesc
18379
+ @ExecutorResourceType = executorresourcetype
18380
+ @Region = region
18381
+ @VpcId = vpcid
18382
+ @SubnetId = subnetid
18383
+ @ProjectId = projectid
18384
+ @BasicResourcePackage = basicresourcepackage
18385
+ @AdvanceResourcePackage = advanceresourcepackage
18386
+ @AutoRenewFlag = autorenewflag
18387
+ @RegionEn = regionen
18388
+ @RegionId = regionid
18389
+ @ProjectName = projectname
18390
+ @ProjectDisplayName = projectdisplayname
18391
+ @AssociateProjectNums = associateprojectnums
18392
+ @IsLocked = islocked
18393
+ @SourceType = sourcetype
18394
+ @MQPackageVO = mqpackagevo
18395
+ @FirstChoice = firstchoice
18396
+ @PythonSubVersions = pythonsubversions
18397
+ end
18398
+
18399
+ def deserialize(params)
18400
+ @ExecutorGroupId = params['ExecutorGroupId']
18401
+ @ExecutorGroupName = params['ExecutorGroupName']
18402
+ @ExecutorGroupDesc = params['ExecutorGroupDesc']
18403
+ @ExecutorResourceType = params['ExecutorResourceType']
18404
+ @Region = params['Region']
18405
+ @VpcId = params['VpcId']
18406
+ @SubnetId = params['SubnetId']
18407
+ @ProjectId = params['ProjectId']
18408
+ unless params['BasicResourcePackage'].nil?
18409
+ @BasicResourcePackage = ExecutorResourcePackageInfo.new
18410
+ @BasicResourcePackage.deserialize(params['BasicResourcePackage'])
18411
+ end
18412
+ unless params['AdvanceResourcePackage'].nil?
18413
+ @AdvanceResourcePackage = ExecutorResourcePackageInfo.new
18414
+ @AdvanceResourcePackage.deserialize(params['AdvanceResourcePackage'])
18415
+ end
18416
+ @AutoRenewFlag = params['AutoRenewFlag']
18417
+ @RegionEn = params['RegionEn']
18418
+ @RegionId = params['RegionId']
18419
+ @ProjectName = params['ProjectName']
18420
+ @ProjectDisplayName = params['ProjectDisplayName']
18421
+ @AssociateProjectNums = params['AssociateProjectNums']
18422
+ @IsLocked = params['IsLocked']
18423
+ @SourceType = params['SourceType']
18424
+ unless params['MQPackageVO'].nil?
18425
+ @MQPackageVO = MQPackageVO.new
18426
+ @MQPackageVO.deserialize(params['MQPackageVO'])
18427
+ end
18428
+ @FirstChoice = params['FirstChoice']
18429
+ @PythonSubVersions = params['PythonSubVersions']
18430
+ end
18431
+ end
18432
+
18433
+ # 执行资源包额外信息
18434
+ class ExecutorResourcePackageExtInfo < TencentCloud::Common::AbstractModel
18435
+ # @param InlongGroupId: 集成资源组:InLong集群id
18436
+ # 注意:此字段可能返回 null,表示取不到有效值。
18437
+ # @type InlongGroupId: String
18438
+ # @param OceanusClusterId: 集成资源组:oceanus集群id
18439
+ # 注意:此字段可能返回 null,表示取不到有效值。
18440
+ # @type OceanusClusterId: String
18441
+ # @param ProductResourceIdList: 计费相关:产品资源id列表
18442
+ # 注意:此字段可能返回 null,表示取不到有效值。
18443
+ # @type ProductResourceIdList: Array
18444
+ # @param BillingSuccess: 当前资源包对应订单是否发货成功
18445
+ # 注意:此字段可能返回 null,表示取不到有效值。
18446
+ # @type BillingSuccess: Boolean
18447
+ # @param ApigwServiceId: apigw服务id
18448
+ # 注意:此字段可能返回 null,表示取不到有效值。
18449
+ # @type ApigwServiceId: String
18450
+ # @param ApigwServiceName: apigw服务名称
18451
+ # 注意:此字段可能返回 null,表示取不到有效值。
18452
+ # @type ApigwServiceName: String
18453
+ # @param DataProxySpec: 数据集成相关:dataProxy配置规格
18454
+ # 注意:此字段可能返回 null,表示取不到有效值。
18455
+ # @type DataProxySpec: Integer
18456
+ # @param DataProxyNum: dataProxy数量
18457
+ # 注意:此字段可能返回 null,表示取不到有效值。
18458
+ # @type DataProxyNum: Integer
18459
+ # @param DataProxyStatus: dataProxy状态,同ExecutorGroupStatus
18460
+ # 注意:此字段可能返回 null,表示取不到有效值。
18461
+ # @type DataProxyStatus: Integer
18462
+ # @param InLongManagerUrl: inlongManager地址
18463
+ # 注意:此字段可能返回 null,表示取不到有效值。
18464
+ # @type InLongManagerUrl: String
18465
+ # @param InLongVersion: inlong版本
18466
+ # 注意:此字段可能返回 null,表示取不到有效值。
18467
+ # @type InLongVersion: String
18468
+ # @param ExecutorMachineIpList: 私有化资源组相关: 执行及机器ip列表
18469
+ # 注意:此字段可能返回 null,表示取不到有效值。
18470
+ # @type ExecutorMachineIpList: String
18471
+
18472
+ attr_accessor :InlongGroupId, :OceanusClusterId, :ProductResourceIdList, :BillingSuccess, :ApigwServiceId, :ApigwServiceName, :DataProxySpec, :DataProxyNum, :DataProxyStatus, :InLongManagerUrl, :InLongVersion, :ExecutorMachineIpList
18473
+
18474
+ def initialize(inlonggroupid=nil, oceanusclusterid=nil, productresourceidlist=nil, billingsuccess=nil, apigwserviceid=nil, apigwservicename=nil, dataproxyspec=nil, dataproxynum=nil, dataproxystatus=nil, inlongmanagerurl=nil, inlongversion=nil, executormachineiplist=nil)
18475
+ @InlongGroupId = inlonggroupid
18476
+ @OceanusClusterId = oceanusclusterid
18477
+ @ProductResourceIdList = productresourceidlist
18478
+ @BillingSuccess = billingsuccess
18479
+ @ApigwServiceId = apigwserviceid
18480
+ @ApigwServiceName = apigwservicename
18481
+ @DataProxySpec = dataproxyspec
18482
+ @DataProxyNum = dataproxynum
18483
+ @DataProxyStatus = dataproxystatus
18484
+ @InLongManagerUrl = inlongmanagerurl
18485
+ @InLongVersion = inlongversion
18486
+ @ExecutorMachineIpList = executormachineiplist
18487
+ end
18488
+
18489
+ def deserialize(params)
18490
+ @InlongGroupId = params['InlongGroupId']
18491
+ @OceanusClusterId = params['OceanusClusterId']
18492
+ @ProductResourceIdList = params['ProductResourceIdList']
18493
+ @BillingSuccess = params['BillingSuccess']
18494
+ @ApigwServiceId = params['ApigwServiceId']
18495
+ @ApigwServiceName = params['ApigwServiceName']
18496
+ @DataProxySpec = params['DataProxySpec']
18497
+ @DataProxyNum = params['DataProxyNum']
18498
+ @DataProxyStatus = params['DataProxyStatus']
18499
+ @InLongManagerUrl = params['InLongManagerUrl']
18500
+ @InLongVersion = params['InLongVersion']
18501
+ @ExecutorMachineIpList = params['ExecutorMachineIpList']
18502
+ end
18503
+ end
18504
+
18505
+ # 执行资源包
18506
+ class ExecutorResourcePackageInfo < TencentCloud::Common::AbstractModel
18507
+ # @param ResourcePackageNum: 资源包规格相关:资源包个数
18508
+ # 注意:此字段可能返回 null,表示取不到有效值。
18509
+ # @type ResourcePackageNum: Integer
18510
+ # @param CpuNum: 资源包规格相关:cpu个数
18511
+ # 注意:此字段可能返回 null,表示取不到有效值。
18512
+ # @type CpuNum: Integer
18513
+ # @param ExecutorResourcePackageId: 资源包id
18514
+ # 注意:此字段可能返回 null,表示取不到有效值。
18515
+ # @type ExecutorResourcePackageId: String
18516
+ # @param MemSize: 资源包规格相关:内存大小,单位:G
18517
+ # 注意:此字段可能返回 null,表示取不到有效值。
18518
+ # @type MemSize: Integer
18519
+ # @param Status: 资源包状态, /**
18520
+ # * 初始化中
18521
+ # */
18522
+ # INIT(0),
18523
+ # /**
18524
+ # * 运行中
18525
+ # */
18526
+ # RUNNING(1),
18527
+ # /**
18528
+ # * 运行异常
18529
+ # */
18530
+ # RUNNING_FAILED(2),
18531
+ # /**
18532
+ # * 释放中
18533
+ # */
18534
+ # DELETEING(3),
18535
+ # /**
18536
+ # * 已释放
18537
+ # */
18538
+ # DELETED(4),
18539
+ # /**
18540
+ # * 创建中
18541
+ # */
18542
+ # CREATING(5),
18543
+ # /**
18544
+ # * 创建失败
18545
+ # */
18546
+ # CREATE_FAILED(6),
18547
+ # /**
18548
+ # * 更新中
18549
+ # */
18550
+ # UPDATING(7),
18551
+ # /**
18552
+ # * 更新失败
18553
+ # */
18554
+ # UPDATE_FAILED(8),
18555
+ # /**
18556
+ # * 已到期
18557
+ # */
18558
+ # EXPIRED(9);
18559
+ # 注意:此字段可能返回 null,表示取不到有效值。
18560
+ # @type Status: Integer
18561
+ # @param StatusDescription: 资源包状态描述:保存创建失败,运行异常和更新失败的原因
18562
+ # 注意:此字段可能返回 null,表示取不到有效值。
18563
+ # @type StatusDescription: String
18564
+ # @param ExpireTime: 资源包到期时间,时间戳毫秒
18565
+ # 注意:此字段可能返回 null,表示取不到有效值。
18566
+ # @type ExpireTime: Integer
18567
+ # @param ExtInfo: 资源包额外属性
18568
+ # 注意:此字段可能返回 null,表示取不到有效值。
18569
+ # @type ExtInfo: :class:`Tencentcloud::Wedata.v20210820.models.ExecutorResourcePackageExtInfo`
18570
+ # @param ProjectId: 绑定的项目id,可为空
18571
+ # 注意:此字段可能返回 null,表示取不到有效值。
18572
+ # @type ProjectId: String
18573
+ # @param ProjectBindTime: 资源组绑定的时间,时间戳毫秒
18574
+ # 注意:此字段可能返回 null,表示取不到有效值。
18575
+ # @type ProjectBindTime: Integer
18576
+ # @param ResourcePackageUsage: 资源包使用状态: cpu使用,内存使用及趋势
18577
+ # 注意:此字段可能返回 null,表示取不到有效值。
18578
+ # @type ResourcePackageUsage: :class:`Tencentcloud::Wedata.v20210820.models.ExecutorResourcePackageUsageInfo`
18579
+ # @param ProductResourceIdList: 计费相关:产品资源id列表
18580
+ # 注意:此字段可能返回 null,表示取不到有效值。
18581
+ # @type ProductResourceIdList: Array
18582
+ # @param LifeTime: 生命周期
18583
+ # 注意:此字段可能返回 null,表示取不到有效值。
18584
+ # @type LifeTime: Integer
18585
+ # @param VpcId: 私有网络Id
18586
+ # 注意:此字段可能返回 null,表示取不到有效值。
18587
+ # @type VpcId: String
18588
+ # @param VpcName: 私有网络名称
18589
+ # 注意:此字段可能返回 null,表示取不到有效值。
18590
+ # @type VpcName: String
18591
+ # @param SubnetId: 子网Id
18592
+ # 注意:此字段可能返回 null,表示取不到有效值。
18593
+ # @type SubnetId: String
18594
+ # @param SubnetName: 子网名称
18595
+ # 注意:此字段可能返回 null,表示取不到有效值。
18596
+ # @type SubnetName: String
18597
+ # @param ResourceStandard: 执行资源相关:资源规格描述
18598
+ # 注意:此字段可能返回 null,表示取不到有效值。
18599
+ # @type ResourceStandard: String
18600
+ # @param TotalMemory: 内存总数
18601
+ # @type TotalMemory: Integer
18602
+
18603
+ attr_accessor :ResourcePackageNum, :CpuNum, :ExecutorResourcePackageId, :MemSize, :Status, :StatusDescription, :ExpireTime, :ExtInfo, :ProjectId, :ProjectBindTime, :ResourcePackageUsage, :ProductResourceIdList, :LifeTime, :VpcId, :VpcName, :SubnetId, :SubnetName, :ResourceStandard, :TotalMemory
18604
+
18605
+ def initialize(resourcepackagenum=nil, cpunum=nil, executorresourcepackageid=nil, memsize=nil, status=nil, statusdescription=nil, expiretime=nil, extinfo=nil, projectid=nil, projectbindtime=nil, resourcepackageusage=nil, productresourceidlist=nil, lifetime=nil, vpcid=nil, vpcname=nil, subnetid=nil, subnetname=nil, resourcestandard=nil, totalmemory=nil)
18606
+ @ResourcePackageNum = resourcepackagenum
18607
+ @CpuNum = cpunum
18608
+ @ExecutorResourcePackageId = executorresourcepackageid
18609
+ @MemSize = memsize
18610
+ @Status = status
18611
+ @StatusDescription = statusdescription
18612
+ @ExpireTime = expiretime
18613
+ @ExtInfo = extinfo
18614
+ @ProjectId = projectid
18615
+ @ProjectBindTime = projectbindtime
18616
+ @ResourcePackageUsage = resourcepackageusage
18617
+ @ProductResourceIdList = productresourceidlist
18618
+ @LifeTime = lifetime
18619
+ @VpcId = vpcid
18620
+ @VpcName = vpcname
18621
+ @SubnetId = subnetid
18622
+ @SubnetName = subnetname
18623
+ @ResourceStandard = resourcestandard
18624
+ @TotalMemory = totalmemory
18625
+ end
18626
+
18627
+ def deserialize(params)
18628
+ @ResourcePackageNum = params['ResourcePackageNum']
18629
+ @CpuNum = params['CpuNum']
18630
+ @ExecutorResourcePackageId = params['ExecutorResourcePackageId']
18631
+ @MemSize = params['MemSize']
18632
+ @Status = params['Status']
18633
+ @StatusDescription = params['StatusDescription']
18634
+ @ExpireTime = params['ExpireTime']
18635
+ unless params['ExtInfo'].nil?
18636
+ @ExtInfo = ExecutorResourcePackageExtInfo.new
18637
+ @ExtInfo.deserialize(params['ExtInfo'])
18638
+ end
18639
+ @ProjectId = params['ProjectId']
18640
+ @ProjectBindTime = params['ProjectBindTime']
18641
+ unless params['ResourcePackageUsage'].nil?
18642
+ @ResourcePackageUsage = ExecutorResourcePackageUsageInfo.new
18643
+ @ResourcePackageUsage.deserialize(params['ResourcePackageUsage'])
18644
+ end
18645
+ @ProductResourceIdList = params['ProductResourceIdList']
18646
+ @LifeTime = params['LifeTime']
18647
+ @VpcId = params['VpcId']
18648
+ @VpcName = params['VpcName']
18649
+ @SubnetId = params['SubnetId']
18650
+ @SubnetName = params['SubnetName']
18651
+ @ResourceStandard = params['ResourceStandard']
18652
+ @TotalMemory = params['TotalMemory']
18653
+ end
18654
+ end
18655
+
18656
+ # 执行资源包使用情况
18657
+ class ExecutorResourcePackageUsageInfo < TencentCloud::Common::AbstractModel
18658
+ # @param CpuUsagePercent: CPU占用百分比
18659
+ # 注意:此字段可能返回 null,表示取不到有效值。
18660
+ # @type CpuUsagePercent: Float
18661
+ # @param MemUsagePercent: 内存占用百分比
18662
+ # 注意:此字段可能返回 null,表示取不到有效值。
18663
+ # @type MemUsagePercent: Float
18664
+ # @param Status: 资源包状态, /**
18665
+ # * 初始化中
18666
+ # */
18667
+ # INIT(0),
18668
+ # /**
18669
+ # * 运行中
18670
+ # */
18671
+ # RUNNING(1),
18672
+ # /**
18673
+ # * 运行异常
18674
+ # */
18675
+ # RUNNING_FAILED(2),
18676
+ # /**
18677
+ # * 释放中
18678
+ # */
18679
+ # DELETEING(3),
18680
+ # /**
18681
+ # * 已释放
18682
+ # */
18683
+ # DELETED(4),
18684
+ # /**
18685
+ # * 创建中
18686
+ # */
18687
+ # CREATING(5),
18688
+ # /**
18689
+ # * 创建失败
18690
+ # */
18691
+ # CREATE_FAILED(6),
18692
+ # /**
18693
+ # * 更新中
18694
+ # */
18695
+ # UPDATING(7),
18696
+ # /**
18697
+ # * 更新失败
18698
+ # */
18699
+ # UPDATE_FAILED(8),
18700
+ # /**
18701
+ # * 已到期
18702
+ # */
18703
+ # EXPIRED(9);
18704
+ # 注意:此字段可能返回 null,表示取不到有效值。
18705
+ # @type Status: Float
18706
+ # @param RunningTaskNum: /**
18707
+ # * 初始化中
18708
+ # */
18709
+ # INIT(0),
18710
+ # /**
18711
+ # * 运行中
18712
+ # */
18713
+ # RUNNING(1),
18714
+ # /**
18715
+ # * 运行异常
18716
+ # */
18717
+ # RUNNING_FAILED(2),
18718
+ # /**
18719
+ # * 释放中
18720
+ # */
18721
+ # DELETEING(3),
18722
+ # /**
18723
+ # * 已释放
18724
+ # */
18725
+ # DELETED(4),
18726
+ # /**
18727
+ # * 创建中
18728
+ # */
18729
+ # CREATING(5),
18730
+ # /**
18731
+ # * 创建失败
18732
+ # */
18733
+ # CREATE_FAILED(6),
18734
+ # /**
18735
+ # * 更新中
18736
+ # */
18737
+ # UPDATING(7),
18738
+ # /**
18739
+ # * 更新失败
18740
+ # */
18741
+ # UPDATE_FAILED(8),
18742
+ # /**
18743
+ # * 已到期
18744
+ # */
18745
+ # 运行中的任务数
18746
+ # 注意:此字段可能返回 null,表示取不到有效值。
18747
+ # @type RunningTaskNum: Integer
18748
+ # @param WaitingTaskNum: 等待中的任务数
18749
+ # 注意:此字段可能返回 null,表示取不到有效值。
18750
+ # @type WaitingTaskNum: Integer
18751
+ # @param UsageTrendStartTime: 资源使用趋势: 开始时间
18752
+ # 注意:此字段可能返回 null,表示取不到有效值。
18753
+ # @type UsageTrendStartTime: String
18754
+ # @param UsageTrendEndTime: 资源使用趋势: 结束时间
18755
+ # 注意:此字段可能返回 null,表示取不到有效值。
18756
+ # @type UsageTrendEndTime: String
18757
+ # @param UsageTrendList: 资源使用趋势列表
18758
+ # 注意:此字段可能返回 null,表示取不到有效值。
18759
+ # @type UsageTrendList: Array
18760
+
18761
+ attr_accessor :CpuUsagePercent, :MemUsagePercent, :Status, :RunningTaskNum, :WaitingTaskNum, :UsageTrendStartTime, :UsageTrendEndTime, :UsageTrendList
18762
+
18763
+ def initialize(cpuusagepercent=nil, memusagepercent=nil, status=nil, runningtasknum=nil, waitingtasknum=nil, usagetrendstarttime=nil, usagetrendendtime=nil, usagetrendlist=nil)
18764
+ @CpuUsagePercent = cpuusagepercent
18765
+ @MemUsagePercent = memusagepercent
18766
+ @Status = status
18767
+ @RunningTaskNum = runningtasknum
18768
+ @WaitingTaskNum = waitingtasknum
18769
+ @UsageTrendStartTime = usagetrendstarttime
18770
+ @UsageTrendEndTime = usagetrendendtime
18771
+ @UsageTrendList = usagetrendlist
18772
+ end
18773
+
18774
+ def deserialize(params)
18775
+ @CpuUsagePercent = params['CpuUsagePercent']
18776
+ @MemUsagePercent = params['MemUsagePercent']
18777
+ @Status = params['Status']
18778
+ @RunningTaskNum = params['RunningTaskNum']
18779
+ @WaitingTaskNum = params['WaitingTaskNum']
18780
+ @UsageTrendStartTime = params['UsageTrendStartTime']
18781
+ @UsageTrendEndTime = params['UsageTrendEndTime']
18782
+ unless params['UsageTrendList'].nil?
18783
+ @UsageTrendList = []
18784
+ params['UsageTrendList'].each do |i|
18785
+ executorusagetrendinfo_tmp = ExecutorUsageTrendInfo.new
18786
+ executorusagetrendinfo_tmp.deserialize(i)
18787
+ @UsageTrendList << executorusagetrendinfo_tmp
18788
+ end
18789
+ end
18790
+ end
18791
+ end
18792
+
18793
+ # 资源组/资源包使用趋势
18794
+ class ExecutorUsageTrendInfo < TencentCloud::Common::AbstractModel
18795
+ # @param Timestamp: 时间戳,单位:毫秒
18796
+ # 注意:此字段可能返回 null,表示取不到有效值。
18797
+ # @type Timestamp: Integer
18798
+ # @param CpuUsagePercent: CPU占用百分比
18799
+ # 注意:此字段可能返回 null,表示取不到有效值。
18800
+ # @type CpuUsagePercent: Float
18801
+ # @param MemUsagePercent: 内存占用百分比
18802
+ # 注意:此字段可能返回 null,表示取不到有效值。
18803
+ # @type MemUsagePercent: Float
18804
+ # @param ConcurrencyUsage: 当前并发度使用百分比
18805
+ # 注意:此字段可能返回 null,表示取不到有效值。
18806
+ # @type ConcurrencyUsage: Float
18807
+ # @param OceanusCuUsage: oceanus CU使用百分比
18808
+ # 注意:此字段可能返回 null,表示取不到有效值。
18809
+ # @type OceanusCuUsage: Float
18810
+
18811
+ attr_accessor :Timestamp, :CpuUsagePercent, :MemUsagePercent, :ConcurrencyUsage, :OceanusCuUsage
18812
+
18813
+ def initialize(timestamp=nil, cpuusagepercent=nil, memusagepercent=nil, concurrencyusage=nil, oceanuscuusage=nil)
18814
+ @Timestamp = timestamp
18815
+ @CpuUsagePercent = cpuusagepercent
18816
+ @MemUsagePercent = memusagepercent
18817
+ @ConcurrencyUsage = concurrencyusage
18818
+ @OceanusCuUsage = oceanuscuusage
18819
+ end
18820
+
18821
+ def deserialize(params)
18822
+ @Timestamp = params['Timestamp']
18823
+ @CpuUsagePercent = params['CpuUsagePercent']
18824
+ @MemUsagePercent = params['MemUsagePercent']
18825
+ @ConcurrencyUsage = params['ConcurrencyUsage']
18826
+ @OceanusCuUsage = params['OceanusCuUsage']
18827
+ end
18828
+ end
18829
+
18240
18830
  # 扩展参数
18241
18831
  class ExtParam < TencentCloud::Common::AbstractModel
18242
18832
  # @param Key: key
@@ -22855,6 +23445,88 @@ module TencentCloud
22855
23445
  end
22856
23446
  end
22857
23447
 
23448
+ # MQPackageVO
23449
+ class MQPackageVO < TencentCloud::Common::AbstractModel
23450
+ # @param Type: ckafka消息队列
23451
+ # 注意:此字段可能返回 null,表示取不到有效值。
23452
+ # @type Type: String
23453
+ # @param InstanceId: 实例Id/集群Id
23454
+ # 注意:此字段可能返回 null,表示取不到有效值。
23455
+ # @type InstanceId: String
23456
+ # @param InstanceName: 实例名称/集群名称
23457
+ # 注意:此字段可能返回 null,表示取不到有效值。
23458
+ # @type InstanceName: String
23459
+ # @param VpcId: 局域网Id
23460
+ # 注意:此字段可能返回 null,表示取不到有效值。
23461
+ # @type VpcId: String
23462
+ # @param SubnetId: 子网Id
23463
+ # 注意:此字段可能返回 null,表示取不到有效值。
23464
+ # @type SubnetId: String
23465
+ # @param Status: 资源状态
23466
+ # 注意:此字段可能返回 null,表示取不到有效值。
23467
+ # @type Status: Integer
23468
+ # @param StatusDescription: 资源状态描述:保存创建失败,运行异常和更新失败的原因
23469
+ # 注意:此字段可能返回 null,表示取不到有效值。
23470
+ # @type StatusDescription: String
23471
+ # @param DataProxySpec: DataProxy规格
23472
+ # 注意:此字段可能返回 null,表示取不到有效值。
23473
+ # @type DataProxySpec: String
23474
+ # @param DataProxyNum: DataProxy数量
23475
+ # 注意:此字段可能返回 null,表示取不到有效值。
23476
+ # @type DataProxyNum: Integer
23477
+ # @param DataProxyStatus: DataProxy状态
23478
+ # 注意:此字段可能返回 null,表示取不到有效值。
23479
+ # @type DataProxyStatus: Integer
23480
+ # @param DataProxyStatusDescription: DataProxy状态描述:保存创建失败,运行异常和更新失败的原因
23481
+ # 注意:此字段可能返回 null,表示取不到有效值。
23482
+ # @type DataProxyStatusDescription: String
23483
+ # @param BillingType: 计费类型
23484
+ # 注意:此字段可能返回 null,表示取不到有效值。
23485
+ # @type BillingType: String
23486
+ # @param ExpireTime: 资源到期时间,时间戳毫秒
23487
+ # 注意:此字段可能返回 null,表示取不到有效值。
23488
+ # @type ExpireTime: Integer
23489
+ # @param LifeTime: 资源生命周期
23490
+ # 注意:此字段可能返回 null,表示取不到有效值。
23491
+ # @type LifeTime: Integer
23492
+
23493
+ attr_accessor :Type, :InstanceId, :InstanceName, :VpcId, :SubnetId, :Status, :StatusDescription, :DataProxySpec, :DataProxyNum, :DataProxyStatus, :DataProxyStatusDescription, :BillingType, :ExpireTime, :LifeTime
23494
+
23495
+ def initialize(type=nil, instanceid=nil, instancename=nil, vpcid=nil, subnetid=nil, status=nil, statusdescription=nil, dataproxyspec=nil, dataproxynum=nil, dataproxystatus=nil, dataproxystatusdescription=nil, billingtype=nil, expiretime=nil, lifetime=nil)
23496
+ @Type = type
23497
+ @InstanceId = instanceid
23498
+ @InstanceName = instancename
23499
+ @VpcId = vpcid
23500
+ @SubnetId = subnetid
23501
+ @Status = status
23502
+ @StatusDescription = statusdescription
23503
+ @DataProxySpec = dataproxyspec
23504
+ @DataProxyNum = dataproxynum
23505
+ @DataProxyStatus = dataproxystatus
23506
+ @DataProxyStatusDescription = dataproxystatusdescription
23507
+ @BillingType = billingtype
23508
+ @ExpireTime = expiretime
23509
+ @LifeTime = lifetime
23510
+ end
23511
+
23512
+ def deserialize(params)
23513
+ @Type = params['Type']
23514
+ @InstanceId = params['InstanceId']
23515
+ @InstanceName = params['InstanceName']
23516
+ @VpcId = params['VpcId']
23517
+ @SubnetId = params['SubnetId']
23518
+ @Status = params['Status']
23519
+ @StatusDescription = params['StatusDescription']
23520
+ @DataProxySpec = params['DataProxySpec']
23521
+ @DataProxyNum = params['DataProxyNum']
23522
+ @DataProxyStatus = params['DataProxyStatus']
23523
+ @DataProxyStatusDescription = params['DataProxyStatusDescription']
23524
+ @BillingType = params['BillingType']
23525
+ @ExpireTime = params['ExpireTime']
23526
+ @LifeTime = params['LifeTime']
23527
+ end
23528
+ end
23529
+
22858
23530
  # 补录计划实例集合
22859
23531
  class MakePlanInstanceOpsDtoCollection < TencentCloud::Common::AbstractModel
22860
23532
  # @param TotalCount: 记录总数
@@ -24272,8 +24944,8 @@ module TencentCloud
24272
24944
 
24273
24945
  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
24274
24946
  extend Gem::Deprecate
24275
- deprecate :InCharge, :none, 2025, 5
24276
- deprecate :InCharge=, :none, 2025, 5
24947
+ deprecate :InCharge, :none, 2025, 6
24948
+ deprecate :InCharge=, :none, 2025, 6
24277
24949
 
24278
24950
  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)
24279
24951
  @ProjectId = projectid
@@ -26562,12 +27234,12 @@ module TencentCloud
26562
27234
 
26563
27235
  attr_accessor :ProjectId, :Name, :EventSubType, :TimeToLive, :TimeUnit, :Owner, :Description, :EventType, :EventBroadcastType, :DimensionFormat
26564
27236
  extend Gem::Deprecate
26565
- deprecate :EventType, :none, 2025, 5
26566
- deprecate :EventType=, :none, 2025, 5
26567
- deprecate :EventBroadcastType, :none, 2025, 5
26568
- deprecate :EventBroadcastType=, :none, 2025, 5
26569
- deprecate :DimensionFormat, :none, 2025, 5
26570
- deprecate :DimensionFormat=, :none, 2025, 5
27237
+ deprecate :EventType, :none, 2025, 6
27238
+ deprecate :EventType=, :none, 2025, 6
27239
+ deprecate :EventBroadcastType, :none, 2025, 6
27240
+ deprecate :EventBroadcastType=, :none, 2025, 6
27241
+ deprecate :DimensionFormat, :none, 2025, 6
27242
+ deprecate :DimensionFormat=, :none, 2025, 6
26571
27243
 
26572
27244
  def initialize(projectid=nil, name=nil, eventsubtype=nil, timetolive=nil, timeunit=nil, owner=nil, description=nil, eventtype=nil, eventbroadcasttype=nil, dimensionformat=nil)
26573
27245
  @ProjectId = projectid
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.1073
4
+ version: 3.0.1076
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-06-03 00:00:00.000000000 Z
11
+ date: 2025-06-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common