tencentcloud-sdk-omics 3.0.942 → 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 +40 -90
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4b58af57d2407f4ba1eabcf58574e8bbc644ab49
4
- data.tar.gz: a28c47eff03fcb2885b33d9142a446b94ea371e3
3
+ metadata.gz: d6c52bb5e9d6efb7c7fc4fd736aa7b016949cba4
4
+ data.tar.gz: 52ec9e1e694edb2f728d37e25446cb18463afe8a
5
5
  SHA512:
6
- metadata.gz: c11bc854afc07b2c7ad4f3bd4c5d4ca9e07c5ac2eac483fdf681f576f87a6776b1bf6b005269dc0724d6dcfaedc2d420903b66b09cc1596d329bab7ebb7ec1eb
7
- data.tar.gz: 5a3a9c104455bc33c5bc075b31ba39911b0c9fe796adbe7677e59a4bb94e55d4dad4de4abe9bc553573d833f903e4ccd31ff7d059c4a030c52665508095fa3fb
6
+ metadata.gz: f2d95c1cd50f8c1d631db9fcde747676422109faa46a524e8e678efa39ae5f79c832fed7d68537207e5e8ecf4d0f56e98916179a42542ebfc41de9303c49eb69
7
+ data.tar.gz: a16c64cdc4559f15f5b93768b47d5f2d7447ff424601fd38030d1d5691215c90c2243ef50300fd772fd52f7a6ac0c072062a8abf215cd5dcaa7d604862e9c58e
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.942
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
47
  deprecate :GitInfo, :none, 2024, 11
56
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: 环境名称。
@@ -344,7 +362,7 @@ module TencentCloud
344
362
  class DeleteVolumeDataRequest < TencentCloud::Common::AbstractModel
345
363
  # @param VolumeId: 缓存卷ID。
346
364
  # @type VolumeId: String
347
- # @param Path: 需要删除的路径
365
+ # @param Path: 需要删除的路径。
348
366
  # @type Path: String
349
367
 
350
368
  attr_accessor :VolumeId, :Path
@@ -957,13 +975,10 @@ module TencentCloud
957
975
  # 执行时间。
958
976
  class ExecutionTime < TencentCloud::Common::AbstractModel
959
977
  # @param SubmitTime: 提交时间。
960
- # 注意:此字段可能返回 null,表示取不到有效值。
961
978
  # @type SubmitTime: String
962
979
  # @param StartTime: 开始时间。
963
- # 注意:此字段可能返回 null,表示取不到有效值。
964
980
  # @type StartTime: String
965
981
  # @param EndTime: 结束时间。
966
- # 注意:此字段可能返回 null,表示取不到有效值。
967
982
  # @type EndTime: String
968
983
 
969
984
  attr_accessor :SubmitTime, :StartTime, :EndTime
@@ -1109,7 +1124,6 @@ module TencentCloud
1109
1124
  # @param CosSignedUrl: 文件预签名链接,一分钟内有效。
1110
1125
  # @type CosSignedUrl: String
1111
1126
  # @param CosSignedUrls: 批量文件预签名链接,一分钟内有效。
1112
- # 注意:此字段可能返回 null,表示取不到有效值。
1113
1127
  # @type CosSignedUrls: Array
1114
1128
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1115
1129
  # @type RequestId: String
@@ -1176,19 +1190,14 @@ module TencentCloud
1176
1190
  # Git信息。
1177
1191
  class GitInfo < TencentCloud::Common::AbstractModel
1178
1192
  # @param GitHttpPath: Git地址。
1179
- # 注意:此字段可能返回 null,表示取不到有效值。
1180
1193
  # @type GitHttpPath: String
1181
1194
  # @param GitUserName: Git用户名。
1182
- # 注意:此字段可能返回 null,表示取不到有效值。
1183
1195
  # @type GitUserName: String
1184
1196
  # @param GitTokenOrPassword: Git密码或者Token。
1185
- # 注意:此字段可能返回 null,表示取不到有效值。
1186
1197
  # @type GitTokenOrPassword: String
1187
1198
  # @param Branch: 分支。
1188
- # 注意:此字段可能返回 null,表示取不到有效值。
1189
1199
  # @type Branch: String
1190
1200
  # @param Tag: 标签。
1191
- # 注意:此字段可能返回 null,表示取不到有效值。
1192
1201
  # @type Tag: String
1193
1202
 
1194
1203
  attr_accessor :GitHttpPath, :GitUserName, :GitTokenOrPassword, :Branch, :Tag
@@ -1325,24 +1334,18 @@ module TencentCloud
1325
1334
  # Nextflow选项。
1326
1335
  class NFOption < TencentCloud::Common::AbstractModel
1327
1336
  # @param Config: Config。
1328
- # 注意:此字段可能返回 null,表示取不到有效值。
1329
1337
  # @type Config: String
1330
1338
  # @param Profile: Profile。
1331
- # 注意:此字段可能返回 null,表示取不到有效值。
1332
1339
  # @type Profile: String
1333
1340
  # @param Report: Report。
1334
- # 注意:此字段可能返回 null,表示取不到有效值。
1335
1341
  # @type Report: Boolean
1336
1342
  # @param Resume: Resume。
1337
- # 注意:此字段可能返回 null,表示取不到有效值。
1338
1343
  # @type Resume: Boolean
1339
1344
  # @param NFVersion: Nextflow引擎版本,取值范围:
1340
1345
  # - 22.10.7
1341
1346
  # - 23.10.1
1342
- # 注意:此字段可能返回 null,表示取不到有效值。
1343
1347
  # @type NFVersion: String
1344
1348
  # @param LaunchDir: 启动路径。可填写指定缓存卷内的绝对路径,nextflow run 命令将在此路径执行。当WorkDir为COS路径时必填;当WorkDir为缓存卷路径时选填,不填默认使用WorkDir作为LaunchDir。
1345
- # 注意:此字段可能返回 null,表示取不到有效值。
1346
1349
  # @type LaunchDir: String
1347
1350
 
1348
1351
  attr_accessor :Config, :Profile, :Report, :Resume, :NFVersion, :LaunchDir
@@ -1479,7 +1482,6 @@ module TencentCloud
1479
1482
  # RetryRuns返回参数结构体
1480
1483
  class RetryRunsResponse < TencentCloud::Common::AbstractModel
1481
1484
  # @param RunGroupId: 新的任务批次ID。
1482
- # 注意:此字段可能返回 null,表示取不到有效值。
1483
1485
  # @type RunGroupId: String
1484
1486
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1485
1487
  # @type RequestId: String
@@ -1510,13 +1512,10 @@ module TencentCloud
1510
1512
  # @param EnvironmentId: 环境ID。
1511
1513
  # @type EnvironmentId: String
1512
1514
  # @param UserDefinedId: 用户定义ID,单例运行为空。
1513
- # 注意:此字段可能返回 null,表示取不到有效值。
1514
1515
  # @type UserDefinedId: String
1515
1516
  # @param TableId: 表格ID,单例运行为空。
1516
- # 注意:此字段可能返回 null,表示取不到有效值。
1517
1517
  # @type TableId: String
1518
1518
  # @param TableRowUuid: 表格行UUID,单例运行为空。
1519
- # 注意:此字段可能返回 null,表示取不到有效值。
1520
1519
  # @type TableRowUuid: String
1521
1520
  # @param Status: 任务状态。
1522
1521
  # @type Status: String
@@ -1527,7 +1526,6 @@ module TencentCloud
1527
1526
  # @param ExecutionTime: 执行时间。
1528
1527
  # @type ExecutionTime: :class:`Tencentcloud::Omics.v20221128.models.ExecutionTime`
1529
1528
  # @param Cache: 缓存信息。
1530
- # 注意:此字段可能返回 null,表示取不到有效值。
1531
1529
  # @type Cache: :class:`Tencentcloud::Omics.v20221128.models.CacheInfo`
1532
1530
  # @param ErrorMessage: 错误信息。
1533
1531
  # @type ErrorMessage: String
@@ -1708,19 +1706,16 @@ module TencentCloud
1708
1706
  # @param ApplicationType: 应用类型。
1709
1707
  # @type ApplicationType: String
1710
1708
  # @param ApplicationVersion: 应用版本。
1711
- # 注意:此字段可能返回 null,表示取不到有效值。
1712
1709
  # @type ApplicationVersion: :class:`Tencentcloud::Omics.v20221128.models.ApplicationVersion`
1713
1710
  # @param AccessMode: 应用访问类型:
1714
1711
  # - PRIVATE 私有应用
1715
1712
  # - PUBLIC 公共应用
1716
- # 注意:此字段可能返回 null,表示取不到有效值。
1717
1713
  # @type AccessMode: String
1718
1714
  # @param EnvironmentId: 环境ID。
1719
1715
  # @type EnvironmentId: String
1720
1716
  # @param EnvironmentName: 环境名称。
1721
1717
  # @type EnvironmentName: String
1722
1718
  # @param TableId: 表格ID,单例运行为空。
1723
- # 注意:此字段可能返回 null,表示取不到有效值。
1724
1719
  # @type TableId: String
1725
1720
  # @param Name: 任务名称。
1726
1721
  # @type Name: String
@@ -1731,10 +1726,8 @@ module TencentCloud
1731
1726
  # @param Type: 任务批次类型 :
1732
1727
  # - WDL
1733
1728
  # - NEXTFLOW
1734
- # 注意:此字段可能返回 null,表示取不到有效值。
1735
1729
  # @type Type: String
1736
1730
  # @param WorkDir: 工作目录。
1737
- # 注意:此字段可能返回 null,表示取不到有效值。
1738
1731
  # @type WorkDir: String
1739
1732
  # @param Input: 任务输入。
1740
1733
  # @type Input: String
@@ -1742,21 +1735,16 @@ module TencentCloud
1742
1735
  # - JSON: 导入JSON
1743
1736
  # - MANUAL: 手动输入
1744
1737
  # - COS: COS文件
1745
- # 注意:此字段可能返回 null,表示取不到有效值。
1746
1738
  # @type InputType: String
1747
1739
  # @param InputCosUri: 输入COS地址。
1748
- # 注意:此字段可能返回 null,表示取不到有效值。
1749
1740
  # @type InputCosUri: String
1750
1741
  # @param InputTemplateId: 输入模版ID。
1751
- # 注意:此字段可能返回 null,表示取不到有效值。
1752
1742
  # @type InputTemplateId: String
1753
1743
  # @param Option: WDL运行选项。
1754
1744
  # @type Option: :class:`Tencentcloud::Omics.v20221128.models.RunOption`
1755
1745
  # @param NFOption: Nextflow运行选项。
1756
- # 注意:此字段可能返回 null,表示取不到有效值。
1757
1746
  # @type NFOption: :class:`Tencentcloud::Omics.v20221128.models.NFOption`
1758
1747
  # @param Volumes: 使用的缓存卷。
1759
- # 注意:此字段可能返回 null,表示取不到有效值。
1760
1748
  # @type Volumes: Array
1761
1749
  # @param TotalRun: 任务总数量。
1762
1750
  # @type TotalRun: Integer
@@ -1767,17 +1755,14 @@ module TencentCloud
1767
1755
  # @param ErrorMessage: 错误信息。
1768
1756
  # @type ErrorMessage: String
1769
1757
  # @param ResultNotify: 运行结果通知方式。
1770
- # 注意:此字段可能返回 null,表示取不到有效值。
1771
1758
  # @type ResultNotify: String
1772
1759
  # @param CreateTime: 创建时间。
1773
1760
  # @type CreateTime: String
1774
1761
  # @param UpdateTime: 更新时间。
1775
1762
  # @type UpdateTime: String
1776
1763
  # @param Creator: 创建者。
1777
- # 注意:此字段可能返回 null,表示取不到有效值。
1778
1764
  # @type Creator: String
1779
1765
  # @param CreatorId: 创建者ID。
1780
- # 注意:此字段可能返回 null,表示取不到有效值。
1781
1766
  # @type CreatorId: String
1782
1767
 
1783
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
@@ -1882,70 +1867,48 @@ module TencentCloud
1882
1867
  # 任务作业详情。
1883
1868
  class RunMetadata < TencentCloud::Common::AbstractModel
1884
1869
  # @param RunType: 任务类型。
1885
- # 注意:此字段可能返回 null,表示取不到有效值。
1886
1870
  # @type RunType: String
1887
1871
  # @param RunId: 任务ID。
1888
- # 注意:此字段可能返回 null,表示取不到有效值。
1889
1872
  # @type RunId: String
1890
1873
  # @param ParentId: 父层ID。
1891
- # 注意:此字段可能返回 null,表示取不到有效值。
1892
1874
  # @type ParentId: String
1893
1875
  # @param JobId: 作业ID。
1894
- # 注意:此字段可能返回 null,表示取不到有效值。
1895
1876
  # @type JobId: String
1896
1877
  # @param CallName: 作业名称。
1897
- # 注意:此字段可能返回 null,表示取不到有效值。
1898
1878
  # @type CallName: String
1899
1879
  # @param ScatterIndex: Scatter索引。
1900
- # 注意:此字段可能返回 null,表示取不到有效值。
1901
1880
  # @type ScatterIndex: String
1902
1881
  # @param Input: 输入。
1903
- # 注意:此字段可能返回 null,表示取不到有效值。
1904
1882
  # @type Input: String
1905
1883
  # @param Output: 输出。
1906
- # 注意:此字段可能返回 null,表示取不到有效值。
1907
1884
  # @type Output: String
1908
1885
  # @param Status: 状态
1909
- # 注意:此字段可能返回 null,表示取不到有效值。
1910
1886
  # @type Status: String
1911
1887
  # @param ErrorMessage: 错误信息。
1912
- # 注意:此字段可能返回 null,表示取不到有效值。
1913
1888
  # @type ErrorMessage: String
1914
1889
  # @param StartTime: 开始时间
1915
- # 注意:此字段可能返回 null,表示取不到有效值。
1916
1890
  # @type StartTime: String
1917
1891
  # @param SubmitTime: 提交时间。
1918
- # 注意:此字段可能返回 null,表示取不到有效值。
1919
1892
  # @type SubmitTime: String
1920
1893
  # @param EndTime: 结束时间。
1921
- # 注意:此字段可能返回 null,表示取不到有效值。
1922
1894
  # @type EndTime: String
1923
1895
  # @param Command: 命令行。
1924
- # 注意:此字段可能返回 null,表示取不到有效值。
1925
1896
  # @type Command: String
1926
1897
  # @param Runtime: 运行时。
1927
- # 注意:此字段可能返回 null,表示取不到有效值。
1928
1898
  # @type Runtime: String
1929
1899
  # @param Preprocess: 预处理。
1930
- # 注意:此字段可能返回 null,表示取不到有效值。
1931
1900
  # @type Preprocess: Boolean
1932
1901
  # @param PostProcess: 后处理。
1933
- # 注意:此字段可能返回 null,表示取不到有效值。
1934
1902
  # @type PostProcess: Boolean
1935
1903
  # @param CallCached: Cache命中
1936
- # 注意:此字段可能返回 null,表示取不到有效值。
1937
1904
  # @type CallCached: Boolean
1938
1905
  # @param WorkDir: 工作目录。
1939
- # 注意:此字段可能返回 null,表示取不到有效值。
1940
1906
  # @type WorkDir: String
1941
1907
  # @param Stdout: 标准输出。
1942
- # 注意:此字段可能返回 null,表示取不到有效值。
1943
1908
  # @type Stdout: String
1944
1909
  # @param Stderr: 错误输出。
1945
- # 注意:此字段可能返回 null,表示取不到有效值。
1946
1910
  # @type Stderr: String
1947
1911
  # @param Meta: 其他信息。
1948
- # 注意:此字段可能返回 null,表示取不到有效值。
1949
1912
  # @type Meta: String
1950
1913
 
1951
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
@@ -2012,13 +1975,10 @@ module TencentCloud
2012
1975
  # @param UseErrorOnHold: 是否使用错误挂起功能。
2013
1976
  # @type UseErrorOnHold: Boolean
2014
1977
  # @param FinalWorkflowOutputsDir: 输出归档COS路径。
2015
- # 注意:此字段可能返回 null,表示取不到有效值。
2016
1978
  # @type FinalWorkflowOutputsDir: String
2017
1979
  # @param UseRelativeOutputPaths: 是否使用相对目录归档输出。
2018
- # 注意:此字段可能返回 null,表示取不到有效值。
2019
1980
  # @type UseRelativeOutputPaths: Boolean
2020
1981
  # @param AddRunInfoToOutputDir: 是否添加运行信息到输出目录中
2021
- # 注意:此字段可能返回 null,表示取不到有效值。
2022
1982
  # @type AddRunInfoToOutputDir: Boolean
2023
1983
 
2024
1984
  attr_accessor :FailureMode, :UseCallCache, :UseErrorOnHold, :FinalWorkflowOutputsDir, :UseRelativeOutputPaths, :AddRunInfoToOutputDir
@@ -2203,30 +2163,25 @@ module TencentCloud
2203
2163
  # 表格。
2204
2164
  class Table < TencentCloud::Common::AbstractModel
2205
2165
  # @param TableId: 表格ID
2206
- # 注意:此字段可能返回 null,表示取不到有效值。
2207
2166
  # @type TableId: String
2208
2167
  # @param ProjectId: 关联项目ID
2209
- # 注意:此字段可能返回 null,表示取不到有效值。
2210
2168
  # @type ProjectId: String
2211
2169
  # @param Name: 表格名称
2212
- # 注意:此字段可能返回 null,表示取不到有效值。
2213
2170
  # @type Name: String
2214
2171
  # @param Description: 表格描述
2215
- # 注意:此字段可能返回 null,表示取不到有效值。
2216
2172
  # @type Description: String
2217
2173
  # @param Columns: 表格列
2218
- # 注意:此字段可能返回 null,表示取不到有效值。
2219
2174
  # @type Columns: Array
2220
2175
  # @param CreateTime: 创建时间
2221
- # 注意:此字段可能返回 null,表示取不到有效值。
2222
2176
  # @type CreateTime: String
2223
2177
  # @param Creator: 创建人
2224
- # 注意:此字段可能返回 null,表示取不到有效值。
2225
2178
  # @type Creator: String
2179
+ # @param CreatorId: 创建人ID
2180
+ # @type CreatorId: String
2226
2181
 
2227
- attr_accessor :TableId, :ProjectId, :Name, :Description, :Columns, :CreateTime, :Creator
2182
+ attr_accessor :TableId, :ProjectId, :Name, :Description, :Columns, :CreateTime, :Creator, :CreatorId
2228
2183
 
2229
- 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)
2230
2185
  @TableId = tableid
2231
2186
  @ProjectId = projectid
2232
2187
  @Name = name
@@ -2234,6 +2189,7 @@ module TencentCloud
2234
2189
  @Columns = columns
2235
2190
  @CreateTime = createtime
2236
2191
  @Creator = creator
2192
+ @CreatorId = creatorid
2237
2193
  end
2238
2194
 
2239
2195
  def deserialize(params)
@@ -2251,16 +2207,15 @@ module TencentCloud
2251
2207
  end
2252
2208
  @CreateTime = params['CreateTime']
2253
2209
  @Creator = params['Creator']
2210
+ @CreatorId = params['CreatorId']
2254
2211
  end
2255
2212
  end
2256
2213
 
2257
2214
  # 表格列。
2258
2215
  class TableColumn < TencentCloud::Common::AbstractModel
2259
2216
  # @param Header: 列名称
2260
- # 注意:此字段可能返回 null,表示取不到有效值。
2261
2217
  # @type Header: String
2262
2218
  # @param DataType: 列数据类型
2263
- # 注意:此字段可能返回 null,表示取不到有效值。
2264
2219
  # @type DataType: String
2265
2220
 
2266
2221
  attr_accessor :Header, :DataType
@@ -2279,10 +2234,8 @@ module TencentCloud
2279
2234
  # 表格行。
2280
2235
  class TableRow < TencentCloud::Common::AbstractModel
2281
2236
  # @param TableRowUuid: 表格行UUID。
2282
- # 注意:此字段可能返回 null,表示取不到有效值。
2283
2237
  # @type TableRowUuid: String
2284
2238
  # @param Content: 表格行内容。
2285
- # 注意:此字段可能返回 null,表示取不到有效值。
2286
2239
  # @type Content: Array
2287
2240
 
2288
2241
  attr_accessor :TableRowUuid, :Content
@@ -2436,13 +2389,10 @@ module TencentCloud
2436
2389
  # 缓存卷信息。
2437
2390
  class VolumeInfo < TencentCloud::Common::AbstractModel
2438
2391
  # @param VolumeId: 缓存卷ID。
2439
- # 注意:此字段可能返回 null,表示取不到有效值。
2440
2392
  # @type VolumeId: String
2441
2393
  # @param Name: 名称。
2442
- # 注意:此字段可能返回 null,表示取不到有效值。
2443
2394
  # @type Name: String
2444
2395
  # @param MountPath: 挂载路径。
2445
- # 注意:此字段可能返回 null,表示取不到有效值。
2446
2396
  # @type MountPath: String
2447
2397
 
2448
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.942
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-15 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