tencentcloud-sdk-dlc 3.0.875 → 3.0.876

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 04f13f22a8bf6da3efe1376f204a7d32c0075e9f
4
- data.tar.gz: da8ecc84e862684521be9b9c50489dd36c2bb66b
3
+ metadata.gz: 1ee31c5f0b5ffe333593b4650b43fb2cedb2f7d9
4
+ data.tar.gz: 39e4ee36f59984dc119d7dd843199378d6795c7f
5
5
  SHA512:
6
- metadata.gz: 8b4e438add08cb884042d61d40757d3f030a42bc50e79d52f798f76f2b57a7916083cc9d76e68162cb66f235117108a8cc96423ab3ab685a178766b017fb9cb5
7
- data.tar.gz: 6b969327ff5df7ed8d18b2c752e27c4c0365ccbe4f64e946edfdcbde626285abb121cf42ca8f258bcaa9ec6c313f010f6a067af7a691ee7a11dac156d964b3db
6
+ metadata.gz: 92bea20c0d49fff5c17ca737c6e87140602da893d15fb200cfebda7432fd132c45c7fcb709dd5e12e251e68a54d470534673428efb165bba91992042d8e52cf5
7
+ data.tar.gz: 654337fee92ca832d30c55aad205353f1e2c5e497bec2ab269c217c54b0a8253123bade01e92392dbb37ccf859e52162554bd2f4d50a528271bb8671a72f3c5f
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.875
1
+ 3.0.876
@@ -2189,7 +2189,7 @@ module TencentCloud
2189
2189
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2190
2190
  end
2191
2191
 
2192
- # 查询任务结果
2192
+ # 查询任务结果,仅支持30天以内的任务查询结果,且返回数据大小超过近50M会进行截断。
2193
2193
 
2194
2194
  # @param request: Request instance for DescribeTaskResult.
2195
2195
  # @type request: :class:`Tencentcloud::dlc::V20210125::DescribeTaskResultRequest`
@@ -6189,16 +6189,19 @@ module TencentCloud
6189
6189
  # @type Limit: Integer
6190
6190
  # @param Offset: 分页参数,默认0
6191
6191
  # @type Offset: Integer
6192
+ # @param Filters: 过滤类型,支持如下的过滤类型,传参Name应为以下其中一个, engine-generation - String(引擎时代: supersql:supersql引擎,native:标准引擎):notebook-keyword - String(数据引擎名称或sessionid或sessionname的模糊搜索)
6193
+ # @type Filters: Array
6192
6194
 
6193
- attr_accessor :DataEngineName, :State, :SortFields, :Asc, :Limit, :Offset
6195
+ attr_accessor :DataEngineName, :State, :SortFields, :Asc, :Limit, :Offset, :Filters
6194
6196
 
6195
- def initialize(dataenginename=nil, state=nil, sortfields=nil, asc=nil, limit=nil, offset=nil)
6197
+ def initialize(dataenginename=nil, state=nil, sortfields=nil, asc=nil, limit=nil, offset=nil, filters=nil)
6196
6198
  @DataEngineName = dataenginename
6197
6199
  @State = state
6198
6200
  @SortFields = sortfields
6199
6201
  @Asc = asc
6200
6202
  @Limit = limit
6201
6203
  @Offset = offset
6204
+ @Filters = filters
6202
6205
  end
6203
6206
 
6204
6207
  def deserialize(params)
@@ -6208,6 +6211,14 @@ module TencentCloud
6208
6211
  @Asc = params['Asc']
6209
6212
  @Limit = params['Limit']
6210
6213
  @Offset = params['Offset']
6214
+ unless params['Filters'].nil?
6215
+ @Filters = []
6216
+ params['Filters'].each do |i|
6217
+ filter_tmp = Filter.new
6218
+ filter_tmp.deserialize(i)
6219
+ @Filters << filter_tmp
6220
+ end
6221
+ end
6211
6222
  end
6212
6223
  end
6213
6224
 
@@ -7191,7 +7202,7 @@ module TencentCloud
7191
7202
 
7192
7203
  # DescribeTaskResult请求参数结构体
7193
7204
  class DescribeTaskResultRequest < TencentCloud::Common::AbstractModel
7194
- # @param TaskId: 任务唯一ID
7205
+ # @param TaskId: 任务唯一ID,仅支持30天内的任务
7195
7206
  # @type TaskId: String
7196
7207
  # @param NextToken: 上一次请求响应返回的分页信息。第一次可以不带,从头开始返回数据,每次返回MaxResults字段设置的数据量。
7197
7208
  # @type NextToken: String
@@ -7509,15 +7520,23 @@ module TencentCloud
7509
7520
  class DescribeUpdatableDataEnginesRequest < TencentCloud::Common::AbstractModel
7510
7521
  # @param DataEngineConfigCommand: 引擎配置操作命令,UpdateSparkSQLLakefsPath 更新托管表路径,UpdateSparkSQLResultPath 更新结果桶路径
7511
7522
  # @type DataEngineConfigCommand: String
7523
+ # @param UseLakeFs: 是否使用托管存储作为结果存储
7524
+ # @type UseLakeFs: Boolean
7525
+ # @param CustomResultPath: 用户自定义结果存储路径
7526
+ # @type CustomResultPath: String
7512
7527
 
7513
- attr_accessor :DataEngineConfigCommand
7528
+ attr_accessor :DataEngineConfigCommand, :UseLakeFs, :CustomResultPath
7514
7529
 
7515
- def initialize(dataengineconfigcommand=nil)
7530
+ def initialize(dataengineconfigcommand=nil, uselakefs=nil, customresultpath=nil)
7516
7531
  @DataEngineConfigCommand = dataengineconfigcommand
7532
+ @UseLakeFs = uselakefs
7533
+ @CustomResultPath = customresultpath
7517
7534
  end
7518
7535
 
7519
7536
  def deserialize(params)
7520
7537
  @DataEngineConfigCommand = params['DataEngineConfigCommand']
7538
+ @UseLakeFs = params['UseLakeFs']
7539
+ @CustomResultPath = params['CustomResultPath']
7521
7540
  end
7522
7541
  end
7523
7542
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-dlc
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.875
4
+ version: 3.0.876
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-07-29 00:00:00.000000000 Z
11
+ date: 2024-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common