tencentcloud-sdk-cdwdoris 3.0.936 → 3.0.937

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 +25 -10
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 54e1007abf536f27424d28dc00da47596f11ca16
4
- data.tar.gz: 10731d87ea12be1ccde74e990b85350c1ef4d0a0
3
+ metadata.gz: 1e8434f581a2d322e0f48feb2f893f6f502125f9
4
+ data.tar.gz: 4e8511a44d3e565cd342cb8357341c77d73277fc
5
5
  SHA512:
6
- metadata.gz: 236cb0996c5be5d0eab2d79eab43685ee8b119bb6b2be306ae23738955dbb2bfd25061792f494f5ecce2ddebed8ae7de7bb5bcd866259e605db4ecaf3b043b6c
7
- data.tar.gz: e9904a78f90ebc38ec51941e91056a936a8dc3c40bb5f44caa239f240decef3bcb4a178cdc9cc1824aa5ad54f01995bb9bca653faae616bd610a7febf8e9c1a8
6
+ metadata.gz: 02141a8e5dbf78a83ec3683a25c01ffebf7775e4d1c9699d4770d887141d7dcce7c7ffbc711e340f2107405901ac0bd607a7ea8103e12f9cc5ee4d94c91c7398
7
+ data.tar.gz: 47f67fca2cfb58a261f00e376aeec55cde8f82b03a4455e70c5acbbac0e2b58989ea58dcdb9c31bec72490ae93ff4ae472ed9218348780cb1ae6ee4b36cb6e4b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.936
1
+ 3.0.937
@@ -515,8 +515,8 @@ module TencentCloud
515
515
 
516
516
  attr_accessor :FileName, :FileConf, :KeyConf, :OriParam, :NeedRestart, :FilePath, :FileKeyValues, :FileKeyValuesNew
517
517
  extend Gem::Deprecate
518
- deprecate :FileKeyValues, :none, 2024, 10
519
- deprecate :FileKeyValues=, :none, 2024, 10
518
+ deprecate :FileKeyValues, :none, 2024, 11
519
+ deprecate :FileKeyValues=, :none, 2024, 11
520
520
 
521
521
  def initialize(filename=nil, fileconf=nil, keyconf=nil, oriparam=nil, needrestart=nil, filepath=nil, filekeyvalues=nil, filekeyvaluesnew=nil)
522
522
  @FileName = filename
@@ -1123,10 +1123,13 @@ module TencentCloud
1123
1123
  # @param Catalog: catalog名称
1124
1124
  # 注意:此字段可能返回 null,表示取不到有效值。
1125
1125
  # @type Catalog: String
1126
+ # @param State: 状态
1127
+ # 注意:此字段可能返回 null,表示取不到有效值。
1128
+ # @type State: String
1126
1129
 
1127
- attr_accessor :OsUser, :InitialQueryId, :Sql, :QueryStartTime, :DurationMs, :ReadRows, :ResultRows, :ResultBytes, :MemoryUsage, :InitialAddress, :DbName, :SqlType, :Catalog
1130
+ attr_accessor :OsUser, :InitialQueryId, :Sql, :QueryStartTime, :DurationMs, :ReadRows, :ResultRows, :ResultBytes, :MemoryUsage, :InitialAddress, :DbName, :SqlType, :Catalog, :State
1128
1131
 
1129
- def initialize(osuser=nil, initialqueryid=nil, sql=nil, querystarttime=nil, durationms=nil, readrows=nil, resultrows=nil, resultbytes=nil, memoryusage=nil, initialaddress=nil, dbname=nil, sqltype=nil, catalog=nil)
1132
+ def initialize(osuser=nil, initialqueryid=nil, sql=nil, querystarttime=nil, durationms=nil, readrows=nil, resultrows=nil, resultbytes=nil, memoryusage=nil, initialaddress=nil, dbname=nil, sqltype=nil, catalog=nil, state=nil)
1130
1133
  @OsUser = osuser
1131
1134
  @InitialQueryId = initialqueryid
1132
1135
  @Sql = sql
@@ -1140,6 +1143,7 @@ module TencentCloud
1140
1143
  @DbName = dbname
1141
1144
  @SqlType = sqltype
1142
1145
  @Catalog = catalog
1146
+ @State = state
1143
1147
  end
1144
1148
 
1145
1149
  def deserialize(params)
@@ -1156,6 +1160,7 @@ module TencentCloud
1156
1160
  @DbName = params['DbName']
1157
1161
  @SqlType = params['SqlType']
1158
1162
  @Catalog = params['Catalog']
1163
+ @State = params['State']
1159
1164
  end
1160
1165
  end
1161
1166
 
@@ -1395,13 +1400,21 @@ module TencentCloud
1395
1400
  # @param BackUpJobs: 任务列表
1396
1401
  # 注意:此字段可能返回 null,表示取不到有效值。
1397
1402
  # @type BackUpJobs: Array
1403
+ # @param ErrorMsg: 错误信息
1404
+ # 注意:此字段可能返回 null,表示取不到有效值。
1405
+ # @type ErrorMsg: String
1406
+ # @param TotalCount: 总数
1407
+ # 注意:此字段可能返回 null,表示取不到有效值。
1408
+ # @type TotalCount: Integer
1398
1409
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1399
1410
  # @type RequestId: String
1400
1411
 
1401
- attr_accessor :BackUpJobs, :RequestId
1412
+ attr_accessor :BackUpJobs, :ErrorMsg, :TotalCount, :RequestId
1402
1413
 
1403
- def initialize(backupjobs=nil, requestid=nil)
1414
+ def initialize(backupjobs=nil, errormsg=nil, totalcount=nil, requestid=nil)
1404
1415
  @BackUpJobs = backupjobs
1416
+ @ErrorMsg = errormsg
1417
+ @TotalCount = totalcount
1405
1418
  @RequestId = requestid
1406
1419
  end
1407
1420
 
@@ -1414,6 +1427,8 @@ module TencentCloud
1414
1427
  @BackUpJobs << backupjobdisplay_tmp
1415
1428
  end
1416
1429
  end
1430
+ @ErrorMsg = params['ErrorMsg']
1431
+ @TotalCount = params['TotalCount']
1417
1432
  @RequestId = params['RequestId']
1418
1433
  end
1419
1434
  end
@@ -2446,8 +2461,8 @@ module TencentCloud
2446
2461
 
2447
2462
  attr_accessor :InstanceID, :Input
2448
2463
  extend Gem::Deprecate
2449
- deprecate :InstanceID, :none, 2024, 10
2450
- deprecate :InstanceID=, :none, 2024, 10
2464
+ deprecate :InstanceID, :none, 2024, 11
2465
+ deprecate :InstanceID=, :none, 2024, 11
2451
2466
 
2452
2467
  def initialize(instanceid=nil, input=nil)
2453
2468
  @InstanceID = instanceid
@@ -3436,8 +3451,8 @@ module TencentCloud
3436
3451
 
3437
3452
  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
3438
3453
  extend Gem::Deprecate
3439
- deprecate :IfExistCatalog, :none, 2024, 10
3440
- deprecate :IfExistCatalog=, :none, 2024, 10
3454
+ deprecate :IfExistCatalog, :none, 2024, 11
3455
+ deprecate :IfExistCatalog=, :none, 2024, 11
3441
3456
 
3442
3457
  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)
3443
3458
  @InstanceId = instanceid
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cdwdoris
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.936
4
+ version: 3.0.937
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud