tencentcloud-sdk-wedata 3.0.996 → 3.0.998

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 84eeac390f4c364febc64a1e5e28396e21eb72aa
4
- data.tar.gz: 26b90f8a414a3f02dea5c1bd8f848232767e6447
3
+ metadata.gz: 4d166de0c5c92d5a51ac7ab53d3a27922b2703e4
4
+ data.tar.gz: 01234cec4fd1ccda7753397a95644274952d3aa0
5
5
  SHA512:
6
- metadata.gz: 2734e814a3992d9585f64d8983da29946a6b5364a87a5506a38cc0fcd770fbddef6f62bfc71d800f31974d2c6d20916ff6889e1271c0c3d09792a0ac751ceead
7
- data.tar.gz: afc812375bf86b589163af9da9b067797a50996fa88dab5bd873368b0f191400a093a050eb7ed0458239817161bb7db202faf38c1fab6a10a3c125b53b5fb75c
6
+ metadata.gz: 689690813aaaadc4709d1c50395f67c2983c7485502e435a5a159d38bce5bf0bf189136ed93392f210130b5c7266d1fd81a0c3cf70094076ff132fe0ed1458ce
7
+ data.tar.gz: f66b4a1dcce7133d9bbc8874376a80fc456d7b0e9431cfb346f0ab5f21003cf71f87f1c07aa7566a3fd553b11d8ddac9516c29f1851a245fdabe0bf88b587660
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.996
1
+ 3.0.998
@@ -1949,6 +1949,8 @@ module TencentCloud
1949
1949
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1950
1950
  end
1951
1951
 
1952
+ # 无效API,没有上线过的业务功能
1953
+
1952
1954
  # 分页查询试运行实例列表
1953
1955
 
1954
1956
  # @param request: Request instance for DescribeDrInstancePage.
@@ -3944,6 +3946,10 @@ module TencentCloud
3944
3946
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3945
3947
  end
3946
3948
 
3949
+ # 能够调通但该API已经没有使用了,看北京数据最后一次上报是23年10月,有接近一千万条数据历史无效数据。当前策略,云API示例修订然后已经分析出来的无效API走预下线流程。
3950
+ # https://capi.woa.com/api/detail?product=wedata&env=api_formal&version=2021-08-20&action=DescribeTaskByCycleReport
3951
+ # 这两天在分析API的时候 有较多运维大屏的原始API当前已经没有使用了,但API没有下线。预计需要专项去梳理这一系列待下线API。
3952
+
3947
3953
  # 任务状态周期增长趋势
3948
3954
 
3949
3955
  # @param request: Request instance for DescribeTaskByCycleReport.
@@ -3528,6 +3528,28 @@ module TencentCloud
3528
3528
  end
3529
3529
  end
3530
3530
 
3531
+ # 是否支持creat 或ddl
3532
+ class CreateAndDDLSupport < TencentCloud::Common::AbstractModel
3533
+ # @param SupportSelect: 是否支持select
3534
+ # 注意:此字段可能返回 null,表示取不到有效值。
3535
+ # @type SupportSelect: Boolean
3536
+ # @param SupportDdl: 是否支持ddl
3537
+ # 注意:此字段可能返回 null,表示取不到有效值。
3538
+ # @type SupportDdl: Boolean
3539
+
3540
+ attr_accessor :SupportSelect, :SupportDdl
3541
+
3542
+ def initialize(supportselect=nil, supportddl=nil)
3543
+ @SupportSelect = supportselect
3544
+ @SupportDdl = supportddl
3545
+ end
3546
+
3547
+ def deserialize(params)
3548
+ @SupportSelect = params['SupportSelect']
3549
+ @SupportDdl = params['SupportDdl']
3550
+ end
3551
+ end
3552
+
3531
3553
  # CreateCustomFunction请求参数结构体
3532
3554
  class CreateCustomFunctionRequest < TencentCloud::Common::AbstractModel
3533
3555
  # @param Type: 枚举值:HIVE、SPARK、DLC
@@ -5583,10 +5605,16 @@ module TencentCloud
5583
5605
  # @param ClusterName: 引擎名称
5584
5606
  # 注意:此字段可能返回 null,表示取不到有效值。
5585
5607
  # @type ClusterName: String
5608
+ # @param ModifiedTimeByTables: 库下表的最新更新时间
5609
+ # 注意:此字段可能返回 null,表示取不到有效值。
5610
+ # @type ModifiedTimeByTables: Integer
5611
+ # @param LastAccessTimeByTables: 库下表的最新访问时间
5612
+ # 注意:此字段可能返回 null,表示取不到有效值。
5613
+ # @type LastAccessTimeByTables: Integer
5586
5614
 
5587
- attr_accessor :ProjectId, :MetastoreType, :DatasourceName, :DatasourceId, :ProjectName, :Category, :Description, :Instance, :Region, :Status, :DatabaseName, :ProjectDisplayName, :OwnerAccountName, :DisplayName, :DatabaseId, :Catalog, :StorageSize, :StorageSizeWithUnit, :CreateTime, :TableCount, :DatasourceList, :CollectJobId, :CollectJobName, :ClusterId, :ClusterName
5615
+ attr_accessor :ProjectId, :MetastoreType, :DatasourceName, :DatasourceId, :ProjectName, :Category, :Description, :Instance, :Region, :Status, :DatabaseName, :ProjectDisplayName, :OwnerAccountName, :DisplayName, :DatabaseId, :Catalog, :StorageSize, :StorageSizeWithUnit, :CreateTime, :TableCount, :DatasourceList, :CollectJobId, :CollectJobName, :ClusterId, :ClusterName, :ModifiedTimeByTables, :LastAccessTimeByTables
5588
5616
 
5589
- def initialize(projectid=nil, metastoretype=nil, datasourcename=nil, datasourceid=nil, projectname=nil, category=nil, description=nil, instance=nil, region=nil, status=nil, databasename=nil, projectdisplayname=nil, owneraccountname=nil, displayname=nil, databaseid=nil, catalog=nil, storagesize=nil, storagesizewithunit=nil, createtime=nil, tablecount=nil, datasourcelist=nil, collectjobid=nil, collectjobname=nil, clusterid=nil, clustername=nil)
5617
+ def initialize(projectid=nil, metastoretype=nil, datasourcename=nil, datasourceid=nil, projectname=nil, category=nil, description=nil, instance=nil, region=nil, status=nil, databasename=nil, projectdisplayname=nil, owneraccountname=nil, displayname=nil, databaseid=nil, catalog=nil, storagesize=nil, storagesizewithunit=nil, createtime=nil, tablecount=nil, datasourcelist=nil, collectjobid=nil, collectjobname=nil, clusterid=nil, clustername=nil, modifiedtimebytables=nil, lastaccesstimebytables=nil)
5590
5618
  @ProjectId = projectid
5591
5619
  @MetastoreType = metastoretype
5592
5620
  @DatasourceName = datasourcename
@@ -5612,6 +5640,8 @@ module TencentCloud
5612
5640
  @CollectJobName = collectjobname
5613
5641
  @ClusterId = clusterid
5614
5642
  @ClusterName = clustername
5643
+ @ModifiedTimeByTables = modifiedtimebytables
5644
+ @LastAccessTimeByTables = lastaccesstimebytables
5615
5645
  end
5616
5646
 
5617
5647
  def deserialize(params)
@@ -5647,6 +5677,8 @@ module TencentCloud
5647
5677
  @CollectJobName = params['CollectJobName']
5648
5678
  @ClusterId = params['ClusterId']
5649
5679
  @ClusterName = params['ClusterName']
5680
+ @ModifiedTimeByTables = params['ModifiedTimeByTables']
5681
+ @LastAccessTimeByTables = params['LastAccessTimeByTables']
5650
5682
  end
5651
5683
  end
5652
5684
 
@@ -6271,11 +6303,11 @@ module TencentCloud
6271
6303
  class DeleteResourceFilesRequest < TencentCloud::Common::AbstractModel
6272
6304
  # @param ProjectId: 项目id
6273
6305
  # @type ProjectId: String
6274
- # @param UseStatus: 使用状态
6306
+ # @param UseStatus: 使用状态, 为ture 判断资源的使用状态,如果使用中则不能删除
6275
6307
  # @type UseStatus: Boolean
6276
6308
  # @param ResourceIds: 资源id列表
6277
6309
  # @type ResourceIds: Array
6278
- # @param FilePaths: 资源路径列表
6310
+ # @param FilePaths: 需要删除的资源路径列表 即资源管理中的目录结构
6279
6311
  # @type FilePaths: Array
6280
6312
 
6281
6313
  attr_accessor :ProjectId, :UseStatus, :ResourceIds, :FilePaths
@@ -17746,10 +17778,12 @@ module TencentCloud
17746
17778
  # @type FileSize: String
17747
17779
  # @param MatchedBrokerIp: 日志匹配节点信息
17748
17780
  # @type MatchedBrokerIp: String
17781
+ # @param ExecutionExtendedProps: 执行平台通用协议
17782
+ # @type ExecutionExtendedProps: Array
17749
17783
 
17750
- attr_accessor :LogInfo, :YarnLogInfo, :DataLogInfo, :ThirdTaskRunLogInfo, :ThirdTaskLogUrlDesc, :LineCount, :ExtInfo, :IsEnd, :FileSize, :MatchedBrokerIp
17784
+ attr_accessor :LogInfo, :YarnLogInfo, :DataLogInfo, :ThirdTaskRunLogInfo, :ThirdTaskLogUrlDesc, :LineCount, :ExtInfo, :IsEnd, :FileSize, :MatchedBrokerIp, :ExecutionExtendedProps
17751
17785
 
17752
- def initialize(loginfo=nil, yarnloginfo=nil, dataloginfo=nil, thirdtaskrunloginfo=nil, thirdtasklogurldesc=nil, linecount=nil, extinfo=nil, isend=nil, filesize=nil, matchedbrokerip=nil)
17786
+ def initialize(loginfo=nil, yarnloginfo=nil, dataloginfo=nil, thirdtaskrunloginfo=nil, thirdtasklogurldesc=nil, linecount=nil, extinfo=nil, isend=nil, filesize=nil, matchedbrokerip=nil, executionextendedprops=nil)
17753
17787
  @LogInfo = loginfo
17754
17788
  @YarnLogInfo = yarnloginfo
17755
17789
  @DataLogInfo = dataloginfo
@@ -17760,6 +17794,7 @@ module TencentCloud
17760
17794
  @IsEnd = isend
17761
17795
  @FileSize = filesize
17762
17796
  @MatchedBrokerIp = matchedbrokerip
17797
+ @ExecutionExtendedProps = executionextendedprops
17763
17798
  end
17764
17799
 
17765
17800
  def deserialize(params)
@@ -17773,6 +17808,14 @@ module TencentCloud
17773
17808
  @IsEnd = params['IsEnd']
17774
17809
  @FileSize = params['FileSize']
17775
17810
  @MatchedBrokerIp = params['MatchedBrokerIp']
17811
+ unless params['ExecutionExtendedProps'].nil?
17812
+ @ExecutionExtendedProps = []
17813
+ params['ExecutionExtendedProps'].each do |i|
17814
+ pairdto_tmp = PairDto.new
17815
+ pairdto_tmp.deserialize(i)
17816
+ @ExecutionExtendedProps << pairdto_tmp
17817
+ end
17818
+ end
17776
17819
  end
17777
17820
  end
17778
17821
 
@@ -22089,17 +22132,21 @@ module TencentCloud
22089
22132
  # @param Value: 值
22090
22133
  # 注意:此字段可能返回 null,表示取不到有效值。
22091
22134
  # @type Value: String
22135
+ # @param Description: 描述
22136
+ # @type Description: String
22092
22137
 
22093
- attr_accessor :Key, :Value
22138
+ attr_accessor :Key, :Value, :Description
22094
22139
 
22095
- def initialize(key=nil, value=nil)
22140
+ def initialize(key=nil, value=nil, description=nil)
22096
22141
  @Key = key
22097
22142
  @Value = value
22143
+ @Description = description
22098
22144
  end
22099
22145
 
22100
22146
  def deserialize(params)
22101
22147
  @Key = params['Key']
22102
22148
  @Value = params['Value']
22149
+ @Description = params['Description']
22103
22150
  end
22104
22151
  end
22105
22152
 
@@ -27767,10 +27814,19 @@ module TencentCloud
27767
27814
  # @param HasBizPermission: 是否有修改业务权限
27768
27815
  # 注意:此字段可能返回 null,表示取不到有效值。
27769
27816
  # @type HasBizPermission: Boolean
27817
+ # @param OwnerByEngine: 引擎侧创建人
27818
+ # 注意:此字段可能返回 null,表示取不到有效值。
27819
+ # @type OwnerByEngine: String
27820
+ # @param ErrorTips: 用户无映射账户,请先完成账户映射后再来申请。
27821
+ # 注意:此字段可能返回 null,表示取不到有效值。
27822
+ # @type ErrorTips: String
27823
+ # @param IfSupportCreateAndDDL: 是否支持select or ddl
27824
+ # 注意:此字段可能返回 null,表示取不到有效值。
27825
+ # @type IfSupportCreateAndDDL: :class:`Tencentcloud::Wedata.v20210820.models.CreateAndDDLSupport`
27770
27826
 
27771
- 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
27827
+ attr_accessor :TableId, :TableName, :TableOwnerName, :DatasourceId, :ClusterName, :DatasourceName, :DatabaseName, :TablePath, :TableNameCn, :MetastoreId, :MetastoreType, :Description, :ColumnSeparator, :StorageFormat, :StorageSize, :TableType, :CreateTime, :ModifyTime, :DdlModifyTime, :LastAccessTime, :ProjectName, :BizCatalogIds, :BizCatalogNames, :HasFavorite, :LifeCycleTime, :StorageSizeWithUnit, :InstanceId, :TechnologyType, :TableNameEn, :ProjectId, :Partitions, :ReplicationFactor, :ProjectDisplayName, :DataModifyTime, :ClusterId, :HasAdminAuthority, :DatasourceDisplayName, :DatabaseId, :FavoriteCount, :LikeCount, :HasLike, :TablePropertyScore, :TableHeat, :OwnerProjectId, :TableOwnerId, :DataSourceCategory, :Columns, :MetaCrawlType, :IsView, :Location, :IsPartitionTable, :PartitionColumns, :PartitionExpireDays, :TableProperties, :Environment, :Schema, :CollectDatasourceList, :CollectJobId, :CollectJobName, :Urn, :HasBizPermission, :OwnerByEngine, :ErrorTips, :IfSupportCreateAndDDL
27772
27828
 
27773
- 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)
27829
+ def initialize(tableid=nil, tablename=nil, tableownername=nil, datasourceid=nil, clustername=nil, datasourcename=nil, databasename=nil, tablepath=nil, tablenamecn=nil, metastoreid=nil, metastoretype=nil, description=nil, columnseparator=nil, storageformat=nil, storagesize=nil, tabletype=nil, createtime=nil, modifytime=nil, ddlmodifytime=nil, lastaccesstime=nil, projectname=nil, bizcatalogids=nil, bizcatalognames=nil, hasfavorite=nil, lifecycletime=nil, storagesizewithunit=nil, instanceid=nil, technologytype=nil, tablenameen=nil, projectid=nil, partitions=nil, replicationfactor=nil, projectdisplayname=nil, datamodifytime=nil, clusterid=nil, hasadminauthority=nil, datasourcedisplayname=nil, databaseid=nil, favoritecount=nil, likecount=nil, haslike=nil, tablepropertyscore=nil, tableheat=nil, ownerprojectid=nil, tableownerid=nil, datasourcecategory=nil, columns=nil, metacrawltype=nil, isview=nil, location=nil, ispartitiontable=nil, partitioncolumns=nil, partitionexpiredays=nil, tableproperties=nil, environment=nil, schema=nil, collectdatasourcelist=nil, collectjobid=nil, collectjobname=nil, urn=nil, hasbizpermission=nil, ownerbyengine=nil, errortips=nil, ifsupportcreateandddl=nil)
27774
27830
  @TableId = tableid
27775
27831
  @TableName = tablename
27776
27832
  @TableOwnerName = tableownername
@@ -27832,6 +27888,9 @@ module TencentCloud
27832
27888
  @CollectJobName = collectjobname
27833
27889
  @Urn = urn
27834
27890
  @HasBizPermission = hasbizpermission
27891
+ @OwnerByEngine = ownerbyengine
27892
+ @ErrorTips = errortips
27893
+ @IfSupportCreateAndDDL = ifsupportcreateandddl
27835
27894
  end
27836
27895
 
27837
27896
  def deserialize(params)
@@ -27923,6 +27982,12 @@ module TencentCloud
27923
27982
  @CollectJobName = params['CollectJobName']
27924
27983
  @Urn = params['Urn']
27925
27984
  @HasBizPermission = params['HasBizPermission']
27985
+ @OwnerByEngine = params['OwnerByEngine']
27986
+ @ErrorTips = params['ErrorTips']
27987
+ unless params['IfSupportCreateAndDDL'].nil?
27988
+ @IfSupportCreateAndDDL = CreateAndDDLSupport.new
27989
+ @IfSupportCreateAndDDL.deserialize(params['IfSupportCreateAndDDL'])
27990
+ end
27926
27991
  end
27927
27992
  end
27928
27993
 
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.996
4
+ version: 3.0.998
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-11 00:00:00.000000000 Z
11
+ date: 2025-02-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common