tencentcloud-sdk-cdwdoris 3.0.985 → 3.0.987
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 +36 -47
- 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: 8259dbbbe722ae6f16cc5d4fbc8e25ebf1293114
|
4
|
+
data.tar.gz: fd234d4e5c9137b5e3c9fc8602431bc582173886
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b70cde2c4fbdbac0600d5a67b0c53416f0e56cba7aa82652a09d579775728a690a1c3b30ee7d5115611892f285183963f72bcf1ea4a06ccc7c46da17be65dae9
|
7
|
+
data.tar.gz: 3faa3143f78f1dff3acab0e1870ea3818b5a4ab85b4b74674d53ae5e2e1bc7679fe38ee6320ea4657fe880d88e1cb0414c24febf57e9d1b353421f4051c728a8
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.987
|
data/lib/v20211228/models.rb
CHANGED
@@ -102,7 +102,6 @@ module TencentCloud
|
|
102
102
|
# @param BackUpSize: 备份数据量
|
103
103
|
# @type BackUpSize: Integer
|
104
104
|
# @param BackUpSingleSize: 备份单副本数据量
|
105
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
106
105
|
# @type BackUpSingleSize: Integer
|
107
106
|
# @param BackUpTime: 实例创建时间
|
108
107
|
# @type BackUpTime: String
|
@@ -111,27 +110,23 @@ module TencentCloud
|
|
111
110
|
# @param JobStatus: 实例状态
|
112
111
|
# @type JobStatus: String
|
113
112
|
# @param BackupType: 0为默认。1时是对远端的doris进行备份,不周期,一次性
|
114
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
115
113
|
# @type BackupType: Integer
|
116
114
|
# @param BackupTimeType: 0为默认。1时是立即备份。2时是迁移
|
117
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
118
115
|
# @type BackupTimeType: Integer
|
119
116
|
# @param DorisSourceInfo: 远端doris的连接信息
|
120
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
121
117
|
# @type DorisSourceInfo: :class:`Tencentcloud::Cdwdoris.v20211228.models.DorisSourceInfo`
|
122
118
|
# @param JobStatusNum: 实例状态对应的数值
|
123
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
124
119
|
# @type JobStatusNum: Integer
|
125
120
|
# @param BackupCosInfo: 备份实例中关于cos的信息
|
126
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
127
121
|
# @type BackupCosInfo: :class:`Tencentcloud::Cdwdoris.v20211228.models.BackupCosInfo`
|
128
122
|
# @param IsUserDefineBucket: 是否使用的自定义桶
|
129
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
130
123
|
# @type IsUserDefineBucket: Boolean
|
124
|
+
# @param ErrorReason: 错误原因
|
125
|
+
# @type ErrorReason: String
|
131
126
|
|
132
|
-
attr_accessor :JobId, :Snapshot, :BackUpSize, :BackUpSingleSize, :BackUpTime, :ExpireTime, :JobStatus, :BackupType, :BackupTimeType, :DorisSourceInfo, :JobStatusNum, :BackupCosInfo, :IsUserDefineBucket
|
127
|
+
attr_accessor :JobId, :Snapshot, :BackUpSize, :BackUpSingleSize, :BackUpTime, :ExpireTime, :JobStatus, :BackupType, :BackupTimeType, :DorisSourceInfo, :JobStatusNum, :BackupCosInfo, :IsUserDefineBucket, :ErrorReason
|
133
128
|
|
134
|
-
def initialize(jobid=nil, snapshot=nil, backupsize=nil, backupsinglesize=nil, backuptime=nil, expiretime=nil, jobstatus=nil, backuptype=nil, backuptimetype=nil, dorissourceinfo=nil, jobstatusnum=nil, backupcosinfo=nil, isuserdefinebucket=nil)
|
129
|
+
def initialize(jobid=nil, snapshot=nil, backupsize=nil, backupsinglesize=nil, backuptime=nil, expiretime=nil, jobstatus=nil, backuptype=nil, backuptimetype=nil, dorissourceinfo=nil, jobstatusnum=nil, backupcosinfo=nil, isuserdefinebucket=nil, errorreason=nil)
|
135
130
|
@JobId = jobid
|
136
131
|
@Snapshot = snapshot
|
137
132
|
@BackUpSize = backupsize
|
@@ -145,6 +140,7 @@ module TencentCloud
|
|
145
140
|
@JobStatusNum = jobstatusnum
|
146
141
|
@BackupCosInfo = backupcosinfo
|
147
142
|
@IsUserDefineBucket = isuserdefinebucket
|
143
|
+
@ErrorReason = errorreason
|
148
144
|
end
|
149
145
|
|
150
146
|
def deserialize(params)
|
@@ -167,6 +163,7 @@ module TencentCloud
|
|
167
163
|
@BackupCosInfo.deserialize(params['BackupCosInfo'])
|
168
164
|
end
|
169
165
|
@IsUserDefineBucket = params['IsUserDefineBucket']
|
166
|
+
@ErrorReason = params['ErrorReason']
|
170
167
|
end
|
171
168
|
end
|
172
169
|
|
@@ -894,10 +891,15 @@ module TencentCloud
|
|
894
891
|
# @type EnableMultiZones: Boolean
|
895
892
|
# @param UserMultiZoneInfos: 开启多可用区后,用户的所有可用区和子网信息
|
896
893
|
# @type UserMultiZoneInfos: :class:`Tencentcloud::Cdwdoris.v20211228.models.NetworkInfo`
|
894
|
+
# @param UserMultiZoneInfoArr: 开启多可用区后,用户的所有可用区和子网信息
|
895
|
+
# @type UserMultiZoneInfoArr: Array
|
897
896
|
|
898
|
-
attr_accessor :Zone, :FeSpec, :BeSpec, :HaFlag, :UserVPCId, :UserSubnetId, :ProductVersion, :ChargeProperties, :InstanceName, :DorisUserPwd, :Tags, :HaType, :CaseSensitive, :EnableMultiZones, :UserMultiZoneInfos
|
897
|
+
attr_accessor :Zone, :FeSpec, :BeSpec, :HaFlag, :UserVPCId, :UserSubnetId, :ProductVersion, :ChargeProperties, :InstanceName, :DorisUserPwd, :Tags, :HaType, :CaseSensitive, :EnableMultiZones, :UserMultiZoneInfos, :UserMultiZoneInfoArr
|
898
|
+
extend Gem::Deprecate
|
899
|
+
deprecate :UserMultiZoneInfos, :none, 2025, 1
|
900
|
+
deprecate :UserMultiZoneInfos=, :none, 2025, 1
|
899
901
|
|
900
|
-
def initialize(zone=nil, fespec=nil, bespec=nil, haflag=nil, uservpcid=nil, usersubnetid=nil, productversion=nil, chargeproperties=nil, instancename=nil, dorisuserpwd=nil, tags=nil, hatype=nil, casesensitive=nil, enablemultizones=nil, usermultizoneinfos=nil)
|
902
|
+
def initialize(zone=nil, fespec=nil, bespec=nil, haflag=nil, uservpcid=nil, usersubnetid=nil, productversion=nil, chargeproperties=nil, instancename=nil, dorisuserpwd=nil, tags=nil, hatype=nil, casesensitive=nil, enablemultizones=nil, usermultizoneinfos=nil, usermultizoneinfoarr=nil)
|
901
903
|
@Zone = zone
|
902
904
|
@FeSpec = fespec
|
903
905
|
@BeSpec = bespec
|
@@ -913,6 +915,7 @@ module TencentCloud
|
|
913
915
|
@CaseSensitive = casesensitive
|
914
916
|
@EnableMultiZones = enablemultizones
|
915
917
|
@UserMultiZoneInfos = usermultizoneinfos
|
918
|
+
@UserMultiZoneInfoArr = usermultizoneinfoarr
|
916
919
|
end
|
917
920
|
|
918
921
|
def deserialize(params)
|
@@ -950,6 +953,14 @@ module TencentCloud
|
|
950
953
|
@UserMultiZoneInfos = NetworkInfo.new
|
951
954
|
@UserMultiZoneInfos.deserialize(params['UserMultiZoneInfos'])
|
952
955
|
end
|
956
|
+
unless params['UserMultiZoneInfoArr'].nil?
|
957
|
+
@UserMultiZoneInfoArr = []
|
958
|
+
params['UserMultiZoneInfoArr'].each do |i|
|
959
|
+
networkinfo_tmp = NetworkInfo.new
|
960
|
+
networkinfo_tmp.deserialize(i)
|
961
|
+
@UserMultiZoneInfoArr << networkinfo_tmp
|
962
|
+
end
|
963
|
+
end
|
953
964
|
end
|
954
965
|
end
|
955
966
|
|
@@ -1221,10 +1232,8 @@ module TencentCloud
|
|
1221
1232
|
# @param Items: 地域列表
|
1222
1233
|
# @type Items: Array
|
1223
1234
|
# @param FrontEndRules: 前端规则描述
|
1224
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1225
1235
|
# @type FrontEndRules: Array
|
1226
1236
|
# @param AvailableWhiteListNames: 返回可用的白名单名称
|
1227
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1228
1237
|
# @type AvailableWhiteListNames: Array
|
1229
1238
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1230
1239
|
# @type RequestId: String
|
@@ -1283,15 +1292,23 @@ module TencentCloud
|
|
1283
1292
|
# DescribeBackUpJobDetail返回参数结构体
|
1284
1293
|
class DescribeBackUpJobDetailResponse < TencentCloud::Common::AbstractModel
|
1285
1294
|
# @param TableContents: 备份表详情
|
1286
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1287
1295
|
# @type TableContents: Array
|
1296
|
+
# @param ErrorMsg: 错误信息
|
1297
|
+
# @type ErrorMsg: String
|
1298
|
+
# @param IsUnknownVersion: 是否是未知版本
|
1299
|
+
# @type IsUnknownVersion: Boolean
|
1300
|
+
# @param Msg: 返回对象用字符串表示
|
1301
|
+
# @type Msg: String
|
1288
1302
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1289
1303
|
# @type RequestId: String
|
1290
1304
|
|
1291
|
-
attr_accessor :TableContents, :RequestId
|
1305
|
+
attr_accessor :TableContents, :ErrorMsg, :IsUnknownVersion, :Msg, :RequestId
|
1292
1306
|
|
1293
|
-
def initialize(tablecontents=nil, requestid=nil)
|
1307
|
+
def initialize(tablecontents=nil, errormsg=nil, isunknownversion=nil, msg=nil, requestid=nil)
|
1294
1308
|
@TableContents = tablecontents
|
1309
|
+
@ErrorMsg = errormsg
|
1310
|
+
@IsUnknownVersion = isunknownversion
|
1311
|
+
@Msg = msg
|
1295
1312
|
@RequestId = requestid
|
1296
1313
|
end
|
1297
1314
|
|
@@ -1304,6 +1321,9 @@ module TencentCloud
|
|
1304
1321
|
@TableContents << backuptablecontent_tmp
|
1305
1322
|
end
|
1306
1323
|
end
|
1324
|
+
@ErrorMsg = params['ErrorMsg']
|
1325
|
+
@IsUnknownVersion = params['IsUnknownVersion']
|
1326
|
+
@Msg = params['Msg']
|
1307
1327
|
@RequestId = params['RequestId']
|
1308
1328
|
end
|
1309
1329
|
end
|
@@ -1354,13 +1374,10 @@ module TencentCloud
|
|
1354
1374
|
# DescribeBackUpJob返回参数结构体
|
1355
1375
|
class DescribeBackUpJobResponse < TencentCloud::Common::AbstractModel
|
1356
1376
|
# @param BackUpJobs: 任务列表
|
1357
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1358
1377
|
# @type BackUpJobs: Array
|
1359
1378
|
# @param ErrorMsg: 错误信息
|
1360
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1361
1379
|
# @type ErrorMsg: String
|
1362
1380
|
# @param TotalCount: 总数
|
1363
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1364
1381
|
# @type TotalCount: Integer
|
1365
1382
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1366
1383
|
# @type RequestId: String
|
@@ -1463,13 +1480,10 @@ module TencentCloud
|
|
1463
1480
|
# @param AvailableTables: 可备份表列表
|
1464
1481
|
# @type AvailableTables: Array
|
1465
1482
|
# @param Msg: msg
|
1466
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1467
1483
|
# @type Msg: String
|
1468
1484
|
# @param IsUnknownVersion: 未知version
|
1469
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1470
1485
|
# @type IsUnknownVersion: Boolean
|
1471
1486
|
# @param ErrorMsg: 错误信息
|
1472
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1473
1487
|
# @type ErrorMsg: String
|
1474
1488
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1475
1489
|
# @type RequestId: String
|
@@ -1523,10 +1537,8 @@ module TencentCloud
|
|
1523
1537
|
# DescribeBackUpTaskDetail返回参数结构体
|
1524
1538
|
class DescribeBackUpTaskDetailResponse < TencentCloud::Common::AbstractModel
|
1525
1539
|
# @param BackupStatus: 备份任务进度详情
|
1526
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1527
1540
|
# @type BackupStatus: Array
|
1528
1541
|
# @param ErrorMsg: 错误信息
|
1529
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1530
1542
|
# @type ErrorMsg: String
|
1531
1543
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1532
1544
|
# @type RequestId: String
|
@@ -1660,7 +1672,6 @@ module TencentCloud
|
|
1660
1672
|
# @param BuildVersion: 返回当前内核版本 如果不存在则返回空字符串
|
1661
1673
|
# @type BuildVersion: String
|
1662
1674
|
# @param ErrorMsg: 错误信息
|
1663
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1664
1675
|
# @type ErrorMsg: String
|
1665
1676
|
# @param HasCN: 是否包含CN节点
|
1666
1677
|
# @type HasCN: Boolean
|
@@ -1712,10 +1723,8 @@ module TencentCloud
|
|
1712
1723
|
# DescribeCoolDownBackends返回参数结构体
|
1713
1724
|
class DescribeCoolDownBackendsResponse < TencentCloud::Common::AbstractModel
|
1714
1725
|
# @param ErrorMsg: 错误信息
|
1715
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1716
1726
|
# @type ErrorMsg: String
|
1717
1727
|
# @param List: 节点信息列表
|
1718
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1719
1728
|
# @type List: Array
|
1720
1729
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1721
1730
|
# @type RequestId: String
|
@@ -1761,10 +1770,8 @@ module TencentCloud
|
|
1761
1770
|
# DescribeCoolDownPolicies返回参数结构体
|
1762
1771
|
class DescribeCoolDownPoliciesResponse < TencentCloud::Common::AbstractModel
|
1763
1772
|
# @param ErrorMsg: 错误信息
|
1764
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1765
1773
|
# @type ErrorMsg: String
|
1766
1774
|
# @param List: 冷热分层策略列表
|
1767
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1768
1775
|
# @type List: Array
|
1769
1776
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1770
1777
|
# @type RequestId: String
|
@@ -1814,10 +1821,8 @@ module TencentCloud
|
|
1814
1821
|
# DescribeCoolDownTableData返回参数结构体
|
1815
1822
|
class DescribeCoolDownTableDataResponse < TencentCloud::Common::AbstractModel
|
1816
1823
|
# @param ErrorMsg: 错误信息
|
1817
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1818
1824
|
# @type ErrorMsg: String
|
1819
1825
|
# @param List: 冷热分层Table数据列表
|
1820
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1821
1826
|
# @type List: Array
|
1822
1827
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1823
1828
|
# @type RequestId: String
|
@@ -2069,18 +2074,14 @@ module TencentCloud
|
|
2069
2074
|
# DescribeInstanceNodesInfo返回参数结构体
|
2070
2075
|
class DescribeInstanceNodesInfoResponse < TencentCloud::Common::AbstractModel
|
2071
2076
|
# @param BeNodes: Be节点
|
2072
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2073
2077
|
# @type BeNodes: Array
|
2074
2078
|
# @param FeNodes: Fe节点
|
2075
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2076
2079
|
# @type FeNodes: Array
|
2077
2080
|
# @param FeMaster: Fe master节点
|
2078
2081
|
# @type FeMaster: String
|
2079
2082
|
# @param BeNodeInfos: Be节点信息
|
2080
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2081
2083
|
# @type BeNodeInfos: Array
|
2082
2084
|
# @param FeNodeInfos: Fe节点信息
|
2083
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2084
2085
|
# @type FeNodeInfos: Array
|
2085
2086
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2086
2087
|
# @type RequestId: String
|
@@ -2157,7 +2158,6 @@ module TencentCloud
|
|
2157
2158
|
# @param TotalCount: 总数
|
2158
2159
|
# @type TotalCount: Integer
|
2159
2160
|
# @param InstanceNodesList: 实例节点总数
|
2160
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2161
2161
|
# @type InstanceNodesList: Array
|
2162
2162
|
# @param NodeRoles: 节点类型
|
2163
2163
|
# @type NodeRoles: Array
|
@@ -2280,7 +2280,6 @@ module TencentCloud
|
|
2280
2280
|
# @param TotalCount: 操作记录总数
|
2281
2281
|
# @type TotalCount: Integer
|
2282
2282
|
# @param Operations: 操作记录具体数据
|
2283
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2284
2283
|
# @type Operations: Array
|
2285
2284
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2286
2285
|
# @type RequestId: String
|
@@ -2367,19 +2366,14 @@ module TencentCloud
|
|
2367
2366
|
# @param InstanceState: 集群状态,例如:Serving
|
2368
2367
|
# @type InstanceState: String
|
2369
2368
|
# @param FlowCreateTime: 集群操作创建时间
|
2370
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2371
2369
|
# @type FlowCreateTime: String
|
2372
2370
|
# @param FlowName: 集群操作名称
|
2373
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2374
2371
|
# @type FlowName: String
|
2375
2372
|
# @param FlowProgress: 集群操作进度
|
2376
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2377
2373
|
# @type FlowProgress: Float
|
2378
2374
|
# @param InstanceStateDesc: 集群状态描述,例如:运行中
|
2379
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2380
2375
|
# @type InstanceStateDesc: String
|
2381
2376
|
# @param FlowMsg: 集群流程错误信息,例如:“创建失败,资源不足”
|
2382
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2383
2377
|
# @type FlowMsg: String
|
2384
2378
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2385
2379
|
# @type RequestId: String
|
@@ -2426,10 +2420,8 @@ module TencentCloud
|
|
2426
2420
|
# DescribeInstanceUsedSubnets返回参数结构体
|
2427
2421
|
class DescribeInstanceUsedSubnetsResponse < TencentCloud::Common::AbstractModel
|
2428
2422
|
# @param VpcId: 集群使用的vpc信息
|
2429
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2430
2423
|
# @type VpcId: String
|
2431
2424
|
# @param UsedSubnets: 集群使用的subnet信息
|
2432
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2433
2425
|
# @type UsedSubnets: Array
|
2434
2426
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2435
2427
|
# @type RequestId: String
|
@@ -2475,7 +2467,6 @@ module TencentCloud
|
|
2475
2467
|
# DescribeInstancesHealthState返回参数结构体
|
2476
2468
|
class DescribeInstancesHealthStateResponse < TencentCloud::Common::AbstractModel
|
2477
2469
|
# @param Data: base64编码后的数据,包含了集群的健康信息
|
2478
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2479
2470
|
# @type Data: String
|
2480
2471
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2481
2472
|
# @type RequestId: String
|
@@ -2586,10 +2577,8 @@ module TencentCloud
|
|
2586
2577
|
# DescribeRestoreTaskDetail返回参数结构体
|
2587
2578
|
class DescribeRestoreTaskDetailResponse < TencentCloud::Common::AbstractModel
|
2588
2579
|
# @param RestoreStatus: 恢复任务进度详情
|
2589
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2590
2580
|
# @type RestoreStatus: Array
|
2591
2581
|
# @param ErrorMsg: 错误信息
|
2592
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2593
2582
|
# @type ErrorMsg: String
|
2594
2583
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2595
2584
|
# @type RequestId: String
|
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.987
|
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-01-
|
11
|
+
date: 2025-01-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|