tencentcloud-sdk-cdwdoris 3.0.972 → 3.0.974
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 +43 -28
- 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: 8a423b58be9166cf18dbcfd50316aae613c05f30
|
4
|
+
data.tar.gz: 36f754ee5025438914f91e78f96aa5eec31a94ba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f65767e6e4a5e892ccd94014cb3e5d4e4c3161078fb36901721550778d3ead3c0f7fdf8e1ef97470a650cb86f6e6e3859f8096aa0c1ce8ab37c00f39a5a795c
|
7
|
+
data.tar.gz: 492873ac6b7357d25bb46b6d05b1551e475c7d652ec69783f33a90b98ed1640ae931758529512ce9c7bd7099b28891f2455dbe140ff337ae9c55dc14ba3b04bf
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.974
|
data/lib/v20211228/models.rb
CHANGED
@@ -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,
|
519
|
-
deprecate :FileKeyValues=, :none,
|
518
|
+
deprecate :FileKeyValues, :none, 2025, 1
|
519
|
+
deprecate :FileKeyValues=, :none, 2025, 1
|
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
|
@@ -773,10 +773,10 @@ module TencentCloud
|
|
773
773
|
|
774
774
|
attr_accessor :InstanceId, :OperationType, :ScheduleId, :WeekDays, :ExecuteHour, :BackUpTables, :BackupType, :DorisSourceInfo, :BackupTimeType, :RestoreType, :AuthType, :CosSourceInfo, :ScheduleName, :ScheduleInfo, :UpdateStatus, :CosBucket
|
775
775
|
extend Gem::Deprecate
|
776
|
-
deprecate :WeekDays, :none,
|
777
|
-
deprecate :WeekDays=, :none,
|
778
|
-
deprecate :ExecuteHour, :none,
|
779
|
-
deprecate :ExecuteHour=, :none,
|
776
|
+
deprecate :WeekDays, :none, 2025, 1
|
777
|
+
deprecate :WeekDays=, :none, 2025, 1
|
778
|
+
deprecate :ExecuteHour, :none, 2025, 1
|
779
|
+
deprecate :ExecuteHour=, :none, 2025, 1
|
780
780
|
|
781
781
|
def initialize(instanceid=nil, operationtype=nil, scheduleid=nil, weekdays=nil, executehour=nil, backuptables=nil, backuptype=nil, dorissourceinfo=nil, backuptimetype=nil, restoretype=nil, authtype=nil, cossourceinfo=nil, schedulename=nil, scheduleinfo=nil, updatestatus=nil, cosbucket=nil)
|
782
782
|
@InstanceId = instanceid
|
@@ -2207,14 +2207,17 @@ module TencentCloud
|
|
2207
2207
|
# @param InstanceNodesList: 实例节点总数
|
2208
2208
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2209
2209
|
# @type InstanceNodesList: Array
|
2210
|
+
# @param NodeRoles: 节点类型
|
2211
|
+
# @type NodeRoles: Array
|
2210
2212
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2211
2213
|
# @type RequestId: String
|
2212
2214
|
|
2213
|
-
attr_accessor :TotalCount, :InstanceNodesList, :RequestId
|
2215
|
+
attr_accessor :TotalCount, :InstanceNodesList, :NodeRoles, :RequestId
|
2214
2216
|
|
2215
|
-
def initialize(totalcount=nil, instancenodeslist=nil, requestid=nil)
|
2217
|
+
def initialize(totalcount=nil, instancenodeslist=nil, noderoles=nil, requestid=nil)
|
2216
2218
|
@TotalCount = totalcount
|
2217
2219
|
@InstanceNodesList = instancenodeslist
|
2220
|
+
@NodeRoles = noderoles
|
2218
2221
|
@RequestId = requestid
|
2219
2222
|
end
|
2220
2223
|
|
@@ -2228,6 +2231,7 @@ module TencentCloud
|
|
2228
2231
|
@InstanceNodesList << instancenode_tmp
|
2229
2232
|
end
|
2230
2233
|
end
|
2234
|
+
@NodeRoles = params['NodeRoles']
|
2231
2235
|
@RequestId = params['RequestId']
|
2232
2236
|
end
|
2233
2237
|
end
|
@@ -2502,8 +2506,8 @@ module TencentCloud
|
|
2502
2506
|
|
2503
2507
|
attr_accessor :InstanceID, :Input
|
2504
2508
|
extend Gem::Deprecate
|
2505
|
-
deprecate :InstanceID, :none,
|
2506
|
-
deprecate :InstanceID=, :none,
|
2509
|
+
deprecate :InstanceID, :none, 2025, 1
|
2510
|
+
deprecate :InstanceID=, :none, 2025, 1
|
2507
2511
|
|
2508
2512
|
def initialize(instanceid=nil, input=nil)
|
2509
2513
|
@InstanceID = instanceid
|
@@ -2879,22 +2883,25 @@ module TencentCloud
|
|
2879
2883
|
|
2880
2884
|
# DescribeSpec返回参数结构体
|
2881
2885
|
class DescribeSpecResponse < TencentCloud::Common::AbstractModel
|
2882
|
-
# @param MasterSpec:
|
2886
|
+
# @param MasterSpec: fe节点规格描述
|
2883
2887
|
# @type MasterSpec: Array
|
2884
|
-
# @param CoreSpec:
|
2888
|
+
# @param CoreSpec: be节点规格描述
|
2885
2889
|
# @type CoreSpec: Array
|
2886
2890
|
# @param AttachCBSSpec: 云盘列表
|
2887
2891
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2888
2892
|
# @type AttachCBSSpec: Array
|
2893
|
+
# @param CNSpec: cn节点列表
|
2894
|
+
# @type CNSpec: Array
|
2889
2895
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2890
2896
|
# @type RequestId: String
|
2891
2897
|
|
2892
|
-
attr_accessor :MasterSpec, :CoreSpec, :AttachCBSSpec, :RequestId
|
2898
|
+
attr_accessor :MasterSpec, :CoreSpec, :AttachCBSSpec, :CNSpec, :RequestId
|
2893
2899
|
|
2894
|
-
def initialize(masterspec=nil, corespec=nil, attachcbsspec=nil, requestid=nil)
|
2900
|
+
def initialize(masterspec=nil, corespec=nil, attachcbsspec=nil, cnspec=nil, requestid=nil)
|
2895
2901
|
@MasterSpec = masterspec
|
2896
2902
|
@CoreSpec = corespec
|
2897
2903
|
@AttachCBSSpec = attachcbsspec
|
2904
|
+
@CNSpec = cnspec
|
2898
2905
|
@RequestId = requestid
|
2899
2906
|
end
|
2900
2907
|
|
@@ -2923,6 +2930,14 @@ module TencentCloud
|
|
2923
2930
|
@AttachCBSSpec << diskspec_tmp
|
2924
2931
|
end
|
2925
2932
|
end
|
2933
|
+
unless params['CNSpec'].nil?
|
2934
|
+
@CNSpec = []
|
2935
|
+
params['CNSpec'].each do |i|
|
2936
|
+
resourcespec_tmp = ResourceSpec.new
|
2937
|
+
resourcespec_tmp.deserialize(i)
|
2938
|
+
@CNSpec << resourcespec_tmp
|
2939
|
+
end
|
2940
|
+
end
|
2926
2941
|
@RequestId = params['RequestId']
|
2927
2942
|
end
|
2928
2943
|
end
|
@@ -3497,8 +3512,8 @@ module TencentCloud
|
|
3497
3512
|
|
3498
3513
|
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, :MonitorMode, :CNSummary
|
3499
3514
|
extend Gem::Deprecate
|
3500
|
-
deprecate :IfExistCatalog, :none,
|
3501
|
-
deprecate :IfExistCatalog=, :none,
|
3515
|
+
deprecate :IfExistCatalog, :none, 2025, 1
|
3516
|
+
deprecate :IfExistCatalog=, :none, 2025, 1
|
3502
3517
|
|
3503
3518
|
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, monitormode=nil, cnsummary=nil)
|
3504
3519
|
@InstanceId = instanceid
|
@@ -4638,18 +4653,18 @@ module TencentCloud
|
|
4638
4653
|
|
4639
4654
|
attr_accessor :InstanceId, :BackUpJobId, :ReplicationNum, :ReserveSourceConfig, :RecoverType, :CosSourceInfo, :ScheduleType, :NextTime, :ScheduleName, :OperationType, :RecoverScope, :RecoverDatabase, :ReserveStoragePolicy
|
4640
4655
|
extend Gem::Deprecate
|
4641
|
-
deprecate :RecoverType, :none,
|
4642
|
-
deprecate :RecoverType=, :none,
|
4643
|
-
deprecate :CosSourceInfo, :none,
|
4644
|
-
deprecate :CosSourceInfo=, :none,
|
4645
|
-
deprecate :ScheduleType, :none,
|
4646
|
-
deprecate :ScheduleType=, :none,
|
4647
|
-
deprecate :NextTime, :none,
|
4648
|
-
deprecate :NextTime=, :none,
|
4649
|
-
deprecate :ScheduleName, :none,
|
4650
|
-
deprecate :ScheduleName=, :none,
|
4651
|
-
deprecate :OperationType, :none,
|
4652
|
-
deprecate :OperationType=, :none,
|
4656
|
+
deprecate :RecoverType, :none, 2025, 1
|
4657
|
+
deprecate :RecoverType=, :none, 2025, 1
|
4658
|
+
deprecate :CosSourceInfo, :none, 2025, 1
|
4659
|
+
deprecate :CosSourceInfo=, :none, 2025, 1
|
4660
|
+
deprecate :ScheduleType, :none, 2025, 1
|
4661
|
+
deprecate :ScheduleType=, :none, 2025, 1
|
4662
|
+
deprecate :NextTime, :none, 2025, 1
|
4663
|
+
deprecate :NextTime=, :none, 2025, 1
|
4664
|
+
deprecate :ScheduleName, :none, 2025, 1
|
4665
|
+
deprecate :ScheduleName=, :none, 2025, 1
|
4666
|
+
deprecate :OperationType, :none, 2025, 1
|
4667
|
+
deprecate :OperationType=, :none, 2025, 1
|
4653
4668
|
|
4654
4669
|
def initialize(instanceid=nil, backupjobid=nil, replicationnum=nil, reservesourceconfig=nil, recovertype=nil, cossourceinfo=nil, scheduletype=nil, nexttime=nil, schedulename=nil, operationtype=nil, recoverscope=nil, recoverdatabase=nil, reservestoragepolicy=nil)
|
4655
4670
|
@InstanceId = instanceid
|
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.974
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|