tencentcloud-sdk-dlc 3.0.678 → 3.0.680
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210125/client.rb +24 -0
- data/lib/v20210125/models.rb +42 -6
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 044f7a7a09f861b29fcab522f9846a9a62944e82
|
|
4
|
+
data.tar.gz: 69889a834bbf83be8e3802891de0a955b3dc2163
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 78d7f860b8d0a2a96efda0dd2d126e950cf17f332e715e9d43cf0ee1e7f1a96b4cf80daaf7b884929135790ca0584a4e8750bb9ba8e75452667d14c87ced3e88
|
|
7
|
+
data.tar.gz: d75b0fbe3f6d64aa41d392c6ba9098433303f26798f7e1a6187cdeca5ee6c05eaff926d2152c2de3c76ea86b9b3ff2e2cb98adb60dae2960f7dc5a19fb931caf
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.680
|
data/lib/v20210125/client.rb
CHANGED
|
@@ -1445,6 +1445,30 @@ module TencentCloud
|
|
|
1445
1445
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1446
1446
|
end
|
|
1447
1447
|
|
|
1448
|
+
# 获取LakeFs上task执行结果访问信息
|
|
1449
|
+
|
|
1450
|
+
# @param request: Request instance for DescribeLakeFsTaskResult.
|
|
1451
|
+
# @type request: :class:`Tencentcloud::dlc::V20210125::DescribeLakeFsTaskResultRequest`
|
|
1452
|
+
# @rtype: :class:`Tencentcloud::dlc::V20210125::DescribeLakeFsTaskResultResponse`
|
|
1453
|
+
def DescribeLakeFsTaskResult(request)
|
|
1454
|
+
body = send_request('DescribeLakeFsTaskResult', request.serialize)
|
|
1455
|
+
response = JSON.parse(body)
|
|
1456
|
+
if response['Response'].key?('Error') == false
|
|
1457
|
+
model = DescribeLakeFsTaskResultResponse.new
|
|
1458
|
+
model.deserialize(response['Response'])
|
|
1459
|
+
model
|
|
1460
|
+
else
|
|
1461
|
+
code = response['Response']['Error']['Code']
|
|
1462
|
+
message = response['Response']['Error']['Message']
|
|
1463
|
+
reqid = response['Response']['RequestId']
|
|
1464
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1465
|
+
end
|
|
1466
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1467
|
+
raise e
|
|
1468
|
+
rescue StandardError => e
|
|
1469
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1470
|
+
end
|
|
1471
|
+
|
|
1448
1472
|
# 本接口(DescribeNotebookSession)用于查询交互式 session详情信息
|
|
1449
1473
|
|
|
1450
1474
|
# @param request: Request instance for DescribeNotebookSession.
|
data/lib/v20210125/models.rb
CHANGED
|
@@ -1329,13 +1329,15 @@ module TencentCloud
|
|
|
1329
1329
|
# @type ElasticLimit: Integer
|
|
1330
1330
|
# @param SessionResourceTemplate: spark作业集群session资源配置模板
|
|
1331
1331
|
# @type SessionResourceTemplate: :class:`Tencentcloud::Dlc.v20210125.models.SessionResourceTemplate`
|
|
1332
|
+
# @param AutoAuthorization: 自动授权
|
|
1333
|
+
# @type AutoAuthorization: Boolean
|
|
1332
1334
|
|
|
1333
|
-
attr_accessor :EngineType, :DataEngineName, :ClusterType, :Mode, :AutoResume, :MinClusters, :MaxClusters, :DefaultDataEngine, :CidrBlock, :Message, :Size, :PayMode, :TimeSpan, :TimeUnit, :AutoRenew, :Tags, :AutoSuspend, :CrontabResumeSuspend, :CrontabResumeSuspendStrategy, :EngineExecType, :MaxConcurrency, :TolerableQueueTime, :AutoSuspendTime, :ResourceType, :DataEngineConfigPairs, :ImageVersionName, :MainClusterName, :ElasticSwitch, :ElasticLimit, :SessionResourceTemplate
|
|
1335
|
+
attr_accessor :EngineType, :DataEngineName, :ClusterType, :Mode, :AutoResume, :MinClusters, :MaxClusters, :DefaultDataEngine, :CidrBlock, :Message, :Size, :PayMode, :TimeSpan, :TimeUnit, :AutoRenew, :Tags, :AutoSuspend, :CrontabResumeSuspend, :CrontabResumeSuspendStrategy, :EngineExecType, :MaxConcurrency, :TolerableQueueTime, :AutoSuspendTime, :ResourceType, :DataEngineConfigPairs, :ImageVersionName, :MainClusterName, :ElasticSwitch, :ElasticLimit, :SessionResourceTemplate, :AutoAuthorization
|
|
1334
1336
|
extend Gem::Deprecate
|
|
1335
1337
|
deprecate :DefaultDataEngine, :none, 2023, 10
|
|
1336
1338
|
deprecate :DefaultDataEngine=, :none, 2023, 10
|
|
1337
1339
|
|
|
1338
|
-
def initialize(enginetype=nil, dataenginename=nil, clustertype=nil, mode=nil, autoresume=nil, minclusters=nil, maxclusters=nil, defaultdataengine=nil, cidrblock=nil, message=nil, size=nil, paymode=nil, timespan=nil, timeunit=nil, autorenew=nil, tags=nil, autosuspend=nil, crontabresumesuspend=nil, crontabresumesuspendstrategy=nil, engineexectype=nil, maxconcurrency=nil, tolerablequeuetime=nil, autosuspendtime=nil, resourcetype=nil, dataengineconfigpairs=nil, imageversionname=nil, mainclustername=nil, elasticswitch=nil, elasticlimit=nil, sessionresourcetemplate=nil)
|
|
1340
|
+
def initialize(enginetype=nil, dataenginename=nil, clustertype=nil, mode=nil, autoresume=nil, minclusters=nil, maxclusters=nil, defaultdataengine=nil, cidrblock=nil, message=nil, size=nil, paymode=nil, timespan=nil, timeunit=nil, autorenew=nil, tags=nil, autosuspend=nil, crontabresumesuspend=nil, crontabresumesuspendstrategy=nil, engineexectype=nil, maxconcurrency=nil, tolerablequeuetime=nil, autosuspendtime=nil, resourcetype=nil, dataengineconfigpairs=nil, imageversionname=nil, mainclustername=nil, elasticswitch=nil, elasticlimit=nil, sessionresourcetemplate=nil, autoauthorization=nil)
|
|
1339
1341
|
@EngineType = enginetype
|
|
1340
1342
|
@DataEngineName = dataenginename
|
|
1341
1343
|
@ClusterType = clustertype
|
|
@@ -1366,6 +1368,7 @@ module TencentCloud
|
|
|
1366
1368
|
@ElasticSwitch = elasticswitch
|
|
1367
1369
|
@ElasticLimit = elasticlimit
|
|
1368
1370
|
@SessionResourceTemplate = sessionresourcetemplate
|
|
1371
|
+
@AutoAuthorization = autoauthorization
|
|
1369
1372
|
end
|
|
1370
1373
|
|
|
1371
1374
|
def deserialize(params)
|
|
@@ -1419,6 +1422,7 @@ module TencentCloud
|
|
|
1419
1422
|
@SessionResourceTemplate = SessionResourceTemplate.new
|
|
1420
1423
|
@SessionResourceTemplate.deserialize(params['SessionResourceTemplate'])
|
|
1421
1424
|
end
|
|
1425
|
+
@AutoAuthorization = params['AutoAuthorization']
|
|
1422
1426
|
end
|
|
1423
1427
|
end
|
|
1424
1428
|
|
|
@@ -3285,10 +3289,13 @@ module TencentCloud
|
|
|
3285
3289
|
# @param SessionResourceTemplate: SessionResourceTemplate
|
|
3286
3290
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3287
3291
|
# @type SessionResourceTemplate: :class:`Tencentcloud::Dlc.v20210125.models.SessionResourceTemplate`
|
|
3292
|
+
# @param AutoAuthorization: 自动授权开关
|
|
3293
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3294
|
+
# @type AutoAuthorization: Boolean
|
|
3288
3295
|
|
|
3289
|
-
attr_accessor :DataEngineName, :EngineType, :ClusterType, :QuotaId, :State, :CreateTime, :UpdateTime, :Size, :Mode, :MinClusters, :MaxClusters, :AutoResume, :SpendAfter, :CidrBlock, :DefaultDataEngine, :Message, :DataEngineId, :SubAccountUin, :ExpireTime, :IsolatedTime, :ReversalTime, :UserAlias, :TagList, :Permissions, :AutoSuspend, :CrontabResumeSuspend, :CrontabResumeSuspendStrategy, :EngineExecType, :RenewFlag, :AutoSuspendTime, :NetworkConnectionSet, :UiURL, :ResourceType, :ImageVersionId, :ChildImageVersionId, :ImageVersionName, :StartStandbyCluster, :ElasticSwitch, :ElasticLimit, :DefaultHouse, :MaxConcurrency, :TolerableQueueTime, :UserAppId, :UserUin, :SessionResourceTemplate
|
|
3296
|
+
attr_accessor :DataEngineName, :EngineType, :ClusterType, :QuotaId, :State, :CreateTime, :UpdateTime, :Size, :Mode, :MinClusters, :MaxClusters, :AutoResume, :SpendAfter, :CidrBlock, :DefaultDataEngine, :Message, :DataEngineId, :SubAccountUin, :ExpireTime, :IsolatedTime, :ReversalTime, :UserAlias, :TagList, :Permissions, :AutoSuspend, :CrontabResumeSuspend, :CrontabResumeSuspendStrategy, :EngineExecType, :RenewFlag, :AutoSuspendTime, :NetworkConnectionSet, :UiURL, :ResourceType, :ImageVersionId, :ChildImageVersionId, :ImageVersionName, :StartStandbyCluster, :ElasticSwitch, :ElasticLimit, :DefaultHouse, :MaxConcurrency, :TolerableQueueTime, :UserAppId, :UserUin, :SessionResourceTemplate, :AutoAuthorization
|
|
3290
3297
|
|
|
3291
|
-
def initialize(dataenginename=nil, enginetype=nil, clustertype=nil, quotaid=nil, state=nil, createtime=nil, updatetime=nil, size=nil, mode=nil, minclusters=nil, maxclusters=nil, autoresume=nil, spendafter=nil, cidrblock=nil, defaultdataengine=nil, message=nil, dataengineid=nil, subaccountuin=nil, expiretime=nil, isolatedtime=nil, reversaltime=nil, useralias=nil, taglist=nil, permissions=nil, autosuspend=nil, crontabresumesuspend=nil, crontabresumesuspendstrategy=nil, engineexectype=nil, renewflag=nil, autosuspendtime=nil, networkconnectionset=nil, uiurl=nil, resourcetype=nil, imageversionid=nil, childimageversionid=nil, imageversionname=nil, startstandbycluster=nil, elasticswitch=nil, elasticlimit=nil, defaulthouse=nil, maxconcurrency=nil, tolerablequeuetime=nil, userappid=nil, useruin=nil, sessionresourcetemplate=nil)
|
|
3298
|
+
def initialize(dataenginename=nil, enginetype=nil, clustertype=nil, quotaid=nil, state=nil, createtime=nil, updatetime=nil, size=nil, mode=nil, minclusters=nil, maxclusters=nil, autoresume=nil, spendafter=nil, cidrblock=nil, defaultdataengine=nil, message=nil, dataengineid=nil, subaccountuin=nil, expiretime=nil, isolatedtime=nil, reversaltime=nil, useralias=nil, taglist=nil, permissions=nil, autosuspend=nil, crontabresumesuspend=nil, crontabresumesuspendstrategy=nil, engineexectype=nil, renewflag=nil, autosuspendtime=nil, networkconnectionset=nil, uiurl=nil, resourcetype=nil, imageversionid=nil, childimageversionid=nil, imageversionname=nil, startstandbycluster=nil, elasticswitch=nil, elasticlimit=nil, defaulthouse=nil, maxconcurrency=nil, tolerablequeuetime=nil, userappid=nil, useruin=nil, sessionresourcetemplate=nil, autoauthorization=nil)
|
|
3292
3299
|
@DataEngineName = dataenginename
|
|
3293
3300
|
@EngineType = enginetype
|
|
3294
3301
|
@ClusterType = clustertype
|
|
@@ -3334,6 +3341,7 @@ module TencentCloud
|
|
|
3334
3341
|
@UserAppId = userappid
|
|
3335
3342
|
@UserUin = useruin
|
|
3336
3343
|
@SessionResourceTemplate = sessionresourcetemplate
|
|
3344
|
+
@AutoAuthorization = autoauthorization
|
|
3337
3345
|
end
|
|
3338
3346
|
|
|
3339
3347
|
def deserialize(params)
|
|
@@ -3402,6 +3410,7 @@ module TencentCloud
|
|
|
3402
3410
|
@SessionResourceTemplate = SessionResourceTemplate.new
|
|
3403
3411
|
@SessionResourceTemplate.deserialize(params['SessionResourceTemplate'])
|
|
3404
3412
|
end
|
|
3413
|
+
@AutoAuthorization = params['AutoAuthorization']
|
|
3405
3414
|
end
|
|
3406
3415
|
end
|
|
3407
3416
|
|
|
@@ -4649,7 +4658,7 @@ module TencentCloud
|
|
|
4649
4658
|
class DescribeDataEnginesRequest < TencentCloud::Common::AbstractModel
|
|
4650
4659
|
# @param Offset: 偏移量,默认为0。
|
|
4651
4660
|
# @type Offset: Integer
|
|
4652
|
-
# @param Filters: 过滤类型,支持如下的过滤类型,传参Name应为以下其中一个, data-engine-name - String(数据引擎名称):engine-type - String(引擎类型:spark:spark 引擎,presto:presto引擎),state - String (数据引擎状态 -2已删除 -1失败 0初始化中 1挂起 2运行中 3准备删除 4删除中) , mode - String(计费模式 0共享模式 1按量计费 2包年包月) , create-time - String(创建时间,10位时间戳) message - String (描述信息),cluster-type - String (集群资源类型 spark_private/presto_private/presto_cu/spark_cu),engine-id - String(数据引擎ID),key-word - String(数据引擎名称或集群资源类型或描述信息模糊搜索),engine-exec-type - String(引擎执行任务类型,SQL/BATCH)
|
|
4661
|
+
# @param Filters: 过滤类型,支持如下的过滤类型,传参Name应为以下其中一个, data-engine-name - String(数据引擎名称):engine-type - String(引擎类型:spark:spark 引擎,presto:presto引擎),state - String (数据引擎状态 -2已删除 -1失败 0初始化中 1挂起 2运行中 3准备删除 4删除中) , mode - String(计费模式 0共享模式 1按量计费 2包年包月) , create-time - String(创建时间,10位时间戳) message - String (描述信息),cluster-type - String (集群资源类型 spark_private/presto_private/presto_cu/spark_cu/kyuubi_cu),engine-id - String(数据引擎ID),key-word - String(数据引擎名称或集群资源类型或描述信息模糊搜索),engine-exec-type - String(引擎执行任务类型,SQL/BATCH),engine-network-id - String(引擎网络Id)
|
|
4653
4662
|
# @type Filters: Array
|
|
4654
4663
|
# @param SortBy: 排序字段,支持如下字段类型,create-time
|
|
4655
4664
|
# @type SortBy: String
|
|
@@ -4665,7 +4674,7 @@ module TencentCloud
|
|
|
4665
4674
|
# @type AccessTypes: Array
|
|
4666
4675
|
# @param EngineExecType: 引擎执行任务类型,有效值:SQL/BATCH,默认为SQL
|
|
4667
4676
|
# @type EngineExecType: String
|
|
4668
|
-
# @param EngineType: 引擎类型,有效值:spark/presto
|
|
4677
|
+
# @param EngineType: 引擎类型,有效值:spark/presto/kyuubi,为空时默认获取非kyuubi引擎(网关引擎)
|
|
4669
4678
|
# @type EngineType: String
|
|
4670
4679
|
# @param DatasourceConnectionNameSet: 网络配置列表,若传入该参数,则返回网络配置关联的计算引擎
|
|
4671
4680
|
# @type DatasourceConnectionNameSet: Array
|
|
@@ -5024,6 +5033,33 @@ module TencentCloud
|
|
|
5024
5033
|
end
|
|
5025
5034
|
end
|
|
5026
5035
|
|
|
5036
|
+
# DescribeLakeFsTaskResult请求参数结构体
|
|
5037
|
+
class DescribeLakeFsTaskResultRequest < TencentCloud::Common::AbstractModel
|
|
5038
|
+
|
|
5039
|
+
|
|
5040
|
+
def initialize()
|
|
5041
|
+
end
|
|
5042
|
+
|
|
5043
|
+
def deserialize(params)
|
|
5044
|
+
end
|
|
5045
|
+
end
|
|
5046
|
+
|
|
5047
|
+
# DescribeLakeFsTaskResult返回参数结构体
|
|
5048
|
+
class DescribeLakeFsTaskResultResponse < TencentCloud::Common::AbstractModel
|
|
5049
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5050
|
+
# @type RequestId: String
|
|
5051
|
+
|
|
5052
|
+
attr_accessor :RequestId
|
|
5053
|
+
|
|
5054
|
+
def initialize(requestid=nil)
|
|
5055
|
+
@RequestId = requestid
|
|
5056
|
+
end
|
|
5057
|
+
|
|
5058
|
+
def deserialize(params)
|
|
5059
|
+
@RequestId = params['RequestId']
|
|
5060
|
+
end
|
|
5061
|
+
end
|
|
5062
|
+
|
|
5027
5063
|
# DescribeNotebookSessionLog请求参数结构体
|
|
5028
5064
|
class DescribeNotebookSessionLogRequest < TencentCloud::Common::AbstractModel
|
|
5029
5065
|
# @param SessionId: Session唯一标识
|
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.
|
|
4
|
+
version: 3.0.680
|
|
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-
|
|
11
|
+
date: 2023-10-19 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/models.rb
|
|
38
37
|
- lib/v20210125/client.rb
|
|
38
|
+
- lib/v20210125/models.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
41
41
|
licenses:
|