tencentcloud-sdk-wedata 3.0.1114 → 3.0.1117

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20210820/models.rb +106 -25
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 71aad523e6e940b5adac1b351c928eb49fd17dfc
4
- data.tar.gz: 259125a94e43a2e61589a8865a5c19aec89e66fd
3
+ metadata.gz: 31f8b0205026b4ec292e14c16e02fe666a517e7b
4
+ data.tar.gz: 1de9c70f902672e17bcc186d6b2d431e0ba3c26a
5
5
  SHA512:
6
- metadata.gz: af857b9b3c1e8985b842267207f712b65ad31d4f7d649a3c837d1ec9463349bf39aa43a1d1ca05ecd101c692d30e64209e1a69b5d3117e7da6e0b967abd701b2
7
- data.tar.gz: f5ce552042620ce2eb665d3b8f1dcf1b19a19b4d9b1900821854d565fa2b923b1e756bd6c77ac57eb8f2614f8db9c2f1fb13a29e4fd01f26452fa0b84439c5fc
6
+ metadata.gz: f01be28d5eccb9dbdcb257537102701c8444896e697a79ab763fa855fefd01e552a52d4c6ebcc82a44c84aa9a6669d25a005ed3ce4a55d48e2fad0a5825c40ec
7
+ data.tar.gz: 2e9eb47a2be707396894ed8208a4fd5032988a07c593f9750756903867178ea7e5b1767dfbfd700dfed596922857b7bcbe2e27c545fbce64bd8e40e243121003
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1114
1
+ 3.0.1117
@@ -1157,6 +1157,63 @@ module TencentCloud
1157
1157
  end
1158
1158
  end
1159
1159
 
1160
+ # 项目信息
1161
+ class BaseProject < TencentCloud::Common::AbstractModel
1162
+ # @param ProjectName: 项目标识,英文名
1163
+ # 注意:此字段可能返回 null,表示取不到有效值。
1164
+ # @type ProjectName: String
1165
+ # @param DisplayName: 项目显示名称,可以为中文名
1166
+ # 注意:此字段可能返回 null,表示取不到有效值。
1167
+ # @type DisplayName: String
1168
+ # @param Region: 地域
1169
+ # 注意:此字段可能返回 null,表示取不到有效值。
1170
+ # @type Region: String
1171
+ # @param TenantId: 项目的所在租户ID
1172
+ # 注意:此字段可能返回 null,表示取不到有效值。
1173
+ # @type TenantId: String
1174
+ # @param ProjectId: 项目id
1175
+ # 注意:此字段可能返回 null,表示取不到有效值。
1176
+ # @type ProjectId: String
1177
+ # @param Description: 备注
1178
+ # 注意:此字段可能返回 null,表示取不到有效值。
1179
+ # @type Description: String
1180
+ # @param CreateTime: 创建时间
1181
+ # 注意:此字段可能返回 null,表示取不到有效值。
1182
+ # @type CreateTime: String
1183
+ # @param Status: 项目状态:0:禁用,1:启用,-3:禁用中,2:启用中
1184
+ # 注意:此字段可能返回 null,表示取不到有效值。
1185
+ # @type Status: Integer
1186
+ # @param Model: 项目类型,SIMPLE:简单模式 STANDARD:标准模式
1187
+ # 注意:此字段可能返回 null,表示取不到有效值。
1188
+ # @type Model: String
1189
+
1190
+ attr_accessor :ProjectName, :DisplayName, :Region, :TenantId, :ProjectId, :Description, :CreateTime, :Status, :Model
1191
+
1192
+ def initialize(projectname=nil, displayname=nil, region=nil, tenantid=nil, projectid=nil, description=nil, createtime=nil, status=nil, model=nil)
1193
+ @ProjectName = projectname
1194
+ @DisplayName = displayname
1195
+ @Region = region
1196
+ @TenantId = tenantid
1197
+ @ProjectId = projectid
1198
+ @Description = description
1199
+ @CreateTime = createtime
1200
+ @Status = status
1201
+ @Model = model
1202
+ end
1203
+
1204
+ def deserialize(params)
1205
+ @ProjectName = params['ProjectName']
1206
+ @DisplayName = params['DisplayName']
1207
+ @Region = params['Region']
1208
+ @TenantId = params['TenantId']
1209
+ @ProjectId = params['ProjectId']
1210
+ @Description = params['Description']
1211
+ @CreateTime = params['CreateTime']
1212
+ @Status = params['Status']
1213
+ @Model = params['Model']
1214
+ end
1215
+ end
1216
+
1160
1217
  # 基础角色对象
1161
1218
  class BaseRole < TencentCloud::Common::AbstractModel
1162
1219
  # @param RoleId: 角色id
@@ -2740,8 +2797,8 @@ module TencentCloud
2740
2797
 
2741
2798
  attr_accessor :ProjectId, :AlarmRegularName, :TaskId, :Id, :TaskType, :MonitorType
2742
2799
  extend Gem::Deprecate
2743
- deprecate :TaskId, :none, 2025, 7
2744
- deprecate :TaskId=, :none, 2025, 7
2800
+ deprecate :TaskId, :none, 2025, 8
2801
+ deprecate :TaskId=, :none, 2025, 8
2745
2802
 
2746
2803
  def initialize(projectid=nil, alarmregularname=nil, taskid=nil, id=nil, tasktype=nil, monitortype=nil)
2747
2804
  @ProjectId = projectid
@@ -4210,12 +4267,20 @@ module TencentCloud
4210
4267
 
4211
4268
  # CreateBaseProject请求参数结构体
4212
4269
  class CreateBaseProjectRequest < TencentCloud::Common::AbstractModel
4270
+ # @param Project: 项目信息
4271
+ # @type Project: :class:`Tencentcloud::Wedata.v20210820.models.BaseProject`
4213
4272
 
4273
+ attr_accessor :Project
4214
4274
 
4215
- def initialize()
4275
+ def initialize(project=nil)
4276
+ @Project = project
4216
4277
  end
4217
4278
 
4218
4279
  def deserialize(params)
4280
+ unless params['Project'].nil?
4281
+ @Project = BaseProject.new
4282
+ @Project.deserialize(params['Project'])
4283
+ end
4219
4284
  end
4220
4285
  end
4221
4286
 
@@ -6324,10 +6389,12 @@ module TencentCloud
6324
6389
  # @param DataSourceEnvInfos: 数据源环境信息
6325
6390
  # 注意:此字段可能返回 null,表示取不到有效值。
6326
6391
  # @type DataSourceEnvInfos: Array
6392
+ # @param ForbidProbe: 禁止数据探查
6393
+ # @type ForbidProbe: Boolean
6327
6394
 
6328
- attr_accessor :DatabaseName, :Description, :ID, :Instance, :Name, :Region, :Type, :ClusterId, :AppId, :BizParams, :Category, :Display, :OwnerAccount, :Params, :Status, :OwnerAccountName, :ClusterName, :OwnerProjectId, :OwnerProjectName, :OwnerProjectIdent, :AuthorityProjectName, :AuthorityUserName, :Edit, :Author, :Deliver, :DataSourceStatus, :CreateTime, :ParamsString, :BizParamsString, :ModifiedTime, :ShowType, :ProductId, :DevelopmentId, :DevelopmentParams, :ConnectStatus, :DisplayType, :Env, :DatasourceUrn, :Model, :DataSourceEnvInfos
6395
+ attr_accessor :DatabaseName, :Description, :ID, :Instance, :Name, :Region, :Type, :ClusterId, :AppId, :BizParams, :Category, :Display, :OwnerAccount, :Params, :Status, :OwnerAccountName, :ClusterName, :OwnerProjectId, :OwnerProjectName, :OwnerProjectIdent, :AuthorityProjectName, :AuthorityUserName, :Edit, :Author, :Deliver, :DataSourceStatus, :CreateTime, :ParamsString, :BizParamsString, :ModifiedTime, :ShowType, :ProductId, :DevelopmentId, :DevelopmentParams, :ConnectStatus, :DisplayType, :Env, :DatasourceUrn, :Model, :DataSourceEnvInfos, :ForbidProbe
6329
6396
 
6330
- def initialize(databasename=nil, description=nil, id=nil, instance=nil, name=nil, region=nil, type=nil, clusterid=nil, appid=nil, bizparams=nil, category=nil, display=nil, owneraccount=nil, params=nil, status=nil, owneraccountname=nil, clustername=nil, ownerprojectid=nil, ownerprojectname=nil, ownerprojectident=nil, authorityprojectname=nil, authorityusername=nil, edit=nil, author=nil, deliver=nil, datasourcestatus=nil, createtime=nil, paramsstring=nil, bizparamsstring=nil, modifiedtime=nil, showtype=nil, productid=nil, developmentid=nil, developmentparams=nil, connectstatus=nil, displaytype=nil, env=nil, datasourceurn=nil, model=nil, datasourceenvinfos=nil)
6397
+ def initialize(databasename=nil, description=nil, id=nil, instance=nil, name=nil, region=nil, type=nil, clusterid=nil, appid=nil, bizparams=nil, category=nil, display=nil, owneraccount=nil, params=nil, status=nil, owneraccountname=nil, clustername=nil, ownerprojectid=nil, ownerprojectname=nil, ownerprojectident=nil, authorityprojectname=nil, authorityusername=nil, edit=nil, author=nil, deliver=nil, datasourcestatus=nil, createtime=nil, paramsstring=nil, bizparamsstring=nil, modifiedtime=nil, showtype=nil, productid=nil, developmentid=nil, developmentparams=nil, connectstatus=nil, displaytype=nil, env=nil, datasourceurn=nil, model=nil, datasourceenvinfos=nil, forbidprobe=nil)
6331
6398
  @DatabaseName = databasename
6332
6399
  @Description = description
6333
6400
  @ID = id
@@ -6368,6 +6435,7 @@ module TencentCloud
6368
6435
  @DatasourceUrn = datasourceurn
6369
6436
  @Model = model
6370
6437
  @DataSourceEnvInfos = datasourceenvinfos
6438
+ @ForbidProbe = forbidprobe
6371
6439
  end
6372
6440
 
6373
6441
  def deserialize(params)
@@ -6421,6 +6489,7 @@ module TencentCloud
6421
6489
  @DataSourceEnvInfos << datasourceenvinfo_tmp
6422
6490
  end
6423
6491
  end
6492
+ @ForbidProbe = params['ForbidProbe']
6424
6493
  end
6425
6494
  end
6426
6495
 
@@ -9260,7 +9329,7 @@ module TencentCloud
9260
9329
  # @type Filters: :class:`Tencentcloud::Wedata.v20210820.models.Filter`
9261
9330
  # @param OrderFields: 排序配置
9262
9331
  # @type OrderFields: :class:`Tencentcloud::Wedata.v20210820.models.OrderField`
9263
- # @param Type: 数据源类型,必选(如MYSQLDLC等)
9332
+ # @param Type: 数据源类型,MYSQL,TENCENT_MYSQL,TDSQL_MYSQL,HIVE,KAFKA,POSTGRE,CDW,ORACLE,SQLSERVER,FTP,HDFS,ICEBERG,HBASE,TDSQL,TDSQLC,SPARK,VIRTUAL,TBASE,DB2,DM,TDENGINE,GAUSSDB,GBASE,IMPALA,ES,TENCENT_ES,S3_DATAINSIGHT,GREENPLUM,PHOENIX,SAP_HANA,SFTP,OCEANBASE,CLICKHOUSE,TCHOUSE_C,KUDU,VERTICA,REDIS,COS,S3,DLC,DORIS,CKAFKA,TDMQ_PULSAR,MONGODB,TENCENT_MONGODB,FTP_FILE,HDFS_FILE,DTS_KAFKA,REST_API,FILE,TIDB,SYBASE,TCHOUSE_X,TDSQL_POSTGRE,TCHOUSE_P,TCHOUSE_D,STARROCKS,EMR_STARROCKS,TBDS_STARROCKS,TRINO,KYUUBI,GDB,INFLUXDB,BIG_QUERY,BLOB,FILESYSTEM,SHAREPOINT,KINGBASEES,HUDI等
9264
9333
  # @type Type: String
9265
9334
  # @param DatasourceName: 数据源名称过滤
9266
9335
  # @type DatasourceName: String
@@ -10253,12 +10322,12 @@ module TencentCloud
10253
10322
 
10254
10323
  attr_accessor :ProjectId, :Category, :PageNumber, :PageSize, :EventName, :EventType, :EventSubType, :EventBroadcastType, :Status, :CreationTimeStart, :CreationTimeEnd, :EventTriggeredTimeStart, :EventTriggeredTimeEnd, :LogTimeStart, :LogTimeEnd, :Dimension, :TimeToLive, :SortItem, :SortType
10255
10324
  extend Gem::Deprecate
10256
- deprecate :EventType, :none, 2025, 7
10257
- deprecate :EventType=, :none, 2025, 7
10258
- deprecate :EventBroadcastType, :none, 2025, 7
10259
- deprecate :EventBroadcastType=, :none, 2025, 7
10260
- deprecate :Status, :none, 2025, 7
10261
- deprecate :Status=, :none, 2025, 7
10325
+ deprecate :EventType, :none, 2025, 8
10326
+ deprecate :EventType=, :none, 2025, 8
10327
+ deprecate :EventBroadcastType, :none, 2025, 8
10328
+ deprecate :EventBroadcastType=, :none, 2025, 8
10329
+ deprecate :Status, :none, 2025, 8
10330
+ deprecate :Status=, :none, 2025, 8
10262
10331
 
10263
10332
  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)
10264
10333
  @ProjectId = projectid
@@ -17833,8 +17902,8 @@ module TencentCloud
17833
17902
 
17834
17903
  attr_accessor :DimType, :Count, :QualityDim
17835
17904
  extend Gem::Deprecate
17836
- deprecate :DimType, :none, 2025, 7
17837
- deprecate :DimType=, :none, 2025, 7
17905
+ deprecate :DimType, :none, 2025, 8
17906
+ deprecate :DimType=, :none, 2025, 8
17838
17907
 
17839
17908
  def initialize(dimtype=nil, count=nil, qualitydim=nil)
17840
17909
  @DimType = dimtype
@@ -25969,6 +26038,10 @@ module TencentCloud
25969
26038
  class ModifyProjectRequest < TencentCloud::Common::AbstractModel
25970
26039
  # @param ProjectId: 目标修改的项目ID
25971
26040
  # @type ProjectId: String
26041
+ # @param DisplayName: 项目显示名称,可以为中文名,需要租户范围内唯一
26042
+ # @type DisplayName: String
26043
+ # @param Description: 备注
26044
+ # @type Description: String
25972
26045
  # @param TaskSubmitApproval: true/false则修改,不带该参数不修改。
25973
26046
  # @type TaskSubmitApproval: Boolean
25974
26047
  # @param ResourcePoolInfo: 资源池信息
@@ -25983,11 +26056,15 @@ module TencentCloud
25983
26056
  # @type Model: String
25984
26057
  # @param ProjectOwner: 项目负责人
25985
26058
  # @type ProjectOwner: Array
26059
+ # @param ModifyType: 更新类型
26060
+ # @type ModifyType: String
25986
26061
 
25987
- attr_accessor :ProjectId, :TaskSubmitApproval, :ResourcePoolInfo, :ProjectManagers, :TaskStrictMode, :ExtraOptions, :Model, :ProjectOwner
26062
+ attr_accessor :ProjectId, :DisplayName, :Description, :TaskSubmitApproval, :ResourcePoolInfo, :ProjectManagers, :TaskStrictMode, :ExtraOptions, :Model, :ProjectOwner, :ModifyType
25988
26063
 
25989
- def initialize(projectid=nil, tasksubmitapproval=nil, resourcepoolinfo=nil, projectmanagers=nil, taskstrictmode=nil, extraoptions=nil, model=nil, projectowner=nil)
26064
+ def initialize(projectid=nil, displayname=nil, description=nil, tasksubmitapproval=nil, resourcepoolinfo=nil, projectmanagers=nil, taskstrictmode=nil, extraoptions=nil, model=nil, projectowner=nil, modifytype=nil)
25990
26065
  @ProjectId = projectid
26066
+ @DisplayName = displayname
26067
+ @Description = description
25991
26068
  @TaskSubmitApproval = tasksubmitapproval
25992
26069
  @ResourcePoolInfo = resourcepoolinfo
25993
26070
  @ProjectManagers = projectmanagers
@@ -25995,10 +26072,13 @@ module TencentCloud
25995
26072
  @ExtraOptions = extraoptions
25996
26073
  @Model = model
25997
26074
  @ProjectOwner = projectowner
26075
+ @ModifyType = modifytype
25998
26076
  end
25999
26077
 
26000
26078
  def deserialize(params)
26001
26079
  @ProjectId = params['ProjectId']
26080
+ @DisplayName = params['DisplayName']
26081
+ @Description = params['Description']
26002
26082
  @TaskSubmitApproval = params['TaskSubmitApproval']
26003
26083
  unless params['ResourcePoolInfo'].nil?
26004
26084
  @ResourcePoolInfo = ResourcePoolInfo.new
@@ -26009,6 +26089,7 @@ module TencentCloud
26009
26089
  @ExtraOptions = params['ExtraOptions']
26010
26090
  @Model = params['Model']
26011
26091
  @ProjectOwner = params['ProjectOwner']
26092
+ @ModifyType = params['ModifyType']
26012
26093
  end
26013
26094
  end
26014
26095
 
@@ -26644,8 +26725,8 @@ module TencentCloud
26644
26725
 
26645
26726
  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
26646
26727
  extend Gem::Deprecate
26647
- deprecate :InCharge, :none, 2025, 7
26648
- deprecate :InCharge=, :none, 2025, 7
26728
+ deprecate :InCharge, :none, 2025, 8
26729
+ deprecate :InCharge=, :none, 2025, 8
26649
26730
 
26650
26731
  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)
26651
26732
  @ProjectId = projectid
@@ -26961,7 +27042,7 @@ module TencentCloud
26961
27042
  # @type ProjectId: String
26962
27043
  # @param TaskId: 任务ID
26963
27044
  # @type TaskId: String
26964
- # @param ScriptContent: 必填,脚本内容 base64编码
27045
+ # @param ScriptContent: 存在脚本的任务必填(shell任务、Hive任务、python任务等),脚本内容 base64编码
26965
27046
  # @type ScriptContent: String
26966
27047
  # @param IntegrationNodeDetails: 集成任务脚本配置
26967
27048
  # @type IntegrationNodeDetails: Array
@@ -29224,12 +29305,12 @@ module TencentCloud
29224
29305
 
29225
29306
  attr_accessor :ProjectId, :Name, :EventSubType, :TimeToLive, :TimeUnit, :Owner, :Description, :EventType, :EventBroadcastType, :DimensionFormat
29226
29307
  extend Gem::Deprecate
29227
- deprecate :EventType, :none, 2025, 7
29228
- deprecate :EventType=, :none, 2025, 7
29229
- deprecate :EventBroadcastType, :none, 2025, 7
29230
- deprecate :EventBroadcastType=, :none, 2025, 7
29231
- deprecate :DimensionFormat, :none, 2025, 7
29232
- deprecate :DimensionFormat=, :none, 2025, 7
29308
+ deprecate :EventType, :none, 2025, 8
29309
+ deprecate :EventType=, :none, 2025, 8
29310
+ deprecate :EventBroadcastType, :none, 2025, 8
29311
+ deprecate :EventBroadcastType=, :none, 2025, 8
29312
+ deprecate :DimensionFormat, :none, 2025, 8
29313
+ deprecate :DimensionFormat=, :none, 2025, 8
29233
29314
 
29234
29315
  def initialize(projectid=nil, name=nil, eventsubtype=nil, timetolive=nil, timeunit=nil, owner=nil, description=nil, eventtype=nil, eventbroadcasttype=nil, dimensionformat=nil)
29235
29316
  @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.1114
4
+ version: 3.0.1117
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-07-30 00:00:00.000000000 Z
11
+ date: 2025-08-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common