tencentcloud-sdk-wedata 3.0.938 → 3.0.940
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210820/client.rb +72 -0
- data/lib/v20210820/models.rb +533 -58
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 20418df332e2a6cea7300bba531d9b35048d0c2c
|
4
|
+
data.tar.gz: 12a1bf8d0068de32cb4a7d2d91bedc8f39b8b52f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 726757720bf3d1576405fc798c116512bceaffbae733e57267a91e1da83f0429225562de2539f1d6abddb87bc366b16afc52366c29413cab19913ade2c746150
|
7
|
+
data.tar.gz: 99d3a22274c17a1e0269e8b8923f7486cc777bc6d4178a40c0950061c243bf32b24a5b7f4558f17997960f0d7629e37d88205a38d5dc47c5b92b8cfcf03ba0cc
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.940
|
data/lib/v20210820/client.rb
CHANGED
@@ -629,6 +629,30 @@ module TencentCloud
|
|
629
629
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
630
630
|
end
|
631
631
|
|
632
|
+
# 创建数据建模,提供给云应用使用,实现“Wedata数据建模”的下单发货
|
633
|
+
|
634
|
+
# @param request: Request instance for CreateDataModel.
|
635
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::CreateDataModelRequest`
|
636
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::CreateDataModelResponse`
|
637
|
+
def CreateDataModel(request)
|
638
|
+
body = send_request('CreateDataModel', request.serialize)
|
639
|
+
response = JSON.parse(body)
|
640
|
+
if response['Response'].key?('Error') == false
|
641
|
+
model = CreateDataModelResponse.new
|
642
|
+
model.deserialize(response['Response'])
|
643
|
+
model
|
644
|
+
else
|
645
|
+
code = response['Response']['Error']['Code']
|
646
|
+
message = response['Response']['Error']['Message']
|
647
|
+
reqid = response['Response']['RequestId']
|
648
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
649
|
+
end
|
650
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
651
|
+
raise e
|
652
|
+
rescue StandardError => e
|
653
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
654
|
+
end
|
655
|
+
|
632
656
|
# 创建数据源
|
633
657
|
|
634
658
|
# @param request: Request instance for CreateDataSource.
|
@@ -1037,6 +1061,30 @@ module TencentCloud
|
|
1037
1061
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1038
1062
|
end
|
1039
1063
|
|
1064
|
+
# 销毁数据建模,提供给云应用使用,实现“Wedata数据建模”的销毁
|
1065
|
+
|
1066
|
+
# @param request: Request instance for DeleteDataModel.
|
1067
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DeleteDataModelRequest`
|
1068
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DeleteDataModelResponse`
|
1069
|
+
def DeleteDataModel(request)
|
1070
|
+
body = send_request('DeleteDataModel', request.serialize)
|
1071
|
+
response = JSON.parse(body)
|
1072
|
+
if response['Response'].key?('Error') == false
|
1073
|
+
model = DeleteDataModelResponse.new
|
1074
|
+
model.deserialize(response['Response'])
|
1075
|
+
model
|
1076
|
+
else
|
1077
|
+
code = response['Response']['Error']['Code']
|
1078
|
+
message = response['Response']['Error']['Message']
|
1079
|
+
reqid = response['Response']['RequestId']
|
1080
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1081
|
+
end
|
1082
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1083
|
+
raise e
|
1084
|
+
rescue StandardError => e
|
1085
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1086
|
+
end
|
1087
|
+
|
1040
1088
|
# 删除数据源
|
1041
1089
|
|
1042
1090
|
# @param request: Request instance for DeleteDataSources.
|
@@ -5632,6 +5680,30 @@ module TencentCloud
|
|
5632
5680
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5633
5681
|
end
|
5634
5682
|
|
5683
|
+
# 数语向wedata注册,提供自身cam角色信息,跳转域名、ip、端口信息等
|
5684
|
+
|
5685
|
+
# @param request: Request instance for UpdateDataModelRegistryInfo.
|
5686
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::UpdateDataModelRegistryInfoRequest`
|
5687
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::UpdateDataModelRegistryInfoResponse`
|
5688
|
+
def UpdateDataModelRegistryInfo(request)
|
5689
|
+
body = send_request('UpdateDataModelRegistryInfo', request.serialize)
|
5690
|
+
response = JSON.parse(body)
|
5691
|
+
if response['Response'].key?('Error') == false
|
5692
|
+
model = UpdateDataModelRegistryInfoResponse.new
|
5693
|
+
model.deserialize(response['Response'])
|
5694
|
+
model
|
5695
|
+
else
|
5696
|
+
code = response['Response']['Error']['Code']
|
5697
|
+
message = response['Response']['Error']['Message']
|
5698
|
+
reqid = response['Response']['RequestId']
|
5699
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5700
|
+
end
|
5701
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5702
|
+
raise e
|
5703
|
+
rescue StandardError => e
|
5704
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5705
|
+
end
|
5706
|
+
|
5635
5707
|
# 修改工作流责任人
|
5636
5708
|
|
5637
5709
|
# @param request: Request instance for UpdateWorkflowOwner.
|
data/lib/v20210820/models.rb
CHANGED
@@ -2229,8 +2229,8 @@ module TencentCloud
|
|
2229
2229
|
|
2230
2230
|
attr_accessor :ProjectId, :AlarmRegularName, :TaskId, :Id, :TaskType, :MonitorType
|
2231
2231
|
extend Gem::Deprecate
|
2232
|
-
deprecate :TaskId, :none, 2024,
|
2233
|
-
deprecate :TaskId=, :none, 2024,
|
2232
|
+
deprecate :TaskId, :none, 2024, 11
|
2233
|
+
deprecate :TaskId=, :none, 2024, 11
|
2234
2234
|
|
2235
2235
|
def initialize(projectid=nil, alarmregularname=nil, taskid=nil, id=nil, tasktype=nil, monitortype=nil)
|
2236
2236
|
@ProjectId = projectid
|
@@ -3547,6 +3547,62 @@ module TencentCloud
|
|
3547
3547
|
end
|
3548
3548
|
end
|
3549
3549
|
|
3550
|
+
# CreateDataModel请求参数结构体
|
3551
|
+
class CreateDataModelRequest < TencentCloud::Common::AbstractModel
|
3552
|
+
# @param CloudappId: 云应用的实例id
|
3553
|
+
# @type CloudappId: String
|
3554
|
+
# @param UserId: 用户的子账号id
|
3555
|
+
# @type UserId: String
|
3556
|
+
# @param TimeUnit: Wedata数据建模购买参数,包年包月类型单位,年:y,月:m,默认m
|
3557
|
+
# @type TimeUnit: String
|
3558
|
+
# @param TimeSpan: Wedata数据建模购买参数,购买时长,默认1
|
3559
|
+
# @type TimeSpan: Integer
|
3560
|
+
# @param AutoRenewFlag: Wedata数据建模购买参数,是否自动续费,是:1,否:0,默认0
|
3561
|
+
# @type AutoRenewFlag: Integer
|
3562
|
+
# @param DataModelVersion: Wedata数据建模购买参数,标准版:DATA_MODEL_STANDARD,企业版:DATA_MODEL_PRO,默认DATA_MODEL_STANDARD
|
3563
|
+
# @type DataModelVersion: String
|
3564
|
+
|
3565
|
+
attr_accessor :CloudappId, :UserId, :TimeUnit, :TimeSpan, :AutoRenewFlag, :DataModelVersion
|
3566
|
+
|
3567
|
+
def initialize(cloudappid=nil, userid=nil, timeunit=nil, timespan=nil, autorenewflag=nil, datamodelversion=nil)
|
3568
|
+
@CloudappId = cloudappid
|
3569
|
+
@UserId = userid
|
3570
|
+
@TimeUnit = timeunit
|
3571
|
+
@TimeSpan = timespan
|
3572
|
+
@AutoRenewFlag = autorenewflag
|
3573
|
+
@DataModelVersion = datamodelversion
|
3574
|
+
end
|
3575
|
+
|
3576
|
+
def deserialize(params)
|
3577
|
+
@CloudappId = params['CloudappId']
|
3578
|
+
@UserId = params['UserId']
|
3579
|
+
@TimeUnit = params['TimeUnit']
|
3580
|
+
@TimeSpan = params['TimeSpan']
|
3581
|
+
@AutoRenewFlag = params['AutoRenewFlag']
|
3582
|
+
@DataModelVersion = params['DataModelVersion']
|
3583
|
+
end
|
3584
|
+
end
|
3585
|
+
|
3586
|
+
# CreateDataModel返回参数结构体
|
3587
|
+
class CreateDataModelResponse < TencentCloud::Common::AbstractModel
|
3588
|
+
# @param Data: “Wedata数据建模”的实例id
|
3589
|
+
# @type Data: String
|
3590
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3591
|
+
# @type RequestId: String
|
3592
|
+
|
3593
|
+
attr_accessor :Data, :RequestId
|
3594
|
+
|
3595
|
+
def initialize(data=nil, requestid=nil)
|
3596
|
+
@Data = data
|
3597
|
+
@RequestId = requestid
|
3598
|
+
end
|
3599
|
+
|
3600
|
+
def deserialize(params)
|
3601
|
+
@Data = params['Data']
|
3602
|
+
@RequestId = params['RequestId']
|
3603
|
+
end
|
3604
|
+
end
|
3605
|
+
|
3550
3606
|
# CreateDataSource请求参数结构体
|
3551
3607
|
class CreateDataSourceRequest < TencentCloud::Common::AbstractModel
|
3552
3608
|
# @param Name: 数据源名称,在相同SpaceName下,数据源名称不能为空
|
@@ -5353,10 +5409,28 @@ module TencentCloud
|
|
5353
5409
|
# @param CreateTime: 创建时间
|
5354
5410
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5355
5411
|
# @type CreateTime: String
|
5412
|
+
# @param TableCount: 总表数
|
5413
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5414
|
+
# @type TableCount: Integer
|
5415
|
+
# @param DatasourceList: 数据源信息
|
5416
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5417
|
+
# @type DatasourceList: Array
|
5418
|
+
# @param CollectJobId: 采集任务id
|
5419
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5420
|
+
# @type CollectJobId: String
|
5421
|
+
# @param CollectJobName: 采集任务名称
|
5422
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5423
|
+
# @type CollectJobName: String
|
5424
|
+
# @param ClusterId: 引擎id
|
5425
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5426
|
+
# @type ClusterId: String
|
5427
|
+
# @param ClusterName: 引擎名称
|
5428
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5429
|
+
# @type ClusterName: String
|
5356
5430
|
|
5357
|
-
attr_accessor :ProjectId, :MetastoreType, :DatasourceName, :DatasourceId, :ProjectName, :Category, :Description, :Instance, :Region, :Status, :DatabaseName, :ProjectDisplayName, :OwnerAccountName, :DisplayName, :DatabaseId, :Catalog, :StorageSize, :StorageSizeWithUnit, :CreateTime
|
5431
|
+
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
|
5358
5432
|
|
5359
|
-
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)
|
5433
|
+
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)
|
5360
5434
|
@ProjectId = projectid
|
5361
5435
|
@MetastoreType = metastoretype
|
5362
5436
|
@DatasourceName = datasourcename
|
@@ -5376,6 +5450,12 @@ module TencentCloud
|
|
5376
5450
|
@StorageSize = storagesize
|
5377
5451
|
@StorageSizeWithUnit = storagesizewithunit
|
5378
5452
|
@CreateTime = createtime
|
5453
|
+
@TableCount = tablecount
|
5454
|
+
@DatasourceList = datasourcelist
|
5455
|
+
@CollectJobId = collectjobid
|
5456
|
+
@CollectJobName = collectjobname
|
5457
|
+
@ClusterId = clusterid
|
5458
|
+
@ClusterName = clustername
|
5379
5459
|
end
|
5380
5460
|
|
5381
5461
|
def deserialize(params)
|
@@ -5398,6 +5478,19 @@ module TencentCloud
|
|
5398
5478
|
@StorageSize = params['StorageSize']
|
5399
5479
|
@StorageSizeWithUnit = params['StorageSizeWithUnit']
|
5400
5480
|
@CreateTime = params['CreateTime']
|
5481
|
+
@TableCount = params['TableCount']
|
5482
|
+
unless params['DatasourceList'].nil?
|
5483
|
+
@DatasourceList = []
|
5484
|
+
params['DatasourceList'].each do |i|
|
5485
|
+
govdatasourceinfo_tmp = GovDatasourceInfo.new
|
5486
|
+
govdatasourceinfo_tmp.deserialize(i)
|
5487
|
+
@DatasourceList << govdatasourceinfo_tmp
|
5488
|
+
end
|
5489
|
+
end
|
5490
|
+
@CollectJobId = params['CollectJobId']
|
5491
|
+
@CollectJobName = params['CollectJobName']
|
5492
|
+
@ClusterId = params['ClusterId']
|
5493
|
+
@ClusterName = params['ClusterName']
|
5401
5494
|
end
|
5402
5495
|
end
|
5403
5496
|
|
@@ -5536,6 +5629,50 @@ module TencentCloud
|
|
5536
5629
|
end
|
5537
5630
|
end
|
5538
5631
|
|
5632
|
+
# DeleteDataModel请求参数结构体
|
5633
|
+
class DeleteDataModelRequest < TencentCloud::Common::AbstractModel
|
5634
|
+
# @param CloudappId: 云应用的实例id
|
5635
|
+
# @type CloudappId: String
|
5636
|
+
# @param DataModelId: 数据建模的实例id
|
5637
|
+
# @type DataModelId: String
|
5638
|
+
# @param UserId: 用户的子账号id
|
5639
|
+
# @type UserId: String
|
5640
|
+
|
5641
|
+
attr_accessor :CloudappId, :DataModelId, :UserId
|
5642
|
+
|
5643
|
+
def initialize(cloudappid=nil, datamodelid=nil, userid=nil)
|
5644
|
+
@CloudappId = cloudappid
|
5645
|
+
@DataModelId = datamodelid
|
5646
|
+
@UserId = userid
|
5647
|
+
end
|
5648
|
+
|
5649
|
+
def deserialize(params)
|
5650
|
+
@CloudappId = params['CloudappId']
|
5651
|
+
@DataModelId = params['DataModelId']
|
5652
|
+
@UserId = params['UserId']
|
5653
|
+
end
|
5654
|
+
end
|
5655
|
+
|
5656
|
+
# DeleteDataModel返回参数结构体
|
5657
|
+
class DeleteDataModelResponse < TencentCloud::Common::AbstractModel
|
5658
|
+
# @param Data: 是否销毁成功
|
5659
|
+
# @type Data: Boolean
|
5660
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5661
|
+
# @type RequestId: String
|
5662
|
+
|
5663
|
+
attr_accessor :Data, :RequestId
|
5664
|
+
|
5665
|
+
def initialize(data=nil, requestid=nil)
|
5666
|
+
@Data = data
|
5667
|
+
@RequestId = requestid
|
5668
|
+
end
|
5669
|
+
|
5670
|
+
def deserialize(params)
|
5671
|
+
@Data = params['Data']
|
5672
|
+
@RequestId = params['RequestId']
|
5673
|
+
end
|
5674
|
+
end
|
5675
|
+
|
5539
5676
|
# DeleteDataSources请求参数结构体
|
5540
5677
|
class DeleteDataSourcesRequest < TencentCloud::Common::AbstractModel
|
5541
5678
|
# @param Ids: id列表
|
@@ -8438,12 +8575,12 @@ module TencentCloud
|
|
8438
8575
|
|
8439
8576
|
attr_accessor :ProjectId, :Category, :PageNumber, :PageSize, :EventName, :EventType, :EventSubType, :EventBroadcastType, :Status, :CreationTimeStart, :CreationTimeEnd, :EventTriggeredTimeStart, :EventTriggeredTimeEnd, :LogTimeStart, :LogTimeEnd, :Dimension, :TimeToLive, :SortItem, :SortType
|
8440
8577
|
extend Gem::Deprecate
|
8441
|
-
deprecate :EventType, :none, 2024,
|
8442
|
-
deprecate :EventType=, :none, 2024,
|
8443
|
-
deprecate :EventBroadcastType, :none, 2024,
|
8444
|
-
deprecate :EventBroadcastType=, :none, 2024,
|
8445
|
-
deprecate :Status, :none, 2024,
|
8446
|
-
deprecate :Status=, :none, 2024,
|
8578
|
+
deprecate :EventType, :none, 2024, 11
|
8579
|
+
deprecate :EventType=, :none, 2024, 11
|
8580
|
+
deprecate :EventBroadcastType, :none, 2024, 11
|
8581
|
+
deprecate :EventBroadcastType=, :none, 2024, 11
|
8582
|
+
deprecate :Status, :none, 2024, 11
|
8583
|
+
deprecate :Status=, :none, 2024, 11
|
8447
8584
|
|
8448
8585
|
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)
|
8449
8586
|
@ProjectId = projectid
|
@@ -9096,6 +9233,12 @@ module TencentCloud
|
|
9096
9233
|
# @type TaskId: String
|
9097
9234
|
# @param CurRunDate: 数据时间
|
9098
9235
|
# @type CurRunDate: String
|
9236
|
+
# @param LogLevelType: 日志级别,Info/Debug/Warn/Error/All
|
9237
|
+
# @type LogLevelType: String
|
9238
|
+
# @param ExecutionFileType: 文件类型,Log/Code
|
9239
|
+
# @type ExecutionFileType: String
|
9240
|
+
# @param ExecutionJobId: 统一执行平台执行id
|
9241
|
+
# @type ExecutionJobId: String
|
9099
9242
|
# @param BrokerIp: 服务器Ip
|
9100
9243
|
# @type BrokerIp: String
|
9101
9244
|
# @param OriginFileName: 文件Name
|
@@ -9104,27 +9247,41 @@ module TencentCloud
|
|
9104
9247
|
# @type StartCount: Integer
|
9105
9248
|
# @param LineCount: 每次查询行数
|
9106
9249
|
# @type LineCount: Integer
|
9250
|
+
# @param ExtInfo: 查询日志扩展信息,通过统一执行平台接口分页查询日志时需要带上,第一页时为null
|
9251
|
+
# @type ExtInfo: String
|
9252
|
+
# @param RequestFromSource: 请求来源,WEB 前端;CLIENT 客户端
|
9253
|
+
# @type RequestFromSource: String
|
9107
9254
|
|
9108
|
-
attr_accessor :ProjectId, :TaskId, :CurRunDate, :BrokerIp, :OriginFileName, :StartCount, :LineCount
|
9255
|
+
attr_accessor :ProjectId, :TaskId, :CurRunDate, :LogLevelType, :ExecutionFileType, :ExecutionJobId, :BrokerIp, :OriginFileName, :StartCount, :LineCount, :ExtInfo, :RequestFromSource
|
9109
9256
|
|
9110
|
-
def initialize(projectid=nil, taskid=nil, currundate=nil, brokerip=nil, originfilename=nil, startcount=nil, linecount=nil)
|
9257
|
+
def initialize(projectid=nil, taskid=nil, currundate=nil, logleveltype=nil, executionfiletype=nil, executionjobid=nil, brokerip=nil, originfilename=nil, startcount=nil, linecount=nil, extinfo=nil, requestfromsource=nil)
|
9111
9258
|
@ProjectId = projectid
|
9112
9259
|
@TaskId = taskid
|
9113
9260
|
@CurRunDate = currundate
|
9261
|
+
@LogLevelType = logleveltype
|
9262
|
+
@ExecutionFileType = executionfiletype
|
9263
|
+
@ExecutionJobId = executionjobid
|
9114
9264
|
@BrokerIp = brokerip
|
9115
9265
|
@OriginFileName = originfilename
|
9116
9266
|
@StartCount = startcount
|
9117
9267
|
@LineCount = linecount
|
9268
|
+
@ExtInfo = extinfo
|
9269
|
+
@RequestFromSource = requestfromsource
|
9118
9270
|
end
|
9119
9271
|
|
9120
9272
|
def deserialize(params)
|
9121
9273
|
@ProjectId = params['ProjectId']
|
9122
9274
|
@TaskId = params['TaskId']
|
9123
9275
|
@CurRunDate = params['CurRunDate']
|
9276
|
+
@LogLevelType = params['LogLevelType']
|
9277
|
+
@ExecutionFileType = params['ExecutionFileType']
|
9278
|
+
@ExecutionJobId = params['ExecutionJobId']
|
9124
9279
|
@BrokerIp = params['BrokerIp']
|
9125
9280
|
@OriginFileName = params['OriginFileName']
|
9126
9281
|
@StartCount = params['StartCount']
|
9127
9282
|
@LineCount = params['LineCount']
|
9283
|
+
@ExtInfo = params['ExtInfo']
|
9284
|
+
@RequestFromSource = params['RequestFromSource']
|
9128
9285
|
end
|
9129
9286
|
end
|
9130
9287
|
|
@@ -9160,27 +9317,43 @@ module TencentCloud
|
|
9160
9317
|
# @type TaskId: String
|
9161
9318
|
# @param CurRunDate: 实例数据时间
|
9162
9319
|
# @type CurRunDate: String
|
9320
|
+
# @param RequestFromSource: 请求来源,WEB 前端;CLIENT 客户端
|
9321
|
+
# @type RequestFromSource: String
|
9163
9322
|
# @param BrokerIp: 执行机IP
|
9164
9323
|
# @type BrokerIp: String
|
9165
9324
|
# @param OriginFileName: 日志文件名
|
9166
9325
|
# @type OriginFileName: String
|
9326
|
+
# @param ExecutionJobId: 执行平台下发执行id
|
9327
|
+
# @type ExecutionJobId: String
|
9328
|
+
# @param LogLevelType: 日志级别,Info/Debug/Warn/Error/All
|
9329
|
+
# @type LogLevelType: String
|
9330
|
+
# @param ExecutionFileType: 文件类型,Log/Code
|
9331
|
+
# @type ExecutionFileType: String
|
9167
9332
|
|
9168
|
-
attr_accessor :ProjectId, :TaskId, :CurRunDate, :BrokerIp, :OriginFileName
|
9333
|
+
attr_accessor :ProjectId, :TaskId, :CurRunDate, :RequestFromSource, :BrokerIp, :OriginFileName, :ExecutionJobId, :LogLevelType, :ExecutionFileType
|
9169
9334
|
|
9170
|
-
def initialize(projectid=nil, taskid=nil, currundate=nil, brokerip=nil, originfilename=nil)
|
9335
|
+
def initialize(projectid=nil, taskid=nil, currundate=nil, requestfromsource=nil, brokerip=nil, originfilename=nil, executionjobid=nil, logleveltype=nil, executionfiletype=nil)
|
9171
9336
|
@ProjectId = projectid
|
9172
9337
|
@TaskId = taskid
|
9173
9338
|
@CurRunDate = currundate
|
9339
|
+
@RequestFromSource = requestfromsource
|
9174
9340
|
@BrokerIp = brokerip
|
9175
9341
|
@OriginFileName = originfilename
|
9342
|
+
@ExecutionJobId = executionjobid
|
9343
|
+
@LogLevelType = logleveltype
|
9344
|
+
@ExecutionFileType = executionfiletype
|
9176
9345
|
end
|
9177
9346
|
|
9178
9347
|
def deserialize(params)
|
9179
9348
|
@ProjectId = params['ProjectId']
|
9180
9349
|
@TaskId = params['TaskId']
|
9181
9350
|
@CurRunDate = params['CurRunDate']
|
9351
|
+
@RequestFromSource = params['RequestFromSource']
|
9182
9352
|
@BrokerIp = params['BrokerIp']
|
9183
9353
|
@OriginFileName = params['OriginFileName']
|
9354
|
+
@ExecutionJobId = params['ExecutionJobId']
|
9355
|
+
@LogLevelType = params['LogLevelType']
|
9356
|
+
@ExecutionFileType = params['ExecutionFileType']
|
9184
9357
|
end
|
9185
9358
|
end
|
9186
9359
|
|
@@ -10432,9 +10605,9 @@ module TencentCloud
|
|
10432
10605
|
# 简单模式:ALL
|
10433
10606
|
# @type EnvType: String
|
10434
10607
|
# @param Filters: 过滤条件
|
10435
|
-
# @type Filters:
|
10608
|
+
# @type Filters: Array
|
10436
10609
|
# @param OrderFields: 排序条件
|
10437
|
-
# @type OrderFields:
|
10610
|
+
# @type OrderFields: Array
|
10438
10611
|
|
10439
10612
|
attr_accessor :Type, :ProjectId, :Name, :DisplayName, :EnvType, :Filters, :OrderFields
|
10440
10613
|
|
@@ -10455,12 +10628,20 @@ module TencentCloud
|
|
10455
10628
|
@DisplayName = params['DisplayName']
|
10456
10629
|
@EnvType = params['EnvType']
|
10457
10630
|
unless params['Filters'].nil?
|
10458
|
-
@Filters =
|
10459
|
-
|
10631
|
+
@Filters = []
|
10632
|
+
params['Filters'].each do |i|
|
10633
|
+
filter_tmp = Filter.new
|
10634
|
+
filter_tmp.deserialize(i)
|
10635
|
+
@Filters << filter_tmp
|
10636
|
+
end
|
10460
10637
|
end
|
10461
10638
|
unless params['OrderFields'].nil?
|
10462
|
-
@OrderFields =
|
10463
|
-
|
10639
|
+
@OrderFields = []
|
10640
|
+
params['OrderFields'].each do |i|
|
10641
|
+
orderfield_tmp = OrderField.new
|
10642
|
+
orderfield_tmp.deserialize(i)
|
10643
|
+
@OrderFields << orderfield_tmp
|
10644
|
+
end
|
10464
10645
|
end
|
10465
10646
|
end
|
10466
10647
|
end
|
@@ -11981,6 +12162,8 @@ module TencentCloud
|
|
11981
12162
|
|
11982
12163
|
# DescribeScheduleInstances请求参数结构体
|
11983
12164
|
class DescribeScheduleInstancesRequest < TencentCloud::Common::AbstractModel
|
12165
|
+
# @param RequestFromSource: 请求来源,WEB 前端;CLIENT 客户端
|
12166
|
+
# @type RequestFromSource: String
|
11984
12167
|
# @param Instances: 实例列表
|
11985
12168
|
# @type Instances: Array
|
11986
12169
|
# @param CheckFather: 检查父任务类型, true: 检查父任务; false: 不检查父任务
|
@@ -12017,10 +12200,13 @@ module TencentCloud
|
|
12017
12200
|
# @type RequestBaseInfo: :class:`Tencentcloud::Wedata.v20210820.models.ProjectBaseInfoOpsRequest`
|
12018
12201
|
# @param IsCount: 是否计算总数
|
12019
12202
|
# @type IsCount: Boolean
|
12203
|
+
# @param ProjectIds: 项目ID列表,用于多项目实例列表筛选,请注意,该字段传入时 ProjectId 字段也必须传,且传入的 ProjectIds 中的项目ID必须是当前用户有权限的项目ID,否则会由于权限校验失败报错
|
12204
|
+
# @type ProjectIds: Array
|
12020
12205
|
|
12021
|
-
attr_accessor :Instances, :CheckFather, :RerunType, :DependentWay, :SkipEventListening, :SonInstanceType, :SearchCondition, :OptType, :OperatorName, :OperatorId, :ProjectId, :ProjectIdent, :ProjectName, :PageIndex, :PageSize, :Count, :RequestBaseInfo, :IsCount
|
12206
|
+
attr_accessor :RequestFromSource, :Instances, :CheckFather, :RerunType, :DependentWay, :SkipEventListening, :SonInstanceType, :SearchCondition, :OptType, :OperatorName, :OperatorId, :ProjectId, :ProjectIdent, :ProjectName, :PageIndex, :PageSize, :Count, :RequestBaseInfo, :IsCount, :ProjectIds
|
12022
12207
|
|
12023
|
-
def initialize(instances=nil, checkfather=nil, reruntype=nil, dependentway=nil, skipeventlistening=nil, soninstancetype=nil, searchcondition=nil, opttype=nil, operatorname=nil, operatorid=nil, projectid=nil, projectident=nil, projectname=nil, pageindex=nil, pagesize=nil, count=nil, requestbaseinfo=nil, iscount=nil)
|
12208
|
+
def initialize(requestfromsource=nil, instances=nil, checkfather=nil, reruntype=nil, dependentway=nil, skipeventlistening=nil, soninstancetype=nil, searchcondition=nil, opttype=nil, operatorname=nil, operatorid=nil, projectid=nil, projectident=nil, projectname=nil, pageindex=nil, pagesize=nil, count=nil, requestbaseinfo=nil, iscount=nil, projectids=nil)
|
12209
|
+
@RequestFromSource = requestfromsource
|
12024
12210
|
@Instances = instances
|
12025
12211
|
@CheckFather = checkfather
|
12026
12212
|
@RerunType = reruntype
|
@@ -12039,9 +12225,11 @@ module TencentCloud
|
|
12039
12225
|
@Count = count
|
12040
12226
|
@RequestBaseInfo = requestbaseinfo
|
12041
12227
|
@IsCount = iscount
|
12228
|
+
@ProjectIds = projectids
|
12042
12229
|
end
|
12043
12230
|
|
12044
12231
|
def deserialize(params)
|
12232
|
+
@RequestFromSource = params['RequestFromSource']
|
12045
12233
|
unless params['Instances'].nil?
|
12046
12234
|
@Instances = []
|
12047
12235
|
params['Instances'].each do |i|
|
@@ -12073,24 +12261,30 @@ module TencentCloud
|
|
12073
12261
|
@RequestBaseInfo.deserialize(params['RequestBaseInfo'])
|
12074
12262
|
end
|
12075
12263
|
@IsCount = params['IsCount']
|
12264
|
+
@ProjectIds = params['ProjectIds']
|
12076
12265
|
end
|
12077
12266
|
end
|
12078
12267
|
|
12079
12268
|
# DescribeScheduleInstances返回参数结构体
|
12080
12269
|
class DescribeScheduleInstancesResponse < TencentCloud::Common::AbstractModel
|
12270
|
+
# @param RequestFromSource: 请求来源,WEB 前端;CLIENT 客户端
|
12271
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
12272
|
+
# @type RequestFromSource: String
|
12081
12273
|
# @param Data: 实例结果集
|
12082
12274
|
# @type Data: :class:`Tencentcloud::Wedata.v20210820.models.CollectionInstanceOpsDto`
|
12083
12275
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12084
12276
|
# @type RequestId: String
|
12085
12277
|
|
12086
|
-
attr_accessor :Data, :RequestId
|
12278
|
+
attr_accessor :RequestFromSource, :Data, :RequestId
|
12087
12279
|
|
12088
|
-
def initialize(data=nil, requestid=nil)
|
12280
|
+
def initialize(requestfromsource=nil, data=nil, requestid=nil)
|
12281
|
+
@RequestFromSource = requestfromsource
|
12089
12282
|
@Data = data
|
12090
12283
|
@RequestId = requestid
|
12091
12284
|
end
|
12092
12285
|
|
12093
12286
|
def deserialize(params)
|
12287
|
+
@RequestFromSource = params['RequestFromSource']
|
12094
12288
|
unless params['Data'].nil?
|
12095
12289
|
@Data = CollectionInstanceOpsDto.new
|
12096
12290
|
@Data.deserialize(params['Data'])
|
@@ -14408,8 +14602,8 @@ module TencentCloud
|
|
14408
14602
|
|
14409
14603
|
attr_accessor :DimType, :Count, :QualityDim
|
14410
14604
|
extend Gem::Deprecate
|
14411
|
-
deprecate :DimType, :none, 2024,
|
14412
|
-
deprecate :DimType=, :none, 2024,
|
14605
|
+
deprecate :DimType, :none, 2024, 11
|
14606
|
+
deprecate :DimType=, :none, 2024, 11
|
14413
14607
|
|
14414
14608
|
def initialize(dimtype=nil, count=nil, qualitydim=nil)
|
14415
14609
|
@DimType = dimtype
|
@@ -16239,15 +16433,18 @@ module TencentCloud
|
|
16239
16433
|
# @type BucketName: String
|
16240
16434
|
# @param RemotePath: 远程地址
|
16241
16435
|
# @type RemotePath: String
|
16436
|
+
# @param RemoteRegion: 地域
|
16437
|
+
# @type RemoteRegion: String
|
16242
16438
|
|
16243
|
-
attr_accessor :ProjectId, :OriginDomain, :CrossFlag, :BucketName, :RemotePath
|
16439
|
+
attr_accessor :ProjectId, :OriginDomain, :CrossFlag, :BucketName, :RemotePath, :RemoteRegion
|
16244
16440
|
|
16245
|
-
def initialize(projectid=nil, origindomain=nil, crossflag=nil, bucketname=nil, remotepath=nil)
|
16441
|
+
def initialize(projectid=nil, origindomain=nil, crossflag=nil, bucketname=nil, remotepath=nil, remoteregion=nil)
|
16246
16442
|
@ProjectId = projectid
|
16247
16443
|
@OriginDomain = origindomain
|
16248
16444
|
@CrossFlag = crossflag
|
16249
16445
|
@BucketName = bucketname
|
16250
16446
|
@RemotePath = remotepath
|
16447
|
+
@RemoteRegion = remoteregion
|
16251
16448
|
end
|
16252
16449
|
|
16253
16450
|
def deserialize(params)
|
@@ -16256,6 +16453,7 @@ module TencentCloud
|
|
16256
16453
|
@CrossFlag = params['CrossFlag']
|
16257
16454
|
@BucketName = params['BucketName']
|
16258
16455
|
@RemotePath = params['RemotePath']
|
16456
|
+
@RemoteRegion = params['RemoteRegion']
|
16259
16457
|
end
|
16260
16458
|
end
|
16261
16459
|
|
@@ -16515,6 +16713,43 @@ module TencentCloud
|
|
16515
16713
|
end
|
16516
16714
|
end
|
16517
16715
|
|
16716
|
+
# 数据源信息
|
16717
|
+
class GovDatasourceInfo < TencentCloud::Common::AbstractModel
|
16718
|
+
# @param DatasourceId: 数据源id
|
16719
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
16720
|
+
# @type DatasourceId: String
|
16721
|
+
# @param DatasourceName: 数据源名称
|
16722
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
16723
|
+
# @type DatasourceName: String
|
16724
|
+
# @param DatasourceClusterId: 数据源集群ID
|
16725
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
16726
|
+
# @type DatasourceClusterId: String
|
16727
|
+
# @param DatasourceUrn: 数据源urn
|
16728
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
16729
|
+
# @type DatasourceUrn: String
|
16730
|
+
# @param DatasourceEnv: 数据源环境
|
16731
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
16732
|
+
# @type DatasourceEnv: String
|
16733
|
+
|
16734
|
+
attr_accessor :DatasourceId, :DatasourceName, :DatasourceClusterId, :DatasourceUrn, :DatasourceEnv
|
16735
|
+
|
16736
|
+
def initialize(datasourceid=nil, datasourcename=nil, datasourceclusterid=nil, datasourceurn=nil, datasourceenv=nil)
|
16737
|
+
@DatasourceId = datasourceid
|
16738
|
+
@DatasourceName = datasourcename
|
16739
|
+
@DatasourceClusterId = datasourceclusterid
|
16740
|
+
@DatasourceUrn = datasourceurn
|
16741
|
+
@DatasourceEnv = datasourceenv
|
16742
|
+
end
|
16743
|
+
|
16744
|
+
def deserialize(params)
|
16745
|
+
@DatasourceId = params['DatasourceId']
|
16746
|
+
@DatasourceName = params['DatasourceName']
|
16747
|
+
@DatasourceClusterId = params['DatasourceClusterId']
|
16748
|
+
@DatasourceUrn = params['DatasourceUrn']
|
16749
|
+
@DatasourceEnv = params['DatasourceEnv']
|
16750
|
+
end
|
16751
|
+
end
|
16752
|
+
|
16518
16753
|
# 实例查询类型
|
16519
16754
|
class InstanceApiOpsRequest < TencentCloud::Common::AbstractModel
|
16520
16755
|
# @param Instance: 单个查询条件
|
@@ -16579,10 +16814,12 @@ module TencentCloud
|
|
16579
16814
|
# @type DataTimeCycle: String
|
16580
16815
|
# @param ExecutorGroupIdList: 资源组id,多个资源组id用英文逗号分隔
|
16581
16816
|
# @type ExecutorGroupIdList: Array
|
16817
|
+
# @param OnlyRerun: true 只过滤重跑过的实例,false 忽略此过滤条件,结果集过滤条件中不包括是否重跑
|
16818
|
+
# @type OnlyRerun: Boolean
|
16582
16819
|
|
16583
|
-
attr_accessor :Instance, :SortCol, :TaskIdList, :TaskNameList, :FolderList, :Sort, :StateList, :TaskTypeList, :CycleList, :OwnerList, :DateFrom, :DateTo, :CreateTimeFrom, :CreateTimeTo, :StartFrom, :StartTo, :WorkflowIdList, :WorkflowNameList, :Keyword, :SearchColumns, :ProjectId, :Limit, :TaskTypeMap, :InstanceType, :DagDeal, :DagType, :DagDependent, :DagDepth, :TenantId, :DataTimeCycle, :ExecutorGroupIdList
|
16820
|
+
attr_accessor :Instance, :SortCol, :TaskIdList, :TaskNameList, :FolderList, :Sort, :StateList, :TaskTypeList, :CycleList, :OwnerList, :DateFrom, :DateTo, :CreateTimeFrom, :CreateTimeTo, :StartFrom, :StartTo, :WorkflowIdList, :WorkflowNameList, :Keyword, :SearchColumns, :ProjectId, :Limit, :TaskTypeMap, :InstanceType, :DagDeal, :DagType, :DagDependent, :DagDepth, :TenantId, :DataTimeCycle, :ExecutorGroupIdList, :OnlyRerun
|
16584
16821
|
|
16585
|
-
def initialize(instance=nil, sortcol=nil, taskidlist=nil, tasknamelist=nil, folderlist=nil, sort=nil, statelist=nil, tasktypelist=nil, cyclelist=nil, ownerlist=nil, datefrom=nil, dateto=nil, createtimefrom=nil, createtimeto=nil, startfrom=nil, startto=nil, workflowidlist=nil, workflownamelist=nil, keyword=nil, searchcolumns=nil, projectid=nil, limit=nil, tasktypemap=nil, instancetype=nil, dagdeal=nil, dagtype=nil, dagdependent=nil, dagdepth=nil, tenantid=nil, datatimecycle=nil, executorgroupidlist=nil)
|
16822
|
+
def initialize(instance=nil, sortcol=nil, taskidlist=nil, tasknamelist=nil, folderlist=nil, sort=nil, statelist=nil, tasktypelist=nil, cyclelist=nil, ownerlist=nil, datefrom=nil, dateto=nil, createtimefrom=nil, createtimeto=nil, startfrom=nil, startto=nil, workflowidlist=nil, workflownamelist=nil, keyword=nil, searchcolumns=nil, projectid=nil, limit=nil, tasktypemap=nil, instancetype=nil, dagdeal=nil, dagtype=nil, dagdependent=nil, dagdepth=nil, tenantid=nil, datatimecycle=nil, executorgroupidlist=nil, onlyrerun=nil)
|
16586
16823
|
@Instance = instance
|
16587
16824
|
@SortCol = sortcol
|
16588
16825
|
@TaskIdList = taskidlist
|
@@ -16614,6 +16851,7 @@ module TencentCloud
|
|
16614
16851
|
@TenantId = tenantid
|
16615
16852
|
@DataTimeCycle = datatimecycle
|
16616
16853
|
@ExecutorGroupIdList = executorgroupidlist
|
16854
|
+
@OnlyRerun = onlyrerun
|
16617
16855
|
end
|
16618
16856
|
|
16619
16857
|
def deserialize(params)
|
@@ -16658,6 +16896,7 @@ module TencentCloud
|
|
16658
16896
|
@TenantId = params['TenantId']
|
16659
16897
|
@DataTimeCycle = params['DataTimeCycle']
|
16660
16898
|
@ExecutorGroupIdList = params['ExecutorGroupIdList']
|
16899
|
+
@OnlyRerun = params['OnlyRerun']
|
16661
16900
|
end
|
16662
16901
|
end
|
16663
16902
|
|
@@ -16738,10 +16977,19 @@ module TencentCloud
|
|
16738
16977
|
# @param InstanceState: 实例状态
|
16739
16978
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
16740
16979
|
# @type InstanceState: String
|
16980
|
+
# @param ScheduleRunType: 调度运行方式, 0: 周期调度, 1: 空跑调度
|
16981
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
16982
|
+
# @type ScheduleRunType: Integer
|
16983
|
+
# @param ExecutionJobId: 统一执行平台,下发执行Id
|
16984
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
16985
|
+
# @type ExecutionJobId: String
|
16986
|
+
# @param InstanceRunType: 实例运行类型: 0: 普通运行, 1: 空跑运行
|
16987
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
16988
|
+
# @type InstanceRunType: Integer
|
16741
16989
|
|
16742
|
-
attr_accessor :TaskId, :CurRunDate, :LifeRound, :RunType, :Tries, :InstanceLifeDetailDtoList, :RunnerState, :ErrorDesc, :ErrorCodeLevel, :InstanceLogListOpsDto, :InstanceState
|
16990
|
+
attr_accessor :TaskId, :CurRunDate, :LifeRound, :RunType, :Tries, :InstanceLifeDetailDtoList, :RunnerState, :ErrorDesc, :ErrorCodeLevel, :InstanceLogListOpsDto, :InstanceState, :ScheduleRunType, :ExecutionJobId, :InstanceRunType
|
16743
16991
|
|
16744
|
-
def initialize(taskid=nil, currundate=nil, liferound=nil, runtype=nil, tries=nil, instancelifedetaildtolist=nil, runnerstate=nil, errordesc=nil, errorcodelevel=nil, instanceloglistopsdto=nil, instancestate=nil)
|
16992
|
+
def initialize(taskid=nil, currundate=nil, liferound=nil, runtype=nil, tries=nil, instancelifedetaildtolist=nil, runnerstate=nil, errordesc=nil, errorcodelevel=nil, instanceloglistopsdto=nil, instancestate=nil, scheduleruntype=nil, executionjobid=nil, instanceruntype=nil)
|
16745
16993
|
@TaskId = taskid
|
16746
16994
|
@CurRunDate = currundate
|
16747
16995
|
@LifeRound = liferound
|
@@ -16753,6 +17001,9 @@ module TencentCloud
|
|
16753
17001
|
@ErrorCodeLevel = errorcodelevel
|
16754
17002
|
@InstanceLogListOpsDto = instanceloglistopsdto
|
16755
17003
|
@InstanceState = instancestate
|
17004
|
+
@ScheduleRunType = scheduleruntype
|
17005
|
+
@ExecutionJobId = executionjobid
|
17006
|
+
@InstanceRunType = instanceruntype
|
16756
17007
|
end
|
16757
17008
|
|
16758
17009
|
def deserialize(params)
|
@@ -16777,6 +17028,9 @@ module TencentCloud
|
|
16777
17028
|
@InstanceLogListOpsDto.deserialize(params['InstanceLogListOpsDto'])
|
16778
17029
|
end
|
16779
17030
|
@InstanceState = params['InstanceState']
|
17031
|
+
@ScheduleRunType = params['ScheduleRunType']
|
17032
|
+
@ExecutionJobId = params['ExecutionJobId']
|
17033
|
+
@InstanceRunType = params['InstanceRunType']
|
16780
17034
|
end
|
16781
17035
|
end
|
16782
17036
|
|
@@ -16928,10 +17182,13 @@ module TencentCloud
|
|
16928
17182
|
# @param ExtensionInfo: 扩展属性
|
16929
17183
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
16930
17184
|
# @type ExtensionInfo: Array
|
17185
|
+
# @param ExecutionJobId: 统一执行平台,下发执行Id
|
17186
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
17187
|
+
# @type ExecutionJobId: String
|
16931
17188
|
|
16932
|
-
attr_accessor :TaskId, :CurRunDate, :Tries, :LastUpdate, :BrokerIp, :FileSize, :OriginFileName, :CreateTime, :InstanceLogType, :TaskName, :CostTime, :InstanceStatus, :CodeFileName, :ExtensionInfo
|
17189
|
+
attr_accessor :TaskId, :CurRunDate, :Tries, :LastUpdate, :BrokerIp, :FileSize, :OriginFileName, :CreateTime, :InstanceLogType, :TaskName, :CostTime, :InstanceStatus, :CodeFileName, :ExtensionInfo, :ExecutionJobId
|
16933
17190
|
|
16934
|
-
def initialize(taskid=nil, currundate=nil, tries=nil, lastupdate=nil, brokerip=nil, filesize=nil, originfilename=nil, createtime=nil, instancelogtype=nil, taskname=nil, costtime=nil, instancestatus=nil, codefilename=nil, extensioninfo=nil)
|
17191
|
+
def initialize(taskid=nil, currundate=nil, tries=nil, lastupdate=nil, brokerip=nil, filesize=nil, originfilename=nil, createtime=nil, instancelogtype=nil, taskname=nil, costtime=nil, instancestatus=nil, codefilename=nil, extensioninfo=nil, executionjobid=nil)
|
16935
17192
|
@TaskId = taskid
|
16936
17193
|
@CurRunDate = currundate
|
16937
17194
|
@Tries = tries
|
@@ -16946,6 +17203,7 @@ module TencentCloud
|
|
16946
17203
|
@InstanceStatus = instancestatus
|
16947
17204
|
@CodeFileName = codefilename
|
16948
17205
|
@ExtensionInfo = extensioninfo
|
17206
|
+
@ExecutionJobId = executionjobid
|
16949
17207
|
end
|
16950
17208
|
|
16951
17209
|
def deserialize(params)
|
@@ -16970,6 +17228,7 @@ module TencentCloud
|
|
16970
17228
|
@ExtensionInfo << attributeitemdto_tmp
|
16971
17229
|
end
|
16972
17230
|
end
|
17231
|
+
@ExecutionJobId = params['ExecutionJobId']
|
16973
17232
|
end
|
16974
17233
|
end
|
16975
17234
|
|
@@ -16993,16 +17252,28 @@ module TencentCloud
|
|
16993
17252
|
# @param LineCount: 日志行数
|
16994
17253
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
16995
17254
|
# @type LineCount: Integer
|
17255
|
+
# @param ExtInfo: 统一执行平台日志分页查询参数
|
17256
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
17257
|
+
# @type ExtInfo: String
|
17258
|
+
# @param IsEnd: 日志分页查询,是否最后一页
|
17259
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
17260
|
+
# @type IsEnd: Boolean
|
17261
|
+
# @param FileSize: 文件大小
|
17262
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
17263
|
+
# @type FileSize: String
|
16996
17264
|
|
16997
|
-
attr_accessor :LogInfo, :YarnLogInfo, :DataLogInfo, :ThirdTaskRunLogInfo, :ThirdTaskLogUrlDesc, :LineCount
|
17265
|
+
attr_accessor :LogInfo, :YarnLogInfo, :DataLogInfo, :ThirdTaskRunLogInfo, :ThirdTaskLogUrlDesc, :LineCount, :ExtInfo, :IsEnd, :FileSize
|
16998
17266
|
|
16999
|
-
def initialize(loginfo=nil, yarnloginfo=nil, dataloginfo=nil, thirdtaskrunloginfo=nil, thirdtasklogurldesc=nil, linecount=nil)
|
17267
|
+
def initialize(loginfo=nil, yarnloginfo=nil, dataloginfo=nil, thirdtaskrunloginfo=nil, thirdtasklogurldesc=nil, linecount=nil, extinfo=nil, isend=nil, filesize=nil)
|
17000
17268
|
@LogInfo = loginfo
|
17001
17269
|
@YarnLogInfo = yarnloginfo
|
17002
17270
|
@DataLogInfo = dataloginfo
|
17003
17271
|
@ThirdTaskRunLogInfo = thirdtaskrunloginfo
|
17004
17272
|
@ThirdTaskLogUrlDesc = thirdtasklogurldesc
|
17005
17273
|
@LineCount = linecount
|
17274
|
+
@ExtInfo = extinfo
|
17275
|
+
@IsEnd = isend
|
17276
|
+
@FileSize = filesize
|
17006
17277
|
end
|
17007
17278
|
|
17008
17279
|
def deserialize(params)
|
@@ -17012,6 +17283,9 @@ module TencentCloud
|
|
17012
17283
|
@ThirdTaskRunLogInfo = params['ThirdTaskRunLogInfo']
|
17013
17284
|
@ThirdTaskLogUrlDesc = params['ThirdTaskLogUrlDesc']
|
17014
17285
|
@LineCount = params['LineCount']
|
17286
|
+
@ExtInfo = params['ExtInfo']
|
17287
|
+
@IsEnd = params['IsEnd']
|
17288
|
+
@FileSize = params['FileSize']
|
17015
17289
|
end
|
17016
17290
|
end
|
17017
17291
|
|
@@ -17297,10 +17571,16 @@ module TencentCloud
|
|
17297
17571
|
# @param CirculateInstanceList: 循环依赖关联的实例
|
17298
17572
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
17299
17573
|
# @type CirculateInstanceList: Array
|
17574
|
+
# @param ConcurrentStrategy: 并发策略, 0: 等待并发, 1: kill自身
|
17575
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
17576
|
+
# @type ConcurrentStrategy: Integer
|
17577
|
+
# @param ScheduleRunType: 调度运行方式, 0: 周期调度, 1: 空跑调度
|
17578
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
17579
|
+
# @type ScheduleRunType: Integer
|
17300
17580
|
|
17301
|
-
attr_accessor :TaskId, :TaskName, :WorkflowId, :WorkflowName, :InCharge, :CycleType, :CurRunDate, :NextCurDate, :RunPriority, :TryLimit, :Tries, :TotalRunNum, :DoFlag, :RedoFlag, :State, :RuntimeBroker, :ErrorDesc, :TaskType, :DependenceFulfillTime, :FirstDependenceFulfillTime, :FirstStartTime, :StartTime, :EndTime, :CostTime, :CostMillisecond, :MaxCostTime, :MinCostTime, :AvgCostTime, :LastLog, :SchedulerDateTime, :LastSchedulerDateTime, :LastUpdate, :CreateTime, :DependencyRel, :ExecutionSpace, :IgnoreEvent, :VirtualFlag, :FolderId, :FolderName, :SonList, :ProductName, :ResourceGroup, :ResourceInstanceId, :YarnQueue, :SchedulerDesc, :FirstSubmitTime, :FirstRunTime, :ProjectId, :ProjectIdent, :ProjectName, :TenantId, :InstanceKey, :ExecutorGroupId, :ExecutorGroupName, :RelatedInstanceList, :RelatedInstanceSize, :OwnerId, :UserId, :InstanceLifeCycleOpsDto, :RetryAttempts, :DeletedFatherList, :CirculateInstanceList
|
17581
|
+
attr_accessor :TaskId, :TaskName, :WorkflowId, :WorkflowName, :InCharge, :CycleType, :CurRunDate, :NextCurDate, :RunPriority, :TryLimit, :Tries, :TotalRunNum, :DoFlag, :RedoFlag, :State, :RuntimeBroker, :ErrorDesc, :TaskType, :DependenceFulfillTime, :FirstDependenceFulfillTime, :FirstStartTime, :StartTime, :EndTime, :CostTime, :CostMillisecond, :MaxCostTime, :MinCostTime, :AvgCostTime, :LastLog, :SchedulerDateTime, :LastSchedulerDateTime, :LastUpdate, :CreateTime, :DependencyRel, :ExecutionSpace, :IgnoreEvent, :VirtualFlag, :FolderId, :FolderName, :SonList, :ProductName, :ResourceGroup, :ResourceInstanceId, :YarnQueue, :SchedulerDesc, :FirstSubmitTime, :FirstRunTime, :ProjectId, :ProjectIdent, :ProjectName, :TenantId, :InstanceKey, :ExecutorGroupId, :ExecutorGroupName, :RelatedInstanceList, :RelatedInstanceSize, :OwnerId, :UserId, :InstanceLifeCycleOpsDto, :RetryAttempts, :DeletedFatherList, :CirculateInstanceList, :ConcurrentStrategy, :ScheduleRunType
|
17302
17582
|
|
17303
|
-
def initialize(taskid=nil, taskname=nil, workflowid=nil, workflowname=nil, incharge=nil, cycletype=nil, currundate=nil, nextcurdate=nil, runpriority=nil, trylimit=nil, tries=nil, totalrunnum=nil, doflag=nil, redoflag=nil, state=nil, runtimebroker=nil, errordesc=nil, tasktype=nil, dependencefulfilltime=nil, firstdependencefulfilltime=nil, firststarttime=nil, starttime=nil, endtime=nil, costtime=nil, costmillisecond=nil, maxcosttime=nil, mincosttime=nil, avgcosttime=nil, lastlog=nil, schedulerdatetime=nil, lastschedulerdatetime=nil, lastupdate=nil, createtime=nil, dependencyrel=nil, executionspace=nil, ignoreevent=nil, virtualflag=nil, folderid=nil, foldername=nil, sonlist=nil, productname=nil, resourcegroup=nil, resourceinstanceid=nil, yarnqueue=nil, schedulerdesc=nil, firstsubmittime=nil, firstruntime=nil, projectid=nil, projectident=nil, projectname=nil, tenantid=nil, instancekey=nil, executorgroupid=nil, executorgroupname=nil, relatedinstancelist=nil, relatedinstancesize=nil, ownerid=nil, userid=nil, instancelifecycleopsdto=nil, retryattempts=nil, deletedfatherlist=nil, circulateinstancelist=nil)
|
17583
|
+
def initialize(taskid=nil, taskname=nil, workflowid=nil, workflowname=nil, incharge=nil, cycletype=nil, currundate=nil, nextcurdate=nil, runpriority=nil, trylimit=nil, tries=nil, totalrunnum=nil, doflag=nil, redoflag=nil, state=nil, runtimebroker=nil, errordesc=nil, tasktype=nil, dependencefulfilltime=nil, firstdependencefulfilltime=nil, firststarttime=nil, starttime=nil, endtime=nil, costtime=nil, costmillisecond=nil, maxcosttime=nil, mincosttime=nil, avgcosttime=nil, lastlog=nil, schedulerdatetime=nil, lastschedulerdatetime=nil, lastupdate=nil, createtime=nil, dependencyrel=nil, executionspace=nil, ignoreevent=nil, virtualflag=nil, folderid=nil, foldername=nil, sonlist=nil, productname=nil, resourcegroup=nil, resourceinstanceid=nil, yarnqueue=nil, schedulerdesc=nil, firstsubmittime=nil, firstruntime=nil, projectid=nil, projectident=nil, projectname=nil, tenantid=nil, instancekey=nil, executorgroupid=nil, executorgroupname=nil, relatedinstancelist=nil, relatedinstancesize=nil, ownerid=nil, userid=nil, instancelifecycleopsdto=nil, retryattempts=nil, deletedfatherlist=nil, circulateinstancelist=nil, concurrentstrategy=nil, scheduleruntype=nil)
|
17304
17584
|
@TaskId = taskid
|
17305
17585
|
@TaskName = taskname
|
17306
17586
|
@WorkflowId = workflowid
|
@@ -17363,6 +17643,8 @@ module TencentCloud
|
|
17363
17643
|
@RetryAttempts = retryattempts
|
17364
17644
|
@DeletedFatherList = deletedfatherlist
|
17365
17645
|
@CirculateInstanceList = circulateinstancelist
|
17646
|
+
@ConcurrentStrategy = concurrentstrategy
|
17647
|
+
@ScheduleRunType = scheduleruntype
|
17366
17648
|
end
|
17367
17649
|
|
17368
17650
|
def deserialize(params)
|
@@ -17448,6 +17730,8 @@ module TencentCloud
|
|
17448
17730
|
@CirculateInstanceList << instanceopsdto_tmp
|
17449
17731
|
end
|
17450
17732
|
end
|
17733
|
+
@ConcurrentStrategy = params['ConcurrentStrategy']
|
17734
|
+
@ScheduleRunType = params['ScheduleRunType']
|
17451
17735
|
end
|
17452
17736
|
end
|
17453
17737
|
|
@@ -19937,8 +20221,8 @@ module TencentCloud
|
|
19937
20221
|
|
19938
20222
|
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
|
19939
20223
|
extend Gem::Deprecate
|
19940
|
-
deprecate :InCharge, :none, 2024,
|
19941
|
-
deprecate :InCharge=, :none, 2024,
|
20224
|
+
deprecate :InCharge, :none, 2024, 11
|
20225
|
+
deprecate :InCharge=, :none, 2024, 11
|
19942
20226
|
|
19943
20227
|
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)
|
19944
20228
|
@ProjectId = projectid
|
@@ -21134,10 +21418,13 @@ module TencentCloud
|
|
21134
21418
|
# @param EnvType: 数据库环境
|
21135
21419
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
21136
21420
|
# @type EnvType: String
|
21421
|
+
# @param FunctionResourceFileType: 函数资源文件类型
|
21422
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
21423
|
+
# @type FunctionResourceFileType: String
|
21137
21424
|
|
21138
|
-
attr_accessor :Name, :DisplayName, :LayerPath, :ParentLayerPath, :Type, :Kind, :Category, :Status, :Description, :Usage, :ParamDesc, :ReturnDesc, :Example, :ClusterIdentifier, :FuncId, :ClassName, :ResourceList, :OperatorUserIds, :OwnerUserIds, :DbName, :SubmitErrorMsg, :SchemaName, :CommandFormat, :OwnerName, :SubmitTimestamp, :Tag, :OperatorUserIdsStr, :OwnerUserIdsStr, :EnvType
|
21425
|
+
attr_accessor :Name, :DisplayName, :LayerPath, :ParentLayerPath, :Type, :Kind, :Category, :Status, :Description, :Usage, :ParamDesc, :ReturnDesc, :Example, :ClusterIdentifier, :FuncId, :ClassName, :ResourceList, :OperatorUserIds, :OwnerUserIds, :DbName, :SubmitErrorMsg, :SchemaName, :CommandFormat, :OwnerName, :SubmitTimestamp, :Tag, :OperatorUserIdsStr, :OwnerUserIdsStr, :EnvType, :FunctionResourceFileType
|
21139
21426
|
|
21140
|
-
def initialize(name=nil, displayname=nil, layerpath=nil, parentlayerpath=nil, type=nil, kind=nil, category=nil, status=nil, description=nil, usage=nil, paramdesc=nil, returndesc=nil, example=nil, clusteridentifier=nil, funcid=nil, classname=nil, resourcelist=nil, operatoruserids=nil, owneruserids=nil, dbname=nil, submiterrormsg=nil, schemaname=nil, commandformat=nil, ownername=nil, submittimestamp=nil, tag=nil, operatoruseridsstr=nil, owneruseridsstr=nil, envtype=nil)
|
21427
|
+
def initialize(name=nil, displayname=nil, layerpath=nil, parentlayerpath=nil, type=nil, kind=nil, category=nil, status=nil, description=nil, usage=nil, paramdesc=nil, returndesc=nil, example=nil, clusteridentifier=nil, funcid=nil, classname=nil, resourcelist=nil, operatoruserids=nil, owneruserids=nil, dbname=nil, submiterrormsg=nil, schemaname=nil, commandformat=nil, ownername=nil, submittimestamp=nil, tag=nil, operatoruseridsstr=nil, owneruseridsstr=nil, envtype=nil, functionresourcefiletype=nil)
|
21141
21428
|
@Name = name
|
21142
21429
|
@DisplayName = displayname
|
21143
21430
|
@LayerPath = layerpath
|
@@ -21167,6 +21454,7 @@ module TencentCloud
|
|
21167
21454
|
@OperatorUserIdsStr = operatoruseridsstr
|
21168
21455
|
@OwnerUserIdsStr = owneruseridsstr
|
21169
21456
|
@EnvType = envtype
|
21457
|
+
@FunctionResourceFileType = functionresourcefiletype
|
21170
21458
|
end
|
21171
21459
|
|
21172
21460
|
def deserialize(params)
|
@@ -21206,6 +21494,7 @@ module TencentCloud
|
|
21206
21494
|
@OperatorUserIdsStr = params['OperatorUserIdsStr']
|
21207
21495
|
@OwnerUserIdsStr = params['OwnerUserIdsStr']
|
21208
21496
|
@EnvType = params['EnvType']
|
21497
|
+
@FunctionResourceFileType = params['FunctionResourceFileType']
|
21209
21498
|
end
|
21210
21499
|
end
|
21211
21500
|
|
@@ -21553,10 +21842,22 @@ module TencentCloud
|
|
21553
21842
|
# @param IsProjectAdmin: 是否项目管理员
|
21554
21843
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
21555
21844
|
# @type IsProjectAdmin: Boolean
|
21845
|
+
# @param PhoneNum: 手机号
|
21846
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
21847
|
+
# @type PhoneNum: String
|
21848
|
+
# @param Email: 邮箱
|
21849
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
21850
|
+
# @type Email: String
|
21851
|
+
# @param OwnerUin: 主账号id
|
21852
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
21853
|
+
# @type OwnerUin: String
|
21854
|
+
# @param AppId: 租户iD
|
21855
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
21856
|
+
# @type AppId: String
|
21556
21857
|
|
21557
|
-
attr_accessor :Roles, :UserName, :UserId, :CreateTime, :Creator, :DisplayName, :IsProjectAdmin
|
21858
|
+
attr_accessor :Roles, :UserName, :UserId, :CreateTime, :Creator, :DisplayName, :IsProjectAdmin, :PhoneNum, :Email, :OwnerUin, :AppId
|
21558
21859
|
|
21559
|
-
def initialize(roles=nil, username=nil, userid=nil, createtime=nil, creator=nil, displayname=nil, isprojectadmin=nil)
|
21860
|
+
def initialize(roles=nil, username=nil, userid=nil, createtime=nil, creator=nil, displayname=nil, isprojectadmin=nil, phonenum=nil, email=nil, owneruin=nil, appid=nil)
|
21560
21861
|
@Roles = roles
|
21561
21862
|
@UserName = username
|
21562
21863
|
@UserId = userid
|
@@ -21564,6 +21865,10 @@ module TencentCloud
|
|
21564
21865
|
@Creator = creator
|
21565
21866
|
@DisplayName = displayname
|
21566
21867
|
@IsProjectAdmin = isprojectadmin
|
21868
|
+
@PhoneNum = phonenum
|
21869
|
+
@Email = email
|
21870
|
+
@OwnerUin = owneruin
|
21871
|
+
@AppId = appid
|
21567
21872
|
end
|
21568
21873
|
|
21569
21874
|
def deserialize(params)
|
@@ -21581,6 +21886,10 @@ module TencentCloud
|
|
21581
21886
|
@Creator = params['Creator']
|
21582
21887
|
@DisplayName = params['DisplayName']
|
21583
21888
|
@IsProjectAdmin = params['IsProjectAdmin']
|
21889
|
+
@PhoneNum = params['PhoneNum']
|
21890
|
+
@Email = params['Email']
|
21891
|
+
@OwnerUin = params['OwnerUin']
|
21892
|
+
@AppId = params['AppId']
|
21584
21893
|
end
|
21585
21894
|
end
|
21586
21895
|
|
@@ -22076,10 +22385,19 @@ module TencentCloud
|
|
22076
22385
|
# @type DependencyWorkflow: String
|
22077
22386
|
# @param CrontabExpression: CrontabExpression
|
22078
22387
|
# @type CrontabExpression: String
|
22079
|
-
|
22080
|
-
|
22081
|
-
|
22082
|
-
|
22388
|
+
# @param ModifyCycleValue: 0:不修改
|
22389
|
+
# 1:将任务的上游依赖配置改为默认值
|
22390
|
+
# @type ModifyCycleValue: String
|
22391
|
+
# @param CalendarOpen: 是否开启日历调度 1 开启 0关闭
|
22392
|
+
# @type CalendarOpen: String
|
22393
|
+
# @param CalendarName: 日历名称
|
22394
|
+
# @type CalendarName: String
|
22395
|
+
# @param CalendarId: 日历id
|
22396
|
+
# @type CalendarId: String
|
22397
|
+
|
22398
|
+
attr_accessor :ProjectId, :WorkflowId, :DelayTime, :StartupTime, :SelfDepend, :StartTime, :EndTime, :TaskAction, :CycleType, :CycleStep, :ExecutionStartTime, :ExecutionEndTime, :InstanceInitStrategy, :DependencyWorkflow, :CrontabExpression, :ModifyCycleValue, :CalendarOpen, :CalendarName, :CalendarId
|
22399
|
+
|
22400
|
+
def initialize(projectid=nil, workflowid=nil, delaytime=nil, startuptime=nil, selfdepend=nil, starttime=nil, endtime=nil, taskaction=nil, cycletype=nil, cyclestep=nil, executionstarttime=nil, executionendtime=nil, instanceinitstrategy=nil, dependencyworkflow=nil, crontabexpression=nil, modifycyclevalue=nil, calendaropen=nil, calendarname=nil, calendarid=nil)
|
22083
22401
|
@ProjectId = projectid
|
22084
22402
|
@WorkflowId = workflowid
|
22085
22403
|
@DelayTime = delaytime
|
@@ -22095,6 +22413,10 @@ module TencentCloud
|
|
22095
22413
|
@InstanceInitStrategy = instanceinitstrategy
|
22096
22414
|
@DependencyWorkflow = dependencyworkflow
|
22097
22415
|
@CrontabExpression = crontabexpression
|
22416
|
+
@ModifyCycleValue = modifycyclevalue
|
22417
|
+
@CalendarOpen = calendaropen
|
22418
|
+
@CalendarName = calendarname
|
22419
|
+
@CalendarId = calendarid
|
22098
22420
|
end
|
22099
22421
|
|
22100
22422
|
def deserialize(params)
|
@@ -22113,6 +22435,10 @@ module TencentCloud
|
|
22113
22435
|
@InstanceInitStrategy = params['InstanceInitStrategy']
|
22114
22436
|
@DependencyWorkflow = params['DependencyWorkflow']
|
22115
22437
|
@CrontabExpression = params['CrontabExpression']
|
22438
|
+
@ModifyCycleValue = params['ModifyCycleValue']
|
22439
|
+
@CalendarOpen = params['CalendarOpen']
|
22440
|
+
@CalendarName = params['CalendarName']
|
22441
|
+
@CalendarId = params['CalendarId']
|
22116
22442
|
end
|
22117
22443
|
end
|
22118
22444
|
|
@@ -22551,10 +22877,16 @@ module TencentCloud
|
|
22551
22877
|
# @param TargetSchemaName: 目标模式名称
|
22552
22878
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
22553
22879
|
# @type TargetSchemaName: String
|
22880
|
+
# @param ProjectId: 项目id
|
22881
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
22882
|
+
# @type ProjectId: String
|
22883
|
+
# @param ProjectName: 项目名称
|
22884
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
22885
|
+
# @type ProjectName: String
|
22554
22886
|
|
22555
|
-
attr_accessor :RuleId, :RuleGroupId, :TableId, :Name, :Type, :RuleTemplateId, :RuleTemplateContent, :QualityDim, :SourceObjectType, :SourceObjectDataType, :SourceObjectDataTypeName, :SourceObjectValue, :ConditionType, :ConditionExpression, :CustomSql, :CompareRule, :AlarmLevel, :Description, :Operator, :TargetDatabaseId, :TargetDatabaseName, :TargetTableId, :TargetTableName, :TargetConditionExpr, :RelConditionExpr, :FieldConfig, :MultiSourceFlag, :WhereFlag, :TemplateSql, :SubQualityDim, :TargetObjectType, :TargetObjectDataType, :TargetObjectDataTypeName, :TargetObjectValue, :SourceEngineTypes, :TableName, :TableOwnerName, :ExecStrategy, :Subscription, :CreateTime, :DatasourceId, :DatabaseId, :MonitorStatus, :TriggerCondition, :DsEnvType, :DatasourceType, :SchemaName, :TargetSchemaName
|
22887
|
+
attr_accessor :RuleId, :RuleGroupId, :TableId, :Name, :Type, :RuleTemplateId, :RuleTemplateContent, :QualityDim, :SourceObjectType, :SourceObjectDataType, :SourceObjectDataTypeName, :SourceObjectValue, :ConditionType, :ConditionExpression, :CustomSql, :CompareRule, :AlarmLevel, :Description, :Operator, :TargetDatabaseId, :TargetDatabaseName, :TargetTableId, :TargetTableName, :TargetConditionExpr, :RelConditionExpr, :FieldConfig, :MultiSourceFlag, :WhereFlag, :TemplateSql, :SubQualityDim, :TargetObjectType, :TargetObjectDataType, :TargetObjectDataTypeName, :TargetObjectValue, :SourceEngineTypes, :TableName, :TableOwnerName, :ExecStrategy, :Subscription, :CreateTime, :DatasourceId, :DatabaseId, :MonitorStatus, :TriggerCondition, :DsEnvType, :DatasourceType, :SchemaName, :TargetSchemaName, :ProjectId, :ProjectName
|
22556
22888
|
|
22557
|
-
def initialize(ruleid=nil, rulegroupid=nil, tableid=nil, name=nil, type=nil, ruletemplateid=nil, ruletemplatecontent=nil, qualitydim=nil, sourceobjecttype=nil, sourceobjectdatatype=nil, sourceobjectdatatypename=nil, sourceobjectvalue=nil, conditiontype=nil, conditionexpression=nil, customsql=nil, comparerule=nil, alarmlevel=nil, description=nil, operator=nil, targetdatabaseid=nil, targetdatabasename=nil, targettableid=nil, targettablename=nil, targetconditionexpr=nil, relconditionexpr=nil, fieldconfig=nil, multisourceflag=nil, whereflag=nil, templatesql=nil, subqualitydim=nil, targetobjecttype=nil, targetobjectdatatype=nil, targetobjectdatatypename=nil, targetobjectvalue=nil, sourceenginetypes=nil, tablename=nil, tableownername=nil, execstrategy=nil, subscription=nil, createtime=nil, datasourceid=nil, databaseid=nil, monitorstatus=nil, triggercondition=nil, dsenvtype=nil, datasourcetype=nil, schemaname=nil, targetschemaname=nil)
|
22889
|
+
def initialize(ruleid=nil, rulegroupid=nil, tableid=nil, name=nil, type=nil, ruletemplateid=nil, ruletemplatecontent=nil, qualitydim=nil, sourceobjecttype=nil, sourceobjectdatatype=nil, sourceobjectdatatypename=nil, sourceobjectvalue=nil, conditiontype=nil, conditionexpression=nil, customsql=nil, comparerule=nil, alarmlevel=nil, description=nil, operator=nil, targetdatabaseid=nil, targetdatabasename=nil, targettableid=nil, targettablename=nil, targetconditionexpr=nil, relconditionexpr=nil, fieldconfig=nil, multisourceflag=nil, whereflag=nil, templatesql=nil, subqualitydim=nil, targetobjecttype=nil, targetobjectdatatype=nil, targetobjectdatatypename=nil, targetobjectvalue=nil, sourceenginetypes=nil, tablename=nil, tableownername=nil, execstrategy=nil, subscription=nil, createtime=nil, datasourceid=nil, databaseid=nil, monitorstatus=nil, triggercondition=nil, dsenvtype=nil, datasourcetype=nil, schemaname=nil, targetschemaname=nil, projectid=nil, projectname=nil)
|
22558
22890
|
@RuleId = ruleid
|
22559
22891
|
@RuleGroupId = rulegroupid
|
22560
22892
|
@TableId = tableid
|
@@ -22603,6 +22935,8 @@ module TencentCloud
|
|
22603
22935
|
@DatasourceType = datasourcetype
|
22604
22936
|
@SchemaName = schemaname
|
22605
22937
|
@TargetSchemaName = targetschemaname
|
22938
|
+
@ProjectId = projectid
|
22939
|
+
@ProjectName = projectname
|
22606
22940
|
end
|
22607
22941
|
|
22608
22942
|
def deserialize(params)
|
@@ -22666,6 +23000,8 @@ module TencentCloud
|
|
22666
23000
|
@DatasourceType = params['DatasourceType']
|
22667
23001
|
@SchemaName = params['SchemaName']
|
22668
23002
|
@TargetSchemaName = params['TargetSchemaName']
|
23003
|
+
@ProjectId = params['ProjectId']
|
23004
|
+
@ProjectName = params['ProjectName']
|
22669
23005
|
end
|
22670
23006
|
end
|
22671
23007
|
|
@@ -22891,10 +23227,13 @@ module TencentCloud
|
|
22891
23227
|
# @param AlarmLevel: 1/2/3:低/中/高
|
22892
23228
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
22893
23229
|
# @type AlarmLevel: Integer
|
23230
|
+
# @param TriggerCondition: 触发条件
|
23231
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
23232
|
+
# @type TriggerCondition: String
|
22894
23233
|
|
22895
|
-
attr_accessor :RuleExecId, :RuleGroupExecId, :RuleGroupId, :RuleId, :RuleName, :RuleType, :SourceObjectDataTypeName, :SourceObjectValue, :ConditionExpression, :ExecResultStatus, :TriggerResult, :CompareResult, :TemplateName, :QualityDim, :TargetDBTableName, :TargetObjectValue, :TargetObjectDataType, :FieldConfig, :RelConditionExpr, :StartTime, :AlarmLevel
|
23234
|
+
attr_accessor :RuleExecId, :RuleGroupExecId, :RuleGroupId, :RuleId, :RuleName, :RuleType, :SourceObjectDataTypeName, :SourceObjectValue, :ConditionExpression, :ExecResultStatus, :TriggerResult, :CompareResult, :TemplateName, :QualityDim, :TargetDBTableName, :TargetObjectValue, :TargetObjectDataType, :FieldConfig, :RelConditionExpr, :StartTime, :AlarmLevel, :TriggerCondition
|
22896
23235
|
|
22897
|
-
def initialize(ruleexecid=nil, rulegroupexecid=nil, rulegroupid=nil, ruleid=nil, rulename=nil, ruletype=nil, sourceobjectdatatypename=nil, sourceobjectvalue=nil, conditionexpression=nil, execresultstatus=nil, triggerresult=nil, compareresult=nil, templatename=nil, qualitydim=nil, targetdbtablename=nil, targetobjectvalue=nil, targetobjectdatatype=nil, fieldconfig=nil, relconditionexpr=nil, starttime=nil, alarmlevel=nil)
|
23236
|
+
def initialize(ruleexecid=nil, rulegroupexecid=nil, rulegroupid=nil, ruleid=nil, rulename=nil, ruletype=nil, sourceobjectdatatypename=nil, sourceobjectvalue=nil, conditionexpression=nil, execresultstatus=nil, triggerresult=nil, compareresult=nil, templatename=nil, qualitydim=nil, targetdbtablename=nil, targetobjectvalue=nil, targetobjectdatatype=nil, fieldconfig=nil, relconditionexpr=nil, starttime=nil, alarmlevel=nil, triggercondition=nil)
|
22898
23237
|
@RuleExecId = ruleexecid
|
22899
23238
|
@RuleGroupExecId = rulegroupexecid
|
22900
23239
|
@RuleGroupId = rulegroupid
|
@@ -22916,6 +23255,7 @@ module TencentCloud
|
|
22916
23255
|
@RelConditionExpr = relconditionexpr
|
22917
23256
|
@StartTime = starttime
|
22918
23257
|
@AlarmLevel = alarmlevel
|
23258
|
+
@TriggerCondition = triggercondition
|
22919
23259
|
end
|
22920
23260
|
|
22921
23261
|
def deserialize(params)
|
@@ -22946,6 +23286,7 @@ module TencentCloud
|
|
22946
23286
|
@RelConditionExpr = params['RelConditionExpr']
|
22947
23287
|
@StartTime = params['StartTime']
|
22948
23288
|
@AlarmLevel = params['AlarmLevel']
|
23289
|
+
@TriggerCondition = params['TriggerCondition']
|
22949
23290
|
end
|
22950
23291
|
end
|
22951
23292
|
|
@@ -23370,10 +23711,23 @@ module TencentCloud
|
|
23370
23711
|
# @param DsEnvType: 数据库所属环境,0.未定义,1.生产 2.开发
|
23371
23712
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
23372
23713
|
# @type DsEnvType: String
|
23714
|
+
# @param ProjectId: 项目id
|
23715
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
23716
|
+
# @type ProjectId: String
|
23717
|
+
# @param ProjectName: 项目名称
|
23718
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
23719
|
+
# @type ProjectName: String
|
23720
|
+
# @param InstanceStatus: 实例状态
|
23721
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
23722
|
+
# @type InstanceStatus: String
|
23723
|
+
# @param StartTime: 实例运行的开始时间
|
23724
|
+
# @type StartTime: String
|
23725
|
+
# @param FinishTime: 实例运行的结束时间
|
23726
|
+
# @type FinishTime: String
|
23373
23727
|
|
23374
|
-
attr_accessor :RuleGroupExecId, :RuleGroupId, :TriggerType, :ExecTime, :Status, :AlarmRuleCount, :TotalRuleCount, :TableOwnerName, :TableName, :TableId, :DatabaseId, :DatasourceId, :Permission, :ExecDetail, :EngineType, :RuleExecResultVOList, :DatabaseName, :RuleGroupTableId, :ClusterDeployType, :InstanceId, :DsEnvType
|
23728
|
+
attr_accessor :RuleGroupExecId, :RuleGroupId, :TriggerType, :ExecTime, :Status, :AlarmRuleCount, :TotalRuleCount, :TableOwnerName, :TableName, :TableId, :DatabaseId, :DatasourceId, :Permission, :ExecDetail, :EngineType, :RuleExecResultVOList, :DatabaseName, :RuleGroupTableId, :ClusterDeployType, :InstanceId, :DsEnvType, :ProjectId, :ProjectName, :InstanceStatus, :StartTime, :FinishTime
|
23375
23729
|
|
23376
|
-
def initialize(rulegroupexecid=nil, rulegroupid=nil, triggertype=nil, exectime=nil, status=nil, alarmrulecount=nil, totalrulecount=nil, tableownername=nil, tablename=nil, tableid=nil, databaseid=nil, datasourceid=nil, permission=nil, execdetail=nil, enginetype=nil, ruleexecresultvolist=nil, databasename=nil, rulegrouptableid=nil, clusterdeploytype=nil, instanceid=nil, dsenvtype=nil)
|
23730
|
+
def initialize(rulegroupexecid=nil, rulegroupid=nil, triggertype=nil, exectime=nil, status=nil, alarmrulecount=nil, totalrulecount=nil, tableownername=nil, tablename=nil, tableid=nil, databaseid=nil, datasourceid=nil, permission=nil, execdetail=nil, enginetype=nil, ruleexecresultvolist=nil, databasename=nil, rulegrouptableid=nil, clusterdeploytype=nil, instanceid=nil, dsenvtype=nil, projectid=nil, projectname=nil, instancestatus=nil, starttime=nil, finishtime=nil)
|
23377
23731
|
@RuleGroupExecId = rulegroupexecid
|
23378
23732
|
@RuleGroupId = rulegroupid
|
23379
23733
|
@TriggerType = triggertype
|
@@ -23395,6 +23749,11 @@ module TencentCloud
|
|
23395
23749
|
@ClusterDeployType = clusterdeploytype
|
23396
23750
|
@InstanceId = instanceid
|
23397
23751
|
@DsEnvType = dsenvtype
|
23752
|
+
@ProjectId = projectid
|
23753
|
+
@ProjectName = projectname
|
23754
|
+
@InstanceStatus = instancestatus
|
23755
|
+
@StartTime = starttime
|
23756
|
+
@FinishTime = finishtime
|
23398
23757
|
end
|
23399
23758
|
|
23400
23759
|
def deserialize(params)
|
@@ -23426,6 +23785,11 @@ module TencentCloud
|
|
23426
23785
|
@ClusterDeployType = params['ClusterDeployType']
|
23427
23786
|
@InstanceId = params['InstanceId']
|
23428
23787
|
@DsEnvType = params['DsEnvType']
|
23788
|
+
@ProjectId = params['ProjectId']
|
23789
|
+
@ProjectName = params['ProjectName']
|
23790
|
+
@InstanceStatus = params['InstanceStatus']
|
23791
|
+
@StartTime = params['StartTime']
|
23792
|
+
@FinishTime = params['FinishTime']
|
23429
23793
|
end
|
23430
23794
|
end
|
23431
23795
|
|
@@ -26770,10 +27134,25 @@ module TencentCloud
|
|
26770
27134
|
# @param Schema: 数据库模式
|
26771
27135
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
26772
27136
|
# @type Schema: String
|
27137
|
+
# @param CollectDatasourceList: 关联数据眼信息
|
27138
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27139
|
+
# @type CollectDatasourceList: Array
|
27140
|
+
# @param CollectJobId: 采集任务id
|
27141
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27142
|
+
# @type CollectJobId: String
|
27143
|
+
# @param CollectJobName: 采集任务名称
|
27144
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27145
|
+
# @type CollectJobName: String
|
27146
|
+
# @param Urn: 数据源urn
|
27147
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27148
|
+
# @type Urn: String
|
27149
|
+
# @param HasBizPermission: 是否有修改业务权限
|
27150
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27151
|
+
# @type HasBizPermission: Boolean
|
26773
27152
|
|
26774
|
-
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
|
27153
|
+
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
|
26775
27154
|
|
26776
|
-
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)
|
27155
|
+
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)
|
26777
27156
|
@TableId = tableid
|
26778
27157
|
@TableName = tablename
|
26779
27158
|
@TableOwnerName = tableownername
|
@@ -26830,6 +27209,11 @@ module TencentCloud
|
|
26830
27209
|
@TableProperties = tableproperties
|
26831
27210
|
@Environment = environment
|
26832
27211
|
@Schema = schema
|
27212
|
+
@CollectDatasourceList = collectdatasourcelist
|
27213
|
+
@CollectJobId = collectjobid
|
27214
|
+
@CollectJobName = collectjobname
|
27215
|
+
@Urn = urn
|
27216
|
+
@HasBizPermission = hasbizpermission
|
26833
27217
|
end
|
26834
27218
|
|
26835
27219
|
def deserialize(params)
|
@@ -26909,6 +27293,18 @@ module TencentCloud
|
|
26909
27293
|
end
|
26910
27294
|
@Environment = params['Environment']
|
26911
27295
|
@Schema = params['Schema']
|
27296
|
+
unless params['CollectDatasourceList'].nil?
|
27297
|
+
@CollectDatasourceList = []
|
27298
|
+
params['CollectDatasourceList'].each do |i|
|
27299
|
+
govdatasourceinfo_tmp = GovDatasourceInfo.new
|
27300
|
+
govdatasourceinfo_tmp.deserialize(i)
|
27301
|
+
@CollectDatasourceList << govdatasourceinfo_tmp
|
27302
|
+
end
|
27303
|
+
end
|
27304
|
+
@CollectJobId = params['CollectJobId']
|
27305
|
+
@CollectJobName = params['CollectJobName']
|
27306
|
+
@Urn = params['Urn']
|
27307
|
+
@HasBizPermission = params['HasBizPermission']
|
26912
27308
|
end
|
26913
27309
|
end
|
26914
27310
|
|
@@ -28662,6 +29058,70 @@ module TencentCloud
|
|
28662
29058
|
end
|
28663
29059
|
end
|
28664
29060
|
|
29061
|
+
# UpdateDataModelRegistryInfo请求参数结构体
|
29062
|
+
class UpdateDataModelRegistryInfoRequest < TencentCloud::Common::AbstractModel
|
29063
|
+
# @param CloudappId: 云应用的实例id
|
29064
|
+
# @type CloudappId: String
|
29065
|
+
# @param AppCamRole: 数语的CAM角色
|
29066
|
+
# @type AppCamRole: String
|
29067
|
+
# @param Vip: 数语的ip
|
29068
|
+
# @type Vip: String
|
29069
|
+
# @param Vport: 数语的端口
|
29070
|
+
# @type Vport: Integer
|
29071
|
+
# @param AppCamRoleId: 数语的CAM角色id
|
29072
|
+
# @type AppCamRoleId: String
|
29073
|
+
# @param Provider: 服务提供方
|
29074
|
+
# @type Provider: String
|
29075
|
+
# @param TenantId: 租户id
|
29076
|
+
# @type TenantId: String
|
29077
|
+
# @param OwnId: 主账号id
|
29078
|
+
# @type OwnId: String
|
29079
|
+
|
29080
|
+
attr_accessor :CloudappId, :AppCamRole, :Vip, :Vport, :AppCamRoleId, :Provider, :TenantId, :OwnId
|
29081
|
+
|
29082
|
+
def initialize(cloudappid=nil, appcamrole=nil, vip=nil, vport=nil, appcamroleid=nil, provider=nil, tenantid=nil, ownid=nil)
|
29083
|
+
@CloudappId = cloudappid
|
29084
|
+
@AppCamRole = appcamrole
|
29085
|
+
@Vip = vip
|
29086
|
+
@Vport = vport
|
29087
|
+
@AppCamRoleId = appcamroleid
|
29088
|
+
@Provider = provider
|
29089
|
+
@TenantId = tenantid
|
29090
|
+
@OwnId = ownid
|
29091
|
+
end
|
29092
|
+
|
29093
|
+
def deserialize(params)
|
29094
|
+
@CloudappId = params['CloudappId']
|
29095
|
+
@AppCamRole = params['AppCamRole']
|
29096
|
+
@Vip = params['Vip']
|
29097
|
+
@Vport = params['Vport']
|
29098
|
+
@AppCamRoleId = params['AppCamRoleId']
|
29099
|
+
@Provider = params['Provider']
|
29100
|
+
@TenantId = params['TenantId']
|
29101
|
+
@OwnId = params['OwnId']
|
29102
|
+
end
|
29103
|
+
end
|
29104
|
+
|
29105
|
+
# UpdateDataModelRegistryInfo返回参数结构体
|
29106
|
+
class UpdateDataModelRegistryInfoResponse < TencentCloud::Common::AbstractModel
|
29107
|
+
# @param Data: 数语向wedata注册成功
|
29108
|
+
# @type Data: Boolean
|
29109
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
29110
|
+
# @type RequestId: String
|
29111
|
+
|
29112
|
+
attr_accessor :Data, :RequestId
|
29113
|
+
|
29114
|
+
def initialize(data=nil, requestid=nil)
|
29115
|
+
@Data = data
|
29116
|
+
@RequestId = requestid
|
29117
|
+
end
|
29118
|
+
|
29119
|
+
def deserialize(params)
|
29120
|
+
@Data = params['Data']
|
29121
|
+
@RequestId = params['RequestId']
|
29122
|
+
end
|
29123
|
+
end
|
29124
|
+
|
28665
29125
|
# UpdateWorkflowOwner请求参数结构体
|
28666
29126
|
class UpdateWorkflowOwnerRequest < TencentCloud::Common::AbstractModel
|
28667
29127
|
# @param ProjectId: 项目Id
|
@@ -29544,10 +30004,19 @@ module TencentCloud
|
|
29544
30004
|
# @param LatestSubmitTime: 工作流最近提交时间
|
29545
30005
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
29546
30006
|
# @type LatestSubmitTime: String
|
30007
|
+
# @param CalendarOpen: 日历调度是否开启
|
30008
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
30009
|
+
# @type CalendarOpen: String
|
30010
|
+
# @param CalendarName: 日历调度名称
|
30011
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
30012
|
+
# @type CalendarName: String
|
30013
|
+
# @param CalendarId: 日历调度id
|
30014
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
30015
|
+
# @type CalendarId: String
|
29547
30016
|
|
29548
|
-
attr_accessor :ProjectId, :WorkflowId, :CreateTime, :Creater, :ModifyTime, :DelayTime, :StartupTime, :SelfDepend, :StartTime, :EndTime, :TaskAction, :CycleType, :CycleStep, :CrontabExpression, :ExecutionStartTime, :ExecutionEndTime, :InstanceInitStrategy, :DependencyWorkflow, :SchedulerDesc, :FirstSubmitTime, :LatestSubmitTime
|
30017
|
+
attr_accessor :ProjectId, :WorkflowId, :CreateTime, :Creater, :ModifyTime, :DelayTime, :StartupTime, :SelfDepend, :StartTime, :EndTime, :TaskAction, :CycleType, :CycleStep, :CrontabExpression, :ExecutionStartTime, :ExecutionEndTime, :InstanceInitStrategy, :DependencyWorkflow, :SchedulerDesc, :FirstSubmitTime, :LatestSubmitTime, :CalendarOpen, :CalendarName, :CalendarId
|
29549
30018
|
|
29550
|
-
def initialize(projectid=nil, workflowid=nil, createtime=nil, creater=nil, modifytime=nil, delaytime=nil, startuptime=nil, selfdepend=nil, starttime=nil, endtime=nil, taskaction=nil, cycletype=nil, cyclestep=nil, crontabexpression=nil, executionstarttime=nil, executionendtime=nil, instanceinitstrategy=nil, dependencyworkflow=nil, schedulerdesc=nil, firstsubmittime=nil, latestsubmittime=nil)
|
30019
|
+
def initialize(projectid=nil, workflowid=nil, createtime=nil, creater=nil, modifytime=nil, delaytime=nil, startuptime=nil, selfdepend=nil, starttime=nil, endtime=nil, taskaction=nil, cycletype=nil, cyclestep=nil, crontabexpression=nil, executionstarttime=nil, executionendtime=nil, instanceinitstrategy=nil, dependencyworkflow=nil, schedulerdesc=nil, firstsubmittime=nil, latestsubmittime=nil, calendaropen=nil, calendarname=nil, calendarid=nil)
|
29551
30020
|
@ProjectId = projectid
|
29552
30021
|
@WorkflowId = workflowid
|
29553
30022
|
@CreateTime = createtime
|
@@ -29569,6 +30038,9 @@ module TencentCloud
|
|
29569
30038
|
@SchedulerDesc = schedulerdesc
|
29570
30039
|
@FirstSubmitTime = firstsubmittime
|
29571
30040
|
@LatestSubmitTime = latestsubmittime
|
30041
|
+
@CalendarOpen = calendaropen
|
30042
|
+
@CalendarName = calendarname
|
30043
|
+
@CalendarId = calendarid
|
29572
30044
|
end
|
29573
30045
|
|
29574
30046
|
def deserialize(params)
|
@@ -29593,6 +30065,9 @@ module TencentCloud
|
|
29593
30065
|
@SchedulerDesc = params['SchedulerDesc']
|
29594
30066
|
@FirstSubmitTime = params['FirstSubmitTime']
|
29595
30067
|
@LatestSubmitTime = params['LatestSubmitTime']
|
30068
|
+
@CalendarOpen = params['CalendarOpen']
|
30069
|
+
@CalendarName = params['CalendarName']
|
30070
|
+
@CalendarId = params['CalendarId']
|
29596
30071
|
end
|
29597
30072
|
end
|
29598
30073
|
|
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.
|
4
|
+
version: 3.0.940
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-11-
|
11
|
+
date: 2024-11-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|