tencentcloud-sdk-omics 3.0.967 → 3.0.969

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20221128/models.rb +10 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 28b93e606d0b66cba455fb52f166098cc70997d8
4
- data.tar.gz: ae5d18098a12fe0be7742649f1642de1c0f308ab
3
+ metadata.gz: 70fb456a386010a79bad26349aa723b33e18fd26
4
+ data.tar.gz: 57bb7887bdff4d1545e0e001e36e57a655f49012
5
5
  SHA512:
6
- metadata.gz: 8da373caf735094967507fa52b564df7a65eb4192bdc2da98a5c83b0798acde24530fc7f15600511e50833defadfbfd8d599ec6ee6778fbf12d1928d845b9ef1
7
- data.tar.gz: 5e3146fcf301cbbae64e4b7a8855ee5baf9cab6e5fd80b7226843ba381cdb9d147358c8986ff5e4724eb02c308f59db00351547352f70e26a702bfd3f212ca60
6
+ metadata.gz: 00cf7f1027f94fc899361ba12bc7eef4f174ce2c8e14d7e28e81797278b4ed41a3f08c05f4855b687130cfcda9a6ba99572ff23ce13ab39a89dab09d86dad05c
7
+ data.tar.gz: a2f574ce9129c949e8cefdb421e4d12a902ab36992c9ef9f7567dc896e29f9b311d79f62d1a27f224207e533909e0c2cec6106b0bff4169a310dadca29d5b83b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.967
1
+ 3.0.969
@@ -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, 11
48
- deprecate :GitInfo=, :none, 2024, 11
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, 11
1540
- deprecate :Option=, :none, 2024, 11
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
 
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.967
4
+ version: 3.0.969
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-12-24 00:00:00.000000000 Z
11
+ date: 2024-12-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common