tencentcloud-sdk-omics 3.0.700 → 3.0.701
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 +108 -10
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e1438aaf1db816cb5e28c4aad9788e4f8e09a4a
|
4
|
+
data.tar.gz: b4ddb689f8bf392cf75a6809f259fb6dcb9ef092
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a3195bd84bd7359aa2cbad26913cde6a01477c89376ce311e1c54673688ac37814ceb7902321676a512050cd07cf70eeb839db7161801f7e819219c99e5b123
|
7
|
+
data.tar.gz: 701f182dea525ab323cfce6c3d4a913b09247c6557b0f5245d6c94e8f4dcdca1748cb14098b1bc38674f150c9973711ebef825c7145c2c8e0248bf54576db641
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.701
|
data/lib/v20221128/models.rb
CHANGED
@@ -128,17 +128,31 @@ module TencentCloud
|
|
128
128
|
# @param Type: 计算集群类型,取值范围:
|
129
129
|
# - KUBERNETES
|
130
130
|
# @type Type: String
|
131
|
+
# @param ResourceQuota: 资源配额。
|
132
|
+
# @type ResourceQuota: :class:`Tencentcloud::Omics.v20221128.models.ResourceQuota`
|
133
|
+
# @param LimitRange: 限制范围。
|
134
|
+
# @type LimitRange: :class:`Tencentcloud::Omics.v20221128.models.LimitRange`
|
131
135
|
|
132
|
-
attr_accessor :Zone, :Type
|
136
|
+
attr_accessor :Zone, :Type, :ResourceQuota, :LimitRange
|
133
137
|
|
134
|
-
def initialize(zone=nil, type=nil)
|
138
|
+
def initialize(zone=nil, type=nil, resourcequota=nil, limitrange=nil)
|
135
139
|
@Zone = zone
|
136
140
|
@Type = type
|
141
|
+
@ResourceQuota = resourcequota
|
142
|
+
@LimitRange = limitrange
|
137
143
|
end
|
138
144
|
|
139
145
|
def deserialize(params)
|
140
146
|
@Zone = params['Zone']
|
141
147
|
@Type = params['Type']
|
148
|
+
unless params['ResourceQuota'].nil?
|
149
|
+
@ResourceQuota = ResourceQuota.new
|
150
|
+
@ResourceQuota.deserialize(params['ResourceQuota'])
|
151
|
+
end
|
152
|
+
unless params['LimitRange'].nil?
|
153
|
+
@LimitRange = LimitRange.new
|
154
|
+
@LimitRange.deserialize(params['LimitRange'])
|
155
|
+
end
|
142
156
|
end
|
143
157
|
end
|
144
158
|
|
@@ -150,13 +164,16 @@ module TencentCloud
|
|
150
164
|
# @type Config: :class:`Tencentcloud::Omics.v20221128.models.EnvironmentConfig`
|
151
165
|
# @param Description: 环境描述。
|
152
166
|
# @type Description: String
|
167
|
+
# @param IsDefault: 是否为默认环境。
|
168
|
+
# @type IsDefault: Boolean
|
153
169
|
|
154
|
-
attr_accessor :Name, :Config, :Description
|
170
|
+
attr_accessor :Name, :Config, :Description, :IsDefault
|
155
171
|
|
156
|
-
def initialize(name=nil, config=nil, description=nil)
|
172
|
+
def initialize(name=nil, config=nil, description=nil, isdefault=nil)
|
157
173
|
@Name = name
|
158
174
|
@Config = config
|
159
175
|
@Description = description
|
176
|
+
@IsDefault = isdefault
|
160
177
|
end
|
161
178
|
|
162
179
|
def deserialize(params)
|
@@ -166,6 +183,7 @@ module TencentCloud
|
|
166
183
|
@Config.deserialize(params['Config'])
|
167
184
|
end
|
168
185
|
@Description = params['Description']
|
186
|
+
@IsDefault = params['IsDefault']
|
169
187
|
end
|
170
188
|
end
|
171
189
|
|
@@ -672,15 +690,18 @@ module TencentCloud
|
|
672
690
|
# @type StorageOption: :class:`Tencentcloud::Omics.v20221128.models.StorageOption`
|
673
691
|
# @param CVMOption: 云服务器配置。
|
674
692
|
# @type CVMOption: :class:`Tencentcloud::Omics.v20221128.models.CVMOption`
|
693
|
+
# @param SecurityGroupOption: 安全组配置。
|
694
|
+
# @type SecurityGroupOption: :class:`Tencentcloud::Omics.v20221128.models.SecurityGroupOption`
|
675
695
|
|
676
|
-
attr_accessor :VPCOption, :ClusterOption, :DatabaseOption, :StorageOption, :CVMOption
|
696
|
+
attr_accessor :VPCOption, :ClusterOption, :DatabaseOption, :StorageOption, :CVMOption, :SecurityGroupOption
|
677
697
|
|
678
|
-
def initialize(vpcoption=nil, clusteroption=nil, databaseoption=nil, storageoption=nil, cvmoption=nil)
|
698
|
+
def initialize(vpcoption=nil, clusteroption=nil, databaseoption=nil, storageoption=nil, cvmoption=nil, securitygroupoption=nil)
|
679
699
|
@VPCOption = vpcoption
|
680
700
|
@ClusterOption = clusteroption
|
681
701
|
@DatabaseOption = databaseoption
|
682
702
|
@StorageOption = storageoption
|
683
703
|
@CVMOption = cvmoption
|
704
|
+
@SecurityGroupOption = securitygroupoption
|
684
705
|
end
|
685
706
|
|
686
707
|
def deserialize(params)
|
@@ -704,6 +725,10 @@ module TencentCloud
|
|
704
725
|
@CVMOption = CVMOption.new
|
705
726
|
@CVMOption.deserialize(params['CVMOption'])
|
706
727
|
end
|
728
|
+
unless params['SecurityGroupOption'].nil?
|
729
|
+
@SecurityGroupOption = SecurityGroupOption.new
|
730
|
+
@SecurityGroupOption.deserialize(params['SecurityGroupOption'])
|
731
|
+
end
|
707
732
|
end
|
708
733
|
end
|
709
734
|
|
@@ -992,6 +1017,28 @@ module TencentCloud
|
|
992
1017
|
end
|
993
1018
|
end
|
994
1019
|
|
1020
|
+
# 资源限制范围。
|
1021
|
+
class LimitRange < TencentCloud::Common::AbstractModel
|
1022
|
+
# @param MaxCPU: 最大CPU设置
|
1023
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1024
|
+
# @type MaxCPU: String
|
1025
|
+
# @param MaxMemory: 最大内存设置(单位:Mi,Gi,Ti,M,G,T)
|
1026
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1027
|
+
# @type MaxMemory: String
|
1028
|
+
|
1029
|
+
attr_accessor :MaxCPU, :MaxMemory
|
1030
|
+
|
1031
|
+
def initialize(maxcpu=nil, maxmemory=nil)
|
1032
|
+
@MaxCPU = maxcpu
|
1033
|
+
@MaxMemory = maxmemory
|
1034
|
+
end
|
1035
|
+
|
1036
|
+
def deserialize(params)
|
1037
|
+
@MaxCPU = params['MaxCPU']
|
1038
|
+
@MaxMemory = params['MaxMemory']
|
1039
|
+
end
|
1040
|
+
end
|
1041
|
+
|
995
1042
|
# Nextflow选项。
|
996
1043
|
class NFOption < TencentCloud::Common::AbstractModel
|
997
1044
|
# @param Config: Config。
|
@@ -1080,6 +1127,33 @@ module TencentCloud
|
|
1080
1127
|
end
|
1081
1128
|
end
|
1082
1129
|
|
1130
|
+
# 资源配额。
|
1131
|
+
class ResourceQuota < TencentCloud::Common::AbstractModel
|
1132
|
+
# @param CPULimit: CPU Limit设置。
|
1133
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1134
|
+
# @type CPULimit: String
|
1135
|
+
# @param MemoryLimit: 内存Limit设置(单位:Mi,Gi,Ti,M,G,T)
|
1136
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1137
|
+
# @type MemoryLimit: String
|
1138
|
+
# @param Pods: Pods数量设置
|
1139
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1140
|
+
# @type Pods: String
|
1141
|
+
|
1142
|
+
attr_accessor :CPULimit, :MemoryLimit, :Pods
|
1143
|
+
|
1144
|
+
def initialize(cpulimit=nil, memorylimit=nil, pods=nil)
|
1145
|
+
@CPULimit = cpulimit
|
1146
|
+
@MemoryLimit = memorylimit
|
1147
|
+
@Pods = pods
|
1148
|
+
end
|
1149
|
+
|
1150
|
+
def deserialize(params)
|
1151
|
+
@CPULimit = params['CPULimit']
|
1152
|
+
@MemoryLimit = params['MemoryLimit']
|
1153
|
+
@Pods = params['Pods']
|
1154
|
+
end
|
1155
|
+
end
|
1156
|
+
|
1083
1157
|
# RetryRuns请求参数结构体
|
1084
1158
|
class RetryRunsRequest < TencentCloud::Common::AbstractModel
|
1085
1159
|
# @param ProjectId: 关联项目ID。
|
@@ -1157,8 +1231,8 @@ module TencentCloud
|
|
1157
1231
|
|
1158
1232
|
attr_accessor :RunUuid, :ProjectId, :ApplicationId, :RunGroupId, :EnvironmentId, :UserDefinedId, :TableId, :TableRowUuid, :Status, :Input, :Option, :ExecutionTime, :Cache, :ErrorMessage, :CreateTime, :UpdateTime
|
1159
1233
|
extend Gem::Deprecate
|
1160
|
-
deprecate :Option, :none, 2023,
|
1161
|
-
deprecate :Option=, :none, 2023,
|
1234
|
+
deprecate :Option, :none, 2023, 11
|
1235
|
+
deprecate :Option=, :none, 2023, 11
|
1162
1236
|
|
1163
1237
|
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)
|
1164
1238
|
@RunUuid = runuuid
|
@@ -1681,6 +1755,22 @@ module TencentCloud
|
|
1681
1755
|
end
|
1682
1756
|
end
|
1683
1757
|
|
1758
|
+
# 安全组配置。
|
1759
|
+
class SecurityGroupOption < TencentCloud::Common::AbstractModel
|
1760
|
+
# @param SecurityGroupId: 安全组ID。
|
1761
|
+
# @type SecurityGroupId: String
|
1762
|
+
|
1763
|
+
attr_accessor :SecurityGroupId
|
1764
|
+
|
1765
|
+
def initialize(securitygroupid=nil)
|
1766
|
+
@SecurityGroupId = securitygroupid
|
1767
|
+
end
|
1768
|
+
|
1769
|
+
def deserialize(params)
|
1770
|
+
@SecurityGroupId = params['SecurityGroupId']
|
1771
|
+
end
|
1772
|
+
end
|
1773
|
+
|
1684
1774
|
# 文件存储配置。
|
1685
1775
|
class StorageOption < TencentCloud::Common::AbstractModel
|
1686
1776
|
# @param StorageType: 文件存储类型,取值范围:
|
@@ -1848,6 +1938,10 @@ module TencentCloud
|
|
1848
1938
|
|
1849
1939
|
# 私有网络配置。
|
1850
1940
|
class VPCOption < TencentCloud::Common::AbstractModel
|
1941
|
+
# @param VPCId: 私有网络ID(VPCId和VPCCIDRBlock必选其一。若使用VPCId,则使用现用私有网络;若使用VPCCIDRBlock,则创建新的私有网络)
|
1942
|
+
# @type VPCId: String
|
1943
|
+
# @param SubnetId: 子网ID(SubnetId和SubnetZone&SubnetCIDRBlock必选其一。若使用SubnetId,则使用现用子网;若使用SubnetZone&SubnetCIDRBlock,则创建新的子网)
|
1944
|
+
# @type SubnetId: String
|
1851
1945
|
# @param SubnetZone: 子网可用区。
|
1852
1946
|
# @type SubnetZone: String
|
1853
1947
|
# @param VPCCIDRBlock: 私有网络CIDR。
|
@@ -1855,15 +1949,19 @@ module TencentCloud
|
|
1855
1949
|
# @param SubnetCIDRBlock: 子网CIDR。
|
1856
1950
|
# @type SubnetCIDRBlock: String
|
1857
1951
|
|
1858
|
-
attr_accessor :SubnetZone, :VPCCIDRBlock, :SubnetCIDRBlock
|
1952
|
+
attr_accessor :VPCId, :SubnetId, :SubnetZone, :VPCCIDRBlock, :SubnetCIDRBlock
|
1859
1953
|
|
1860
|
-
def initialize(subnetzone=nil, vpccidrblock=nil, subnetcidrblock=nil)
|
1954
|
+
def initialize(vpcid=nil, subnetid=nil, subnetzone=nil, vpccidrblock=nil, subnetcidrblock=nil)
|
1955
|
+
@VPCId = vpcid
|
1956
|
+
@SubnetId = subnetid
|
1861
1957
|
@SubnetZone = subnetzone
|
1862
1958
|
@VPCCIDRBlock = vpccidrblock
|
1863
1959
|
@SubnetCIDRBlock = subnetcidrblock
|
1864
1960
|
end
|
1865
1961
|
|
1866
1962
|
def deserialize(params)
|
1963
|
+
@VPCId = params['VPCId']
|
1964
|
+
@SubnetId = params['SubnetId']
|
1867
1965
|
@SubnetZone = params['SubnetZone']
|
1868
1966
|
@VPCCIDRBlock = params['VPCCIDRBlock']
|
1869
1967
|
@SubnetCIDRBlock = params['SubnetCIDRBlock']
|