tencentcloud-sdk-dlc 3.0.681 → 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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 96edaf69eeb411a009cc38684833f882dcb00724
4
- data.tar.gz: 0a3a6469e65f3850c808c8af7b53ebb82ce586de
3
+ metadata.gz: a734cc88b677e87146c8d1798a3e4b80c78c041e
4
+ data.tar.gz: 0075bb3da928c378e674c8d50af7e4ae51711da1
5
5
  SHA512:
6
- metadata.gz: 39422aa80dd000122c3ba935a28d3fc8c9ccaf9910f4dafc247990ea17c68f4d56eca910f074d744676581535db34e5a9fab3c695c34341dc4c40f1815f5ad26
7
- data.tar.gz: 1b90bcf101ad12b8a895462ed180098a93cba3e51b9caef3d7b22737aa0177838711f933eacb7b85b8f2c35c1eb09a0de9654e88dfbdff7454c0de541ab1f332
6
+ metadata.gz: d0af8f224b8284641820a63f6bf096fea6ca913c63ea632f804f2a07dc96a7dab99b0f27ff675ec7ca0b198ce65044d0daa39e128e479c750f2b641c92b0d87e
7
+ data.tar.gz: c96986c06321fb5345384c9ce28d8f5914f7765cabb381089112989c453c08425483dba5f5dcb53754b57360870de62b7bb32cc5f42b6010ab960c16405c0d52
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.681
1
+ 3.0.683
@@ -1109,6 +1109,30 @@ module TencentCloud
1109
1109
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1110
1110
  end
1111
1111
 
1112
+ # 查询sql查询界面高级设置
1113
+
1114
+ # @param request: Request instance for DescribeAdvancedStoreLocation.
1115
+ # @type request: :class:`Tencentcloud::dlc::V20210125::DescribeAdvancedStoreLocationRequest`
1116
+ # @rtype: :class:`Tencentcloud::dlc::V20210125::DescribeAdvancedStoreLocationResponse`
1117
+ def DescribeAdvancedStoreLocation(request)
1118
+ body = send_request('DescribeAdvancedStoreLocation', request.serialize)
1119
+ response = JSON.parse(body)
1120
+ if response['Response'].key?('Error') == false
1121
+ model = DescribeAdvancedStoreLocationResponse.new
1122
+ model.deserialize(response['Response'])
1123
+ model
1124
+ else
1125
+ code = response['Response']['Error']['Code']
1126
+ message = response['Response']['Error']['Message']
1127
+ reqid = response['Response']['RequestId']
1128
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1129
+ end
1130
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1131
+ raise e
1132
+ rescue StandardError => e
1133
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1134
+ end
1135
+
1112
1136
  # DMS元数据获取库
1113
1137
 
1114
1138
  # @param request: Request instance for DescribeDMSDatabase.
@@ -2309,6 +2333,30 @@ module TencentCloud
2309
2333
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2310
2334
  end
2311
2335
 
2336
+ # 修改sql查询界面高级设置。
2337
+
2338
+ # @param request: Request instance for ModifyAdvancedStoreLocation.
2339
+ # @type request: :class:`Tencentcloud::dlc::V20210125::ModifyAdvancedStoreLocationRequest`
2340
+ # @rtype: :class:`Tencentcloud::dlc::V20210125::ModifyAdvancedStoreLocationResponse`
2341
+ def ModifyAdvancedStoreLocation(request)
2342
+ body = send_request('ModifyAdvancedStoreLocation', request.serialize)
2343
+ response = JSON.parse(body)
2344
+ if response['Response'].key?('Error') == false
2345
+ model = ModifyAdvancedStoreLocationResponse.new
2346
+ model.deserialize(response['Response'])
2347
+ model
2348
+ else
2349
+ code = response['Response']['Error']['Code']
2350
+ message = response['Response']['Error']['Message']
2351
+ reqid = response['Response']['RequestId']
2352
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2353
+ end
2354
+ rescue TencentCloud::Common::TencentCloudSDKException => e
2355
+ raise e
2356
+ rescue StandardError => e
2357
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2358
+ end
2359
+
2312
2360
  # 修改引擎描述信息
2313
2361
 
2314
2362
  # @param request: Request instance for ModifyDataEngineDescription.
@@ -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
@@ -4101,6 +4113,50 @@ module TencentCloud
4101
4113
  end
4102
4114
  end
4103
4115
 
4116
+ # DescribeAdvancedStoreLocation请求参数结构体
4117
+ class DescribeAdvancedStoreLocationRequest < TencentCloud::Common::AbstractModel
4118
+
4119
+
4120
+ def initialize()
4121
+ end
4122
+
4123
+ def deserialize(params)
4124
+ end
4125
+ end
4126
+
4127
+ # DescribeAdvancedStoreLocation返回参数结构体
4128
+ class DescribeAdvancedStoreLocationResponse < TencentCloud::Common::AbstractModel
4129
+ # @param Enable: 是否启用高级设置:0-否,1-是
4130
+ # @type Enable: Integer
4131
+ # @param StoreLocation: 查询结果保存cos路径
4132
+ # @type StoreLocation: String
4133
+ # @param HasLakeFs: 是否有托管存储权限
4134
+ # @type HasLakeFs: Boolean
4135
+ # @param LakeFsStatus: 托管存储状态,HasLakeFs等于true时,该值才有意义
4136
+ # 注意:此字段可能返回 null,表示取不到有效值。
4137
+ # @type LakeFsStatus: String
4138
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4139
+ # @type RequestId: String
4140
+
4141
+ attr_accessor :Enable, :StoreLocation, :HasLakeFs, :LakeFsStatus, :RequestId
4142
+
4143
+ def initialize(enable=nil, storelocation=nil, haslakefs=nil, lakefsstatus=nil, requestid=nil)
4144
+ @Enable = enable
4145
+ @StoreLocation = storelocation
4146
+ @HasLakeFs = haslakefs
4147
+ @LakeFsStatus = lakefsstatus
4148
+ @RequestId = requestid
4149
+ end
4150
+
4151
+ def deserialize(params)
4152
+ @Enable = params['Enable']
4153
+ @StoreLocation = params['StoreLocation']
4154
+ @HasLakeFs = params['HasLakeFs']
4155
+ @LakeFsStatus = params['LakeFsStatus']
4156
+ @RequestId = params['RequestId']
4157
+ end
4158
+ end
4159
+
4104
4160
  # DescribeDMSDatabase请求参数结构体
4105
4161
  class DescribeDMSDatabaseRequest < TencentCloud::Common::AbstractModel
4106
4162
  # @param Name: 数据库名称
@@ -7680,6 +7736,42 @@ module TencentCloud
7680
7736
  end
7681
7737
  end
7682
7738
 
7739
+ # ModifyAdvancedStoreLocation请求参数结构体
7740
+ class ModifyAdvancedStoreLocationRequest < TencentCloud::Common::AbstractModel
7741
+ # @param StoreLocation: 查询结果保存cos路径
7742
+ # @type StoreLocation: String
7743
+ # @param Enable: 是否启用高级设置:0-否,1-是
7744
+ # @type Enable: Integer
7745
+
7746
+ attr_accessor :StoreLocation, :Enable
7747
+
7748
+ def initialize(storelocation=nil, enable=nil)
7749
+ @StoreLocation = storelocation
7750
+ @Enable = enable
7751
+ end
7752
+
7753
+ def deserialize(params)
7754
+ @StoreLocation = params['StoreLocation']
7755
+ @Enable = params['Enable']
7756
+ end
7757
+ end
7758
+
7759
+ # ModifyAdvancedStoreLocation返回参数结构体
7760
+ class ModifyAdvancedStoreLocationResponse < TencentCloud::Common::AbstractModel
7761
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7762
+ # @type RequestId: String
7763
+
7764
+ attr_accessor :RequestId
7765
+
7766
+ def initialize(requestid=nil)
7767
+ @RequestId = requestid
7768
+ end
7769
+
7770
+ def deserialize(params)
7771
+ @RequestId = params['RequestId']
7772
+ end
7773
+ end
7774
+
7683
7775
  # ModifyDataEngineDescription请求参数结构体
7684
7776
  class ModifyDataEngineDescriptionRequest < TencentCloud::Common::AbstractModel
7685
7777
  # @param DataEngineName: 要修改的引擎的名称
@@ -9596,6 +9688,28 @@ module TencentCloud
9596
9688
  end
9597
9689
  end
9598
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
+
9599
9713
  # notebook session statement输出信息。
9600
9714
  class StatementOutput < TencentCloud::Common::AbstractModel
9601
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.681
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-20 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: