tencentcloud-sdk-cdwdoris 3.0.846 → 3.0.847
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/v20211228/models.rb +10 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 80282d1a3523d1f239a559782f7a8cb3278b1922
|
4
|
+
data.tar.gz: 84dc3a74e08685acf0224d33629e219006639c9a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5d6c7ef4ee4fd0146050ca30b000578b060de0f062299d4103d97aa8333476e9ffe0ab87ca2741b98917d82752cb30427de53bb4be046d2a878587b0fb23e53
|
7
|
+
data.tar.gz: 79034a908402e7ffe9a164b60a4f86fb3b26c14af7d3956cf9a6b6904375e3ff2624aad08e6756c259f763c2c63181fd85d60a6b17944894828aa75655937156
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.847
|
data/lib/v20211228/models.rb
CHANGED
@@ -966,10 +966,14 @@ module TencentCloud
|
|
966
966
|
# @type MemoryUsage: String
|
967
967
|
# @param IsQuery: IsQuery条件
|
968
968
|
# @type IsQuery: Integer
|
969
|
+
# @param DbName: 数据库名称
|
970
|
+
# @type DbName: Array
|
971
|
+
# @param CatalogName: catalog名称
|
972
|
+
# @type CatalogName: Array
|
969
973
|
|
970
|
-
attr_accessor :InstanceId, :QueryDurationMs, :StartTime, :EndTime, :DurationMs, :Sql, :ReadRows, :ResultBytes, :MemoryUsage, :IsQuery
|
974
|
+
attr_accessor :InstanceId, :QueryDurationMs, :StartTime, :EndTime, :DurationMs, :Sql, :ReadRows, :ResultBytes, :MemoryUsage, :IsQuery, :DbName, :CatalogName
|
971
975
|
|
972
|
-
def initialize(instanceid=nil, querydurationms=nil, starttime=nil, endtime=nil, durationms=nil, sql=nil, readrows=nil, resultbytes=nil, memoryusage=nil, isquery=nil)
|
976
|
+
def initialize(instanceid=nil, querydurationms=nil, starttime=nil, endtime=nil, durationms=nil, sql=nil, readrows=nil, resultbytes=nil, memoryusage=nil, isquery=nil, dbname=nil, catalogname=nil)
|
973
977
|
@InstanceId = instanceid
|
974
978
|
@QueryDurationMs = querydurationms
|
975
979
|
@StartTime = starttime
|
@@ -980,6 +984,8 @@ module TencentCloud
|
|
980
984
|
@ResultBytes = resultbytes
|
981
985
|
@MemoryUsage = memoryusage
|
982
986
|
@IsQuery = isquery
|
987
|
+
@DbName = dbname
|
988
|
+
@CatalogName = catalogname
|
983
989
|
end
|
984
990
|
|
985
991
|
def deserialize(params)
|
@@ -993,6 +999,8 @@ module TencentCloud
|
|
993
999
|
@ResultBytes = params['ResultBytes']
|
994
1000
|
@MemoryUsage = params['MemoryUsage']
|
995
1001
|
@IsQuery = params['IsQuery']
|
1002
|
+
@DbName = params['DbName']
|
1003
|
+
@CatalogName = params['CatalogName']
|
996
1004
|
end
|
997
1005
|
end
|
998
1006
|
|