tencentcloud-sdk-dlc 3.0.764 → 3.0.766
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 +9 -4
- 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: f33a00f4e9ceee87a050754a421e9a49f142e110
|
4
|
+
data.tar.gz: 5866d7c072f71801f39a811867fd8977d2e9b67a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4a37ad5b066bcfdfecbb8dc6d15410788c1233bed55214cf5db4619c653a17025fc0d70ec993629a0fb45053db5cb38065286f355aaaf2b2b70988372516781c
|
7
|
+
data.tar.gz: 785fdf4b0734631cb6ed35182acea33c2f042e94cc317632e74e0313392b29785e2bbed776b235ca3d172f73afd313832463fef12af088681ec10c1683651798
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.766
|
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, 2
|
1418
|
+
deprecate :DefaultDataEngine=, :none, 2024, 2
|
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
|
@@ -10943,10 +10943,13 @@ module TencentCloud
|
|
10943
10943
|
# @type DisplayFormat: String
|
10944
10944
|
# @param TotalTime: 任务耗时,单位: ms
|
10945
10945
|
# @type TotalTime: Integer
|
10946
|
+
# @param QueryResultTime: 获取结果消耗的时间
|
10947
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10948
|
+
# @type QueryResultTime: Float
|
10946
10949
|
|
10947
|
-
attr_accessor :TaskId, :DatasourceConnectionName, :DatabaseName, :SQL, :SQLType, :State, :DataAmount, :UsedTime, :OutputPath, :CreateTime, :OutputMessage, :RowAffectInfo, :ResultSchema, :ResultSet, :NextToken, :Percentage, :ProgressDetail, :DisplayFormat, :TotalTime
|
10950
|
+
attr_accessor :TaskId, :DatasourceConnectionName, :DatabaseName, :SQL, :SQLType, :State, :DataAmount, :UsedTime, :OutputPath, :CreateTime, :OutputMessage, :RowAffectInfo, :ResultSchema, :ResultSet, :NextToken, :Percentage, :ProgressDetail, :DisplayFormat, :TotalTime, :QueryResultTime
|
10948
10951
|
|
10949
|
-
def initialize(taskid=nil, datasourceconnectionname=nil, databasename=nil, sql=nil, sqltype=nil, state=nil, dataamount=nil, usedtime=nil, outputpath=nil, createtime=nil, outputmessage=nil, rowaffectinfo=nil, resultschema=nil, resultset=nil, nexttoken=nil, percentage=nil, progressdetail=nil, displayformat=nil, totaltime=nil)
|
10952
|
+
def initialize(taskid=nil, datasourceconnectionname=nil, databasename=nil, sql=nil, sqltype=nil, state=nil, dataamount=nil, usedtime=nil, outputpath=nil, createtime=nil, outputmessage=nil, rowaffectinfo=nil, resultschema=nil, resultset=nil, nexttoken=nil, percentage=nil, progressdetail=nil, displayformat=nil, totaltime=nil, queryresulttime=nil)
|
10950
10953
|
@TaskId = taskid
|
10951
10954
|
@DatasourceConnectionName = datasourceconnectionname
|
10952
10955
|
@DatabaseName = databasename
|
@@ -10966,6 +10969,7 @@ module TencentCloud
|
|
10966
10969
|
@ProgressDetail = progressdetail
|
10967
10970
|
@DisplayFormat = displayformat
|
10968
10971
|
@TotalTime = totaltime
|
10972
|
+
@QueryResultTime = queryresulttime
|
10969
10973
|
end
|
10970
10974
|
|
10971
10975
|
def deserialize(params)
|
@@ -10995,6 +10999,7 @@ module TencentCloud
|
|
10995
10999
|
@ProgressDetail = params['ProgressDetail']
|
10996
11000
|
@DisplayFormat = params['DisplayFormat']
|
10997
11001
|
@TotalTime = params['TotalTime']
|
11002
|
+
@QueryResultTime = params['QueryResultTime']
|
10998
11003
|
end
|
10999
11004
|
end
|
11000
11005
|
|
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.766
|
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-02-
|
11
|
+
date: 2024-02-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|