tencentcloud-sdk-cdwpg 3.0.1107 → 3.0.1149

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/v20201230/models.rb +18 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 38b3ceb3d5bd856ed769b860abd2f6b04b51cae5
4
- data.tar.gz: 5a9e4de7a11ba6a39dbbe0368c0e67b9c4ca5436
3
+ metadata.gz: f1bc63c9cdf234192d9ada6c21004bb45f3bcb8d
4
+ data.tar.gz: 87697cf47764a9bc06ca66bd6995e59f4f150047
5
5
  SHA512:
6
- metadata.gz: 44215ad32813ae285cbbe2438e694e790de062c58cc7a03119d4d808050c84dc5d79304a104127d972acf3419b71402afb67702050c61bc9818b238290df705c
7
- data.tar.gz: f0dca7f24a10ccbdb609c988f7fd6a3ad77f0def014cc8e6db35604935c610fc77b2ed642a6f5c26b0ef8ab61bb1625ec4cb540cf08f6624bc08b24b226d570b
6
+ metadata.gz: d4b7268912f500600e0acb8d46469df3c721cc4fd2dae3513b9b0042cf209c5ee1da9ddb0bd16af6b1e0d3c446e8dfaee02b7ff060cf23a2e8154b846d34131f
7
+ data.tar.gz: 86b692527992030b1731d855368e46a90e07cfe0facaafa45e954af4a7767c595bd8ce1c0d63d6da04d365c859282fd8be9bd998d7f64fa0c798dc4046592644
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1107
1
+ 3.0.1149
@@ -269,8 +269,8 @@ module TencentCloud
269
269
 
270
270
  attr_accessor :InstanceName, :Zone, :UserVPCId, :UserSubnetId, :ChargeProperties, :AdminPassword, :Resources, :Tags, :ProductVersion, :TagItems
271
271
  extend Gem::Deprecate
272
- deprecate :Tags, :none, 2025, 7
273
- deprecate :Tags=, :none, 2025, 7
272
+ deprecate :Tags, :none, 2025, 9
273
+ deprecate :Tags=, :none, 2025, 9
274
274
 
275
275
  def initialize(instancename=nil, zone=nil, uservpcid=nil, usersubnetid=nil, chargeproperties=nil, adminpassword=nil, resources=nil, tags=nil, productversion=nil, tagitems=nil)
276
276
  @InstanceName = instancename
@@ -377,14 +377,17 @@ module TencentCloud
377
377
  # @type TotalCount: Integer
378
378
  # @param Accounts: 账号数组
379
379
  # @type Accounts: Array
380
+ # @param ErrorMsg: error:...
381
+ # @type ErrorMsg: String
380
382
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
381
383
  # @type RequestId: String
382
384
 
383
- attr_accessor :TotalCount, :Accounts, :RequestId
385
+ attr_accessor :TotalCount, :Accounts, :ErrorMsg, :RequestId
384
386
 
385
- def initialize(totalcount=nil, accounts=nil, requestid=nil)
387
+ def initialize(totalcount=nil, accounts=nil, errormsg=nil, requestid=nil)
386
388
  @TotalCount = totalcount
387
389
  @Accounts = accounts
390
+ @ErrorMsg = errormsg
388
391
  @RequestId = requestid
389
392
  end
390
393
 
@@ -398,6 +401,7 @@ module TencentCloud
398
401
  @Accounts << accountinfo_tmp
399
402
  end
400
403
  end
404
+ @ErrorMsg = params['ErrorMsg']
401
405
  @RequestId = params['RequestId']
402
406
  end
403
407
  end
@@ -999,10 +1003,14 @@ module TencentCloud
999
1003
  # @type OrderByType: String
1000
1004
  # @param Duration: 过滤时间
1001
1005
  # @type Duration: Float
1006
+ # @param UserName: 执行用户
1007
+ # @type UserName: String
1008
+ # @param QueryString: query 语句
1009
+ # @type QueryString: String
1002
1010
 
1003
- attr_accessor :InstanceId, :StartTime, :EndTime, :Limit, :Offset, :Database, :OrderBy, :OrderByType, :Duration
1011
+ attr_accessor :InstanceId, :StartTime, :EndTime, :Limit, :Offset, :Database, :OrderBy, :OrderByType, :Duration, :UserName, :QueryString
1004
1012
 
1005
- def initialize(instanceid=nil, starttime=nil, endtime=nil, limit=nil, offset=nil, database=nil, orderby=nil, orderbytype=nil, duration=nil)
1013
+ def initialize(instanceid=nil, starttime=nil, endtime=nil, limit=nil, offset=nil, database=nil, orderby=nil, orderbytype=nil, duration=nil, username=nil, querystring=nil)
1006
1014
  @InstanceId = instanceid
1007
1015
  @StartTime = starttime
1008
1016
  @EndTime = endtime
@@ -1012,6 +1020,8 @@ module TencentCloud
1012
1020
  @OrderBy = orderby
1013
1021
  @OrderByType = orderbytype
1014
1022
  @Duration = duration
1023
+ @UserName = username
1024
+ @QueryString = querystring
1015
1025
  end
1016
1026
 
1017
1027
  def deserialize(params)
@@ -1024,6 +1034,8 @@ module TencentCloud
1024
1034
  @OrderBy = params['OrderBy']
1025
1035
  @OrderByType = params['OrderByType']
1026
1036
  @Duration = params['Duration']
1037
+ @UserName = params['UserName']
1038
+ @QueryString = params['QueryString']
1027
1039
  end
1028
1040
  end
1029
1041
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cdwpg
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1107
4
+ version: 3.0.1149
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-07-23 00:00:00.000000000 Z
11
+ date: 2025-09-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common