tencentcloud-sdk-cdwdoris 3.0.917 → 3.0.919
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 +58 -18
- 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: 297f26027060f876a95bf1b568de8f2b04a1a31c
|
4
|
+
data.tar.gz: 3574aae38656ef5b8fb8bb5584280172a914a725
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84f252b9d340987e6144495ee6d8030d723125e1b589766f0e9fc095704e03e67d46db90226839987e1bbd8753bc721a8bb5666874e65bddd03a1232a77b1460
|
7
|
+
data.tar.gz: a1188b742f9b595d0c665bd5028243a28fb20b135415c24b1438aae59de898004a2a79b5429d7e4f7dcbd62ea9618d30ffdbe119c5bf1d2c416076674001f9cb
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.919
|
data/lib/v20211228/models.rb
CHANGED
@@ -510,8 +510,8 @@ module TencentCloud
|
|
510
510
|
|
511
511
|
attr_accessor :FileName, :FileConf, :KeyConf, :OriParam, :NeedRestart, :FilePath, :FileKeyValues, :FileKeyValuesNew
|
512
512
|
extend Gem::Deprecate
|
513
|
-
deprecate :FileKeyValues, :none, 2024,
|
514
|
-
deprecate :FileKeyValues=, :none, 2024,
|
513
|
+
deprecate :FileKeyValues, :none, 2024, 10
|
514
|
+
deprecate :FileKeyValues=, :none, 2024, 10
|
515
515
|
|
516
516
|
def initialize(filename=nil, fileconf=nil, keyconf=nil, oriparam=nil, needrestart=nil, filepath=nil, filekeyvalues=nil, filekeyvaluesnew=nil)
|
517
517
|
@FileName = filename
|
@@ -1653,14 +1653,18 @@ module TencentCloud
|
|
1653
1653
|
# @type ClusterConfList: Array
|
1654
1654
|
# @param BuildVersion: 返回当前内核版本 如果不存在则返回空字符串
|
1655
1655
|
# @type BuildVersion: String
|
1656
|
+
# @param ErrorMsg: 错误信息
|
1657
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1658
|
+
# @type ErrorMsg: String
|
1656
1659
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1657
1660
|
# @type RequestId: String
|
1658
1661
|
|
1659
|
-
attr_accessor :ClusterConfList, :BuildVersion, :RequestId
|
1662
|
+
attr_accessor :ClusterConfList, :BuildVersion, :ErrorMsg, :RequestId
|
1660
1663
|
|
1661
|
-
def initialize(clusterconflist=nil, buildversion=nil, requestid=nil)
|
1664
|
+
def initialize(clusterconflist=nil, buildversion=nil, errormsg=nil, requestid=nil)
|
1662
1665
|
@ClusterConfList = clusterconflist
|
1663
1666
|
@BuildVersion = buildversion
|
1667
|
+
@ErrorMsg = errormsg
|
1664
1668
|
@RequestId = requestid
|
1665
1669
|
end
|
1666
1670
|
|
@@ -1674,6 +1678,7 @@ module TencentCloud
|
|
1674
1678
|
end
|
1675
1679
|
end
|
1676
1680
|
@BuildVersion = params['BuildVersion']
|
1681
|
+
@ErrorMsg = params['ErrorMsg']
|
1677
1682
|
@RequestId = params['RequestId']
|
1678
1683
|
end
|
1679
1684
|
end
|
@@ -1991,14 +1996,18 @@ module TencentCloud
|
|
1991
1996
|
# @type TotalCount: Integer
|
1992
1997
|
# @param SlowQueryRecords: 记录列表
|
1993
1998
|
# @type SlowQueryRecords: :class:`Tencentcloud::Cdwdoris.v20211228.models.DataBaseAuditRecord`
|
1999
|
+
# @param ErrorMsg: 错误信息
|
2000
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2001
|
+
# @type ErrorMsg: String
|
1994
2002
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1995
2003
|
# @type RequestId: String
|
1996
2004
|
|
1997
|
-
attr_accessor :TotalCount, :SlowQueryRecords, :RequestId
|
2005
|
+
attr_accessor :TotalCount, :SlowQueryRecords, :ErrorMsg, :RequestId
|
1998
2006
|
|
1999
|
-
def initialize(totalcount=nil, slowqueryrecords=nil, requestid=nil)
|
2007
|
+
def initialize(totalcount=nil, slowqueryrecords=nil, errormsg=nil, requestid=nil)
|
2000
2008
|
@TotalCount = totalcount
|
2001
2009
|
@SlowQueryRecords = slowqueryrecords
|
2010
|
+
@ErrorMsg = errormsg
|
2002
2011
|
@RequestId = requestid
|
2003
2012
|
end
|
2004
2013
|
|
@@ -2008,6 +2017,7 @@ module TencentCloud
|
|
2008
2017
|
@SlowQueryRecords = DataBaseAuditRecord.new
|
2009
2018
|
@SlowQueryRecords.deserialize(params['SlowQueryRecords'])
|
2010
2019
|
end
|
2020
|
+
@ErrorMsg = params['ErrorMsg']
|
2011
2021
|
@RequestId = params['RequestId']
|
2012
2022
|
end
|
2013
2023
|
end
|
@@ -2416,8 +2426,8 @@ module TencentCloud
|
|
2416
2426
|
|
2417
2427
|
attr_accessor :InstanceID, :Input
|
2418
2428
|
extend Gem::Deprecate
|
2419
|
-
deprecate :InstanceID, :none, 2024,
|
2420
|
-
deprecate :InstanceID=, :none, 2024,
|
2429
|
+
deprecate :InstanceID, :none, 2024, 10
|
2430
|
+
deprecate :InstanceID=, :none, 2024, 10
|
2421
2431
|
|
2422
2432
|
def initialize(instanceid=nil, input=nil)
|
2423
2433
|
@InstanceID = instanceid
|
@@ -3406,8 +3416,8 @@ module TencentCloud
|
|
3406
3416
|
|
3407
3417
|
attr_accessor :InstanceId, :InstanceName, :Status, :Version, :Region, :Zone, :VpcId, :SubnetId, :PayMode, :CreateTime, :ExpireTime, :MasterSummary, :CoreSummary, :HA, :HaType, :AccessInfo, :Id, :RegionId, :ZoneDesc, :FlowMsg, :StatusDesc, :RenewFlag, :Tags, :Monitor, :HasClsTopic, :ClsTopicId, :ClsLogSetId, :EnableXMLConfig, :RegionDesc, :Eip, :CosMoveFactor, :Kind, :CosBucketName, :CanAttachCbs, :BuildVersion, :Components, :IfExistCatalog, :Characteristic, :RestartTimeout, :GraceShutdownWaitSeconds, :CaseSensitive, :IsWhiteSGs, :BindSGs, :EnableMultiZones, :UserNetworkInfos, :EnableCoolDown, :CoolDownBucket, :Details, :EnableDlc, :AccountType
|
3408
3418
|
extend Gem::Deprecate
|
3409
|
-
deprecate :IfExistCatalog, :none, 2024,
|
3410
|
-
deprecate :IfExistCatalog=, :none, 2024,
|
3419
|
+
deprecate :IfExistCatalog, :none, 2024, 10
|
3420
|
+
deprecate :IfExistCatalog=, :none, 2024, 10
|
3411
3421
|
|
3412
3422
|
def initialize(instanceid=nil, instancename=nil, status=nil, version=nil, region=nil, zone=nil, vpcid=nil, subnetid=nil, paymode=nil, createtime=nil, expiretime=nil, mastersummary=nil, coresummary=nil, ha=nil, hatype=nil, accessinfo=nil, id=nil, regionid=nil, zonedesc=nil, flowmsg=nil, statusdesc=nil, renewflag=nil, tags=nil, monitor=nil, hasclstopic=nil, clstopicid=nil, clslogsetid=nil, enablexmlconfig=nil, regiondesc=nil, eip=nil, cosmovefactor=nil, kind=nil, cosbucketname=nil, canattachcbs=nil, buildversion=nil, components=nil, ifexistcatalog=nil, characteristic=nil, restarttimeout=nil, graceshutdownwaitseconds=nil, casesensitive=nil, iswhitesgs=nil, bindsgs=nil, enablemultizones=nil, usernetworkinfos=nil, enablecooldown=nil, cooldownbucket=nil, details=nil, enabledlc=nil, accounttype=nil)
|
3413
3423
|
@InstanceId = instanceid
|
@@ -4240,10 +4250,13 @@ module TencentCloud
|
|
4240
4250
|
# @param Zone: 节点所在可用区
|
4241
4251
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4242
4252
|
# @type Zone: String
|
4253
|
+
# @param Id: Id
|
4254
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4255
|
+
# @type Id: String
|
4243
4256
|
|
4244
|
-
attr_accessor :Ip, :Status, :NodeName, :ComponentName, :NodeRole, :LastRestartTime, :Zone
|
4257
|
+
attr_accessor :Ip, :Status, :NodeName, :ComponentName, :NodeRole, :LastRestartTime, :Zone, :Id
|
4245
4258
|
|
4246
|
-
def initialize(ip=nil, status=nil, nodename=nil, componentname=nil, noderole=nil, lastrestarttime=nil, zone=nil)
|
4259
|
+
def initialize(ip=nil, status=nil, nodename=nil, componentname=nil, noderole=nil, lastrestarttime=nil, zone=nil, id=nil)
|
4247
4260
|
@Ip = ip
|
4248
4261
|
@Status = status
|
4249
4262
|
@NodeName = nodename
|
@@ -4251,6 +4264,7 @@ module TencentCloud
|
|
4251
4264
|
@NodeRole = noderole
|
4252
4265
|
@LastRestartTime = lastrestarttime
|
4253
4266
|
@Zone = zone
|
4267
|
+
@Id = id
|
4254
4268
|
end
|
4255
4269
|
|
4256
4270
|
def deserialize(params)
|
@@ -4261,6 +4275,7 @@ module TencentCloud
|
|
4261
4275
|
@NodeRole = params['NodeRole']
|
4262
4276
|
@LastRestartTime = params['LastRestartTime']
|
4263
4277
|
@Zone = params['Zone']
|
4278
|
+
@Id = params['Id']
|
4264
4279
|
end
|
4265
4280
|
end
|
4266
4281
|
|
@@ -4278,16 +4293,24 @@ module TencentCloud
|
|
4278
4293
|
# @type ComponentName: String
|
4279
4294
|
# @param LastRestartTime: 上一次重启时间
|
4280
4295
|
# @type LastRestartTime: String
|
4296
|
+
# @param Id: id
|
4297
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4298
|
+
# @type Id: String
|
4299
|
+
# @param Zone: 可用区
|
4300
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4301
|
+
# @type Zone: String
|
4281
4302
|
|
4282
|
-
attr_accessor :NodeName, :Status, :Ip, :NodeRole, :ComponentName, :LastRestartTime
|
4303
|
+
attr_accessor :NodeName, :Status, :Ip, :NodeRole, :ComponentName, :LastRestartTime, :Id, :Zone
|
4283
4304
|
|
4284
|
-
def initialize(nodename=nil, status=nil, ip=nil, noderole=nil, componentname=nil, lastrestarttime=nil)
|
4305
|
+
def initialize(nodename=nil, status=nil, ip=nil, noderole=nil, componentname=nil, lastrestarttime=nil, id=nil, zone=nil)
|
4285
4306
|
@NodeName = nodename
|
4286
4307
|
@Status = status
|
4287
4308
|
@Ip = ip
|
4288
4309
|
@NodeRole = noderole
|
4289
4310
|
@ComponentName = componentname
|
4290
4311
|
@LastRestartTime = lastrestarttime
|
4312
|
+
@Id = id
|
4313
|
+
@Zone = zone
|
4291
4314
|
end
|
4292
4315
|
|
4293
4316
|
def deserialize(params)
|
@@ -4297,6 +4320,8 @@ module TencentCloud
|
|
4297
4320
|
@NodeRole = params['NodeRole']
|
4298
4321
|
@ComponentName = params['ComponentName']
|
4299
4322
|
@LastRestartTime = params['LastRestartTime']
|
4323
|
+
@Id = params['Id']
|
4324
|
+
@Zone = params['Zone']
|
4300
4325
|
end
|
4301
4326
|
end
|
4302
4327
|
|
@@ -5245,10 +5270,16 @@ module TencentCloud
|
|
5245
5270
|
# @param DurationSec: DurationMs的秒表示
|
5246
5271
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5247
5272
|
# @type DurationSec: Float
|
5273
|
+
# @param State: 状态
|
5274
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5275
|
+
# @type State: String
|
5276
|
+
# @param CatalogName: Catalog Name
|
5277
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5278
|
+
# @type CatalogName: String
|
5248
5279
|
|
5249
|
-
attr_accessor :OsUser, :InitialQueryId, :Sql, :QueryStartTime, :DurationMs, :ReadRows, :ResultRows, :ResultBytes, :MemoryUsage, :InitialAddress, :DbName, :IsQuery, :ResultBytesMB, :MemoryUsageMB, :DurationSec
|
5280
|
+
attr_accessor :OsUser, :InitialQueryId, :Sql, :QueryStartTime, :DurationMs, :ReadRows, :ResultRows, :ResultBytes, :MemoryUsage, :InitialAddress, :DbName, :IsQuery, :ResultBytesMB, :MemoryUsageMB, :DurationSec, :State, :CatalogName
|
5250
5281
|
|
5251
|
-
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)
|
5282
|
+
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, state=nil, catalogname=nil)
|
5252
5283
|
@OsUser = osuser
|
5253
5284
|
@InitialQueryId = initialqueryid
|
5254
5285
|
@Sql = sql
|
@@ -5264,6 +5295,8 @@ module TencentCloud
|
|
5264
5295
|
@ResultBytesMB = resultbytesmb
|
5265
5296
|
@MemoryUsageMB = memoryusagemb
|
5266
5297
|
@DurationSec = durationsec
|
5298
|
+
@State = state
|
5299
|
+
@CatalogName = catalogname
|
5267
5300
|
end
|
5268
5301
|
|
5269
5302
|
def deserialize(params)
|
@@ -5282,6 +5315,8 @@ module TencentCloud
|
|
5282
5315
|
@ResultBytesMB = params['ResultBytesMB']
|
5283
5316
|
@MemoryUsageMB = params['MemoryUsageMB']
|
5284
5317
|
@DurationSec = params['DurationSec']
|
5318
|
+
@State = params['State']
|
5319
|
+
@CatalogName = params['CatalogName']
|
5285
5320
|
end
|
5286
5321
|
end
|
5287
5322
|
|
@@ -5484,14 +5519,18 @@ module TencentCloud
|
|
5484
5519
|
# @param Encrypt: Encryptid
|
5485
5520
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5486
5521
|
# @type Encrypt: Integer
|
5522
|
+
# @param Main: 是否为主力园区
|
5523
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5524
|
+
# @type Main: Boolean
|
5487
5525
|
|
5488
|
-
attr_accessor :Name, :Desc, :ZoneId, :Encrypt
|
5526
|
+
attr_accessor :Name, :Desc, :ZoneId, :Encrypt, :Main
|
5489
5527
|
|
5490
|
-
def initialize(name=nil, desc=nil, zoneid=nil, encrypt=nil)
|
5528
|
+
def initialize(name=nil, desc=nil, zoneid=nil, encrypt=nil, main=nil)
|
5491
5529
|
@Name = name
|
5492
5530
|
@Desc = desc
|
5493
5531
|
@ZoneId = zoneid
|
5494
5532
|
@Encrypt = encrypt
|
5533
|
+
@Main = main
|
5495
5534
|
end
|
5496
5535
|
|
5497
5536
|
def deserialize(params)
|
@@ -5499,6 +5538,7 @@ module TencentCloud
|
|
5499
5538
|
@Desc = params['Desc']
|
5500
5539
|
@ZoneId = params['ZoneId']
|
5501
5540
|
@Encrypt = params['Encrypt']
|
5541
|
+
@Main = params['Main']
|
5502
5542
|
end
|
5503
5543
|
end
|
5504
5544
|
|
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.
|
4
|
+
version: 3.0.919
|
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-
|
11
|
+
date: 2024-10-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|