Class: TencentCloud::Omics::V20221128::Run
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Omics::V20221128::Run
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/v20221128/models.rb
Overview
任务。
Instance Attribute Summary collapse
- #ApplicationId ⇒ Object
- #Cache ⇒ Object
- #CreateTime ⇒ Object
- #EnvironmentId ⇒ Object
- #ErrorMessage ⇒ Object
- #ExecutionTime ⇒ Object
- #Input ⇒ Object
- #Option ⇒ Object
- #ProjectId ⇒ Object
- #RunGroupId ⇒ Object
- #RunUuid ⇒ Object
- #Status ⇒ Object
- #TableId ⇒ Object
- #TableRowUuid ⇒ Object
- #UpdateTime ⇒ Object
- #UserDefinedId ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#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) ⇒ Run
constructor
A new instance of Run.
Constructor Details
#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) ⇒ Run
Returns a new instance of Run.
1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 |
# File 'lib/v20221128/models.rb', line 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, =nil, createtime=nil, updatetime=nil) @RunUuid = runuuid @ProjectId = projectid @ApplicationId = applicationid @RunGroupId = rungroupid @EnvironmentId = environmentid @UserDefinedId = userdefinedid @TableId = tableid @TableRowUuid = tablerowuuid @Status = status @Input = input @Option = option @ExecutionTime = executiontime @Cache = cache @ErrorMessage = @CreateTime = createtime @UpdateTime = updatetime end |
Instance Attribute Details
#ApplicationId ⇒ Object
1658 1659 1660 |
# File 'lib/v20221128/models.rb', line 1658 def ApplicationId @ApplicationId end |
#Cache ⇒ Object
1658 1659 1660 |
# File 'lib/v20221128/models.rb', line 1658 def Cache @Cache end |
#CreateTime ⇒ Object
1658 1659 1660 |
# File 'lib/v20221128/models.rb', line 1658 def CreateTime @CreateTime end |
#EnvironmentId ⇒ Object
1658 1659 1660 |
# File 'lib/v20221128/models.rb', line 1658 def EnvironmentId @EnvironmentId end |
#ErrorMessage ⇒ Object
1658 1659 1660 |
# File 'lib/v20221128/models.rb', line 1658 def ErrorMessage @ErrorMessage end |
#ExecutionTime ⇒ Object
1658 1659 1660 |
# File 'lib/v20221128/models.rb', line 1658 def ExecutionTime @ExecutionTime end |
#Input ⇒ Object
1658 1659 1660 |
# File 'lib/v20221128/models.rb', line 1658 def Input @Input end |
#Option ⇒ Object
1658 1659 1660 |
# File 'lib/v20221128/models.rb', line 1658 def Option @Option end |
#ProjectId ⇒ Object
1658 1659 1660 |
# File 'lib/v20221128/models.rb', line 1658 def ProjectId @ProjectId end |
#RunGroupId ⇒ Object
1658 1659 1660 |
# File 'lib/v20221128/models.rb', line 1658 def RunGroupId @RunGroupId end |
#RunUuid ⇒ Object
1658 1659 1660 |
# File 'lib/v20221128/models.rb', line 1658 def RunUuid @RunUuid end |
#Status ⇒ Object
1658 1659 1660 |
# File 'lib/v20221128/models.rb', line 1658 def Status @Status end |
#TableId ⇒ Object
1658 1659 1660 |
# File 'lib/v20221128/models.rb', line 1658 def TableId @TableId end |
#TableRowUuid ⇒ Object
1658 1659 1660 |
# File 'lib/v20221128/models.rb', line 1658 def TableRowUuid @TableRowUuid end |
#UpdateTime ⇒ Object
1658 1659 1660 |
# File 'lib/v20221128/models.rb', line 1658 def UpdateTime @UpdateTime end |
#UserDefinedId ⇒ Object
1658 1659 1660 |
# File 'lib/v20221128/models.rb', line 1658 def UserDefinedId @UserDefinedId end |
Instance Method Details
#deserialize(params) ⇒ Object
1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 |
# File 'lib/v20221128/models.rb', line 1682 def deserialize(params) @RunUuid = params['RunUuid'] @ProjectId = params['ProjectId'] @ApplicationId = params['ApplicationId'] @RunGroupId = params['RunGroupId'] @EnvironmentId = params['EnvironmentId'] @UserDefinedId = params['UserDefinedId'] @TableId = params['TableId'] @TableRowUuid = params['TableRowUuid'] @Status = params['Status'] @Input = params['Input'] unless params['Option'].nil? @Option = RunOption.new @Option.deserialize(params['Option']) end unless params['ExecutionTime'].nil? @ExecutionTime = ExecutionTime.new @ExecutionTime.deserialize(params['ExecutionTime']) end unless params['Cache'].nil? @Cache = CacheInfo.new @Cache.deserialize(params['Cache']) end @ErrorMessage = params['ErrorMessage'] @CreateTime = params['CreateTime'] @UpdateTime = params['UpdateTime'] end |