tencentcloud-sdk-omics 3.0.1133 → 3.0.1138
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 +125 -10
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9175d52814df3c87c42b0d9dcd0856574ea4bdcb
|
4
|
+
data.tar.gz: 41f1fea9b567e8635a7663ab911e57259ad51578
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 907b52d906be4a7da99873e8bcce45cd50a2dd7d0f8426debe79192c202a253dab2a2c72e9865003261ca0a685101a2500c3cbb2f0eec901973e86b8f40bf40b
|
7
|
+
data.tar.gz: 1b5f3da40e2ecf588e3118226185a092b8d8657a35625704dccc7c8cca4bfc46f9bc665ba7fdb051d55242dc6f58b0cfba851519cb5b8312cfe248f0c9eb8d33
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1138
|
data/lib/v20221128/models.rb
CHANGED
@@ -1389,6 +1389,30 @@ module TencentCloud
|
|
1389
1389
|
end
|
1390
1390
|
end
|
1391
1391
|
|
1392
|
+
# 通知类型
|
1393
|
+
class NotificationType < TencentCloud::Common::AbstractModel
|
1394
|
+
# @param StationMessage: 腾讯健康组学平台站点信息。
|
1395
|
+
# @type StationMessage: Boolean
|
1396
|
+
# @param Email: 邮箱列表。
|
1397
|
+
# @type Email: Array
|
1398
|
+
# @param CurrentUserEmail: 当前用户邮箱。
|
1399
|
+
# @type CurrentUserEmail: Boolean
|
1400
|
+
|
1401
|
+
attr_accessor :StationMessage, :Email, :CurrentUserEmail
|
1402
|
+
|
1403
|
+
def initialize(stationmessage=nil, email=nil, currentuseremail=nil)
|
1404
|
+
@StationMessage = stationmessage
|
1405
|
+
@Email = email
|
1406
|
+
@CurrentUserEmail = currentuseremail
|
1407
|
+
end
|
1408
|
+
|
1409
|
+
def deserialize(params)
|
1410
|
+
@StationMessage = params['StationMessage']
|
1411
|
+
@Email = params['Email']
|
1412
|
+
@CurrentUserEmail = params['CurrentUserEmail']
|
1413
|
+
end
|
1414
|
+
end
|
1415
|
+
|
1392
1416
|
# 云资源ID。
|
1393
1417
|
class ResourceIds < TencentCloud::Common::AbstractModel
|
1394
1418
|
# @param VPCId: 私有网络ID。
|
@@ -1651,10 +1675,18 @@ module TencentCloud
|
|
1651
1675
|
# @type AccessMode: String
|
1652
1676
|
# @param VolumeIds: 缓存卷ID,不填使用默认缓存卷,暂时仅支持Nextflow。
|
1653
1677
|
# @type VolumeIds: Array
|
1654
|
-
|
1655
|
-
|
1656
|
-
|
1657
|
-
|
1678
|
+
# @param ResultNotification: 是否开启结果通知。
|
1679
|
+
# @type ResultNotification: Boolean
|
1680
|
+
# @param TimeoutNotification: 是否开启超时通知。
|
1681
|
+
# @type TimeoutNotification: Boolean
|
1682
|
+
# @param TimeoutNotificationMinutes: 任务超时通知时间(单位:分钟),支持5到2880分钟。
|
1683
|
+
# @type TimeoutNotificationMinutes: Integer
|
1684
|
+
# @param EmailForNotification: 接受通知邮件地址列表。
|
1685
|
+
# @type EmailForNotification: Array
|
1686
|
+
|
1687
|
+
attr_accessor :ApplicationId, :Name, :EnvironmentId, :ProjectId, :Description, :InputCosUri, :InputBase64, :TableId, :TableRowUuids, :CacheClearDelay, :ApplicationVersionId, :Option, :NFOption, :WorkDir, :AccessMode, :VolumeIds, :ResultNotification, :TimeoutNotification, :TimeoutNotificationMinutes, :EmailForNotification
|
1688
|
+
|
1689
|
+
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
1690
|
@ApplicationId = applicationid
|
1659
1691
|
@Name = name
|
1660
1692
|
@EnvironmentId = environmentid
|
@@ -1671,6 +1703,10 @@ module TencentCloud
|
|
1671
1703
|
@WorkDir = workdir
|
1672
1704
|
@AccessMode = accessmode
|
1673
1705
|
@VolumeIds = volumeids
|
1706
|
+
@ResultNotification = resultnotification
|
1707
|
+
@TimeoutNotification = timeoutnotification
|
1708
|
+
@TimeoutNotificationMinutes = timeoutnotificationminutes
|
1709
|
+
@EmailForNotification = emailfornotification
|
1674
1710
|
end
|
1675
1711
|
|
1676
1712
|
def deserialize(params)
|
@@ -1696,6 +1732,10 @@ module TencentCloud
|
|
1696
1732
|
@WorkDir = params['WorkDir']
|
1697
1733
|
@AccessMode = params['AccessMode']
|
1698
1734
|
@VolumeIds = params['VolumeIds']
|
1735
|
+
@ResultNotification = params['ResultNotification']
|
1736
|
+
@TimeoutNotification = params['TimeoutNotification']
|
1737
|
+
@TimeoutNotificationMinutes = params['TimeoutNotificationMinutes']
|
1738
|
+
@EmailForNotification = params['EmailForNotification']
|
1699
1739
|
end
|
1700
1740
|
end
|
1701
1741
|
|
@@ -1782,8 +1822,8 @@ module TencentCloud
|
|
1782
1822
|
# @type ExecutionTime: :class:`Tencentcloud::Omics.v20221128.models.ExecutionTime`
|
1783
1823
|
# @param ErrorMessage: 错误信息。
|
1784
1824
|
# @type ErrorMessage: String
|
1785
|
-
# @param
|
1786
|
-
# @type
|
1825
|
+
# @param Notification: 任务批次通知。
|
1826
|
+
# @type Notification: :class:`Tencentcloud::Omics.v20221128.models.RunGroupNotification`
|
1787
1827
|
# @param CreateTime: 创建时间。
|
1788
1828
|
# @type CreateTime: String
|
1789
1829
|
# @param UpdateTime: 更新时间。
|
@@ -1792,10 +1832,12 @@ module TencentCloud
|
|
1792
1832
|
# @type Creator: String
|
1793
1833
|
# @param CreatorId: 创建者ID。
|
1794
1834
|
# @type CreatorId: String
|
1835
|
+
# @param ResultNotify: 运行结果通知方式。
|
1836
|
+
# @type ResultNotify: String
|
1795
1837
|
|
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, :
|
1838
|
+
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
1839
|
|
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,
|
1840
|
+
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
1841
|
@RunGroupId = rungroupid
|
1800
1842
|
@ProjectId = projectid
|
1801
1843
|
@ProjectName = projectname
|
@@ -1823,11 +1865,12 @@ module TencentCloud
|
|
1823
1865
|
@RunStatusCounts = runstatuscounts
|
1824
1866
|
@ExecutionTime = executiontime
|
1825
1867
|
@ErrorMessage = errormessage
|
1826
|
-
@
|
1868
|
+
@Notification = notification
|
1827
1869
|
@CreateTime = createtime
|
1828
1870
|
@UpdateTime = updatetime
|
1829
1871
|
@Creator = creator
|
1830
1872
|
@CreatorId = creatorid
|
1873
|
+
@ResultNotify = resultnotify
|
1831
1874
|
end
|
1832
1875
|
|
1833
1876
|
def deserialize(params)
|
@@ -1884,11 +1927,83 @@ module TencentCloud
|
|
1884
1927
|
@ExecutionTime.deserialize(params['ExecutionTime'])
|
1885
1928
|
end
|
1886
1929
|
@ErrorMessage = params['ErrorMessage']
|
1887
|
-
|
1930
|
+
unless params['Notification'].nil?
|
1931
|
+
@Notification = RunGroupNotification.new
|
1932
|
+
@Notification.deserialize(params['Notification'])
|
1933
|
+
end
|
1888
1934
|
@CreateTime = params['CreateTime']
|
1889
1935
|
@UpdateTime = params['UpdateTime']
|
1890
1936
|
@Creator = params['Creator']
|
1891
1937
|
@CreatorId = params['CreatorId']
|
1938
|
+
@ResultNotify = params['ResultNotify']
|
1939
|
+
end
|
1940
|
+
end
|
1941
|
+
|
1942
|
+
# 任务批次通知。
|
1943
|
+
class RunGroupNotification < TencentCloud::Common::AbstractModel
|
1944
|
+
# @param ResultNotification: 结果通知。
|
1945
|
+
# @type ResultNotification: :class:`Tencentcloud::Omics.v20221128.models.RunGroupResultNotification`
|
1946
|
+
# @param TimeoutNotification: 超时通知。
|
1947
|
+
# @type TimeoutNotification: :class:`Tencentcloud::Omics.v20221128.models.RunGroupTimeoutNotification`
|
1948
|
+
|
1949
|
+
attr_accessor :ResultNotification, :TimeoutNotification
|
1950
|
+
|
1951
|
+
def initialize(resultnotification=nil, timeoutnotification=nil)
|
1952
|
+
@ResultNotification = resultnotification
|
1953
|
+
@TimeoutNotification = timeoutnotification
|
1954
|
+
end
|
1955
|
+
|
1956
|
+
def deserialize(params)
|
1957
|
+
unless params['ResultNotification'].nil?
|
1958
|
+
@ResultNotification = RunGroupResultNotification.new
|
1959
|
+
@ResultNotification.deserialize(params['ResultNotification'])
|
1960
|
+
end
|
1961
|
+
unless params['TimeoutNotification'].nil?
|
1962
|
+
@TimeoutNotification = RunGroupTimeoutNotification.new
|
1963
|
+
@TimeoutNotification.deserialize(params['TimeoutNotification'])
|
1964
|
+
end
|
1965
|
+
end
|
1966
|
+
end
|
1967
|
+
|
1968
|
+
# 任务批次结果通知
|
1969
|
+
class RunGroupResultNotification < TencentCloud::Common::AbstractModel
|
1970
|
+
# @param NotificationType: 通知类型。
|
1971
|
+
# @type NotificationType: :class:`Tencentcloud::Omics.v20221128.models.NotificationType`
|
1972
|
+
|
1973
|
+
attr_accessor :NotificationType
|
1974
|
+
|
1975
|
+
def initialize(notificationtype=nil)
|
1976
|
+
@NotificationType = notificationtype
|
1977
|
+
end
|
1978
|
+
|
1979
|
+
def deserialize(params)
|
1980
|
+
unless params['NotificationType'].nil?
|
1981
|
+
@NotificationType = NotificationType.new
|
1982
|
+
@NotificationType.deserialize(params['NotificationType'])
|
1983
|
+
end
|
1984
|
+
end
|
1985
|
+
end
|
1986
|
+
|
1987
|
+
# 任务批次超时通知。
|
1988
|
+
class RunGroupTimeoutNotification < TencentCloud::Common::AbstractModel
|
1989
|
+
# @param TimeoutMinutes: 任务批次超时时间,单位分钟。
|
1990
|
+
# @type TimeoutMinutes: Integer
|
1991
|
+
# @param NotificationType: 通知类型。
|
1992
|
+
# @type NotificationType: :class:`Tencentcloud::Omics.v20221128.models.NotificationType`
|
1993
|
+
|
1994
|
+
attr_accessor :TimeoutMinutes, :NotificationType
|
1995
|
+
|
1996
|
+
def initialize(timeoutminutes=nil, notificationtype=nil)
|
1997
|
+
@TimeoutMinutes = timeoutminutes
|
1998
|
+
@NotificationType = notificationtype
|
1999
|
+
end
|
2000
|
+
|
2001
|
+
def deserialize(params)
|
2002
|
+
@TimeoutMinutes = params['TimeoutMinutes']
|
2003
|
+
unless params['NotificationType'].nil?
|
2004
|
+
@NotificationType = NotificationType.new
|
2005
|
+
@NotificationType.deserialize(params['NotificationType'])
|
2006
|
+
end
|
1892
2007
|
end
|
1893
2008
|
end
|
1894
2009
|
|
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.1138
|
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-09-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|