tencentcloud-sdk-omics 3.0.1100 → 3.0.1119
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/v20221128/models.rb +72 -12
- 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: 52f90fb9c6b6cce365b0e2edbb5603ddb09b4c98
|
4
|
+
data.tar.gz: 1be2cdf1734307e74ef32da3949bd799b69ee180
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d63d80a27423b46a72807f90c1340b17cd152ff6670abe71f4a275b79160e527bd82d6ff2b4d5014ef8092ff9d417ea3a66d4f51802b9884f2694e6ffc314b6
|
7
|
+
data.tar.gz: 8df41945e0ff5fdba6dcb35829a70469d8910d9901c670def5c63f2ddce2a32d43fe4c0c08141133be92717442d7ecd2ab043fc4192ae7d5f75f8157eae5f58e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1119
|
data/lib/v20221128/models.rb
CHANGED
@@ -44,8 +44,8 @@ module TencentCloud
|
|
44
44
|
|
45
45
|
attr_accessor :Type, :ApplicationVersionId, :Name, :Description, :Entrypoint, :CreateTime, :CreatorName, :CreatorId, :GitInfo, :GitSource, :CosSource
|
46
46
|
extend Gem::Deprecate
|
47
|
-
deprecate :GitInfo, :none, 2025,
|
48
|
-
deprecate :GitInfo=, :none, 2025,
|
47
|
+
deprecate :GitInfo, :none, 2025, 8
|
48
|
+
deprecate :GitInfo=, :none, 2025, 8
|
49
49
|
|
50
50
|
def initialize(type=nil, applicationversionid=nil, name=nil, description=nil, entrypoint=nil, createtime=nil, creatorname=nil, creatorid=nil, gitinfo=nil, gitsource=nil, cossource=nil)
|
51
51
|
@Type = type
|
@@ -143,10 +143,12 @@ module TencentCloud
|
|
143
143
|
# @type SystemNodeInstanceType: String
|
144
144
|
# @param SystemNodeCount: 系统节点池实例数量。
|
145
145
|
# @type SystemNodeCount: Integer
|
146
|
+
# @param AutoUpgradeClusterLevel: 纳管环境自动升配
|
147
|
+
# @type AutoUpgradeClusterLevel: Boolean
|
146
148
|
|
147
|
-
attr_accessor :Zone, :Type, :ServiceCidr, :ResourceQuota, :LimitRange, :SystemNodeInstanceType, :SystemNodeCount
|
149
|
+
attr_accessor :Zone, :Type, :ServiceCidr, :ResourceQuota, :LimitRange, :SystemNodeInstanceType, :SystemNodeCount, :AutoUpgradeClusterLevel
|
148
150
|
|
149
|
-
def initialize(zone=nil, type=nil, servicecidr=nil, resourcequota=nil, limitrange=nil, systemnodeinstancetype=nil, systemnodecount=nil)
|
151
|
+
def initialize(zone=nil, type=nil, servicecidr=nil, resourcequota=nil, limitrange=nil, systemnodeinstancetype=nil, systemnodecount=nil, autoupgradeclusterlevel=nil)
|
150
152
|
@Zone = zone
|
151
153
|
@Type = type
|
152
154
|
@ServiceCidr = servicecidr
|
@@ -154,6 +156,7 @@ module TencentCloud
|
|
154
156
|
@LimitRange = limitrange
|
155
157
|
@SystemNodeInstanceType = systemnodeinstancetype
|
156
158
|
@SystemNodeCount = systemnodecount
|
159
|
+
@AutoUpgradeClusterLevel = autoupgradeclusterlevel
|
157
160
|
end
|
158
161
|
|
159
162
|
def deserialize(params)
|
@@ -170,6 +173,7 @@ module TencentCloud
|
|
170
173
|
end
|
171
174
|
@SystemNodeInstanceType = params['SystemNodeInstanceType']
|
172
175
|
@SystemNodeCount = params['SystemNodeCount']
|
176
|
+
@AutoUpgradeClusterLevel = params['AutoUpgradeClusterLevel']
|
173
177
|
end
|
174
178
|
end
|
175
179
|
|
@@ -272,16 +276,22 @@ module TencentCloud
|
|
272
276
|
# @type Description: String
|
273
277
|
# @param Capacity: 缓存卷大小(GB),Turbo系列需要指定。
|
274
278
|
# @type Capacity: Integer
|
279
|
+
# @param EnableAutoScaleUp: 是否开启默认扩容,仅turbo类型文件存储支持
|
280
|
+
# @type EnableAutoScaleUp: Boolean
|
281
|
+
# @param MetaType: turbo文件系统元数据属性,basic:标准型元数据;enhanced:增强型元数据
|
282
|
+
# @type MetaType: String
|
275
283
|
|
276
|
-
attr_accessor :EnvironmentId, :Name, :Type, :Spec, :Description, :Capacity
|
284
|
+
attr_accessor :EnvironmentId, :Name, :Type, :Spec, :Description, :Capacity, :EnableAutoScaleUp, :MetaType
|
277
285
|
|
278
|
-
def initialize(environmentid=nil, name=nil, type=nil, spec=nil, description=nil, capacity=nil)
|
286
|
+
def initialize(environmentid=nil, name=nil, type=nil, spec=nil, description=nil, capacity=nil, enableautoscaleup=nil, metatype=nil)
|
279
287
|
@EnvironmentId = environmentid
|
280
288
|
@Name = name
|
281
289
|
@Type = type
|
282
290
|
@Spec = spec
|
283
291
|
@Description = description
|
284
292
|
@Capacity = capacity
|
293
|
+
@EnableAutoScaleUp = enableautoscaleup
|
294
|
+
@MetaType = metatype
|
285
295
|
end
|
286
296
|
|
287
297
|
def deserialize(params)
|
@@ -291,6 +301,8 @@ module TencentCloud
|
|
291
301
|
@Spec = params['Spec']
|
292
302
|
@Description = params['Description']
|
293
303
|
@Capacity = params['Capacity']
|
304
|
+
@EnableAutoScaleUp = params['EnableAutoScaleUp']
|
305
|
+
@MetaType = params['MetaType']
|
294
306
|
end
|
295
307
|
end
|
296
308
|
|
@@ -1552,8 +1564,8 @@ module TencentCloud
|
|
1552
1564
|
|
1553
1565
|
attr_accessor :RunUuid, :ProjectId, :ApplicationId, :RunGroupId, :EnvironmentId, :UserDefinedId, :TableId, :TableRowUuid, :Status, :Input, :Option, :ExecutionTime, :Cache, :ErrorMessage, :CreateTime, :UpdateTime
|
1554
1566
|
extend Gem::Deprecate
|
1555
|
-
deprecate :Option, :none, 2025,
|
1556
|
-
deprecate :Option=, :none, 2025,
|
1567
|
+
deprecate :Option, :none, 2025, 8
|
1568
|
+
deprecate :Option=, :none, 2025, 8
|
1557
1569
|
|
1558
1570
|
def initialize(runuuid=nil, projectid=nil, applicationid=nil, rungroupid=nil, environmentid=nil, userdefinedid=nil, tableid=nil, tablerowuuid=nil, status=nil, input=nil, option=nil, executiontime=nil, cache=nil, errormessage=nil, createtime=nil, updatetime=nil)
|
1559
1571
|
@RunUuid = runuuid
|
@@ -2164,19 +2176,27 @@ module TencentCloud
|
|
2164
2176
|
# - turbo标准型起售40TiB,即40960GiB;扩容步长20TiB,即20480 GiB。
|
2165
2177
|
# - turbo性能型起售20TiB,即20480 GiB;扩容步长10TiB,即10240 GiB。
|
2166
2178
|
# @type Capacity: Integer
|
2179
|
+
# @param EnableAutoScaleUp: 是否开启默认扩容,仅turbo类型文件存储支持
|
2180
|
+
# @type EnableAutoScaleUp: Boolean
|
2181
|
+
# @param MetaType: turbo文件系统元数据属性,basic:标准型元数据;enhanced:增强型元数据
|
2182
|
+
# @type MetaType: String
|
2167
2183
|
|
2168
|
-
attr_accessor :StorageType, :Zone, :Capacity
|
2184
|
+
attr_accessor :StorageType, :Zone, :Capacity, :EnableAutoScaleUp, :MetaType
|
2169
2185
|
|
2170
|
-
def initialize(storagetype=nil, zone=nil, capacity=nil)
|
2186
|
+
def initialize(storagetype=nil, zone=nil, capacity=nil, enableautoscaleup=nil, metatype=nil)
|
2171
2187
|
@StorageType = storagetype
|
2172
2188
|
@Zone = zone
|
2173
2189
|
@Capacity = capacity
|
2190
|
+
@EnableAutoScaleUp = enableautoscaleup
|
2191
|
+
@MetaType = metatype
|
2174
2192
|
end
|
2175
2193
|
|
2176
2194
|
def deserialize(params)
|
2177
2195
|
@StorageType = params['StorageType']
|
2178
2196
|
@Zone = params['Zone']
|
2179
2197
|
@Capacity = params['Capacity']
|
2198
|
+
@EnableAutoScaleUp = params['EnableAutoScaleUp']
|
2199
|
+
@MetaType = params['MetaType']
|
2180
2200
|
end
|
2181
2201
|
end
|
2182
2202
|
|
@@ -2372,10 +2392,16 @@ module TencentCloud
|
|
2372
2392
|
# @type IsDefault: Boolean
|
2373
2393
|
# @param Status: 状态。
|
2374
2394
|
# @type Status: String
|
2395
|
+
# @param AutoScaleUpRule: turbo自动扩容策略
|
2396
|
+
# @type AutoScaleUpRule: :class:`Tencentcloud::Omics.v20221128.models.VolumeAutoScaleUpRule`
|
2397
|
+
# @param MetaType: turbo元数据属性
|
2398
|
+
# @type MetaType: String
|
2399
|
+
# @param Zone: 可用区
|
2400
|
+
# @type Zone: String
|
2375
2401
|
|
2376
|
-
attr_accessor :VolumeId, :Name, :Description, :EnvironmentId, :Type, :Spec, :Capacity, :Usage, :BandwidthLimit, :DefaultMountPath, :IsDefault, :Status
|
2402
|
+
attr_accessor :VolumeId, :Name, :Description, :EnvironmentId, :Type, :Spec, :Capacity, :Usage, :BandwidthLimit, :DefaultMountPath, :IsDefault, :Status, :AutoScaleUpRule, :MetaType, :Zone
|
2377
2403
|
|
2378
|
-
def initialize(volumeid=nil, name=nil, description=nil, environmentid=nil, type=nil, spec=nil, capacity=nil, usage=nil, bandwidthlimit=nil, defaultmountpath=nil, isdefault=nil, status=nil)
|
2404
|
+
def initialize(volumeid=nil, name=nil, description=nil, environmentid=nil, type=nil, spec=nil, capacity=nil, usage=nil, bandwidthlimit=nil, defaultmountpath=nil, isdefault=nil, status=nil, autoscaleuprule=nil, metatype=nil, zone=nil)
|
2379
2405
|
@VolumeId = volumeid
|
2380
2406
|
@Name = name
|
2381
2407
|
@Description = description
|
@@ -2388,6 +2414,9 @@ module TencentCloud
|
|
2388
2414
|
@DefaultMountPath = defaultmountpath
|
2389
2415
|
@IsDefault = isdefault
|
2390
2416
|
@Status = status
|
2417
|
+
@AutoScaleUpRule = autoscaleuprule
|
2418
|
+
@MetaType = metatype
|
2419
|
+
@Zone = zone
|
2391
2420
|
end
|
2392
2421
|
|
2393
2422
|
def deserialize(params)
|
@@ -2403,6 +2432,37 @@ module TencentCloud
|
|
2403
2432
|
@DefaultMountPath = params['DefaultMountPath']
|
2404
2433
|
@IsDefault = params['IsDefault']
|
2405
2434
|
@Status = params['Status']
|
2435
|
+
unless params['AutoScaleUpRule'].nil?
|
2436
|
+
@AutoScaleUpRule = VolumeAutoScaleUpRule.new
|
2437
|
+
@AutoScaleUpRule.deserialize(params['AutoScaleUpRule'])
|
2438
|
+
end
|
2439
|
+
@MetaType = params['MetaType']
|
2440
|
+
@Zone = params['Zone']
|
2441
|
+
end
|
2442
|
+
end
|
2443
|
+
|
2444
|
+
# 缓存卷自动扩容策略
|
2445
|
+
class VolumeAutoScaleUpRule < TencentCloud::Common::AbstractModel
|
2446
|
+
# @param Status: 自动扩容策略开启,关闭
|
2447
|
+
# 示例值:open,close
|
2448
|
+
# @type Status: String
|
2449
|
+
# @param ScaleThreshold: 集群用量占比,到达这个值后开始扩容,范围[10-90]
|
2450
|
+
# @type ScaleThreshold: Integer
|
2451
|
+
# @param TargetThreshold: 扩容后使用量跟集群总量比例,范围[10-90]
|
2452
|
+
# @type TargetThreshold: Integer
|
2453
|
+
|
2454
|
+
attr_accessor :Status, :ScaleThreshold, :TargetThreshold
|
2455
|
+
|
2456
|
+
def initialize(status=nil, scalethreshold=nil, targetthreshold=nil)
|
2457
|
+
@Status = status
|
2458
|
+
@ScaleThreshold = scalethreshold
|
2459
|
+
@TargetThreshold = targetthreshold
|
2460
|
+
end
|
2461
|
+
|
2462
|
+
def deserialize(params)
|
2463
|
+
@Status = params['Status']
|
2464
|
+
@ScaleThreshold = params['ScaleThreshold']
|
2465
|
+
@TargetThreshold = params['TargetThreshold']
|
2406
2466
|
end
|
2407
2467
|
end
|
2408
2468
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-omics
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1119
|
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-
|
11
|
+
date: 2025-08-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|