tencentcloud-sdk-dlc 3.0.682 → 3.0.683

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/v20210125/models.rb +36 -2
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ff160d7f6a505371239bb7a5a590af3ca25df01e
4
- data.tar.gz: 132e066317e343a7ef122402c6909200e309c3e2
3
+ metadata.gz: a734cc88b677e87146c8d1798a3e4b80c78c041e
4
+ data.tar.gz: 0075bb3da928c378e674c8d50af7e4ae51711da1
5
5
  SHA512:
6
- metadata.gz: 2760a82689062f3b9f7ed876df83d20d9ced4acb6863c82dc6d384adf99f7b5fcaf92652e73110896276a9ab7c1dc51204a2ccf0ae5ac4cf88ba2dc26c305eb0
7
- data.tar.gz: df3107e58ece2616b8d6ceb411a68dfb8ac5aa6557fc318b10b68e561b04c76869a806137adefe2e54768900a02be3bbaf7ef3b62638cce98750a73f4d7e5b77
6
+ metadata.gz: d0af8f224b8284641820a63f6bf096fea6ca913c63ea632f804f2a07dc96a7dab99b0f27ff675ec7ca0b198ce65044d0daa39e128e479c750f2b641c92b0d87e
7
+ data.tar.gz: c96986c06321fb5345384c9ce28d8f5914f7765cabb381089112989c453c08425483dba5f5dcb53754b57360870de62b7bb32cc5f42b6010ab960c16405c0d52
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.682
1
+ 3.0.683
@@ -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.683
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-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -34,8 +34,8 @@ extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
36
  - lib/tencentcloud-sdk-dlc.rb
37
- - lib/v20210125/client.rb
38
37
  - lib/v20210125/models.rb
38
+ - lib/v20210125/client.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: