tencentcloud-sdk-omics 3.0.967 → 3.0.968
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20221128/models.rb +10 -6
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cd79fa4c37c758386c447e781360b69e8c45256b
|
4
|
+
data.tar.gz: 45bd9990b2d3e583a6598f7a499afe13e259b0b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d0bff53b64b71d4086601789221551b0dbfa2bc686dd0b1f4afcc06ed0e197f655cad991bb9f47ce56f0d24718a5c527b5302f0d0c750fb50c80d4e980dd4280
|
7
|
+
data.tar.gz: 30b578a851cdc6ab5f435185b57e193472029aae100cdf6393b34fb054c7c16154fa762b87695d97341f6779ef86ba2344a58044a7553ee4e72e9609ea363272
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.968
|
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, 2024,
|
48
|
-
deprecate :GitInfo=, :none, 2024,
|
47
|
+
deprecate :GitInfo, :none, 2024, 12
|
48
|
+
deprecate :GitInfo=, :none, 2024, 12
|
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
|
@@ -1536,8 +1536,8 @@ module TencentCloud
|
|
1536
1536
|
|
1537
1537
|
attr_accessor :RunUuid, :ProjectId, :ApplicationId, :RunGroupId, :EnvironmentId, :UserDefinedId, :TableId, :TableRowUuid, :Status, :Input, :Option, :ExecutionTime, :Cache, :ErrorMessage, :CreateTime, :UpdateTime
|
1538
1538
|
extend Gem::Deprecate
|
1539
|
-
deprecate :Option, :none, 2024,
|
1540
|
-
deprecate :Option=, :none, 2024,
|
1539
|
+
deprecate :Option, :none, 2024, 12
|
1540
|
+
deprecate :Option=, :none, 2024, 12
|
1541
1541
|
|
1542
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)
|
1543
1543
|
@RunUuid = runuuid
|
@@ -2054,10 +2054,12 @@ module TencentCloud
|
|
2054
2054
|
# @type WorkDir: String
|
2055
2055
|
# @param VolumeIds: 缓存卷ID,不填使用默认缓存卷,暂时仅支持Nextflow。
|
2056
2056
|
# @type VolumeIds: Array
|
2057
|
+
# @param Entrypoint: 工作流入口文件,不填使用默认入口文件。
|
2058
|
+
# @type Entrypoint: String
|
2057
2059
|
|
2058
|
-
attr_accessor :Name, :EnvironmentId, :GitSource, :Type, :NFOption, :ProjectId, :Description, :InputBase64, :InputCosUri, :CacheClearDelay, :WorkDir, :VolumeIds
|
2060
|
+
attr_accessor :Name, :EnvironmentId, :GitSource, :Type, :NFOption, :ProjectId, :Description, :InputBase64, :InputCosUri, :CacheClearDelay, :WorkDir, :VolumeIds, :Entrypoint
|
2059
2061
|
|
2060
|
-
def initialize(name=nil, environmentid=nil, gitsource=nil, type=nil, nfoption=nil, projectid=nil, description=nil, inputbase64=nil, inputcosuri=nil, cachecleardelay=nil, workdir=nil, volumeids=nil)
|
2062
|
+
def initialize(name=nil, environmentid=nil, gitsource=nil, type=nil, nfoption=nil, projectid=nil, description=nil, inputbase64=nil, inputcosuri=nil, cachecleardelay=nil, workdir=nil, volumeids=nil, entrypoint=nil)
|
2061
2063
|
@Name = name
|
2062
2064
|
@EnvironmentId = environmentid
|
2063
2065
|
@GitSource = gitsource
|
@@ -2070,6 +2072,7 @@ module TencentCloud
|
|
2070
2072
|
@CacheClearDelay = cachecleardelay
|
2071
2073
|
@WorkDir = workdir
|
2072
2074
|
@VolumeIds = volumeids
|
2075
|
+
@Entrypoint = entrypoint
|
2073
2076
|
end
|
2074
2077
|
|
2075
2078
|
def deserialize(params)
|
@@ -2091,6 +2094,7 @@ module TencentCloud
|
|
2091
2094
|
@CacheClearDelay = params['CacheClearDelay']
|
2092
2095
|
@WorkDir = params['WorkDir']
|
2093
2096
|
@VolumeIds = params['VolumeIds']
|
2097
|
+
@Entrypoint = params['Entrypoint']
|
2094
2098
|
end
|
2095
2099
|
end
|
2096
2100
|
|