tencentcloud-sdk-cdb 1.0.240 → 1.0.241
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/v20170320/client.rb +1 -1
- data/lib/v20170320/models.rb +35 -10
- 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: 031c00fa8757e53caab3be37d12e810bacdbf386
|
4
|
+
data.tar.gz: 7c75327409328c965f0ab69daddd90db41afd9ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80925113095efdeabe858e4053ec588ed77e94936d19bec7d38a036a70c6bcb727570d7e4c7afca28c40ed7c04975b942682fbbc0efa07badf59921e40aa4637
|
7
|
+
data.tar.gz: b99639ef6df3307563d8453a317b5e8626b56a8b5e8f77db751eb387cf146a9d63e9e8425befb224c2643c5b544dcdbdd1c68c01acb62342d7da81395b6686fd
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.241
|
data/lib/v20170320/client.rb
CHANGED
@@ -1519,7 +1519,7 @@ module TencentCloud
|
|
1519
1519
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1520
1520
|
end
|
1521
1521
|
|
1522
|
-
# 该接口(DescribeParamTemplates
|
1522
|
+
# 该接口(DescribeParamTemplates)查询参数模板列表,全地域公共参数Region均为ap-guangzhou。
|
1523
1523
|
|
1524
1524
|
# @param request: Request instance for DescribeParamTemplates.
|
1525
1525
|
# @type request: :class:`Tencentcloud::cdb::V20170320::DescribeParamTemplatesRequest`
|
data/lib/v20170320/models.rb
CHANGED
@@ -1729,15 +1729,18 @@ module TencentCloud
|
|
1729
1729
|
# @type TemplateId: Integer
|
1730
1730
|
# @param ParamList: 参数列表。
|
1731
1731
|
# @type ParamList: Array
|
1732
|
+
# @param TemplateType: 默认参数模板类型。支持值包括:"HIGH_STABILITY" - 高稳定模版,"HIGH_PERFORMANCE" - 高性能模版。
|
1733
|
+
# @type TemplateType: String
|
1732
1734
|
|
1733
|
-
attr_accessor :Name, :Description, :EngineVersion, :TemplateId, :ParamList
|
1735
|
+
attr_accessor :Name, :Description, :EngineVersion, :TemplateId, :ParamList, :TemplateType
|
1734
1736
|
|
1735
|
-
def initialize(name=nil, description=nil, engineversion=nil, templateid=nil, paramlist=nil)
|
1737
|
+
def initialize(name=nil, description=nil, engineversion=nil, templateid=nil, paramlist=nil, templatetype=nil)
|
1736
1738
|
@Name = name
|
1737
1739
|
@Description = description
|
1738
1740
|
@EngineVersion = engineversion
|
1739
1741
|
@TemplateId = templateid
|
1740
1742
|
@ParamList = paramlist
|
1743
|
+
@TemplateType = templatetype
|
1741
1744
|
end
|
1742
1745
|
|
1743
1746
|
def deserialize(params)
|
@@ -1753,6 +1756,7 @@ module TencentCloud
|
|
1753
1756
|
@ParamList << parameter_tmp
|
1754
1757
|
end
|
1755
1758
|
end
|
1759
|
+
@TemplateType = params['TemplateType']
|
1756
1760
|
end
|
1757
1761
|
end
|
1758
1762
|
|
@@ -4399,18 +4403,21 @@ module TencentCloud
|
|
4399
4403
|
# @type Items: Array
|
4400
4404
|
# @param Description: 参数模板描述
|
4401
4405
|
# @type Description: String
|
4406
|
+
# @param TemplateType: 参数模板类型。支持值包括:"HIGH_STABILITY" - 高稳定模版,"HIGH_PERFORMANCE" - 高性能模版。
|
4407
|
+
# @type TemplateType: String
|
4402
4408
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
4403
4409
|
# @type RequestId: String
|
4404
4410
|
|
4405
|
-
attr_accessor :TemplateId, :Name, :EngineVersion, :TotalCount, :Items, :Description, :RequestId
|
4411
|
+
attr_accessor :TemplateId, :Name, :EngineVersion, :TotalCount, :Items, :Description, :TemplateType, :RequestId
|
4406
4412
|
|
4407
|
-
def initialize(templateid=nil, name=nil, engineversion=nil, totalcount=nil, items=nil, description=nil, requestid=nil)
|
4413
|
+
def initialize(templateid=nil, name=nil, engineversion=nil, totalcount=nil, items=nil, description=nil, templatetype=nil, requestid=nil)
|
4408
4414
|
@TemplateId = templateid
|
4409
4415
|
@Name = name
|
4410
4416
|
@EngineVersion = engineversion
|
4411
4417
|
@TotalCount = totalcount
|
4412
4418
|
@Items = items
|
4413
4419
|
@Description = description
|
4420
|
+
@TemplateType = templatetype
|
4414
4421
|
@RequestId = requestid
|
4415
4422
|
end
|
4416
4423
|
|
@@ -4428,18 +4435,24 @@ module TencentCloud
|
|
4428
4435
|
end
|
4429
4436
|
end
|
4430
4437
|
@Description = params['Description']
|
4438
|
+
@TemplateType = params['TemplateType']
|
4431
4439
|
@RequestId = params['RequestId']
|
4432
4440
|
end
|
4433
4441
|
end
|
4434
4442
|
|
4435
4443
|
# DescribeParamTemplates请求参数结构体
|
4436
4444
|
class DescribeParamTemplatesRequest < TencentCloud::Common::AbstractModel
|
4445
|
+
# @param EngineVersions: 引擎版本,缺省则查询所有
|
4446
|
+
# @type EngineVersions: Array
|
4437
4447
|
|
4448
|
+
attr_accessor :EngineVersions
|
4438
4449
|
|
4439
|
-
def initialize()
|
4450
|
+
def initialize(engineversions=nil)
|
4451
|
+
@EngineVersions = engineversions
|
4440
4452
|
end
|
4441
4453
|
|
4442
4454
|
def deserialize(params)
|
4455
|
+
@EngineVersions = params['EngineVersions']
|
4443
4456
|
end
|
4444
4457
|
end
|
4445
4458
|
|
@@ -7307,14 +7320,17 @@ module TencentCloud
|
|
7307
7320
|
# @type Description: String
|
7308
7321
|
# @param EngineVersion: 实例引擎版本
|
7309
7322
|
# @type EngineVersion: String
|
7323
|
+
# @param TemplateType: 参数模板类型
|
7324
|
+
# @type TemplateType: String
|
7310
7325
|
|
7311
|
-
attr_accessor :TemplateId, :Name, :Description, :EngineVersion
|
7326
|
+
attr_accessor :TemplateId, :Name, :Description, :EngineVersion, :TemplateType
|
7312
7327
|
|
7313
|
-
def initialize(templateid=nil, name=nil, description=nil, engineversion=nil)
|
7328
|
+
def initialize(templateid=nil, name=nil, description=nil, engineversion=nil, templatetype=nil)
|
7314
7329
|
@TemplateId = templateid
|
7315
7330
|
@Name = name
|
7316
7331
|
@Description = description
|
7317
7332
|
@EngineVersion = engineversion
|
7333
|
+
@TemplateType = templatetype
|
7318
7334
|
end
|
7319
7335
|
|
7320
7336
|
def deserialize(params)
|
@@ -7322,6 +7338,7 @@ module TencentCloud
|
|
7322
7338
|
@Name = params['Name']
|
7323
7339
|
@Description = params['Description']
|
7324
7340
|
@EngineVersion = params['EngineVersion']
|
7341
|
+
@TemplateType = params['TemplateType']
|
7325
7342
|
end
|
7326
7343
|
end
|
7327
7344
|
|
@@ -7349,7 +7366,7 @@ module TencentCloud
|
|
7349
7366
|
class ParameterDetail < TencentCloud::Common::AbstractModel
|
7350
7367
|
# @param Name: 参数名称
|
7351
7368
|
# @type Name: String
|
7352
|
-
# @param ParamType:
|
7369
|
+
# @param ParamType: 参数类型:integer,enum,float,string,func
|
7353
7370
|
# @type ParamType: String
|
7354
7371
|
# @param Default: 参数默认值
|
7355
7372
|
# @type Default: String
|
@@ -7365,10 +7382,14 @@ module TencentCloud
|
|
7365
7382
|
# @type Min: Integer
|
7366
7383
|
# @param EnumValue: 参数的可选枚举值。如果为非枚举参数,则为空
|
7367
7384
|
# @type EnumValue: Array
|
7385
|
+
# @param MaxFunc: 参数是公式类型时,该字段有效,表示公式类型最大值
|
7386
|
+
# @type MaxFunc: String
|
7387
|
+
# @param MinFunc: 参数是公式类型时,该字段有效,表示公式类型最小值
|
7388
|
+
# @type MinFunc: String
|
7368
7389
|
|
7369
|
-
attr_accessor :Name, :ParamType, :Default, :Description, :CurrentValue, :NeedReboot, :Max, :Min, :EnumValue
|
7390
|
+
attr_accessor :Name, :ParamType, :Default, :Description, :CurrentValue, :NeedReboot, :Max, :Min, :EnumValue, :MaxFunc, :MinFunc
|
7370
7391
|
|
7371
|
-
def initialize(name=nil, paramtype=nil, default=nil, description=nil, currentvalue=nil, needreboot=nil, max=nil, min=nil, enumvalue=nil)
|
7392
|
+
def initialize(name=nil, paramtype=nil, default=nil, description=nil, currentvalue=nil, needreboot=nil, max=nil, min=nil, enumvalue=nil, maxfunc=nil, minfunc=nil)
|
7372
7393
|
@Name = name
|
7373
7394
|
@ParamType = paramtype
|
7374
7395
|
@Default = default
|
@@ -7378,6 +7399,8 @@ module TencentCloud
|
|
7378
7399
|
@Max = max
|
7379
7400
|
@Min = min
|
7380
7401
|
@EnumValue = enumvalue
|
7402
|
+
@MaxFunc = maxfunc
|
7403
|
+
@MinFunc = minfunc
|
7381
7404
|
end
|
7382
7405
|
|
7383
7406
|
def deserialize(params)
|
@@ -7390,6 +7413,8 @@ module TencentCloud
|
|
7390
7413
|
@Max = params['Max']
|
7391
7414
|
@Min = params['Min']
|
7392
7415
|
@EnumValue = params['EnumValue']
|
7416
|
+
@MaxFunc = params['MaxFunc']
|
7417
|
+
@MinFunc = params['MinFunc']
|
7393
7418
|
end
|
7394
7419
|
end
|
7395
7420
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cdb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.241
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-01-
|
11
|
+
date: 2022-01-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|