tencentcloud-sdk-dlc 3.0.682 → 3.0.684

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20210125/models.rb +36 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ff160d7f6a505371239bb7a5a590af3ca25df01e
4
- data.tar.gz: 132e066317e343a7ef122402c6909200e309c3e2
3
+ metadata.gz: 929199845d6e73184d42eea6a5a59a50dcf5f80c
4
+ data.tar.gz: 2549dd2ee3e6cafc5f2e38fe4d0fa068acce441f
5
5
  SHA512:
6
- metadata.gz: 2760a82689062f3b9f7ed876df83d20d9ced4acb6863c82dc6d384adf99f7b5fcaf92652e73110896276a9ab7c1dc51204a2ccf0ae5ac4cf88ba2dc26c305eb0
7
- data.tar.gz: df3107e58ece2616b8d6ceb411a68dfb8ac5aa6557fc318b10b68e561b04c76869a806137adefe2e54768900a02be3bbaf7ef3b62638cce98750a73f4d7e5b77
6
+ metadata.gz: 9abcf46dc435fa05395f3a47e7825d996a50da1726f0a48dc9a22301d3021fe76e7557b76d990cfb8b6a75bdf93af9d524b52e8ee553d75c3e3092f243d55eda
7
+ data.tar.gz: d5c6f066c55744238e6534a720d9d3bd5088aefffd2137a2d8b3064799b5b448b0d672095bce3ecc276817acf35b9b8c380f39ad69bc52be2c0da78aa1deeee5
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.682
1
+ 3.0.684
@@ -2251,18 +2251,30 @@ module TencentCloud
2251
2251
  class CreateSparkSessionBatchSQLResponse < TencentCloud::Common::AbstractModel
2252
2252
  # @param BatchId: 批任务唯一标识
2253
2253
  # @type BatchId: String
2254
+ # @param Statements: Statement任务列表信息
2255
+ # 注意:此字段可能返回 null,表示取不到有效值。
2256
+ # @type Statements: Array
2254
2257
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2255
2258
  # @type RequestId: String
2256
2259
 
2257
- attr_accessor :BatchId, :RequestId
2260
+ attr_accessor :BatchId, :Statements, :RequestId
2258
2261
 
2259
- def initialize(batchid=nil, requestid=nil)
2262
+ def initialize(batchid=nil, statements=nil, requestid=nil)
2260
2263
  @BatchId = batchid
2264
+ @Statements = statements
2261
2265
  @RequestId = requestid
2262
2266
  end
2263
2267
 
2264
2268
  def deserialize(params)
2265
2269
  @BatchId = params['BatchId']
2270
+ unless params['Statements'].nil?
2271
+ @Statements = []
2272
+ params['Statements'].each do |i|
2273
+ statementinformation_tmp = StatementInformation.new
2274
+ statementinformation_tmp.deserialize(i)
2275
+ @Statements << statementinformation_tmp
2276
+ end
2277
+ end
2266
2278
  @RequestId = params['RequestId']
2267
2279
  end
2268
2280
  end
@@ -9676,6 +9688,28 @@ module TencentCloud
9676
9688
  end
9677
9689
  end
9678
9690
 
9691
+ # statement信息
9692
+ class StatementInformation < TencentCloud::Common::AbstractModel
9693
+ # @param TaskId: SQL任务唯一ID
9694
+ # 注意:此字段可能返回 null,表示取不到有效值。
9695
+ # @type TaskId: String
9696
+ # @param SQL: SQL内容
9697
+ # 注意:此字段可能返回 null,表示取不到有效值。
9698
+ # @type SQL: String
9699
+
9700
+ attr_accessor :TaskId, :SQL
9701
+
9702
+ def initialize(taskid=nil, sql=nil)
9703
+ @TaskId = taskid
9704
+ @SQL = sql
9705
+ end
9706
+
9707
+ def deserialize(params)
9708
+ @TaskId = params['TaskId']
9709
+ @SQL = params['SQL']
9710
+ end
9711
+ end
9712
+
9679
9713
  # notebook session statement输出信息。
9680
9714
  class StatementOutput < TencentCloud::Common::AbstractModel
9681
9715
  # @param ExecutionCount: 执行总数
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.682
4
+ version: 3.0.684
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-23 00:00:00.000000000 Z
11
+ date: 2023-10-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common