tencentcloud-sdk-dlc 3.0.816 → 3.0.818
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/models.rb +49 -17
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 89ea1f6e78e46b05d7731a0558c2aa8284300322
|
4
|
+
data.tar.gz: 468ea56c821334e60c6890fea7118f26c61a42d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24f45788c0ea729eb643e59fbe6913815452fc542a7ff9d6bad078b93b2a31df3d0336f03f23ce57236ac1d88c95fd1122e1721e40e7144a61a07ea2f19db47e
|
7
|
+
data.tar.gz: c237f04a40bc57bb85d2af942b8a21ac0f06ae9afa393133c55569dd1e410add6348c2ee8d6d300f03bea3fe7799840b9946d5eb4a0572a5e044f69704d62718
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.818
|
data/lib/v20210125/models.rb
CHANGED
@@ -1414,8 +1414,8 @@ module TencentCloud
|
|
1414
1414
|
|
1415
1415
|
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, :EngineNetworkId, :EngineGeneration
|
1416
1416
|
extend Gem::Deprecate
|
1417
|
-
deprecate :DefaultDataEngine, :none, 2024,
|
1418
|
-
deprecate :DefaultDataEngine=, :none, 2024,
|
1417
|
+
deprecate :DefaultDataEngine, :none, 2024, 5
|
1418
|
+
deprecate :DefaultDataEngine=, :none, 2024, 5
|
1419
1419
|
|
1420
1420
|
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, enginenetworkid=nil, enginegeneration=nil)
|
1421
1421
|
@EngineType = enginetype
|
@@ -2451,14 +2451,17 @@ module TencentCloud
|
|
2451
2451
|
# @type DatasourceConnectionName: String
|
2452
2452
|
# @param DataEngineName: 数据引擎名称,不填提交到默认集群
|
2453
2453
|
# @type DataEngineName: String
|
2454
|
+
# @param ResourceGroupName: 标准spark执行任务resourceGroupName
|
2455
|
+
# @type ResourceGroupName: String
|
2454
2456
|
|
2455
|
-
attr_accessor :Task, :DatabaseName, :DatasourceConnectionName, :DataEngineName
|
2457
|
+
attr_accessor :Task, :DatabaseName, :DatasourceConnectionName, :DataEngineName, :ResourceGroupName
|
2456
2458
|
|
2457
|
-
def initialize(task=nil, databasename=nil, datasourceconnectionname=nil, dataenginename=nil)
|
2459
|
+
def initialize(task=nil, databasename=nil, datasourceconnectionname=nil, dataenginename=nil, resourcegroupname=nil)
|
2458
2460
|
@Task = task
|
2459
2461
|
@DatabaseName = databasename
|
2460
2462
|
@DatasourceConnectionName = datasourceconnectionname
|
2461
2463
|
@DataEngineName = dataenginename
|
2464
|
+
@ResourceGroupName = resourcegroupname
|
2462
2465
|
end
|
2463
2466
|
|
2464
2467
|
def deserialize(params)
|
@@ -2469,6 +2472,7 @@ module TencentCloud
|
|
2469
2472
|
@DatabaseName = params['DatabaseName']
|
2470
2473
|
@DatasourceConnectionName = params['DatasourceConnectionName']
|
2471
2474
|
@DataEngineName = params['DataEngineName']
|
2475
|
+
@ResourceGroupName = params['ResourceGroupName']
|
2472
2476
|
end
|
2473
2477
|
end
|
2474
2478
|
|
@@ -2554,14 +2558,17 @@ module TencentCloud
|
|
2554
2558
|
# @type DatasourceConnectionName: String
|
2555
2559
|
# @param DataEngineName: 计算引擎名称,不填任务提交到默认集群
|
2556
2560
|
# @type DataEngineName: String
|
2561
|
+
# @param ResourceGroupName: spark集群资源组名称
|
2562
|
+
# @type ResourceGroupName: String
|
2557
2563
|
|
2558
|
-
attr_accessor :DatabaseName, :Tasks, :DatasourceConnectionName, :DataEngineName
|
2564
|
+
attr_accessor :DatabaseName, :Tasks, :DatasourceConnectionName, :DataEngineName, :ResourceGroupName
|
2559
2565
|
|
2560
|
-
def initialize(databasename=nil, tasks=nil, datasourceconnectionname=nil, dataenginename=nil)
|
2566
|
+
def initialize(databasename=nil, tasks=nil, datasourceconnectionname=nil, dataenginename=nil, resourcegroupname=nil)
|
2561
2567
|
@DatabaseName = databasename
|
2562
2568
|
@Tasks = tasks
|
2563
2569
|
@DatasourceConnectionName = datasourceconnectionname
|
2564
2570
|
@DataEngineName = dataenginename
|
2571
|
+
@ResourceGroupName = resourcegroupname
|
2565
2572
|
end
|
2566
2573
|
|
2567
2574
|
def deserialize(params)
|
@@ -2572,6 +2579,7 @@ module TencentCloud
|
|
2572
2579
|
end
|
2573
2580
|
@DatasourceConnectionName = params['DatasourceConnectionName']
|
2574
2581
|
@DataEngineName = params['DataEngineName']
|
2582
|
+
@ResourceGroupName = params['ResourceGroupName']
|
2575
2583
|
end
|
2576
2584
|
end
|
2577
2585
|
|
@@ -3453,10 +3461,16 @@ module TencentCloud
|
|
3453
3461
|
# @param EngineNetworkId: 引擎网络ID
|
3454
3462
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3455
3463
|
# @type EngineNetworkId: String
|
3464
|
+
# @param EngineResourceGroupCount: 标准引擎关联的资源组个数
|
3465
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3466
|
+
# @type EngineResourceGroupCount: Integer
|
3467
|
+
# @param EngineResourceUsedCU: 引擎当前使用量(Cu)
|
3468
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3469
|
+
# @type EngineResourceUsedCU: Integer
|
3456
3470
|
|
3457
|
-
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, :EngineGeneration, :EngineTypeDetail, :EngineNetworkId
|
3471
|
+
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, :EngineGeneration, :EngineTypeDetail, :EngineNetworkId, :EngineResourceGroupCount, :EngineResourceUsedCU
|
3458
3472
|
|
3459
|
-
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, enginegeneration=nil, enginetypedetail=nil, enginenetworkid=nil)
|
3473
|
+
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, enginegeneration=nil, enginetypedetail=nil, enginenetworkid=nil, engineresourcegroupcount=nil, engineresourceusedcu=nil)
|
3460
3474
|
@DataEngineName = dataenginename
|
3461
3475
|
@EngineType = enginetype
|
3462
3476
|
@ClusterType = clustertype
|
@@ -3506,6 +3520,8 @@ module TencentCloud
|
|
3506
3520
|
@EngineGeneration = enginegeneration
|
3507
3521
|
@EngineTypeDetail = enginetypedetail
|
3508
3522
|
@EngineNetworkId = enginenetworkid
|
3523
|
+
@EngineResourceGroupCount = engineresourcegroupcount
|
3524
|
+
@EngineResourceUsedCU = engineresourceusedcu
|
3509
3525
|
end
|
3510
3526
|
|
3511
3527
|
def deserialize(params)
|
@@ -3578,6 +3594,8 @@ module TencentCloud
|
|
3578
3594
|
@EngineGeneration = params['EngineGeneration']
|
3579
3595
|
@EngineTypeDetail = params['EngineTypeDetail']
|
3580
3596
|
@EngineNetworkId = params['EngineNetworkId']
|
3597
|
+
@EngineResourceGroupCount = params['EngineResourceGroupCount']
|
3598
|
+
@EngineResourceUsedCU = params['EngineResourceUsedCU']
|
3581
3599
|
end
|
3582
3600
|
end
|
3583
3601
|
|
@@ -4810,7 +4828,7 @@ module TencentCloud
|
|
4810
4828
|
|
4811
4829
|
# DescribeDataEngineImageVersions请求参数结构体
|
4812
4830
|
class DescribeDataEngineImageVersionsRequest < TencentCloud::Common::AbstractModel
|
4813
|
-
# @param EngineType: 引擎类型:SQL、SparkBatch
|
4831
|
+
# @param EngineType: 引擎类型:SQL、SparkBatch、StandardSpark、StandardPresto
|
4814
4832
|
# @type EngineType: String
|
4815
4833
|
|
4816
4834
|
attr_accessor :EngineType
|
@@ -6505,10 +6523,12 @@ module TencentCloud
|
|
6505
6523
|
# @type EndTime: String
|
6506
6524
|
# @param DataEngineName: 数据引擎名称,用于筛选
|
6507
6525
|
# @type DataEngineName: String
|
6526
|
+
# @param ResourceGroupName: spark引擎资源组名称
|
6527
|
+
# @type ResourceGroupName: String
|
6508
6528
|
|
6509
|
-
attr_accessor :Limit, :Offset, :Filters, :SortBy, :Sorting, :StartTime, :EndTime, :DataEngineName
|
6529
|
+
attr_accessor :Limit, :Offset, :Filters, :SortBy, :Sorting, :StartTime, :EndTime, :DataEngineName, :ResourceGroupName
|
6510
6530
|
|
6511
|
-
def initialize(limit=nil, offset=nil, filters=nil, sortby=nil, sorting=nil, starttime=nil, endtime=nil, dataenginename=nil)
|
6531
|
+
def initialize(limit=nil, offset=nil, filters=nil, sortby=nil, sorting=nil, starttime=nil, endtime=nil, dataenginename=nil, resourcegroupname=nil)
|
6512
6532
|
@Limit = limit
|
6513
6533
|
@Offset = offset
|
6514
6534
|
@Filters = filters
|
@@ -6517,6 +6537,7 @@ module TencentCloud
|
|
6517
6537
|
@StartTime = starttime
|
6518
6538
|
@EndTime = endtime
|
6519
6539
|
@DataEngineName = dataenginename
|
6540
|
+
@ResourceGroupName = resourcegroupname
|
6520
6541
|
end
|
6521
6542
|
|
6522
6543
|
def deserialize(params)
|
@@ -6535,6 +6556,7 @@ module TencentCloud
|
|
6535
6556
|
@StartTime = params['StartTime']
|
6536
6557
|
@EndTime = params['EndTime']
|
6537
6558
|
@DataEngineName = params['DataEngineName']
|
6559
|
+
@ResourceGroupName = params['ResourceGroupName']
|
6538
6560
|
end
|
6539
6561
|
end
|
6540
6562
|
|
@@ -10560,10 +10582,10 @@ module TencentCloud
|
|
10560
10582
|
|
10561
10583
|
attr_accessor :DatabaseName, :TableName, :DatasourceConnectionName, :TableComment, :Type, :TableFormat, :UserAlias, :UserSubUin, :GovernPolicy, :DbGovernPolicyIsDisable, :SmartPolicy
|
10562
10584
|
extend Gem::Deprecate
|
10563
|
-
deprecate :GovernPolicy, :none, 2024,
|
10564
|
-
deprecate :GovernPolicy=, :none, 2024,
|
10565
|
-
deprecate :DbGovernPolicyIsDisable, :none, 2024,
|
10566
|
-
deprecate :DbGovernPolicyIsDisable=, :none, 2024,
|
10585
|
+
deprecate :GovernPolicy, :none, 2024, 5
|
10586
|
+
deprecate :GovernPolicy=, :none, 2024, 5
|
10587
|
+
deprecate :DbGovernPolicyIsDisable, :none, 2024, 5
|
10588
|
+
deprecate :DbGovernPolicyIsDisable=, :none, 2024, 5
|
10567
10589
|
|
10568
10590
|
def initialize(databasename=nil, tablename=nil, datasourceconnectionname=nil, tablecomment=nil, type=nil, tableformat=nil, useralias=nil, usersubuin=nil, governpolicy=nil, dbgovernpolicyisdisable=nil, smartpolicy=nil)
|
10569
10591
|
@DatabaseName = databasename
|
@@ -10905,10 +10927,16 @@ module TencentCloud
|
|
10905
10927
|
# @param ResultFormat: 结果文件格式:默认为csv
|
10906
10928
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10907
10929
|
# @type ResultFormat: String
|
10930
|
+
# @param EngineTypeDetail: 引擎类型,SparkSQL:SparkSQL 引擎;SparkBatch:Spark作业引擎;PrestoSQL:Presto引擎
|
10931
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10932
|
+
# @type EngineTypeDetail: String
|
10933
|
+
# @param ResourceGroupName: spark引擎资源组名称
|
10934
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10935
|
+
# @type ResourceGroupName: String
|
10908
10936
|
|
10909
|
-
attr_accessor :DatabaseName, :DataAmount, :Id, :UsedTime, :OutputPath, :CreateTime, :State, :SQLType, :SQL, :ResultExpired, :RowAffectInfo, :DataSet, :Error, :Percentage, :OutputMessage, :TaskType, :ProgressDetail, :UpdateTime, :DataEngineId, :OperateUin, :DataEngineName, :InputType, :InputConf, :DataNumber, :CanDownload, :UserAlias, :SparkJobName, :SparkJobId, :SparkJobFile, :UiUrl, :TotalTime, :CmdArgs, :ImageVersion, :DriverSize, :ExecutorSize, :ExecutorNums, :ExecutorMaxNumbers, :CommonMetrics, :SparkMonitorMetrics, :PrestoMonitorMetrics, :ResultFormat
|
10937
|
+
attr_accessor :DatabaseName, :DataAmount, :Id, :UsedTime, :OutputPath, :CreateTime, :State, :SQLType, :SQL, :ResultExpired, :RowAffectInfo, :DataSet, :Error, :Percentage, :OutputMessage, :TaskType, :ProgressDetail, :UpdateTime, :DataEngineId, :OperateUin, :DataEngineName, :InputType, :InputConf, :DataNumber, :CanDownload, :UserAlias, :SparkJobName, :SparkJobId, :SparkJobFile, :UiUrl, :TotalTime, :CmdArgs, :ImageVersion, :DriverSize, :ExecutorSize, :ExecutorNums, :ExecutorMaxNumbers, :CommonMetrics, :SparkMonitorMetrics, :PrestoMonitorMetrics, :ResultFormat, :EngineTypeDetail, :ResourceGroupName
|
10910
10938
|
|
10911
|
-
def initialize(databasename=nil, dataamount=nil, id=nil, usedtime=nil, outputpath=nil, createtime=nil, state=nil, sqltype=nil, sql=nil, resultexpired=nil, rowaffectinfo=nil, dataset=nil, error=nil, percentage=nil, outputmessage=nil, tasktype=nil, progressdetail=nil, updatetime=nil, dataengineid=nil, operateuin=nil, dataenginename=nil, inputtype=nil, inputconf=nil, datanumber=nil, candownload=nil, useralias=nil, sparkjobname=nil, sparkjobid=nil, sparkjobfile=nil, uiurl=nil, totaltime=nil, cmdargs=nil, imageversion=nil, driversize=nil, executorsize=nil, executornums=nil, executormaxnumbers=nil, commonmetrics=nil, sparkmonitormetrics=nil, prestomonitormetrics=nil, resultformat=nil)
|
10939
|
+
def initialize(databasename=nil, dataamount=nil, id=nil, usedtime=nil, outputpath=nil, createtime=nil, state=nil, sqltype=nil, sql=nil, resultexpired=nil, rowaffectinfo=nil, dataset=nil, error=nil, percentage=nil, outputmessage=nil, tasktype=nil, progressdetail=nil, updatetime=nil, dataengineid=nil, operateuin=nil, dataenginename=nil, inputtype=nil, inputconf=nil, datanumber=nil, candownload=nil, useralias=nil, sparkjobname=nil, sparkjobid=nil, sparkjobfile=nil, uiurl=nil, totaltime=nil, cmdargs=nil, imageversion=nil, driversize=nil, executorsize=nil, executornums=nil, executormaxnumbers=nil, commonmetrics=nil, sparkmonitormetrics=nil, prestomonitormetrics=nil, resultformat=nil, enginetypedetail=nil, resourcegroupname=nil)
|
10912
10940
|
@DatabaseName = databasename
|
10913
10941
|
@DataAmount = dataamount
|
10914
10942
|
@Id = id
|
@@ -10950,6 +10978,8 @@ module TencentCloud
|
|
10950
10978
|
@SparkMonitorMetrics = sparkmonitormetrics
|
10951
10979
|
@PrestoMonitorMetrics = prestomonitormetrics
|
10952
10980
|
@ResultFormat = resultformat
|
10981
|
+
@EngineTypeDetail = enginetypedetail
|
10982
|
+
@ResourceGroupName = resourcegroupname
|
10953
10983
|
end
|
10954
10984
|
|
10955
10985
|
def deserialize(params)
|
@@ -11003,6 +11033,8 @@ module TencentCloud
|
|
11003
11033
|
@PrestoMonitorMetrics.deserialize(params['PrestoMonitorMetrics'])
|
11004
11034
|
end
|
11005
11035
|
@ResultFormat = params['ResultFormat']
|
11036
|
+
@EngineTypeDetail = params['EngineTypeDetail']
|
11037
|
+
@ResourceGroupName = params['ResourceGroupName']
|
11006
11038
|
end
|
11007
11039
|
end
|
11008
11040
|
|
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.818
|
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-05-
|
11
|
+
date: 2024-05-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|