tencentcloud-sdk-omics 3.0.1133 → 3.0.1161
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 +200 -16
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 83d108245b795a4486e91982b7f0f501b1c36807
|
|
4
|
+
data.tar.gz: 2e88f9b044c168ec4623aeafeb023e2c14accfdf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 683588ea5eae00c90e35ac511ab86f5ca3c46552043e9c071cab9b0eb6e88a025392dfd788226470a3e2930e0c1f0fedf52cd5129fc993b2316e93377cc5f6e8
|
|
7
|
+
data.tar.gz: 1f0ba821e0d177b83f3c1e3ce6744d4a18e708a3dc46ae61df4c5f4f92a8122eea82d94e58c9aab3d2478e19e0b65ab3e86f936963203466d7a1127920bee0bc
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1161
|
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, 10
|
|
48
|
+
deprecate :GitInfo=, :none, 2025, 10
|
|
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
|
|
@@ -326,6 +326,26 @@ module TencentCloud
|
|
|
326
326
|
end
|
|
327
327
|
end
|
|
328
328
|
|
|
329
|
+
# Cromwell工作流引擎设置
|
|
330
|
+
class CromwellConfig < TencentCloud::Common::AbstractModel
|
|
331
|
+
# @param MaxConcurrentWorkflows: 工作流并发数
|
|
332
|
+
# @type MaxConcurrentWorkflows: Integer
|
|
333
|
+
# @param ConcurrentJobLimit: 作业并发数
|
|
334
|
+
# @type ConcurrentJobLimit: Integer
|
|
335
|
+
|
|
336
|
+
attr_accessor :MaxConcurrentWorkflows, :ConcurrentJobLimit
|
|
337
|
+
|
|
338
|
+
def initialize(maxconcurrentworkflows=nil, concurrentjoblimit=nil)
|
|
339
|
+
@MaxConcurrentWorkflows = maxconcurrentworkflows
|
|
340
|
+
@ConcurrentJobLimit = concurrentjoblimit
|
|
341
|
+
end
|
|
342
|
+
|
|
343
|
+
def deserialize(params)
|
|
344
|
+
@MaxConcurrentWorkflows = params['MaxConcurrentWorkflows']
|
|
345
|
+
@ConcurrentJobLimit = params['ConcurrentJobLimit']
|
|
346
|
+
end
|
|
347
|
+
end
|
|
348
|
+
|
|
329
349
|
# 数据库配置。
|
|
330
350
|
class DatabaseOption < TencentCloud::Common::AbstractModel
|
|
331
351
|
# @param Zone: 数据库可用区。
|
|
@@ -899,10 +919,12 @@ module TencentCloud
|
|
|
899
919
|
# @type LastWorkflowUuid: String
|
|
900
920
|
# @param CreationTime: 创建时间。
|
|
901
921
|
# @type CreationTime: String
|
|
922
|
+
# @param RuntimeConfig: 运行时配置。
|
|
923
|
+
# @type RuntimeConfig: :class:`Tencentcloud::Omics.v20221128.models.EnvironmentRuntimeConfig`
|
|
902
924
|
|
|
903
|
-
attr_accessor :EnvironmentId, :Name, :Description, :Region, :Type, :Status, :Available, :IsDefault, :IsManaged, :Message, :ResourceIds, :LastWorkflowUuid, :CreationTime
|
|
925
|
+
attr_accessor :EnvironmentId, :Name, :Description, :Region, :Type, :Status, :Available, :IsDefault, :IsManaged, :Message, :ResourceIds, :LastWorkflowUuid, :CreationTime, :RuntimeConfig
|
|
904
926
|
|
|
905
|
-
def initialize(environmentid=nil, name=nil, description=nil, region=nil, type=nil, status=nil, available=nil, isdefault=nil, ismanaged=nil, message=nil, resourceids=nil, lastworkflowuuid=nil, creationtime=nil)
|
|
927
|
+
def initialize(environmentid=nil, name=nil, description=nil, region=nil, type=nil, status=nil, available=nil, isdefault=nil, ismanaged=nil, message=nil, resourceids=nil, lastworkflowuuid=nil, creationtime=nil, runtimeconfig=nil)
|
|
906
928
|
@EnvironmentId = environmentid
|
|
907
929
|
@Name = name
|
|
908
930
|
@Description = description
|
|
@@ -916,6 +938,7 @@ module TencentCloud
|
|
|
916
938
|
@ResourceIds = resourceids
|
|
917
939
|
@LastWorkflowUuid = lastworkflowuuid
|
|
918
940
|
@CreationTime = creationtime
|
|
941
|
+
@RuntimeConfig = runtimeconfig
|
|
919
942
|
end
|
|
920
943
|
|
|
921
944
|
def deserialize(params)
|
|
@@ -935,6 +958,10 @@ module TencentCloud
|
|
|
935
958
|
end
|
|
936
959
|
@LastWorkflowUuid = params['LastWorkflowUuid']
|
|
937
960
|
@CreationTime = params['CreationTime']
|
|
961
|
+
unless params['RuntimeConfig'].nil?
|
|
962
|
+
@RuntimeConfig = EnvironmentRuntimeConfig.new
|
|
963
|
+
@RuntimeConfig.deserialize(params['RuntimeConfig'])
|
|
964
|
+
end
|
|
938
965
|
end
|
|
939
966
|
end
|
|
940
967
|
|
|
@@ -992,6 +1019,32 @@ module TencentCloud
|
|
|
992
1019
|
end
|
|
993
1020
|
end
|
|
994
1021
|
|
|
1022
|
+
# 环境运行时配置
|
|
1023
|
+
class EnvironmentRuntimeConfig < TencentCloud::Common::AbstractModel
|
|
1024
|
+
# @param CromwellConfig: Cromwell工作流引擎设置
|
|
1025
|
+
# @type CromwellConfig: :class:`Tencentcloud::Omics.v20221128.models.CromwellConfig`
|
|
1026
|
+
# @param NextflowConfig: Nextflow工作流引擎设置
|
|
1027
|
+
# @type NextflowConfig: :class:`Tencentcloud::Omics.v20221128.models.NextflowConfig`
|
|
1028
|
+
|
|
1029
|
+
attr_accessor :CromwellConfig, :NextflowConfig
|
|
1030
|
+
|
|
1031
|
+
def initialize(cromwellconfig=nil, nextflowconfig=nil)
|
|
1032
|
+
@CromwellConfig = cromwellconfig
|
|
1033
|
+
@NextflowConfig = nextflowconfig
|
|
1034
|
+
end
|
|
1035
|
+
|
|
1036
|
+
def deserialize(params)
|
|
1037
|
+
unless params['CromwellConfig'].nil?
|
|
1038
|
+
@CromwellConfig = CromwellConfig.new
|
|
1039
|
+
@CromwellConfig.deserialize(params['CromwellConfig'])
|
|
1040
|
+
end
|
|
1041
|
+
unless params['NextflowConfig'].nil?
|
|
1042
|
+
@NextflowConfig = NextflowConfig.new
|
|
1043
|
+
@NextflowConfig.deserialize(params['NextflowConfig'])
|
|
1044
|
+
end
|
|
1045
|
+
end
|
|
1046
|
+
end
|
|
1047
|
+
|
|
995
1048
|
# 执行时间。
|
|
996
1049
|
class ExecutionTime < TencentCloud::Common::AbstractModel
|
|
997
1050
|
# @param SubmitTime: 提交时间。
|
|
@@ -1389,6 +1442,46 @@ module TencentCloud
|
|
|
1389
1442
|
end
|
|
1390
1443
|
end
|
|
1391
1444
|
|
|
1445
|
+
# Nextflow工作流引擎设置
|
|
1446
|
+
class NextflowConfig < TencentCloud::Common::AbstractModel
|
|
1447
|
+
# @param ExecutorQueueSize: 工作流任务并发数
|
|
1448
|
+
# @type ExecutorQueueSize: Integer
|
|
1449
|
+
|
|
1450
|
+
attr_accessor :ExecutorQueueSize
|
|
1451
|
+
|
|
1452
|
+
def initialize(executorqueuesize=nil)
|
|
1453
|
+
@ExecutorQueueSize = executorqueuesize
|
|
1454
|
+
end
|
|
1455
|
+
|
|
1456
|
+
def deserialize(params)
|
|
1457
|
+
@ExecutorQueueSize = params['ExecutorQueueSize']
|
|
1458
|
+
end
|
|
1459
|
+
end
|
|
1460
|
+
|
|
1461
|
+
# 通知类型
|
|
1462
|
+
class NotificationType < TencentCloud::Common::AbstractModel
|
|
1463
|
+
# @param StationMessage: 腾讯健康组学平台站点信息。
|
|
1464
|
+
# @type StationMessage: Boolean
|
|
1465
|
+
# @param Email: 邮箱列表。
|
|
1466
|
+
# @type Email: Array
|
|
1467
|
+
# @param CurrentUserEmail: 当前用户邮箱。
|
|
1468
|
+
# @type CurrentUserEmail: Boolean
|
|
1469
|
+
|
|
1470
|
+
attr_accessor :StationMessage, :Email, :CurrentUserEmail
|
|
1471
|
+
|
|
1472
|
+
def initialize(stationmessage=nil, email=nil, currentuseremail=nil)
|
|
1473
|
+
@StationMessage = stationmessage
|
|
1474
|
+
@Email = email
|
|
1475
|
+
@CurrentUserEmail = currentuseremail
|
|
1476
|
+
end
|
|
1477
|
+
|
|
1478
|
+
def deserialize(params)
|
|
1479
|
+
@StationMessage = params['StationMessage']
|
|
1480
|
+
@Email = params['Email']
|
|
1481
|
+
@CurrentUserEmail = params['CurrentUserEmail']
|
|
1482
|
+
end
|
|
1483
|
+
end
|
|
1484
|
+
|
|
1392
1485
|
# 云资源ID。
|
|
1393
1486
|
class ResourceIds < TencentCloud::Common::AbstractModel
|
|
1394
1487
|
# @param VPCId: 私有网络ID。
|
|
@@ -1564,8 +1657,8 @@ module TencentCloud
|
|
|
1564
1657
|
|
|
1565
1658
|
attr_accessor :RunUuid, :ProjectId, :ApplicationId, :RunGroupId, :EnvironmentId, :UserDefinedId, :TableId, :TableRowUuid, :Status, :Input, :Option, :ExecutionTime, :Cache, :ErrorMessage, :CreateTime, :UpdateTime
|
|
1566
1659
|
extend Gem::Deprecate
|
|
1567
|
-
deprecate :Option, :none, 2025,
|
|
1568
|
-
deprecate :Option=, :none, 2025,
|
|
1660
|
+
deprecate :Option, :none, 2025, 10
|
|
1661
|
+
deprecate :Option=, :none, 2025, 10
|
|
1569
1662
|
|
|
1570
1663
|
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)
|
|
1571
1664
|
@RunUuid = runuuid
|
|
@@ -1651,10 +1744,18 @@ module TencentCloud
|
|
|
1651
1744
|
# @type AccessMode: String
|
|
1652
1745
|
# @param VolumeIds: 缓存卷ID,不填使用默认缓存卷,暂时仅支持Nextflow。
|
|
1653
1746
|
# @type VolumeIds: Array
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1747
|
+
# @param ResultNotification: 是否开启结果通知。
|
|
1748
|
+
# @type ResultNotification: Boolean
|
|
1749
|
+
# @param TimeoutNotification: 是否开启超时通知。
|
|
1750
|
+
# @type TimeoutNotification: Boolean
|
|
1751
|
+
# @param TimeoutNotificationMinutes: 任务超时通知时间(单位:分钟),支持5到2880分钟。
|
|
1752
|
+
# @type TimeoutNotificationMinutes: Integer
|
|
1753
|
+
# @param EmailForNotification: 接受通知邮件地址列表。
|
|
1754
|
+
# @type EmailForNotification: Array
|
|
1755
|
+
|
|
1756
|
+
attr_accessor :ApplicationId, :Name, :EnvironmentId, :ProjectId, :Description, :InputCosUri, :InputBase64, :TableId, :TableRowUuids, :CacheClearDelay, :ApplicationVersionId, :Option, :NFOption, :WorkDir, :AccessMode, :VolumeIds, :ResultNotification, :TimeoutNotification, :TimeoutNotificationMinutes, :EmailForNotification
|
|
1757
|
+
|
|
1758
|
+
def initialize(applicationid=nil, name=nil, environmentid=nil, projectid=nil, description=nil, inputcosuri=nil, inputbase64=nil, tableid=nil, tablerowuuids=nil, cachecleardelay=nil, applicationversionid=nil, option=nil, nfoption=nil, workdir=nil, accessmode=nil, volumeids=nil, resultnotification=nil, timeoutnotification=nil, timeoutnotificationminutes=nil, emailfornotification=nil)
|
|
1658
1759
|
@ApplicationId = applicationid
|
|
1659
1760
|
@Name = name
|
|
1660
1761
|
@EnvironmentId = environmentid
|
|
@@ -1671,6 +1772,10 @@ module TencentCloud
|
|
|
1671
1772
|
@WorkDir = workdir
|
|
1672
1773
|
@AccessMode = accessmode
|
|
1673
1774
|
@VolumeIds = volumeids
|
|
1775
|
+
@ResultNotification = resultnotification
|
|
1776
|
+
@TimeoutNotification = timeoutnotification
|
|
1777
|
+
@TimeoutNotificationMinutes = timeoutnotificationminutes
|
|
1778
|
+
@EmailForNotification = emailfornotification
|
|
1674
1779
|
end
|
|
1675
1780
|
|
|
1676
1781
|
def deserialize(params)
|
|
@@ -1696,6 +1801,10 @@ module TencentCloud
|
|
|
1696
1801
|
@WorkDir = params['WorkDir']
|
|
1697
1802
|
@AccessMode = params['AccessMode']
|
|
1698
1803
|
@VolumeIds = params['VolumeIds']
|
|
1804
|
+
@ResultNotification = params['ResultNotification']
|
|
1805
|
+
@TimeoutNotification = params['TimeoutNotification']
|
|
1806
|
+
@TimeoutNotificationMinutes = params['TimeoutNotificationMinutes']
|
|
1807
|
+
@EmailForNotification = params['EmailForNotification']
|
|
1699
1808
|
end
|
|
1700
1809
|
end
|
|
1701
1810
|
|
|
@@ -1782,8 +1891,8 @@ module TencentCloud
|
|
|
1782
1891
|
# @type ExecutionTime: :class:`Tencentcloud::Omics.v20221128.models.ExecutionTime`
|
|
1783
1892
|
# @param ErrorMessage: 错误信息。
|
|
1784
1893
|
# @type ErrorMessage: String
|
|
1785
|
-
# @param
|
|
1786
|
-
# @type
|
|
1894
|
+
# @param Notification: 任务批次通知。
|
|
1895
|
+
# @type Notification: :class:`Tencentcloud::Omics.v20221128.models.RunGroupNotification`
|
|
1787
1896
|
# @param CreateTime: 创建时间。
|
|
1788
1897
|
# @type CreateTime: String
|
|
1789
1898
|
# @param UpdateTime: 更新时间。
|
|
@@ -1792,10 +1901,12 @@ module TencentCloud
|
|
|
1792
1901
|
# @type Creator: String
|
|
1793
1902
|
# @param CreatorId: 创建者ID。
|
|
1794
1903
|
# @type CreatorId: String
|
|
1904
|
+
# @param ResultNotify: 运行结果通知方式。
|
|
1905
|
+
# @type ResultNotify: String
|
|
1795
1906
|
|
|
1796
|
-
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, :
|
|
1907
|
+
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, :Notification, :CreateTime, :UpdateTime, :Creator, :CreatorId, :ResultNotify
|
|
1797
1908
|
|
|
1798
|
-
def initialize(rungroupid=nil, projectid=nil, projectname=nil, applicationid=nil, applicationname=nil, applicationtype=nil, applicationversion=nil, accessmode=nil, environmentid=nil, environmentname=nil, tableid=nil, name=nil, description=nil, status=nil, type=nil, workdir=nil, input=nil, inputtype=nil, inputcosuri=nil, inputtemplateid=nil, option=nil, nfoption=nil, volumes=nil, totalrun=nil, runstatuscounts=nil, executiontime=nil, errormessage=nil,
|
|
1909
|
+
def initialize(rungroupid=nil, projectid=nil, projectname=nil, applicationid=nil, applicationname=nil, applicationtype=nil, applicationversion=nil, accessmode=nil, environmentid=nil, environmentname=nil, tableid=nil, name=nil, description=nil, status=nil, type=nil, workdir=nil, input=nil, inputtype=nil, inputcosuri=nil, inputtemplateid=nil, option=nil, nfoption=nil, volumes=nil, totalrun=nil, runstatuscounts=nil, executiontime=nil, errormessage=nil, notification=nil, createtime=nil, updatetime=nil, creator=nil, creatorid=nil, resultnotify=nil)
|
|
1799
1910
|
@RunGroupId = rungroupid
|
|
1800
1911
|
@ProjectId = projectid
|
|
1801
1912
|
@ProjectName = projectname
|
|
@@ -1823,11 +1934,12 @@ module TencentCloud
|
|
|
1823
1934
|
@RunStatusCounts = runstatuscounts
|
|
1824
1935
|
@ExecutionTime = executiontime
|
|
1825
1936
|
@ErrorMessage = errormessage
|
|
1826
|
-
@
|
|
1937
|
+
@Notification = notification
|
|
1827
1938
|
@CreateTime = createtime
|
|
1828
1939
|
@UpdateTime = updatetime
|
|
1829
1940
|
@Creator = creator
|
|
1830
1941
|
@CreatorId = creatorid
|
|
1942
|
+
@ResultNotify = resultnotify
|
|
1831
1943
|
end
|
|
1832
1944
|
|
|
1833
1945
|
def deserialize(params)
|
|
@@ -1884,11 +1996,83 @@ module TencentCloud
|
|
|
1884
1996
|
@ExecutionTime.deserialize(params['ExecutionTime'])
|
|
1885
1997
|
end
|
|
1886
1998
|
@ErrorMessage = params['ErrorMessage']
|
|
1887
|
-
|
|
1999
|
+
unless params['Notification'].nil?
|
|
2000
|
+
@Notification = RunGroupNotification.new
|
|
2001
|
+
@Notification.deserialize(params['Notification'])
|
|
2002
|
+
end
|
|
1888
2003
|
@CreateTime = params['CreateTime']
|
|
1889
2004
|
@UpdateTime = params['UpdateTime']
|
|
1890
2005
|
@Creator = params['Creator']
|
|
1891
2006
|
@CreatorId = params['CreatorId']
|
|
2007
|
+
@ResultNotify = params['ResultNotify']
|
|
2008
|
+
end
|
|
2009
|
+
end
|
|
2010
|
+
|
|
2011
|
+
# 任务批次通知。
|
|
2012
|
+
class RunGroupNotification < TencentCloud::Common::AbstractModel
|
|
2013
|
+
# @param ResultNotification: 结果通知。
|
|
2014
|
+
# @type ResultNotification: :class:`Tencentcloud::Omics.v20221128.models.RunGroupResultNotification`
|
|
2015
|
+
# @param TimeoutNotification: 超时通知。
|
|
2016
|
+
# @type TimeoutNotification: :class:`Tencentcloud::Omics.v20221128.models.RunGroupTimeoutNotification`
|
|
2017
|
+
|
|
2018
|
+
attr_accessor :ResultNotification, :TimeoutNotification
|
|
2019
|
+
|
|
2020
|
+
def initialize(resultnotification=nil, timeoutnotification=nil)
|
|
2021
|
+
@ResultNotification = resultnotification
|
|
2022
|
+
@TimeoutNotification = timeoutnotification
|
|
2023
|
+
end
|
|
2024
|
+
|
|
2025
|
+
def deserialize(params)
|
|
2026
|
+
unless params['ResultNotification'].nil?
|
|
2027
|
+
@ResultNotification = RunGroupResultNotification.new
|
|
2028
|
+
@ResultNotification.deserialize(params['ResultNotification'])
|
|
2029
|
+
end
|
|
2030
|
+
unless params['TimeoutNotification'].nil?
|
|
2031
|
+
@TimeoutNotification = RunGroupTimeoutNotification.new
|
|
2032
|
+
@TimeoutNotification.deserialize(params['TimeoutNotification'])
|
|
2033
|
+
end
|
|
2034
|
+
end
|
|
2035
|
+
end
|
|
2036
|
+
|
|
2037
|
+
# 任务批次结果通知
|
|
2038
|
+
class RunGroupResultNotification < TencentCloud::Common::AbstractModel
|
|
2039
|
+
# @param NotificationType: 通知类型。
|
|
2040
|
+
# @type NotificationType: :class:`Tencentcloud::Omics.v20221128.models.NotificationType`
|
|
2041
|
+
|
|
2042
|
+
attr_accessor :NotificationType
|
|
2043
|
+
|
|
2044
|
+
def initialize(notificationtype=nil)
|
|
2045
|
+
@NotificationType = notificationtype
|
|
2046
|
+
end
|
|
2047
|
+
|
|
2048
|
+
def deserialize(params)
|
|
2049
|
+
unless params['NotificationType'].nil?
|
|
2050
|
+
@NotificationType = NotificationType.new
|
|
2051
|
+
@NotificationType.deserialize(params['NotificationType'])
|
|
2052
|
+
end
|
|
2053
|
+
end
|
|
2054
|
+
end
|
|
2055
|
+
|
|
2056
|
+
# 任务批次超时通知。
|
|
2057
|
+
class RunGroupTimeoutNotification < TencentCloud::Common::AbstractModel
|
|
2058
|
+
# @param TimeoutMinutes: 任务批次超时时间,单位分钟。
|
|
2059
|
+
# @type TimeoutMinutes: Integer
|
|
2060
|
+
# @param NotificationType: 通知类型。
|
|
2061
|
+
# @type NotificationType: :class:`Tencentcloud::Omics.v20221128.models.NotificationType`
|
|
2062
|
+
|
|
2063
|
+
attr_accessor :TimeoutMinutes, :NotificationType
|
|
2064
|
+
|
|
2065
|
+
def initialize(timeoutminutes=nil, notificationtype=nil)
|
|
2066
|
+
@TimeoutMinutes = timeoutminutes
|
|
2067
|
+
@NotificationType = notificationtype
|
|
2068
|
+
end
|
|
2069
|
+
|
|
2070
|
+
def deserialize(params)
|
|
2071
|
+
@TimeoutMinutes = params['TimeoutMinutes']
|
|
2072
|
+
unless params['NotificationType'].nil?
|
|
2073
|
+
@NotificationType = NotificationType.new
|
|
2074
|
+
@NotificationType.deserialize(params['NotificationType'])
|
|
2075
|
+
end
|
|
1892
2076
|
end
|
|
1893
2077
|
end
|
|
1894
2078
|
|
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.1161
|
|
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-11-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -33,9 +33,9 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
+
- lib/tencentcloud-sdk-omics.rb
|
|
36
37
|
- lib/v20221128/client.rb
|
|
37
38
|
- lib/v20221128/models.rb
|
|
38
|
-
- lib/tencentcloud-sdk-omics.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
41
41
|
licenses:
|