tencentcloud-sdk-omics 3.0.941 → 3.0.943

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 +44 -124
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bd577b199830e343adf62b581dfc35100b36d674
4
- data.tar.gz: 4980db79b4a478276ae7c3cbe3677b73f15918ac
3
+ metadata.gz: d6c52bb5e9d6efb7c7fc4fd736aa7b016949cba4
4
+ data.tar.gz: 52ec9e1e694edb2f728d37e25446cb18463afe8a
5
5
  SHA512:
6
- metadata.gz: 566f8d0f264405461ddade892c33ed1b2f7291bfcfd394cfba7459d15309935f7b3bca10ac7e0a6602c17c5a9b0e5a2e40eeecffa92299a4adf8a4e4c99f341c
7
- data.tar.gz: 10ffc22781abdbb5753d1cdb16e728b4fb7be9216ae0dab897584308384c2c6193f23c150fdb1174b525e7723f9bf5be94de0eebc68aa1051154c85ea53dee83
6
+ metadata.gz: f2d95c1cd50f8c1d631db9fcde747676422109faa46a524e8e678efa39ae5f79c832fed7d68537207e5e8ecf4d0f56e98916179a42542ebfc41de9303c49eb69
7
+ data.tar.gz: a16c64cdc4559f15f5b93768b47d5f2d7447ff424601fd38030d1d5691215c90c2243ef50300fd772fd52f7a6ac0c072062a8abf215cd5dcaa7d604862e9c58e
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.941
1
+ 3.0.943
@@ -20,42 +20,34 @@ module TencentCloud
20
20
  # 应用版本。
21
21
  class ApplicationVersion < TencentCloud::Common::AbstractModel
22
22
  # @param Type: 版本类型。
23
- # 注意:此字段可能返回 null,表示取不到有效值。
24
23
  # @type Type: String
25
24
  # @param ApplicationVersionId: 版本ID。
26
- # 注意:此字段可能返回 null,表示取不到有效值。
27
25
  # @type ApplicationVersionId: String
28
26
  # @param Name: 发布名称。
29
- # 注意:此字段可能返回 null,表示取不到有效值。
30
27
  # @type Name: String
31
28
  # @param Description: 发布描述。
32
- # 注意:此字段可能返回 null,表示取不到有效值。
33
29
  # @type Description: String
34
30
  # @param Entrypoint: 入口文件。
35
- # 注意:此字段可能返回 null,表示取不到有效值。
36
31
  # @type Entrypoint: String
37
32
  # @param CreateTime: 创建时间。
38
- # 注意:此字段可能返回 null,表示取不到有效值。
39
33
  # @type CreateTime: String
40
34
  # @param CreatorName: 创建者名称。
41
- # 注意:此字段可能返回 null,表示取不到有效值。
42
35
  # @type CreatorName: String
43
36
  # @param CreatorId: 创建者ID。
44
- # 注意:此字段可能返回 null,表示取不到有效值。
45
37
  # @type CreatorId: String
46
38
  # @param GitInfo: Git信息。
47
- # 注意:此字段可能返回 null,表示取不到有效值。
48
39
  # @type GitInfo: String
49
40
  # @param GitSource: Git信息。
50
- # 注意:此字段可能返回 null,表示取不到有效值。
51
41
  # @type GitSource: :class:`Tencentcloud::Omics.v20221128.models.GitInfo`
42
+ # @param CosSource: COS信息。
43
+ # @type CosSource: :class:`Tencentcloud::Omics.v20221128.models.CosFileInfo`
52
44
 
53
- attr_accessor :Type, :ApplicationVersionId, :Name, :Description, :Entrypoint, :CreateTime, :CreatorName, :CreatorId, :GitInfo, :GitSource
45
+ attr_accessor :Type, :ApplicationVersionId, :Name, :Description, :Entrypoint, :CreateTime, :CreatorName, :CreatorId, :GitInfo, :GitSource, :CosSource
54
46
  extend Gem::Deprecate
55
- deprecate :GitInfo, :none, 2024, 9
56
- deprecate :GitInfo=, :none, 2024, 9
47
+ deprecate :GitInfo, :none, 2024, 11
48
+ deprecate :GitInfo=, :none, 2024, 11
57
49
 
58
- def initialize(type=nil, applicationversionid=nil, name=nil, description=nil, entrypoint=nil, createtime=nil, creatorname=nil, creatorid=nil, gitinfo=nil, gitsource=nil)
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)
59
51
  @Type = type
60
52
  @ApplicationVersionId = applicationversionid
61
53
  @Name = name
@@ -66,6 +58,7 @@ module TencentCloud
66
58
  @CreatorId = creatorid
67
59
  @GitInfo = gitinfo
68
60
  @GitSource = gitsource
61
+ @CosSource = cossource
69
62
  end
70
63
 
71
64
  def deserialize(params)
@@ -82,6 +75,10 @@ module TencentCloud
82
75
  @GitSource = GitInfo.new
83
76
  @GitSource.deserialize(params['GitSource'])
84
77
  end
78
+ unless params['CosSource'].nil?
79
+ @CosSource = CosFileInfo.new
80
+ @CosSource.deserialize(params['CosSource'])
81
+ end
85
82
  end
86
83
  end
87
84
 
@@ -108,13 +105,10 @@ module TencentCloud
108
105
  # 缓存信息。
109
106
  class CacheInfo < TencentCloud::Common::AbstractModel
110
107
  # @param CacheClearDelay: 缓存清理时间(小时)。
111
- # 注意:此字段可能返回 null,表示取不到有效值。
112
108
  # @type CacheClearDelay: Integer
113
109
  # @param CacheClearTime: 缓存清理计划时间。
114
- # 注意:此字段可能返回 null,表示取不到有效值。
115
110
  # @type CacheClearTime: String
116
111
  # @param CacheCleared: 缓存是否已被清理。
117
- # 注意:此字段可能返回 null,表示取不到有效值。
118
112
  # @type CacheCleared: Boolean
119
113
 
120
114
  attr_accessor :CacheClearDelay, :CacheClearTime, :CacheCleared
@@ -171,6 +165,30 @@ module TencentCloud
171
165
  end
172
166
  end
173
167
 
168
+ # COS 文件信息
169
+ class CosFileInfo < TencentCloud::Common::AbstractModel
170
+ # @param Bucket: 存储桶。
171
+ # @type Bucket: String
172
+ # @param Uri: COS文件地址。
173
+ # @type Uri: String
174
+ # @param Region: 地域。
175
+ # @type Region: String
176
+
177
+ attr_accessor :Bucket, :Uri, :Region
178
+
179
+ def initialize(bucket=nil, uri=nil, region=nil)
180
+ @Bucket = bucket
181
+ @Uri = uri
182
+ @Region = region
183
+ end
184
+
185
+ def deserialize(params)
186
+ @Bucket = params['Bucket']
187
+ @Uri = params['Uri']
188
+ @Region = params['Region']
189
+ end
190
+ end
191
+
174
192
  # CreateEnvironment请求参数结构体
175
193
  class CreateEnvironmentRequest < TencentCloud::Common::AbstractModel
176
194
  # @param Name: 环境名称。
@@ -271,7 +289,6 @@ module TencentCloud
271
289
  # CreateVolume返回参数结构体
272
290
  class CreateVolumeResponse < TencentCloud::Common::AbstractModel
273
291
  # @param VolumeId: 缓存卷ID。
274
- # 注意:此字段可能返回 null,表示取不到有效值。
275
292
  # @type VolumeId: String
276
293
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
277
294
  # @type RequestId: String
@@ -345,7 +362,7 @@ module TencentCloud
345
362
  class DeleteVolumeDataRequest < TencentCloud::Common::AbstractModel
346
363
  # @param VolumeId: 缓存卷ID。
347
364
  # @type VolumeId: String
348
- # @param Path: 需要删除的路径
365
+ # @param Path: 需要删除的路径。
349
366
  # @type Path: String
350
367
 
351
368
  attr_accessor :VolumeId, :Path
@@ -798,10 +815,8 @@ module TencentCloud
798
815
  # DescribeVolumes返回参数结构体
799
816
  class DescribeVolumesResponse < TencentCloud::Common::AbstractModel
800
817
  # @param Volumes: 缓存卷。
801
- # 注意:此字段可能返回 null,表示取不到有效值。
802
818
  # @type Volumes: Array
803
819
  # @param TotalCount: 符合条件的数量。
804
- # 注意:此字段可能返回 null,表示取不到有效值。
805
820
  # @type TotalCount: Integer
806
821
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
807
822
  # @type RequestId: String
@@ -861,10 +876,8 @@ module TencentCloud
861
876
  # @param ResourceIds: 云资源ID。
862
877
  # @type ResourceIds: :class:`Tencentcloud::Omics.v20221128.models.ResourceIds`
863
878
  # @param LastWorkflowUuid: 上个工作流UUID。
864
- # 注意:此字段可能返回 null,表示取不到有效值。
865
879
  # @type LastWorkflowUuid: String
866
880
  # @param CreationTime: 创建时间。
867
- # 注意:此字段可能返回 null,表示取不到有效值。
868
881
  # @type CreationTime: String
869
882
 
870
883
  attr_accessor :EnvironmentId, :Name, :Description, :Region, :Type, :Status, :Available, :IsDefault, :IsManaged, :Message, :ResourceIds, :LastWorkflowUuid, :CreationTime
@@ -962,13 +975,10 @@ module TencentCloud
962
975
  # 执行时间。
963
976
  class ExecutionTime < TencentCloud::Common::AbstractModel
964
977
  # @param SubmitTime: 提交时间。
965
- # 注意:此字段可能返回 null,表示取不到有效值。
966
978
  # @type SubmitTime: String
967
979
  # @param StartTime: 开始时间。
968
- # 注意:此字段可能返回 null,表示取不到有效值。
969
980
  # @type StartTime: String
970
981
  # @param EndTime: 结束时间。
971
- # 注意:此字段可能返回 null,表示取不到有效值。
972
982
  # @type EndTime: String
973
983
 
974
984
  attr_accessor :SubmitTime, :StartTime, :EndTime
@@ -1114,7 +1124,6 @@ module TencentCloud
1114
1124
  # @param CosSignedUrl: 文件预签名链接,一分钟内有效。
1115
1125
  # @type CosSignedUrl: String
1116
1126
  # @param CosSignedUrls: 批量文件预签名链接,一分钟内有效。
1117
- # 注意:此字段可能返回 null,表示取不到有效值。
1118
1127
  # @type CosSignedUrls: Array
1119
1128
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1120
1129
  # @type RequestId: String
@@ -1181,19 +1190,14 @@ module TencentCloud
1181
1190
  # Git信息。
1182
1191
  class GitInfo < TencentCloud::Common::AbstractModel
1183
1192
  # @param GitHttpPath: Git地址。
1184
- # 注意:此字段可能返回 null,表示取不到有效值。
1185
1193
  # @type GitHttpPath: String
1186
1194
  # @param GitUserName: Git用户名。
1187
- # 注意:此字段可能返回 null,表示取不到有效值。
1188
1195
  # @type GitUserName: String
1189
1196
  # @param GitTokenOrPassword: Git密码或者Token。
1190
- # 注意:此字段可能返回 null,表示取不到有效值。
1191
1197
  # @type GitTokenOrPassword: String
1192
1198
  # @param Branch: 分支。
1193
- # 注意:此字段可能返回 null,表示取不到有效值。
1194
1199
  # @type Branch: String
1195
1200
  # @param Tag: 标签。
1196
- # 注意:此字段可能返回 null,表示取不到有效值。
1197
1201
  # @type Tag: String
1198
1202
 
1199
1203
  attr_accessor :GitHttpPath, :GitUserName, :GitTokenOrPassword, :Branch, :Tag
@@ -1270,10 +1274,8 @@ module TencentCloud
1270
1274
  # 资源限制范围。
1271
1275
  class LimitRange < TencentCloud::Common::AbstractModel
1272
1276
  # @param MaxCPU: 最大CPU设置
1273
- # 注意:此字段可能返回 null,表示取不到有效值。
1274
1277
  # @type MaxCPU: String
1275
1278
  # @param MaxMemory: 最大内存设置(单位:Mi,Gi,Ti,M,G,T)
1276
- # 注意:此字段可能返回 null,表示取不到有效值。
1277
1279
  # @type MaxMemory: String
1278
1280
 
1279
1281
  attr_accessor :MaxCPU, :MaxMemory
@@ -1332,24 +1334,18 @@ module TencentCloud
1332
1334
  # Nextflow选项。
1333
1335
  class NFOption < TencentCloud::Common::AbstractModel
1334
1336
  # @param Config: Config。
1335
- # 注意:此字段可能返回 null,表示取不到有效值。
1336
1337
  # @type Config: String
1337
1338
  # @param Profile: Profile。
1338
- # 注意:此字段可能返回 null,表示取不到有效值。
1339
1339
  # @type Profile: String
1340
1340
  # @param Report: Report。
1341
- # 注意:此字段可能返回 null,表示取不到有效值。
1342
1341
  # @type Report: Boolean
1343
1342
  # @param Resume: Resume。
1344
- # 注意:此字段可能返回 null,表示取不到有效值。
1345
1343
  # @type Resume: Boolean
1346
1344
  # @param NFVersion: Nextflow引擎版本,取值范围:
1347
1345
  # - 22.10.7
1348
1346
  # - 23.10.1
1349
- # 注意:此字段可能返回 null,表示取不到有效值。
1350
1347
  # @type NFVersion: String
1351
1348
  # @param LaunchDir: 启动路径。可填写指定缓存卷内的绝对路径,nextflow run 命令将在此路径执行。当WorkDir为COS路径时必填;当WorkDir为缓存卷路径时选填,不填默认使用WorkDir作为LaunchDir。
1352
- # 注意:此字段可能返回 null,表示取不到有效值。
1353
1349
  # @type LaunchDir: String
1354
1350
 
1355
1351
  attr_accessor :Config, :Profile, :Report, :Resume, :NFVersion, :LaunchDir
@@ -1376,32 +1372,24 @@ module TencentCloud
1376
1372
  # 云资源ID。
1377
1373
  class ResourceIds < TencentCloud::Common::AbstractModel
1378
1374
  # @param VPCId: 私有网络ID。
1379
- # 注意:此字段可能返回 null,表示取不到有效值。
1380
1375
  # @type VPCId: String
1381
1376
  # @param SubnetId: 子网ID。
1382
- # 注意:此字段可能返回 null,表示取不到有效值。
1383
1377
  # @type SubnetId: String
1384
1378
  # @param SecurityGroupId: 安全组ID。
1385
- # 注意:此字段可能返回 null,表示取不到有效值。
1386
1379
  # @type SecurityGroupId: String
1387
1380
  # @param TDSQLCId: TDSQL-C Mysql版数据库ID。
1388
- # 注意:此字段可能返回 null,表示取不到有效值。
1389
1381
  # @type TDSQLCId: String
1390
1382
  # @param CFSId: 文件存储ID。
1391
- # 注意:此字段可能返回 null,表示取不到有效值。
1392
1383
  # @type CFSId: String
1393
1384
  # @param CFSStorageType: 文件存储类型:取值范围:
1394
1385
  # - SD:通用标准型
1395
1386
  # - HP:通用性能型
1396
1387
  # - TB:turbo标准型
1397
1388
  # - TP:turbo性能型
1398
- # 注意:此字段可能返回 null,表示取不到有效值。
1399
1389
  # @type CFSStorageType: String
1400
1390
  # @param CVMId: 云服务器ID。
1401
- # 注意:此字段可能返回 null,表示取不到有效值。
1402
1391
  # @type CVMId: String
1403
1392
  # @param EKSId: 弹性容器集群ID。
1404
- # 注意:此字段可能返回 null,表示取不到有效值。
1405
1393
  # @type EKSId: String
1406
1394
 
1407
1395
  attr_accessor :VPCId, :SubnetId, :SecurityGroupId, :TDSQLCId, :CFSId, :CFSStorageType, :CVMId, :EKSId
@@ -1432,13 +1420,10 @@ module TencentCloud
1432
1420
  # 资源配额。
1433
1421
  class ResourceQuota < TencentCloud::Common::AbstractModel
1434
1422
  # @param CPULimit: CPU Limit设置。
1435
- # 注意:此字段可能返回 null,表示取不到有效值。
1436
1423
  # @type CPULimit: String
1437
1424
  # @param MemoryLimit: 内存Limit设置(单位:Mi,Gi,Ti,M,G,T)
1438
- # 注意:此字段可能返回 null,表示取不到有效值。
1439
1425
  # @type MemoryLimit: String
1440
1426
  # @param Pods: Pods数量设置
1441
- # 注意:此字段可能返回 null,表示取不到有效值。
1442
1427
  # @type Pods: String
1443
1428
 
1444
1429
  attr_accessor :CPULimit, :MemoryLimit, :Pods
@@ -1497,7 +1482,6 @@ module TencentCloud
1497
1482
  # RetryRuns返回参数结构体
1498
1483
  class RetryRunsResponse < TencentCloud::Common::AbstractModel
1499
1484
  # @param RunGroupId: 新的任务批次ID。
1500
- # 注意:此字段可能返回 null,表示取不到有效值。
1501
1485
  # @type RunGroupId: String
1502
1486
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1503
1487
  # @type RequestId: String
@@ -1528,13 +1512,10 @@ module TencentCloud
1528
1512
  # @param EnvironmentId: 环境ID。
1529
1513
  # @type EnvironmentId: String
1530
1514
  # @param UserDefinedId: 用户定义ID,单例运行为空。
1531
- # 注意:此字段可能返回 null,表示取不到有效值。
1532
1515
  # @type UserDefinedId: String
1533
1516
  # @param TableId: 表格ID,单例运行为空。
1534
- # 注意:此字段可能返回 null,表示取不到有效值。
1535
1517
  # @type TableId: String
1536
1518
  # @param TableRowUuid: 表格行UUID,单例运行为空。
1537
- # 注意:此字段可能返回 null,表示取不到有效值。
1538
1519
  # @type TableRowUuid: String
1539
1520
  # @param Status: 任务状态。
1540
1521
  # @type Status: String
@@ -1545,7 +1526,6 @@ module TencentCloud
1545
1526
  # @param ExecutionTime: 执行时间。
1546
1527
  # @type ExecutionTime: :class:`Tencentcloud::Omics.v20221128.models.ExecutionTime`
1547
1528
  # @param Cache: 缓存信息。
1548
- # 注意:此字段可能返回 null,表示取不到有效值。
1549
1529
  # @type Cache: :class:`Tencentcloud::Omics.v20221128.models.CacheInfo`
1550
1530
  # @param ErrorMessage: 错误信息。
1551
1531
  # @type ErrorMessage: String
@@ -1556,8 +1536,8 @@ module TencentCloud
1556
1536
 
1557
1537
  attr_accessor :RunUuid, :ProjectId, :ApplicationId, :RunGroupId, :EnvironmentId, :UserDefinedId, :TableId, :TableRowUuid, :Status, :Input, :Option, :ExecutionTime, :Cache, :ErrorMessage, :CreateTime, :UpdateTime
1558
1538
  extend Gem::Deprecate
1559
- deprecate :Option, :none, 2024, 9
1560
- deprecate :Option=, :none, 2024, 9
1539
+ deprecate :Option, :none, 2024, 11
1540
+ deprecate :Option=, :none, 2024, 11
1561
1541
 
1562
1542
  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)
1563
1543
  @RunUuid = runuuid
@@ -1726,19 +1706,16 @@ module TencentCloud
1726
1706
  # @param ApplicationType: 应用类型。
1727
1707
  # @type ApplicationType: String
1728
1708
  # @param ApplicationVersion: 应用版本。
1729
- # 注意:此字段可能返回 null,表示取不到有效值。
1730
1709
  # @type ApplicationVersion: :class:`Tencentcloud::Omics.v20221128.models.ApplicationVersion`
1731
1710
  # @param AccessMode: 应用访问类型:
1732
1711
  # - PRIVATE 私有应用
1733
1712
  # - PUBLIC 公共应用
1734
- # 注意:此字段可能返回 null,表示取不到有效值。
1735
1713
  # @type AccessMode: String
1736
1714
  # @param EnvironmentId: 环境ID。
1737
1715
  # @type EnvironmentId: String
1738
1716
  # @param EnvironmentName: 环境名称。
1739
1717
  # @type EnvironmentName: String
1740
1718
  # @param TableId: 表格ID,单例运行为空。
1741
- # 注意:此字段可能返回 null,表示取不到有效值。
1742
1719
  # @type TableId: String
1743
1720
  # @param Name: 任务名称。
1744
1721
  # @type Name: String
@@ -1749,10 +1726,8 @@ module TencentCloud
1749
1726
  # @param Type: 任务批次类型 :
1750
1727
  # - WDL
1751
1728
  # - NEXTFLOW
1752
- # 注意:此字段可能返回 null,表示取不到有效值。
1753
1729
  # @type Type: String
1754
1730
  # @param WorkDir: 工作目录。
1755
- # 注意:此字段可能返回 null,表示取不到有效值。
1756
1731
  # @type WorkDir: String
1757
1732
  # @param Input: 任务输入。
1758
1733
  # @type Input: String
@@ -1760,21 +1735,16 @@ module TencentCloud
1760
1735
  # - JSON: 导入JSON
1761
1736
  # - MANUAL: 手动输入
1762
1737
  # - COS: COS文件
1763
- # 注意:此字段可能返回 null,表示取不到有效值。
1764
1738
  # @type InputType: String
1765
1739
  # @param InputCosUri: 输入COS地址。
1766
- # 注意:此字段可能返回 null,表示取不到有效值。
1767
1740
  # @type InputCosUri: String
1768
1741
  # @param InputTemplateId: 输入模版ID。
1769
- # 注意:此字段可能返回 null,表示取不到有效值。
1770
1742
  # @type InputTemplateId: String
1771
1743
  # @param Option: WDL运行选项。
1772
1744
  # @type Option: :class:`Tencentcloud::Omics.v20221128.models.RunOption`
1773
1745
  # @param NFOption: Nextflow运行选项。
1774
- # 注意:此字段可能返回 null,表示取不到有效值。
1775
1746
  # @type NFOption: :class:`Tencentcloud::Omics.v20221128.models.NFOption`
1776
1747
  # @param Volumes: 使用的缓存卷。
1777
- # 注意:此字段可能返回 null,表示取不到有效值。
1778
1748
  # @type Volumes: Array
1779
1749
  # @param TotalRun: 任务总数量。
1780
1750
  # @type TotalRun: Integer
@@ -1785,17 +1755,14 @@ module TencentCloud
1785
1755
  # @param ErrorMessage: 错误信息。
1786
1756
  # @type ErrorMessage: String
1787
1757
  # @param ResultNotify: 运行结果通知方式。
1788
- # 注意:此字段可能返回 null,表示取不到有效值。
1789
1758
  # @type ResultNotify: String
1790
1759
  # @param CreateTime: 创建时间。
1791
1760
  # @type CreateTime: String
1792
1761
  # @param UpdateTime: 更新时间。
1793
1762
  # @type UpdateTime: String
1794
1763
  # @param Creator: 创建者。
1795
- # 注意:此字段可能返回 null,表示取不到有效值。
1796
1764
  # @type Creator: String
1797
1765
  # @param CreatorId: 创建者ID。
1798
- # 注意:此字段可能返回 null,表示取不到有效值。
1799
1766
  # @type CreatorId: String
1800
1767
 
1801
1768
  attr_accessor :RunGroupId, :ProjectId, :ProjectName, :ApplicationId, :ApplicationName, :ApplicationType, :ApplicationVersion, :AccessMode, :EnvironmentId, :EnvironmentName, :TableId, :Name, :Description, :Status, :Type, :WorkDir, :Input, :InputType, :InputCosUri, :InputTemplateId, :Option, :NFOption, :Volumes, :TotalRun, :RunStatusCounts, :ExecutionTime, :ErrorMessage, :ResultNotify, :CreateTime, :UpdateTime, :Creator, :CreatorId
@@ -1900,70 +1867,48 @@ module TencentCloud
1900
1867
  # 任务作业详情。
1901
1868
  class RunMetadata < TencentCloud::Common::AbstractModel
1902
1869
  # @param RunType: 任务类型。
1903
- # 注意:此字段可能返回 null,表示取不到有效值。
1904
1870
  # @type RunType: String
1905
1871
  # @param RunId: 任务ID。
1906
- # 注意:此字段可能返回 null,表示取不到有效值。
1907
1872
  # @type RunId: String
1908
1873
  # @param ParentId: 父层ID。
1909
- # 注意:此字段可能返回 null,表示取不到有效值。
1910
1874
  # @type ParentId: String
1911
1875
  # @param JobId: 作业ID。
1912
- # 注意:此字段可能返回 null,表示取不到有效值。
1913
1876
  # @type JobId: String
1914
1877
  # @param CallName: 作业名称。
1915
- # 注意:此字段可能返回 null,表示取不到有效值。
1916
1878
  # @type CallName: String
1917
1879
  # @param ScatterIndex: Scatter索引。
1918
- # 注意:此字段可能返回 null,表示取不到有效值。
1919
1880
  # @type ScatterIndex: String
1920
1881
  # @param Input: 输入。
1921
- # 注意:此字段可能返回 null,表示取不到有效值。
1922
1882
  # @type Input: String
1923
1883
  # @param Output: 输出。
1924
- # 注意:此字段可能返回 null,表示取不到有效值。
1925
1884
  # @type Output: String
1926
1885
  # @param Status: 状态
1927
- # 注意:此字段可能返回 null,表示取不到有效值。
1928
1886
  # @type Status: String
1929
1887
  # @param ErrorMessage: 错误信息。
1930
- # 注意:此字段可能返回 null,表示取不到有效值。
1931
1888
  # @type ErrorMessage: String
1932
1889
  # @param StartTime: 开始时间
1933
- # 注意:此字段可能返回 null,表示取不到有效值。
1934
1890
  # @type StartTime: String
1935
1891
  # @param SubmitTime: 提交时间。
1936
- # 注意:此字段可能返回 null,表示取不到有效值。
1937
1892
  # @type SubmitTime: String
1938
1893
  # @param EndTime: 结束时间。
1939
- # 注意:此字段可能返回 null,表示取不到有效值。
1940
1894
  # @type EndTime: String
1941
1895
  # @param Command: 命令行。
1942
- # 注意:此字段可能返回 null,表示取不到有效值。
1943
1896
  # @type Command: String
1944
1897
  # @param Runtime: 运行时。
1945
- # 注意:此字段可能返回 null,表示取不到有效值。
1946
1898
  # @type Runtime: String
1947
1899
  # @param Preprocess: 预处理。
1948
- # 注意:此字段可能返回 null,表示取不到有效值。
1949
1900
  # @type Preprocess: Boolean
1950
1901
  # @param PostProcess: 后处理。
1951
- # 注意:此字段可能返回 null,表示取不到有效值。
1952
1902
  # @type PostProcess: Boolean
1953
1903
  # @param CallCached: Cache命中
1954
- # 注意:此字段可能返回 null,表示取不到有效值。
1955
1904
  # @type CallCached: Boolean
1956
1905
  # @param WorkDir: 工作目录。
1957
- # 注意:此字段可能返回 null,表示取不到有效值。
1958
1906
  # @type WorkDir: String
1959
1907
  # @param Stdout: 标准输出。
1960
- # 注意:此字段可能返回 null,表示取不到有效值。
1961
1908
  # @type Stdout: String
1962
1909
  # @param Stderr: 错误输出。
1963
- # 注意:此字段可能返回 null,表示取不到有效值。
1964
1910
  # @type Stderr: String
1965
1911
  # @param Meta: 其他信息。
1966
- # 注意:此字段可能返回 null,表示取不到有效值。
1967
1912
  # @type Meta: String
1968
1913
 
1969
1914
  attr_accessor :RunType, :RunId, :ParentId, :JobId, :CallName, :ScatterIndex, :Input, :Output, :Status, :ErrorMessage, :StartTime, :SubmitTime, :EndTime, :Command, :Runtime, :Preprocess, :PostProcess, :CallCached, :WorkDir, :Stdout, :Stderr, :Meta
@@ -2030,13 +1975,10 @@ module TencentCloud
2030
1975
  # @param UseErrorOnHold: 是否使用错误挂起功能。
2031
1976
  # @type UseErrorOnHold: Boolean
2032
1977
  # @param FinalWorkflowOutputsDir: 输出归档COS路径。
2033
- # 注意:此字段可能返回 null,表示取不到有效值。
2034
1978
  # @type FinalWorkflowOutputsDir: String
2035
1979
  # @param UseRelativeOutputPaths: 是否使用相对目录归档输出。
2036
- # 注意:此字段可能返回 null,表示取不到有效值。
2037
1980
  # @type UseRelativeOutputPaths: Boolean
2038
1981
  # @param AddRunInfoToOutputDir: 是否添加运行信息到输出目录中
2039
- # 注意:此字段可能返回 null,表示取不到有效值。
2040
1982
  # @type AddRunInfoToOutputDir: Boolean
2041
1983
 
2042
1984
  attr_accessor :FailureMode, :UseCallCache, :UseErrorOnHold, :FinalWorkflowOutputsDir, :UseRelativeOutputPaths, :AddRunInfoToOutputDir
@@ -2221,30 +2163,25 @@ module TencentCloud
2221
2163
  # 表格。
2222
2164
  class Table < TencentCloud::Common::AbstractModel
2223
2165
  # @param TableId: 表格ID
2224
- # 注意:此字段可能返回 null,表示取不到有效值。
2225
2166
  # @type TableId: String
2226
2167
  # @param ProjectId: 关联项目ID
2227
- # 注意:此字段可能返回 null,表示取不到有效值。
2228
2168
  # @type ProjectId: String
2229
2169
  # @param Name: 表格名称
2230
- # 注意:此字段可能返回 null,表示取不到有效值。
2231
2170
  # @type Name: String
2232
2171
  # @param Description: 表格描述
2233
- # 注意:此字段可能返回 null,表示取不到有效值。
2234
2172
  # @type Description: String
2235
2173
  # @param Columns: 表格列
2236
- # 注意:此字段可能返回 null,表示取不到有效值。
2237
2174
  # @type Columns: Array
2238
2175
  # @param CreateTime: 创建时间
2239
- # 注意:此字段可能返回 null,表示取不到有效值。
2240
2176
  # @type CreateTime: String
2241
2177
  # @param Creator: 创建人
2242
- # 注意:此字段可能返回 null,表示取不到有效值。
2243
2178
  # @type Creator: String
2179
+ # @param CreatorId: 创建人ID
2180
+ # @type CreatorId: String
2244
2181
 
2245
- attr_accessor :TableId, :ProjectId, :Name, :Description, :Columns, :CreateTime, :Creator
2182
+ attr_accessor :TableId, :ProjectId, :Name, :Description, :Columns, :CreateTime, :Creator, :CreatorId
2246
2183
 
2247
- def initialize(tableid=nil, projectid=nil, name=nil, description=nil, columns=nil, createtime=nil, creator=nil)
2184
+ def initialize(tableid=nil, projectid=nil, name=nil, description=nil, columns=nil, createtime=nil, creator=nil, creatorid=nil)
2248
2185
  @TableId = tableid
2249
2186
  @ProjectId = projectid
2250
2187
  @Name = name
@@ -2252,6 +2189,7 @@ module TencentCloud
2252
2189
  @Columns = columns
2253
2190
  @CreateTime = createtime
2254
2191
  @Creator = creator
2192
+ @CreatorId = creatorid
2255
2193
  end
2256
2194
 
2257
2195
  def deserialize(params)
@@ -2269,16 +2207,15 @@ module TencentCloud
2269
2207
  end
2270
2208
  @CreateTime = params['CreateTime']
2271
2209
  @Creator = params['Creator']
2210
+ @CreatorId = params['CreatorId']
2272
2211
  end
2273
2212
  end
2274
2213
 
2275
2214
  # 表格列。
2276
2215
  class TableColumn < TencentCloud::Common::AbstractModel
2277
2216
  # @param Header: 列名称
2278
- # 注意:此字段可能返回 null,表示取不到有效值。
2279
2217
  # @type Header: String
2280
2218
  # @param DataType: 列数据类型
2281
- # 注意:此字段可能返回 null,表示取不到有效值。
2282
2219
  # @type DataType: String
2283
2220
 
2284
2221
  attr_accessor :Header, :DataType
@@ -2297,10 +2234,8 @@ module TencentCloud
2297
2234
  # 表格行。
2298
2235
  class TableRow < TencentCloud::Common::AbstractModel
2299
2236
  # @param TableRowUuid: 表格行UUID。
2300
- # 注意:此字段可能返回 null,表示取不到有效值。
2301
2237
  # @type TableRowUuid: String
2302
2238
  # @param Content: 表格行内容。
2303
- # 注意:此字段可能返回 null,表示取不到有效值。
2304
2239
  # @type Content: Array
2305
2240
 
2306
2241
  attr_accessor :TableRowUuid, :Content
@@ -2388,20 +2323,15 @@ module TencentCloud
2388
2323
  # 缓存卷。
2389
2324
  class Volume < TencentCloud::Common::AbstractModel
2390
2325
  # @param VolumeId: 缓存卷ID。
2391
- # 注意:此字段可能返回 null,表示取不到有效值。
2392
2326
  # @type VolumeId: String
2393
2327
  # @param Name: 名称。
2394
- # 注意:此字段可能返回 null,表示取不到有效值。
2395
2328
  # @type Name: String
2396
2329
  # @param Description: 描述。
2397
- # 注意:此字段可能返回 null,表示取不到有效值。
2398
2330
  # @type Description: String
2399
2331
  # @param EnvironmentId: 环境ID。
2400
- # 注意:此字段可能返回 null,表示取不到有效值。
2401
2332
  # @type EnvironmentId: String
2402
2333
  # @param Type: 缓存卷类型,取值范围:
2403
2334
  # * SHARED:多点挂载共享存储
2404
- # 注意:此字段可能返回 null,表示取不到有效值。
2405
2335
  # @type Type: String
2406
2336
  # @param Spec: 缓存卷规格,取值范围:
2407
2337
 
@@ -2409,25 +2339,18 @@ module TencentCloud
2409
2339
  # - HP:通用性能型
2410
2340
  # - TB:turbo标准型
2411
2341
  # - TP:turbo性能型
2412
- # 注意:此字段可能返回 null,表示取不到有效值。
2413
2342
  # @type Spec: String
2414
2343
  # @param Capacity: 缓存卷大小(GB)。
2415
- # 注意:此字段可能返回 null,表示取不到有效值。
2416
2344
  # @type Capacity: Integer
2417
2345
  # @param Usage: 缓存卷使用量(Byte)。
2418
- # 注意:此字段可能返回 null,表示取不到有效值。
2419
2346
  # @type Usage: Integer
2420
2347
  # @param BandwidthLimit: 缓存卷吞吐上限(MiB/s)。
2421
- # 注意:此字段可能返回 null,表示取不到有效值。
2422
2348
  # @type BandwidthLimit: Float
2423
2349
  # @param DefaultMountPath: 默认挂载路径。
2424
- # 注意:此字段可能返回 null,表示取不到有效值。
2425
2350
  # @type DefaultMountPath: String
2426
2351
  # @param IsDefault: 是否为默认缓存卷。
2427
- # 注意:此字段可能返回 null,表示取不到有效值。
2428
2352
  # @type IsDefault: Boolean
2429
2353
  # @param Status: 状态。
2430
- # 注意:此字段可能返回 null,表示取不到有效值。
2431
2354
  # @type Status: String
2432
2355
 
2433
2356
  attr_accessor :VolumeId, :Name, :Description, :EnvironmentId, :Type, :Spec, :Capacity, :Usage, :BandwidthLimit, :DefaultMountPath, :IsDefault, :Status
@@ -2466,13 +2389,10 @@ module TencentCloud
2466
2389
  # 缓存卷信息。
2467
2390
  class VolumeInfo < TencentCloud::Common::AbstractModel
2468
2391
  # @param VolumeId: 缓存卷ID。
2469
- # 注意:此字段可能返回 null,表示取不到有效值。
2470
2392
  # @type VolumeId: String
2471
2393
  # @param Name: 名称。
2472
- # 注意:此字段可能返回 null,表示取不到有效值。
2473
2394
  # @type Name: String
2474
2395
  # @param MountPath: 挂载路径。
2475
- # 注意:此字段可能返回 null,表示取不到有效值。
2476
2396
  # @type MountPath: String
2477
2397
 
2478
2398
  attr_accessor :VolumeId, :Name, :MountPath
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.941
4
+ version: 3.0.943
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-12 00:00:00.000000000 Z
11
+ date: 2024-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common