tencentcloud-sdk-cdwpg 3.0.1040 → 3.0.1042
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/v20201230/models.rb +14 -169
- 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: 6bad567b3038a67e898fcb9b89b229dbb316a73e
|
4
|
+
data.tar.gz: 69dd08c06965006a9124170166c8c4d5d59d6c38
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5273d1534ea838709ec0e3af89d283db5ffa80ce44762519f1f4a447ce6511ce31ee216016e54671597d5a7c9cb63b46df97e8ba74c07c01ddfbdeb2cf701fe1
|
7
|
+
data.tar.gz: 57bade4d1e6bd8f70aa40993b3eb19a9dab2f340b1dc701a4a28b1f945f4d92c8ae07d8beb4743f549bcacbced729c4b3cf04c06f29bbb205e6e581a9c51fac3
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1042
|
data/lib/v20201230/models.rb
CHANGED
@@ -44,7 +44,6 @@ module TencentCloud
|
|
44
44
|
# @param UserName: 账号名
|
45
45
|
# @type UserName: String
|
46
46
|
# @param Perms: 账户属性
|
47
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
48
47
|
# @type Perms: Array
|
49
48
|
|
50
49
|
attr_accessor :InstanceId, :UserName, :Perms
|
@@ -92,13 +91,10 @@ module TencentCloud
|
|
92
91
|
# 磁盘信息
|
93
92
|
class CBSSpecInfo < TencentCloud::Common::AbstractModel
|
94
93
|
# @param DiskType: 盘类型
|
95
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
96
94
|
# @type DiskType: String
|
97
95
|
# @param DiskSize: 大小
|
98
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
99
96
|
# @type DiskSize: Integer
|
100
97
|
# @param DiskCount: 个数
|
101
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
102
98
|
# @type DiskCount: Integer
|
103
99
|
|
104
100
|
attr_accessor :DiskType, :DiskSize, :DiskCount
|
@@ -150,19 +146,14 @@ module TencentCloud
|
|
150
146
|
# 计费时间参数
|
151
147
|
class ChargeProperties < TencentCloud::Common::AbstractModel
|
152
148
|
# @param RenewFlag: 1-需要自动续期
|
153
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
154
149
|
# @type RenewFlag: Integer
|
155
150
|
# @param TimeSpan: 订单时间范围
|
156
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
157
151
|
# @type TimeSpan: Integer
|
158
152
|
# @param TimeUnit: 时间单位,一般为h和m
|
159
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
160
153
|
# @type TimeUnit: String
|
161
154
|
# @param PayMode: 计费类型0-按量计费,1-包年包月
|
162
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
163
155
|
# @type PayMode: Integer
|
164
156
|
# @param ChargeType: PREPAID、POSTPAID_BY_HOUR
|
165
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
166
157
|
# @type ChargeType: String
|
167
158
|
|
168
159
|
attr_accessor :RenewFlag, :TimeSpan, :TimeUnit, :PayMode, :ChargeType
|
@@ -275,14 +266,16 @@ module TencentCloud
|
|
275
266
|
# @type AdminPassword: String
|
276
267
|
# @param Resources: 资源信息
|
277
268
|
# @type Resources: Array
|
278
|
-
# @param Tags:
|
269
|
+
# @param Tags: 废弃,用TagItems
|
279
270
|
# @type Tags: :class:`Tencentcloud::Cdwpg.v20201230.models.Tag`
|
280
271
|
# @param ProductVersion: 版本
|
281
272
|
# @type ProductVersion: String
|
273
|
+
# @param TagItems: 标签列表
|
274
|
+
# @type TagItems: Array
|
282
275
|
|
283
|
-
attr_accessor :InstanceName, :Zone, :UserVPCId, :UserSubnetId, :ChargeProperties, :AdminPassword, :Resources, :Tags, :ProductVersion
|
276
|
+
attr_accessor :InstanceName, :Zone, :UserVPCId, :UserSubnetId, :ChargeProperties, :AdminPassword, :Resources, :Tags, :ProductVersion, :TagItems
|
284
277
|
|
285
|
-
def initialize(instancename=nil, zone=nil, uservpcid=nil, usersubnetid=nil, chargeproperties=nil, adminpassword=nil, resources=nil, tags=nil, productversion=nil)
|
278
|
+
def initialize(instancename=nil, zone=nil, uservpcid=nil, usersubnetid=nil, chargeproperties=nil, adminpassword=nil, resources=nil, tags=nil, productversion=nil, tagitems=nil)
|
286
279
|
@InstanceName = instancename
|
287
280
|
@Zone = zone
|
288
281
|
@UserVPCId = uservpcid
|
@@ -292,6 +285,7 @@ module TencentCloud
|
|
292
285
|
@Resources = resources
|
293
286
|
@Tags = tags
|
294
287
|
@ProductVersion = productversion
|
288
|
+
@TagItems = tagitems
|
295
289
|
end
|
296
290
|
|
297
291
|
def deserialize(params)
|
@@ -317,6 +311,14 @@ module TencentCloud
|
|
317
311
|
@Tags.deserialize(params['Tags'])
|
318
312
|
end
|
319
313
|
@ProductVersion = params['ProductVersion']
|
314
|
+
unless params['TagItems'].nil?
|
315
|
+
@TagItems = []
|
316
|
+
params['TagItems'].each do |i|
|
317
|
+
tag_tmp = Tag.new
|
318
|
+
tag_tmp.deserialize(i)
|
319
|
+
@TagItems << tag_tmp
|
320
|
+
end
|
321
|
+
end
|
320
322
|
end
|
321
323
|
end
|
322
324
|
|
@@ -327,7 +329,6 @@ module TencentCloud
|
|
327
329
|
# @param InstanceId: 实例ID
|
328
330
|
# @type InstanceId: String
|
329
331
|
# @param ErrorMsg: 错误信息
|
330
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
331
332
|
# @type ErrorMsg: String
|
332
333
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
333
334
|
# @type RequestId: String
|
@@ -376,10 +377,8 @@ module TencentCloud
|
|
376
377
|
# DescribeAccounts返回参数结构体
|
377
378
|
class DescribeAccountsResponse < TencentCloud::Common::AbstractModel
|
378
379
|
# @param TotalCount: 实例总数
|
379
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
380
380
|
# @type TotalCount: Integer
|
381
381
|
# @param Accounts: 账号数组
|
382
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
383
382
|
# @type Accounts: Array
|
384
383
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
385
384
|
# @type RequestId: String
|
@@ -645,7 +644,6 @@ module TencentCloud
|
|
645
644
|
# DescribeInstanceNodes返回参数结构体
|
646
645
|
class DescribeInstanceNodesResponse < TencentCloud::Common::AbstractModel
|
647
646
|
# @param ErrorMsg: error msg
|
648
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
649
647
|
# @type ErrorMsg: String
|
650
648
|
# @param InstanceNodes: 节点列表
|
651
649
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
@@ -799,25 +797,18 @@ module TencentCloud
|
|
799
797
|
# @param InstanceState: 集群状态,例如:Serving
|
800
798
|
# @type InstanceState: String
|
801
799
|
# @param FlowCreateTime: 集群操作创建时间
|
802
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
803
800
|
# @type FlowCreateTime: String
|
804
801
|
# @param FlowName: 集群操作名称
|
805
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
806
802
|
# @type FlowName: String
|
807
803
|
# @param FlowProgress: 集群操作进度
|
808
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
809
804
|
# @type FlowProgress: Float
|
810
805
|
# @param InstanceStateDesc: 集群状态描述,例如:运行中
|
811
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
812
806
|
# @type InstanceStateDesc: String
|
813
807
|
# @param FlowMsg: 集群流程错误信息,例如:“创建失败,资源不足”
|
814
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
815
808
|
# @type FlowMsg: String
|
816
809
|
# @param ProcessName: 当前步骤的名称,例如:”购买资源中“
|
817
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
818
810
|
# @type ProcessName: String
|
819
811
|
# @param BackupStatus: 集群备份任务开启状态
|
820
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
821
812
|
# @type BackupStatus: Integer
|
822
813
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
823
814
|
# @type RequestId: String
|
@@ -891,13 +882,11 @@ module TencentCloud
|
|
891
882
|
# DescribeInstances返回参数结构体
|
892
883
|
class DescribeInstancesResponse < TencentCloud::Common::AbstractModel
|
893
884
|
# @param TotalCount: 实例总数
|
894
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
895
885
|
# @type TotalCount: Integer
|
896
886
|
# @param InstancesList: 实例数组
|
897
887
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
898
888
|
# @type InstancesList: Array
|
899
889
|
# @param ErrorMsg: 错误信息
|
900
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
901
890
|
# @type ErrorMsg: String
|
902
891
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
903
892
|
# @type RequestId: String
|
@@ -961,13 +950,10 @@ module TencentCloud
|
|
961
950
|
# DescribeSimpleInstances返回参数结构体
|
962
951
|
class DescribeSimpleInstancesResponse < TencentCloud::Common::AbstractModel
|
963
952
|
# @param TotalCount: 集群列表总数
|
964
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
965
953
|
# @type TotalCount: Integer
|
966
954
|
# @param InstancesList: 集群列表详情
|
967
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
968
955
|
# @type InstancesList: Array
|
969
956
|
# @param ErrorMsg: 错误信息
|
970
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
971
957
|
# @type ErrorMsg: String
|
972
958
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
973
959
|
# @type RequestId: String
|
@@ -1146,10 +1132,8 @@ module TencentCloud
|
|
1146
1132
|
# DescribeUserHbaConfig返回参数结构体
|
1147
1133
|
class DescribeUserHbaConfigResponse < TencentCloud::Common::AbstractModel
|
1148
1134
|
# @param TotalCount: 实例总数
|
1149
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1150
1135
|
# @type TotalCount: Integer
|
1151
1136
|
# @param HbaConfigs: hba数组
|
1152
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1153
1137
|
# @type HbaConfigs: Array
|
1154
1138
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1155
1139
|
# @type RequestId: String
|
@@ -1219,22 +1203,16 @@ module TencentCloud
|
|
1219
1203
|
# 磁盘规格
|
1220
1204
|
class DiskSpecPlus < TencentCloud::Common::AbstractModel
|
1221
1205
|
# @param DiskCount: 磁盘个数
|
1222
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1223
1206
|
# @type DiskCount: Integer
|
1224
1207
|
# @param MaxDiskSize: 磁盘最大值
|
1225
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1226
1208
|
# @type MaxDiskSize: Integer
|
1227
1209
|
# @param MinDiskSize: 磁盘最小值
|
1228
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1229
1210
|
# @type MinDiskSize: Integer
|
1230
1211
|
# @param DiskType: 磁盘类型
|
1231
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1232
1212
|
# @type DiskType: String
|
1233
1213
|
# @param DiskDesc: 磁盘类型详情
|
1234
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1235
1214
|
# @type DiskDesc: String
|
1236
1215
|
# @param CvmClass: 机型类型
|
1237
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1238
1216
|
# @type CvmClass: String
|
1239
1217
|
|
1240
1218
|
attr_accessor :DiskCount, :MaxDiskSize, :MinDiskSize, :DiskType, :DiskDesc, :CvmClass
|
@@ -1261,16 +1239,12 @@ module TencentCloud
|
|
1261
1239
|
# 错误日志详细信息
|
1262
1240
|
class ErrorLogDetail < TencentCloud::Common::AbstractModel
|
1263
1241
|
# @param UserName: 用户名称
|
1264
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1265
1242
|
# @type UserName: String
|
1266
1243
|
# @param Database: 数据库
|
1267
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1268
1244
|
# @type Database: String
|
1269
1245
|
# @param ErrorTime: 报错时间
|
1270
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1271
1246
|
# @type ErrorTime: String
|
1272
1247
|
# @param ErrorMessage: 报错信息
|
1273
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1274
1248
|
# @type ErrorMessage: String
|
1275
1249
|
|
1276
1250
|
attr_accessor :UserName, :Database, :ErrorTime, :ErrorMessage
|
@@ -1303,7 +1277,6 @@ module TencentCloud
|
|
1303
1277
|
# @param Method: 方法
|
1304
1278
|
# @type Method: String
|
1305
1279
|
# @param Mask: 是否遮盖
|
1306
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1307
1280
|
# @type Mask: String
|
1308
1281
|
|
1309
1282
|
attr_accessor :Type, :Database, :User, :Address, :Method, :Mask
|
@@ -1330,82 +1303,57 @@ module TencentCloud
|
|
1330
1303
|
# 云原生实例详情
|
1331
1304
|
class InstanceInfo < TencentCloud::Common::AbstractModel
|
1332
1305
|
# @param ID: ID值
|
1333
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1334
1306
|
# @type ID: Integer
|
1335
1307
|
# @param InstanceType: 内核版本类型
|
1336
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1337
1308
|
# @type InstanceType: String
|
1338
1309
|
# @param InstanceName: 集群名字
|
1339
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1340
1310
|
# @type InstanceName: String
|
1341
1311
|
# @param Status: 集群状态
|
1342
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1343
1312
|
# @type Status: String
|
1344
1313
|
# @param StatusDesc: 集群状态详情
|
1345
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1346
1314
|
# @type StatusDesc: String
|
1347
1315
|
# @param InstanceStateInfo: 集群状态信息
|
1348
1316
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1349
1317
|
# @type InstanceStateInfo: :class:`Tencentcloud::Cdwpg.v20201230.models.InstanceStateInfo`
|
1350
1318
|
# @param InstanceID: 集群id
|
1351
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1352
1319
|
# @type InstanceID: String
|
1353
1320
|
# @param CreateTime: 创建时间
|
1354
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1355
1321
|
# @type CreateTime: String
|
1356
1322
|
# @param Region: 地域
|
1357
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1358
1323
|
# @type Region: String
|
1359
1324
|
# @param Zone: 地区
|
1360
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1361
1325
|
# @type Zone: String
|
1362
1326
|
# @param RegionDesc: 地域详情
|
1363
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1364
1327
|
# @type RegionDesc: String
|
1365
1328
|
# @param ZoneDesc: 地区详情
|
1366
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1367
1329
|
# @type ZoneDesc: String
|
1368
1330
|
# @param Tags: 标签
|
1369
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1370
1331
|
# @type Tags: Array
|
1371
1332
|
# @param Version: 内核版本
|
1372
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1373
1333
|
# @type Version: String
|
1374
1334
|
# @param Charset: 字符集
|
1375
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1376
1335
|
# @type Charset: String
|
1377
1336
|
# @param CNNodes: CN节点列表
|
1378
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1379
1337
|
# @type CNNodes: Array
|
1380
1338
|
# @param DNNodes: DN节点列表
|
1381
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1382
1339
|
# @type DNNodes: Array
|
1383
1340
|
# @param RegionId: 地域id
|
1384
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1385
1341
|
# @type RegionId: Integer
|
1386
1342
|
# @param ZoneId: 地区id
|
1387
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1388
1343
|
# @type ZoneId: Integer
|
1389
1344
|
# @param VpcId: 私有网络
|
1390
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1391
1345
|
# @type VpcId: String
|
1392
1346
|
# @param SubnetId: 子网
|
1393
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1394
1347
|
# @type SubnetId: String
|
1395
1348
|
# @param ExpireTime: 过期时间
|
1396
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1397
1349
|
# @type ExpireTime: String
|
1398
1350
|
# @param PayMode: 计费方式
|
1399
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1400
1351
|
# @type PayMode: String
|
1401
1352
|
# @param RenewFlag: 自动续费
|
1402
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1403
1353
|
# @type RenewFlag: Boolean
|
1404
1354
|
# @param InstanceId: 集群id
|
1405
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1406
1355
|
# @type InstanceId: String
|
1407
1356
|
# @param AccessDetails: 访问信息
|
1408
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1409
1357
|
# @type AccessDetails: Array
|
1410
1358
|
|
1411
1359
|
attr_accessor :ID, :InstanceType, :InstanceName, :Status, :StatusDesc, :InstanceStateInfo, :InstanceID, :CreateTime, :Region, :Zone, :RegionDesc, :ZoneDesc, :Tags, :Version, :Charset, :CNNodes, :DNNodes, :RegionId, :ZoneId, :VpcId, :SubnetId, :ExpireTime, :PayMode, :RenewFlag, :InstanceId, :AccessDetails
|
@@ -1527,13 +1475,10 @@ module TencentCloud
|
|
1527
1475
|
# 集群节点信息
|
1528
1476
|
class InstanceNodeGroup < TencentCloud::Common::AbstractModel
|
1529
1477
|
# @param SpecName: 机型
|
1530
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1531
1478
|
# @type SpecName: String
|
1532
1479
|
# @param DataDisk: 磁盘信息
|
1533
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1534
1480
|
# @type DataDisk: :class:`Tencentcloud::Cdwpg.v20201230.models.DiskSpecPlus`
|
1535
1481
|
# @param CvmCount: 机器个数
|
1536
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1537
1482
|
# @type CvmCount: Integer
|
1538
1483
|
|
1539
1484
|
attr_accessor :SpecName, :DataDisk, :CvmCount
|
@@ -1559,28 +1504,20 @@ module TencentCloud
|
|
1559
1504
|
# @param Id: 操作名称,例如“create_instance"、“scaleout_instance”等
|
1560
1505
|
# @type Id: Integer
|
1561
1506
|
# @param InstanceId: 集群ID
|
1562
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1563
1507
|
# @type InstanceId: String
|
1564
1508
|
# @param Action: 操作名称描述,例如“创建”,“修改集群名称”等
|
1565
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1566
1509
|
# @type Action: String
|
1567
1510
|
# @param Status: 状态
|
1568
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1569
1511
|
# @type Status: Integer
|
1570
1512
|
# @param StartTime: 操作开始时间
|
1571
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1572
1513
|
# @type StartTime: String
|
1573
1514
|
# @param EndTime: 操作结束时间
|
1574
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1575
1515
|
# @type EndTime: String
|
1576
1516
|
# @param Context: 操作上下文
|
1577
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1578
1517
|
# @type Context: String
|
1579
1518
|
# @param UpdateTime: 操作更新时间
|
1580
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1581
1519
|
# @type UpdateTime: String
|
1582
1520
|
# @param Uin: 操作UIN
|
1583
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1584
1521
|
# @type Uin: String
|
1585
1522
|
|
1586
1523
|
attr_accessor :Id, :InstanceId, :Action, :Status, :StartTime, :EndTime, :Context, :UpdateTime, :Uin
|
@@ -1613,55 +1550,38 @@ module TencentCloud
|
|
1613
1550
|
# 精简集群信息
|
1614
1551
|
class InstanceSimpleInfoNew < TencentCloud::Common::AbstractModel
|
1615
1552
|
# @param ID: ID
|
1616
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1617
1553
|
# @type ID: Integer
|
1618
1554
|
# @param InstanceId: 集群Id
|
1619
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1620
1555
|
# @type InstanceId: String
|
1621
1556
|
# @param InstanceName: 集群名字
|
1622
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1623
1557
|
# @type InstanceName: String
|
1624
1558
|
# @param Version: 内核版本
|
1625
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1626
1559
|
# @type Version: String
|
1627
1560
|
# @param Region: 地域
|
1628
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1629
1561
|
# @type Region: String
|
1630
1562
|
# @param RegionId: 地域Id
|
1631
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1632
1563
|
# @type RegionId: Integer
|
1633
1564
|
# @param RegionDesc: 地域详情
|
1634
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1635
1565
|
# @type RegionDesc: String
|
1636
1566
|
# @param Zone: 地区
|
1637
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1638
1567
|
# @type Zone: String
|
1639
1568
|
# @param ZoneId: 地区id
|
1640
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1641
1569
|
# @type ZoneId: Integer
|
1642
1570
|
# @param ZoneDesc: 地区详情
|
1643
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1644
1571
|
# @type ZoneDesc: String
|
1645
1572
|
# @param VpcId: 私有网络
|
1646
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1647
1573
|
# @type VpcId: String
|
1648
1574
|
# @param SubnetId: 子网
|
1649
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1650
1575
|
# @type SubnetId: String
|
1651
1576
|
# @param CreateTime: 开始时间
|
1652
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1653
1577
|
# @type CreateTime: String
|
1654
1578
|
# @param ExpireTime: 过期时间
|
1655
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1656
1579
|
# @type ExpireTime: String
|
1657
1580
|
# @param AccessInfo: 访问地址
|
1658
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1659
1581
|
# @type AccessInfo: String
|
1660
1582
|
# @param PayMode: 计费方式
|
1661
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1662
1583
|
# @type PayMode: String
|
1663
1584
|
# @param RenewFlag: 自动续费
|
1664
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1665
1585
|
# @type RenewFlag: Boolean
|
1666
1586
|
|
1667
1587
|
attr_accessor :ID, :InstanceId, :InstanceName, :Version, :Region, :RegionId, :RegionDesc, :Zone, :ZoneId, :ZoneDesc, :VpcId, :SubnetId, :CreateTime, :ExpireTime, :AccessInfo, :PayMode, :RenewFlag
|
@@ -1710,34 +1630,24 @@ module TencentCloud
|
|
1710
1630
|
# 集群状态抽象后的结构体
|
1711
1631
|
class InstanceStateInfo < TencentCloud::Common::AbstractModel
|
1712
1632
|
# @param InstanceState: 集群状态,例如:Serving
|
1713
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1714
1633
|
# @type InstanceState: String
|
1715
1634
|
# @param FlowCreateTime: 集群操作创建时间
|
1716
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1717
1635
|
# @type FlowCreateTime: String
|
1718
1636
|
# @param FlowName: 集群操作名称
|
1719
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1720
1637
|
# @type FlowName: String
|
1721
1638
|
# @param FlowProgress: 集群操作进度
|
1722
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1723
1639
|
# @type FlowProgress: Integer
|
1724
1640
|
# @param InstanceStateDesc: 集群状态描述,例如:运行中
|
1725
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1726
1641
|
# @type InstanceStateDesc: String
|
1727
1642
|
# @param FlowMsg: 集群流程错误信息,例如:“创建失败,资源不足”
|
1728
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1729
1643
|
# @type FlowMsg: String
|
1730
1644
|
# @param ProcessName: 当前步骤的名称,例如:”购买资源中“
|
1731
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1732
1645
|
# @type ProcessName: String
|
1733
1646
|
# @param BackupStatus: 集群是否有备份中任务,有为1,无为0
|
1734
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1735
1647
|
# @type BackupStatus: Integer
|
1736
1648
|
# @param RequestId: 请求id
|
1737
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1738
1649
|
# @type RequestId: String
|
1739
1650
|
# @param BackupOpenStatus: 集群是否有备份中任务,有为1,无为0
|
1740
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1741
1651
|
# @type BackupOpenStatus: Integer
|
1742
1652
|
|
1743
1653
|
attr_accessor :InstanceState, :FlowCreateTime, :FlowName, :FlowProgress, :InstanceStateDesc, :FlowMsg, :ProcessName, :BackupStatus, :RequestId, :BackupOpenStatus
|
@@ -1882,10 +1792,8 @@ module TencentCloud
|
|
1882
1792
|
# ModifyUserHba返回参数结构体
|
1883
1793
|
class ModifyUserHbaResponse < TencentCloud::Common::AbstractModel
|
1884
1794
|
# @param TaskId: 任务id
|
1885
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1886
1795
|
# @type TaskId: Integer
|
1887
1796
|
# @param ErrorMsg: 错误信息
|
1888
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1889
1797
|
# @type ErrorMsg: String
|
1890
1798
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1891
1799
|
# @type RequestId: String
|
@@ -1935,55 +1843,38 @@ module TencentCloud
|
|
1935
1843
|
# 慢查询项目信息
|
1936
1844
|
class NormQueryItem < TencentCloud::Common::AbstractModel
|
1937
1845
|
# @param CallTimes: 调用次数
|
1938
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1939
1846
|
# @type CallTimes: Integer
|
1940
1847
|
# @param SharedReadBlocks: 读共享内存块数
|
1941
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1942
1848
|
# @type SharedReadBlocks: Integer
|
1943
1849
|
# @param SharedWriteBlocks: 写共享内存块数
|
1944
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1945
1850
|
# @type SharedWriteBlocks: Integer
|
1946
1851
|
# @param DatabaseName: 数据库
|
1947
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1948
1852
|
# @type DatabaseName: String
|
1949
1853
|
# @param NormalQuery: 脱敏后语句
|
1950
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1951
1854
|
# @type NormalQuery: String
|
1952
1855
|
# @param MaxElapsedQuery: 执行时间最长的语句
|
1953
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1954
1856
|
# @type MaxElapsedQuery: String
|
1955
1857
|
# @param CostTime: 花费总时间
|
1956
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1957
1858
|
# @type CostTime: Float
|
1958
1859
|
# @param ClientIp: 客户端ip
|
1959
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1960
1860
|
# @type ClientIp: String
|
1961
1861
|
# @param UserName: 用户名
|
1962
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1963
1862
|
# @type UserName: String
|
1964
1863
|
# @param TotalCallTimesPercent: 总次数占比
|
1965
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1966
1864
|
# @type TotalCallTimesPercent: Float
|
1967
1865
|
# @param TotalCostTimePercent: 总耗时占比
|
1968
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1969
1866
|
# @type TotalCostTimePercent: Float
|
1970
1867
|
# @param MinCostTime: 花费最小时间
|
1971
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1972
1868
|
# @type MinCostTime: Float
|
1973
1869
|
# @param MaxCostTime: 花费最大时间
|
1974
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1975
1870
|
# @type MaxCostTime: Float
|
1976
1871
|
# @param FirstTime: 最早一条时间
|
1977
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1978
1872
|
# @type FirstTime: String
|
1979
1873
|
# @param LastTime: 最晚一条时间
|
1980
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1981
1874
|
# @type LastTime: String
|
1982
1875
|
# @param ReadCostTime: 读io总耗时
|
1983
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1984
1876
|
# @type ReadCostTime: Float
|
1985
1877
|
# @param WriteCostTime: 写io总耗时
|
1986
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1987
1878
|
# @type WriteCostTime: Float
|
1988
1879
|
|
1989
1880
|
attr_accessor :CallTimes, :SharedReadBlocks, :SharedWriteBlocks, :DatabaseName, :NormalQuery, :MaxElapsedQuery, :CostTime, :ClientIp, :UserName, :TotalCallTimesPercent, :TotalCostTimePercent, :MinCostTime, :MaxCostTime, :FirstTime, :LastTime, :ReadCostTime, :WriteCostTime
|
@@ -2032,27 +1923,20 @@ module TencentCloud
|
|
2032
1923
|
# ParamDetail 详细
|
2033
1924
|
class ParamDetail < TencentCloud::Common::AbstractModel
|
2034
1925
|
# @param ParamName: 参数名
|
2035
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2036
1926
|
# @type ParamName: String
|
2037
1927
|
# @param DefaultValue: 默认值
|
2038
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2039
1928
|
# @type DefaultValue: String
|
2040
1929
|
# @param NeedRestart: 是否需要重启
|
2041
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2042
1930
|
# @type NeedRestart: Boolean
|
2043
1931
|
# @param RunningValue: 当前运行值
|
2044
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2045
1932
|
# @type RunningValue: String
|
2046
1933
|
# @param ValueRange: 取值范围
|
2047
1934
|
# @type ValueRange: :class:`Tencentcloud::Cdwpg.v20201230.models.ValueRange`
|
2048
1935
|
# @param Unit: 单位
|
2049
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2050
1936
|
# @type Unit: String
|
2051
1937
|
# @param ShortDesc: 英文简介
|
2052
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2053
1938
|
# @type ShortDesc: String
|
2054
1939
|
# @param ParameterName: 参数名
|
2055
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2056
1940
|
# @type ParameterName: String
|
2057
1941
|
|
2058
1942
|
attr_accessor :ParamName, :DefaultValue, :NeedRestart, :RunningValue, :ValueRange, :Unit, :ShortDesc, :ParameterName
|
@@ -2086,16 +1970,12 @@ module TencentCloud
|
|
2086
1970
|
# ParamItem 信息
|
2087
1971
|
class ParamItem < TencentCloud::Common::AbstractModel
|
2088
1972
|
# @param NodeType: 节点类型, cn/dn
|
2089
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2090
1973
|
# @type NodeType: String
|
2091
1974
|
# @param NodeName: 节点名
|
2092
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2093
1975
|
# @type NodeName: String
|
2094
1976
|
# @param TotalCount: 参数个数
|
2095
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2096
1977
|
# @type TotalCount: Integer
|
2097
1978
|
# @param Details: 参数信息
|
2098
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2099
1979
|
# @type Details: Array
|
2100
1980
|
|
2101
1981
|
attr_accessor :NodeType, :NodeName, :TotalCount, :Details
|
@@ -2125,10 +2005,8 @@ module TencentCloud
|
|
2125
2005
|
# Range范围
|
2126
2006
|
class Range < TencentCloud::Common::AbstractModel
|
2127
2007
|
# @param Min: 最小值
|
2128
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2129
2008
|
# @type Min: String
|
2130
2009
|
# @param Max: 最大值
|
2131
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2132
2010
|
# @type Max: String
|
2133
2011
|
|
2134
2012
|
attr_accessor :Min, :Max
|
@@ -2171,7 +2049,6 @@ module TencentCloud
|
|
2171
2049
|
# ResetAccountPassword返回参数结构体
|
2172
2050
|
class ResetAccountPasswordResponse < TencentCloud::Common::AbstractModel
|
2173
2051
|
# @param ErrorMsg: 错误信息
|
2174
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2175
2052
|
# @type ErrorMsg: String
|
2176
2053
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2177
2054
|
# @type RequestId: String
|
@@ -2192,16 +2069,12 @@ module TencentCloud
|
|
2192
2069
|
# 资源信息
|
2193
2070
|
class ResourceInfo < TencentCloud::Common::AbstractModel
|
2194
2071
|
# @param SpecName: 资源名称
|
2195
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2196
2072
|
# @type SpecName: String
|
2197
2073
|
# @param Count: 资源数
|
2198
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2199
2074
|
# @type Count: Integer
|
2200
2075
|
# @param DiskSpec: 磁盘信息
|
2201
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2202
2076
|
# @type DiskSpec: :class:`Tencentcloud::Cdwpg.v20201230.models.CBSSpecInfo`
|
2203
2077
|
# @param Type: 节点类型,cn 或dn
|
2204
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2205
2078
|
# @type Type: String
|
2206
2079
|
|
2207
2080
|
attr_accessor :SpecName, :Count, :DiskSpec, :Type
|
@@ -2332,7 +2205,6 @@ module TencentCloud
|
|
2332
2205
|
# @param FlowId: 流程id
|
2333
2206
|
# @type FlowId: String
|
2334
2207
|
# @param ErrorMsg: 错误信息
|
2335
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2336
2208
|
# @type ErrorMsg: String
|
2337
2209
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2338
2210
|
# @type RequestId: String
|
@@ -2434,52 +2306,36 @@ module TencentCloud
|
|
2434
2306
|
# 集群信息
|
2435
2307
|
class SimpleInstanceInfo < TencentCloud::Common::AbstractModel
|
2436
2308
|
# @param ID: ID
|
2437
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2438
2309
|
# @type ID: Integer
|
2439
2310
|
# @param InstanceId: 集群Id
|
2440
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2441
2311
|
# @type InstanceId: String
|
2442
2312
|
# @param InstanceName: 集群名字
|
2443
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2444
2313
|
# @type InstanceName: String
|
2445
2314
|
# @param Version: 内核版本
|
2446
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2447
2315
|
# @type Version: String
|
2448
2316
|
# @param Region: 地域
|
2449
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2450
2317
|
# @type Region: String
|
2451
2318
|
# @param Zone: 地区
|
2452
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2453
2319
|
# @type Zone: String
|
2454
2320
|
# @param UserVPCID: 私有网络
|
2455
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2456
2321
|
# @type UserVPCID: String
|
2457
2322
|
# @param UserSubnetID: 子网
|
2458
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2459
2323
|
# @type UserSubnetID: String
|
2460
2324
|
# @param CreateTime: 开始时间
|
2461
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2462
2325
|
# @type CreateTime: String
|
2463
2326
|
# @param ExpireTime: 到期时间
|
2464
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2465
2327
|
# @type ExpireTime: String
|
2466
2328
|
# @param AccessInfo: 访问地址
|
2467
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2468
2329
|
# @type AccessInfo: String
|
2469
2330
|
# @param RenewFlag: 自动续费开关,0为不自动续费,1为自动续费
|
2470
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2471
2331
|
# @type RenewFlag: Integer
|
2472
2332
|
# @param ChargeProperties: 计费方式
|
2473
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2474
2333
|
# @type ChargeProperties: :class:`Tencentcloud::Cdwpg.v20201230.models.ChargeProperties`
|
2475
2334
|
# @param Resources: 资源集合
|
2476
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2477
2335
|
# @type Resources: Array
|
2478
2336
|
# @param Tags: 标签列表
|
2479
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2480
2337
|
# @type Tags: Array
|
2481
2338
|
# @param Status: 集群状态
|
2482
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2483
2339
|
# @type Status: Integer
|
2484
2340
|
|
2485
2341
|
attr_accessor :ID, :InstanceId, :InstanceName, :Version, :Region, :Zone, :UserVPCID, :UserSubnetID, :CreateTime, :ExpireTime, :AccessInfo, :RenewFlag, :ChargeProperties, :Resources, :Tags, :Status
|
@@ -2638,25 +2494,18 @@ module TencentCloud
|
|
2638
2494
|
# 升级信息
|
2639
2495
|
class UpgradeItem < TencentCloud::Common::AbstractModel
|
2640
2496
|
# @param TaskName: 任务名称
|
2641
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2642
2497
|
# @type TaskName: String
|
2643
2498
|
# @param SourceVersion: 原有内核版本
|
2644
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2645
2499
|
# @type SourceVersion: String
|
2646
2500
|
# @param TargetVersion: 目标内核版本
|
2647
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2648
2501
|
# @type TargetVersion: String
|
2649
2502
|
# @param CreateTime: 任务创建时间
|
2650
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2651
2503
|
# @type CreateTime: String
|
2652
2504
|
# @param EndTime: 任务结束时间
|
2653
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2654
2505
|
# @type EndTime: String
|
2655
2506
|
# @param Status: 任务完成状态
|
2656
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2657
2507
|
# @type Status: String
|
2658
2508
|
# @param OperateUin: 操作者
|
2659
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2660
2509
|
# @type OperateUin: String
|
2661
2510
|
|
2662
2511
|
attr_accessor :TaskName, :SourceVersion, :TargetVersion, :CreateTime, :EndTime, :Status, :OperateUin
|
@@ -2685,16 +2534,12 @@ module TencentCloud
|
|
2685
2534
|
# ValueRange值
|
2686
2535
|
class ValueRange < TencentCloud::Common::AbstractModel
|
2687
2536
|
# @param Type: 参数类型,可以为 enum,string,section; 其中enum表示枚举,类似: utf8,latin1,gbk; string表示返回的参数值是字符串; section表示返回的参数值是一个取值范围,类似:[4-8]
|
2688
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2689
2537
|
# @type Type: String
|
2690
2538
|
# @param Range: type 取section的时候,返回的参数值
|
2691
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2692
2539
|
# @type Range: :class:`Tencentcloud::Cdwpg.v20201230.models.Range`
|
2693
2540
|
# @param Enum: type 取enum的时候,返回参数值
|
2694
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2695
2541
|
# @type Enum: Array
|
2696
2542
|
# @param String: type 取string的时候,返回的参数值
|
2697
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2698
2543
|
# @type String: String
|
2699
2544
|
|
2700
2545
|
attr_accessor :Type, :Range, :Enum, :String
|
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.
|
4
|
+
version: 3.0.1042
|
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-04-
|
11
|
+
date: 2025-04-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|