tencentcloud-sdk-dlc 3.0.879 → 3.0.881
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210125/models.rb +16 -8
- 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: 259aac04146ed596d3d65a9709d1caa63d681b74
|
4
|
+
data.tar.gz: f38ee3b5b2ba5c4f41d050f7c4a545484ef31ea1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4475361d17ff55789b8a55e6c064e489b30c559069adefbe9c7454a1e595f96b5e6852fb5aa1faada8812d5e6eab3f67c903da82585ede71b43284731fd8b0f5
|
7
|
+
data.tar.gz: d4cfab8b0c0788614fe2b4ff28eac1bd9e1f88360eeb7693ae75ac424b0f8fba3fd99159776d508da238acc6f6d9363f1ac509eb49e3c6eeca5f225ef654fc3f
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.881
|
data/lib/v20210125/models.rb
CHANGED
@@ -1617,8 +1617,8 @@ module TencentCloud
|
|
1617
1617
|
|
1618
1618
|
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
|
1619
1619
|
extend Gem::Deprecate
|
1620
|
-
deprecate :DefaultDataEngine, :none, 2024,
|
1621
|
-
deprecate :DefaultDataEngine=, :none, 2024,
|
1620
|
+
deprecate :DefaultDataEngine, :none, 2024, 8
|
1621
|
+
deprecate :DefaultDataEngine=, :none, 2024, 8
|
1622
1622
|
|
1623
1623
|
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)
|
1624
1624
|
@EngineType = enginetype
|
@@ -11790,10 +11790,10 @@ module TencentCloud
|
|
11790
11790
|
|
11791
11791
|
attr_accessor :DatabaseName, :TableName, :DatasourceConnectionName, :TableComment, :Type, :TableFormat, :UserAlias, :UserSubUin, :GovernPolicy, :DbGovernPolicyIsDisable, :SmartPolicy
|
11792
11792
|
extend Gem::Deprecate
|
11793
|
-
deprecate :GovernPolicy, :none, 2024,
|
11794
|
-
deprecate :GovernPolicy=, :none, 2024,
|
11795
|
-
deprecate :DbGovernPolicyIsDisable, :none, 2024,
|
11796
|
-
deprecate :DbGovernPolicyIsDisable=, :none, 2024,
|
11793
|
+
deprecate :GovernPolicy, :none, 2024, 8
|
11794
|
+
deprecate :GovernPolicy=, :none, 2024, 8
|
11795
|
+
deprecate :DbGovernPolicyIsDisable, :none, 2024, 8
|
11796
|
+
deprecate :DbGovernPolicyIsDisable=, :none, 2024, 8
|
11797
11797
|
|
11798
11798
|
def initialize(databasename=nil, tablename=nil, datasourceconnectionname=nil, tablecomment=nil, type=nil, tableformat=nil, useralias=nil, usersubuin=nil, governpolicy=nil, dbgovernpolicyisdisable=nil, smartpolicy=nil)
|
11799
11799
|
@DatabaseName = databasename
|
@@ -12522,17 +12522,25 @@ module TencentCloud
|
|
12522
12522
|
# @type DataEngineIds: Array
|
12523
12523
|
# @param DataEngineConfigCommand: 引擎配置命令,支持UpdateSparkSQLLakefsPath(更新原生表配置)、UpdateSparkSQLResultPath(更新结果路径配置)
|
12524
12524
|
# @type DataEngineConfigCommand: String
|
12525
|
+
# @param UseLakeFs: 是否使用lakefs作为结果存储
|
12526
|
+
# @type UseLakeFs: Boolean
|
12527
|
+
# @param CustomResultPath: 用户自定义结果路径
|
12528
|
+
# @type CustomResultPath: String
|
12525
12529
|
|
12526
|
-
attr_accessor :DataEngineIds, :DataEngineConfigCommand
|
12530
|
+
attr_accessor :DataEngineIds, :DataEngineConfigCommand, :UseLakeFs, :CustomResultPath
|
12527
12531
|
|
12528
|
-
def initialize(dataengineids=nil, dataengineconfigcommand=nil)
|
12532
|
+
def initialize(dataengineids=nil, dataengineconfigcommand=nil, uselakefs=nil, customresultpath=nil)
|
12529
12533
|
@DataEngineIds = dataengineids
|
12530
12534
|
@DataEngineConfigCommand = dataengineconfigcommand
|
12535
|
+
@UseLakeFs = uselakefs
|
12536
|
+
@CustomResultPath = customresultpath
|
12531
12537
|
end
|
12532
12538
|
|
12533
12539
|
def deserialize(params)
|
12534
12540
|
@DataEngineIds = params['DataEngineIds']
|
12535
12541
|
@DataEngineConfigCommand = params['DataEngineConfigCommand']
|
12542
|
+
@UseLakeFs = params['UseLakeFs']
|
12543
|
+
@CustomResultPath = params['CustomResultPath']
|
12536
12544
|
end
|
12537
12545
|
end
|
12538
12546
|
|
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.881
|
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-08-
|
11
|
+
date: 2024-08-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|