tencentcloud-sdk-omics 3.0.725 → 3.0.726

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a52fc411f4b5d6adcdaf742cab166382d3f3598b
4
- data.tar.gz: d278878cd962775179bd203d933a54cf55882866
3
+ metadata.gz: 2be43153ec55798f02aeb59a85687373be285c51
4
+ data.tar.gz: a862154417a8f2e0a44d48c95782e12b9e6736d8
5
5
  SHA512:
6
- metadata.gz: 95e93f3355f4b2bc388b0ed5b59de1f0602077228921b31fb6f80b4d60e4ddc40a0dc479dd37675884f0c66d5f4673fd216c5ed46c83fb39b9543985f8259305
7
- data.tar.gz: 64e8adbf9a2f18660a1a02fa4ad8305bb78ebf3b2e84a7d17db3fe8956cbe0f7945c811e56527fe88443f641550a4f195db30c3a718015e0abcc8362a1e1df2a
6
+ metadata.gz: e900cc5b50362dfe01e6f40842bdf18c9ee81c7a477647183cf06ae7f20d7516effbfec3a0cf37152f11bd900defd11303915ba94964de8ef7eb1b723f4161ae
7
+ data.tar.gz: 8bc412d0902988732e117ab8e5d2b3d3277a115051a20ccd53cf4ee2a3479976c9a64d9685c9efa28875bd7dc4b99060f9d7bff1bcb8dfb9365ee9cc3e777c4a
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.725
1
+ 3.0.726
@@ -221,7 +221,7 @@ module TencentCloud
221
221
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
222
222
  end
223
223
 
224
- # 查询任务详情文件。
224
+ # 获取任务详情文件。
225
225
 
226
226
  # @param request: Request instance for GetRunMetadataFile.
227
227
  # @type request: :class:`Tencentcloud::omics::V20221128::GetRunMetadataFileRequest`
@@ -839,6 +839,9 @@ module TencentCloud
839
839
  class GetRunMetadataFileRequest < TencentCloud::Common::AbstractModel
840
840
  # @param RunUuid: 任务Uuid。
841
841
  # @type RunUuid: String
842
+ # @param ProjectId: 项目ID。
843
+ # (不填使用指定地域下的默认项目)
844
+ # @type ProjectId: String
842
845
  # @param Key: 需要获取的文件名。
843
846
 
844
847
  # 默认支持以下文件:
@@ -850,22 +853,32 @@ module TencentCloud
850
853
  # - execution_trace.txt
851
854
  # - pipeline_dag.html
852
855
  # @type Key: String
853
- # @param ProjectId: 项目ID。
854
- # (不填使用指定地域下的默认项目)
855
- # @type ProjectId: String
856
+ # @param Keys: 需要批量获取的文件名。
857
+
858
+ # 默认支持以下文件:
859
+ # - nextflow.log
860
+
861
+ # 提交时NFOption中report指定为true时,额外支持以下文件:
862
+ # - execution_report.html
863
+ # - execution_timeline.html
864
+ # - execution_trace.txt
865
+ # - pipeline_dag.html
866
+ # @type Keys: Array
856
867
 
857
- attr_accessor :RunUuid, :Key, :ProjectId
868
+ attr_accessor :RunUuid, :ProjectId, :Key, :Keys
858
869
 
859
- def initialize(runuuid=nil, key=nil, projectid=nil)
870
+ def initialize(runuuid=nil, projectid=nil, key=nil, keys=nil)
860
871
  @RunUuid = runuuid
861
- @Key = key
862
872
  @ProjectId = projectid
873
+ @Key = key
874
+ @Keys = keys
863
875
  end
864
876
 
865
877
  def deserialize(params)
866
878
  @RunUuid = params['RunUuid']
867
- @Key = params['Key']
868
879
  @ProjectId = params['ProjectId']
880
+ @Key = params['Key']
881
+ @Keys = params['Keys']
869
882
  end
870
883
  end
871
884
 
@@ -873,18 +886,23 @@ module TencentCloud
873
886
  class GetRunMetadataFileResponse < TencentCloud::Common::AbstractModel
874
887
  # @param CosSignedUrl: 文件预签名链接,一分钟内有效。
875
888
  # @type CosSignedUrl: String
889
+ # @param CosSignedUrls: 批量文件预签名链接,一分钟内有效。
890
+ # 注意:此字段可能返回 null,表示取不到有效值。
891
+ # @type CosSignedUrls: Array
876
892
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
877
893
  # @type RequestId: String
878
894
 
879
- attr_accessor :CosSignedUrl, :RequestId
895
+ attr_accessor :CosSignedUrl, :CosSignedUrls, :RequestId
880
896
 
881
- def initialize(cossignedurl=nil, requestid=nil)
897
+ def initialize(cossignedurl=nil, cossignedurls=nil, requestid=nil)
882
898
  @CosSignedUrl = cossignedurl
899
+ @CosSignedUrls = cossignedurls
883
900
  @RequestId = requestid
884
901
  end
885
902
 
886
903
  def deserialize(params)
887
904
  @CosSignedUrl = params['CosSignedUrl']
905
+ @CosSignedUrls = params['CosSignedUrls']
888
906
  @RequestId = params['RequestId']
889
907
  end
890
908
  end
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.725
4
+ version: 3.0.726
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-11 00:00:00.000000000 Z
11
+ date: 2023-12-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common