tencentcloud-sdk-cdwdoris 3.0.755 → 3.0.756

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20211228/models.rb +17 -2
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ab42acc3b01f6c0fccaa661e3d2523442b8af18c
4
- data.tar.gz: e606b93341414524187f9c8b1cd7636044665132
3
+ metadata.gz: 7132e7134228895e840021964c60f24fc0a09862
4
+ data.tar.gz: 1ac86b1efcdcb2dd41e2c1eb8998db3ea55be18d
5
5
  SHA512:
6
- metadata.gz: 274256cafbaadd118b7b244145b54a7745f962777403c9704a0ddbcf8e315cee53de9dbe561f370eef620ca858590fd1e4d75644243947eb072ceb188e5985a4
7
- data.tar.gz: 5cd448447122a3cd5e1754ef280e02b4f34e841bc2e09cf3b2310ba5c7702d7848b436deadc0d608449304b73f942e826fa393d046c31e53fe7f485cb23b32e5
6
+ metadata.gz: ecdc14d81ff65a806a5fc94140d1ec788112a8ac518b6a6ceb51caa34f07a78ca5660c7774b111cafea16d9486ff9672d8a2d621944fb9228dddabfc5ad1101d
7
+ data.tar.gz: 94306ead2ca5df394f2f0aab57f2d95cb1b6db9c43c57b9c252378613ad137c6cf2a295a68e6f02d7be89135b29e89b5533eae73f93f4bc113051bb5cc317c99
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.755
1
+ 3.0.756
@@ -1826,10 +1826,19 @@ module TencentCloud
1826
1826
  # @param IsQuery: 是否是查询,0:否,1:查询语句
1827
1827
  # 注意:此字段可能返回 null,表示取不到有效值。
1828
1828
  # @type IsQuery: Integer
1829
+ # @param ResultBytesMB: ResultBytes的MB格式
1830
+ # 注意:此字段可能返回 null,表示取不到有效值。
1831
+ # @type ResultBytesMB: Float
1832
+ # @param MemoryUsageMB: MemoryUsage的MB表示
1833
+ # 注意:此字段可能返回 null,表示取不到有效值。
1834
+ # @type MemoryUsageMB: Float
1835
+ # @param DurationSec: DurationMs的秒表示
1836
+ # 注意:此字段可能返回 null,表示取不到有效值。
1837
+ # @type DurationSec: Float
1829
1838
 
1830
- attr_accessor :OsUser, :InitialQueryId, :Sql, :QueryStartTime, :DurationMs, :ReadRows, :ResultRows, :ResultBytes, :MemoryUsage, :InitialAddress, :DbName, :IsQuery
1839
+ attr_accessor :OsUser, :InitialQueryId, :Sql, :QueryStartTime, :DurationMs, :ReadRows, :ResultRows, :ResultBytes, :MemoryUsage, :InitialAddress, :DbName, :IsQuery, :ResultBytesMB, :MemoryUsageMB, :DurationSec
1831
1840
 
1832
- def initialize(osuser=nil, initialqueryid=nil, sql=nil, querystarttime=nil, durationms=nil, readrows=nil, resultrows=nil, resultbytes=nil, memoryusage=nil, initialaddress=nil, dbname=nil, isquery=nil)
1841
+ def initialize(osuser=nil, initialqueryid=nil, sql=nil, querystarttime=nil, durationms=nil, readrows=nil, resultrows=nil, resultbytes=nil, memoryusage=nil, initialaddress=nil, dbname=nil, isquery=nil, resultbytesmb=nil, memoryusagemb=nil, durationsec=nil)
1833
1842
  @OsUser = osuser
1834
1843
  @InitialQueryId = initialqueryid
1835
1844
  @Sql = sql
@@ -1842,6 +1851,9 @@ module TencentCloud
1842
1851
  @InitialAddress = initialaddress
1843
1852
  @DbName = dbname
1844
1853
  @IsQuery = isquery
1854
+ @ResultBytesMB = resultbytesmb
1855
+ @MemoryUsageMB = memoryusagemb
1856
+ @DurationSec = durationsec
1845
1857
  end
1846
1858
 
1847
1859
  def deserialize(params)
@@ -1857,6 +1869,9 @@ module TencentCloud
1857
1869
  @InitialAddress = params['InitialAddress']
1858
1870
  @DbName = params['DbName']
1859
1871
  @IsQuery = params['IsQuery']
1872
+ @ResultBytesMB = params['ResultBytesMB']
1873
+ @MemoryUsageMB = params['MemoryUsageMB']
1874
+ @DurationSec = params['DurationSec']
1860
1875
  end
1861
1876
  end
1862
1877
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cdwdoris
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.755
4
+ version: 3.0.756
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-01-22 00:00:00.000000000 Z
11
+ date: 2024-01-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,8 +33,8 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/v20211228/client.rb
37
36
  - lib/v20211228/models.rb
37
+ - lib/v20211228/client.rb
38
38
  - lib/tencentcloud-sdk-cdwdoris.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby