tencentcloud-sdk-omics 3.0.1094 → 3.0.1099

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20221128/models.rb +24 -8
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: af4a71301e1df16a3474acd05c0905f081f11c78
4
- data.tar.gz: 606c493b473f4f43deb46b8ce09010e15baf53fa
3
+ metadata.gz: 02efc6037018812d35974f518dd911600ee86fc4
4
+ data.tar.gz: d09689c0692776a9816ab35d8785042851378733
5
5
  SHA512:
6
- metadata.gz: 8eee2b3025452abdac2ae7cc5af3f6128517833ec189ab34276022a0d1a55d1be0f0bb0dd9c1b3b83b18d3bdc097614491877f817acf610307b7aeeb19d500bf
7
- data.tar.gz: 7e0bb551303cd266bd557ea0ba16ce0242f7587aad150199dffde4444ce96451c109190d0349f4af0052c23b09f87d37b1c2b329e08b25227ca12989bf1278c3
6
+ metadata.gz: 3390c886b53c39438326b71d6884486fdf44171892c6cf59df1b3fd9ae79b1f50028ad4ba42d932182f6f79876f6e6d7bedb32bfec8a9e0eb779439d821a22b8
7
+ data.tar.gz: 8a86cf4e9098b0c55fe55129954d59186e273f3130ac76a060101e10aab27569d8b0b17d2898a781c5794cc73123758fcb1ccd11e84dbc8d3ccf2864a9a2abbd
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1094
1
+ 3.0.1099
@@ -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, 5
48
- deprecate :GitInfo=, :none, 2025, 5
47
+ deprecate :GitInfo, :none, 2025, 7
48
+ deprecate :GitInfo=, :none, 2025, 7
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
@@ -139,15 +139,21 @@ module TencentCloud
139
139
  # @type ResourceQuota: :class:`Tencentcloud::Omics.v20221128.models.ResourceQuota`
140
140
  # @param LimitRange: 限制范围。
141
141
  # @type LimitRange: :class:`Tencentcloud::Omics.v20221128.models.LimitRange`
142
+ # @param SystemNodeInstanceType: 系统节点池实例规格。
143
+ # @type SystemNodeInstanceType: String
144
+ # @param SystemNodeCount: 系统节点池实例数量。
145
+ # @type SystemNodeCount: Integer
142
146
 
143
- attr_accessor :Zone, :Type, :ServiceCidr, :ResourceQuota, :LimitRange
147
+ attr_accessor :Zone, :Type, :ServiceCidr, :ResourceQuota, :LimitRange, :SystemNodeInstanceType, :SystemNodeCount
144
148
 
145
- def initialize(zone=nil, type=nil, servicecidr=nil, resourcequota=nil, limitrange=nil)
149
+ def initialize(zone=nil, type=nil, servicecidr=nil, resourcequota=nil, limitrange=nil, systemnodeinstancetype=nil, systemnodecount=nil)
146
150
  @Zone = zone
147
151
  @Type = type
148
152
  @ServiceCidr = servicecidr
149
153
  @ResourceQuota = resourcequota
150
154
  @LimitRange = limitrange
155
+ @SystemNodeInstanceType = systemnodeinstancetype
156
+ @SystemNodeCount = systemnodecount
151
157
  end
152
158
 
153
159
  def deserialize(params)
@@ -162,6 +168,8 @@ module TencentCloud
162
168
  @LimitRange = LimitRange.new
163
169
  @LimitRange.deserialize(params['LimitRange'])
164
170
  end
171
+ @SystemNodeInstanceType = params['SystemNodeInstanceType']
172
+ @SystemNodeCount = params['SystemNodeCount']
165
173
  end
166
174
  end
167
175
 
@@ -1391,10 +1399,14 @@ module TencentCloud
1391
1399
  # @type CVMId: String
1392
1400
  # @param EKSId: 弹性容器集群ID。
1393
1401
  # @type EKSId: String
1402
+ # @param TKEId: TKE容器集群ID。
1403
+ # @type TKEId: String
1404
+ # @param TKESystemNodePoolId: TKE系统节点池ID。
1405
+ # @type TKESystemNodePoolId: String
1394
1406
 
1395
- attr_accessor :VPCId, :SubnetId, :SecurityGroupId, :TDSQLCId, :CFSId, :CFSStorageType, :CVMId, :EKSId
1407
+ attr_accessor :VPCId, :SubnetId, :SecurityGroupId, :TDSQLCId, :CFSId, :CFSStorageType, :CVMId, :EKSId, :TKEId, :TKESystemNodePoolId
1396
1408
 
1397
- def initialize(vpcid=nil, subnetid=nil, securitygroupid=nil, tdsqlcid=nil, cfsid=nil, cfsstoragetype=nil, cvmid=nil, eksid=nil)
1409
+ def initialize(vpcid=nil, subnetid=nil, securitygroupid=nil, tdsqlcid=nil, cfsid=nil, cfsstoragetype=nil, cvmid=nil, eksid=nil, tkeid=nil, tkesystemnodepoolid=nil)
1398
1410
  @VPCId = vpcid
1399
1411
  @SubnetId = subnetid
1400
1412
  @SecurityGroupId = securitygroupid
@@ -1403,6 +1415,8 @@ module TencentCloud
1403
1415
  @CFSStorageType = cfsstoragetype
1404
1416
  @CVMId = cvmid
1405
1417
  @EKSId = eksid
1418
+ @TKEId = tkeid
1419
+ @TKESystemNodePoolId = tkesystemnodepoolid
1406
1420
  end
1407
1421
 
1408
1422
  def deserialize(params)
@@ -1414,6 +1428,8 @@ module TencentCloud
1414
1428
  @CFSStorageType = params['CFSStorageType']
1415
1429
  @CVMId = params['CVMId']
1416
1430
  @EKSId = params['EKSId']
1431
+ @TKEId = params['TKEId']
1432
+ @TKESystemNodePoolId = params['TKESystemNodePoolId']
1417
1433
  end
1418
1434
  end
1419
1435
 
@@ -1536,8 +1552,8 @@ module TencentCloud
1536
1552
 
1537
1553
  attr_accessor :RunUuid, :ProjectId, :ApplicationId, :RunGroupId, :EnvironmentId, :UserDefinedId, :TableId, :TableRowUuid, :Status, :Input, :Option, :ExecutionTime, :Cache, :ErrorMessage, :CreateTime, :UpdateTime
1538
1554
  extend Gem::Deprecate
1539
- deprecate :Option, :none, 2025, 5
1540
- deprecate :Option=, :none, 2025, 5
1555
+ deprecate :Option, :none, 2025, 7
1556
+ deprecate :Option=, :none, 2025, 7
1541
1557
 
1542
1558
  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)
1543
1559
  @RunUuid = runuuid
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.1094
4
+ version: 3.0.1099
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-07-05 00:00:00.000000000 Z
11
+ date: 2025-07-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common