tencentcloud-sdk-nodejs 4.1.210 → 4.1.211
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.
- package/es/common/sdk_version.js +1 -1
- package/es/services/btoe/index.js +2 -2
- package/es/services/dbbrain/index.js +2 -2
- package/es/services/dts/index.js +2 -2
- package/es/services/eis/index.js +2 -2
- package/es/services/facefusion/index.js +2 -2
- package/es/services/iai/index.js +2 -2
- package/es/services/iotvideo/index.js +2 -2
- package/es/services/irp/index.js +2 -2
- package/es/services/monitor/index.js +2 -2
- package/es/services/omics/v20221128/omics_client.js +18 -0
- package/es/services/rce/index.js +2 -2
- package/es/services/tbp/index.js +2 -2
- package/es/services/thpc/index.js +4 -4
- package/es/services/tke/index.js +2 -2
- package/es/services/tsw/index.js +2 -2
- package/es/services/vod/index.js +2 -2
- package/es/services/wedata/index.js +2 -2
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/btoe/index.d.ts +4 -4
- package/tencentcloud/services/btoe/index.js +2 -2
- package/tencentcloud/services/dbbrain/index.d.ts +4 -4
- package/tencentcloud/services/dbbrain/index.js +2 -2
- package/tencentcloud/services/dts/index.d.ts +4 -4
- package/tencentcloud/services/dts/index.js +2 -2
- package/tencentcloud/services/eis/index.d.ts +4 -4
- package/tencentcloud/services/eis/index.js +2 -2
- package/tencentcloud/services/facefusion/index.d.ts +4 -4
- package/tencentcloud/services/facefusion/index.js +2 -2
- package/tencentcloud/services/iai/index.d.ts +4 -4
- package/tencentcloud/services/iai/index.js +2 -2
- package/tencentcloud/services/iotvideo/index.d.ts +4 -4
- package/tencentcloud/services/iotvideo/index.js +2 -2
- package/tencentcloud/services/irp/index.d.ts +4 -4
- package/tencentcloud/services/irp/index.js +2 -2
- package/tencentcloud/services/monitor/index.d.ts +4 -4
- package/tencentcloud/services/monitor/index.js +2 -2
- package/tencentcloud/services/omics/v20221128/omics_client.d.ts +25 -1
- package/tencentcloud/services/omics/v20221128/omics_client.js +36 -0
- package/tencentcloud/services/omics/v20221128/omics_models.d.ts +543 -142
- package/tencentcloud/services/rce/index.d.ts +4 -4
- package/tencentcloud/services/rce/index.js +2 -2
- package/tencentcloud/services/tbp/index.d.ts +4 -4
- package/tencentcloud/services/tbp/index.js +2 -2
- package/tencentcloud/services/thpc/index.d.ts +6 -6
- package/tencentcloud/services/thpc/index.js +4 -4
- package/tencentcloud/services/tke/index.d.ts +4 -4
- package/tencentcloud/services/tke/index.js +2 -2
- package/tencentcloud/services/tsw/index.d.ts +4 -4
- package/tencentcloud/services/tsw/index.js +2 -2
- package/tencentcloud/services/vod/index.d.ts +4 -4
- package/tencentcloud/services/vod/index.js +2 -2
- package/tencentcloud/services/wedata/index.d.ts +4 -4
- package/tencentcloud/services/wedata/index.js +2 -2
|
@@ -38,17 +38,21 @@ export interface EnvironmentRuntimeConfig {
|
|
|
38
38
|
NextflowConfig: NextflowConfig;
|
|
39
39
|
}
|
|
40
40
|
/**
|
|
41
|
-
*
|
|
41
|
+
* RebootHPCNodes请求参数结构体
|
|
42
42
|
*/
|
|
43
|
-
export interface
|
|
43
|
+
export interface RebootHPCNodesRequest {
|
|
44
44
|
/**
|
|
45
|
-
*
|
|
45
|
+
* <p>集群Id</p>
|
|
46
46
|
*/
|
|
47
|
-
|
|
47
|
+
ClusterId: string;
|
|
48
48
|
/**
|
|
49
|
-
*
|
|
49
|
+
* <p>节点Id,例如ins-d1fc42ss</p>
|
|
50
50
|
*/
|
|
51
|
-
|
|
51
|
+
NodeIds: Array<string>;
|
|
52
|
+
/**
|
|
53
|
+
* <p>重启的关机类型。</p><p>枚举值:</p><ul><li>SOFT: 软关机</li><li>HARD: 硬关机</li><li>SOFT_FIRST: 优先软关机,失败再执行硬关机</li></ul><p>默认值:SOFT</p>
|
|
54
|
+
*/
|
|
55
|
+
StopType?: string;
|
|
52
56
|
}
|
|
53
57
|
/**
|
|
54
58
|
* CreateVolume请求参数结构体
|
|
@@ -447,6 +451,119 @@ export interface RunGroup {
|
|
|
447
451
|
*/
|
|
448
452
|
ResultNotify?: string;
|
|
449
453
|
}
|
|
454
|
+
/**
|
|
455
|
+
* 项目信息
|
|
456
|
+
*/
|
|
457
|
+
export interface Project {
|
|
458
|
+
/**
|
|
459
|
+
* <p>项目ID</p>
|
|
460
|
+
*/
|
|
461
|
+
ProjectId?: string;
|
|
462
|
+
/**
|
|
463
|
+
* <p>名称</p>
|
|
464
|
+
*/
|
|
465
|
+
Name?: string;
|
|
466
|
+
/**
|
|
467
|
+
* <p>描述</p>
|
|
468
|
+
*/
|
|
469
|
+
Description?: string;
|
|
470
|
+
/**
|
|
471
|
+
* <p>地域</p>
|
|
472
|
+
*/
|
|
473
|
+
Region?: string;
|
|
474
|
+
/**
|
|
475
|
+
* <p>创建时间</p>
|
|
476
|
+
*/
|
|
477
|
+
CreateTime?: string;
|
|
478
|
+
/**
|
|
479
|
+
* <p>更新时间</p>
|
|
480
|
+
*/
|
|
481
|
+
UpdateTime?: string;
|
|
482
|
+
/**
|
|
483
|
+
* <p>创建人</p>
|
|
484
|
+
*/
|
|
485
|
+
Creator?: string;
|
|
486
|
+
/**
|
|
487
|
+
* <p>是否默认项目</p>
|
|
488
|
+
*/
|
|
489
|
+
IsDefault?: boolean;
|
|
490
|
+
}
|
|
491
|
+
/**
|
|
492
|
+
* DescribeApplicationVersions请求参数结构体
|
|
493
|
+
*/
|
|
494
|
+
export interface DescribeApplicationVersionsRequest {
|
|
495
|
+
/**
|
|
496
|
+
* <p>项目ID</p>
|
|
497
|
+
*/
|
|
498
|
+
ProjectId: string;
|
|
499
|
+
/**
|
|
500
|
+
* <p>运行应用ID</p>
|
|
501
|
+
*/
|
|
502
|
+
ApplicationId: string;
|
|
503
|
+
/**
|
|
504
|
+
* <p>翻页入参</p>
|
|
505
|
+
*/
|
|
506
|
+
Offset?: number;
|
|
507
|
+
/**
|
|
508
|
+
* <p>翻页入参</p>
|
|
509
|
+
*/
|
|
510
|
+
Limit?: number;
|
|
511
|
+
}
|
|
512
|
+
/**
|
|
513
|
+
* 运行参数模板
|
|
514
|
+
*/
|
|
515
|
+
export interface InputTemplate {
|
|
516
|
+
/**
|
|
517
|
+
* <p>唯一ID</p>
|
|
518
|
+
*/
|
|
519
|
+
Uuid?: string;
|
|
520
|
+
/**
|
|
521
|
+
* <p>应用输入模板ID</p>
|
|
522
|
+
*/
|
|
523
|
+
InputTemplateId?: string;
|
|
524
|
+
/**
|
|
525
|
+
* <p>关联项目ID</p>
|
|
526
|
+
*/
|
|
527
|
+
ProjectId?: string;
|
|
528
|
+
/**
|
|
529
|
+
* <p>关联应用ID</p>
|
|
530
|
+
*/
|
|
531
|
+
ApplicationId?: string;
|
|
532
|
+
/**
|
|
533
|
+
* <p>关联应用版本</p>
|
|
534
|
+
*/
|
|
535
|
+
ApplicationVersionId?: string;
|
|
536
|
+
/**
|
|
537
|
+
* <p>名称</p>
|
|
538
|
+
*/
|
|
539
|
+
Name?: string;
|
|
540
|
+
/**
|
|
541
|
+
* <p>描述</p>
|
|
542
|
+
*/
|
|
543
|
+
Description?: string;
|
|
544
|
+
/**
|
|
545
|
+
* <p>创建人</p>
|
|
546
|
+
*/
|
|
547
|
+
Creator?: string;
|
|
548
|
+
/**
|
|
549
|
+
* <p>创建人ID</p>
|
|
550
|
+
*/
|
|
551
|
+
CreatorId?: string;
|
|
552
|
+
}
|
|
553
|
+
/**
|
|
554
|
+
* ImportCommonApplication返回参数结构体
|
|
555
|
+
*/
|
|
556
|
+
export interface ImportCommonApplicationResponse {
|
|
557
|
+
/**
|
|
558
|
+
* <p>应用ID</p>
|
|
559
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
560
|
+
*/
|
|
561
|
+
ApplicationId?: string;
|
|
562
|
+
/**
|
|
563
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
564
|
+
*/
|
|
565
|
+
RequestId?: string;
|
|
566
|
+
}
|
|
450
567
|
/**
|
|
451
568
|
* GetRunStatus请求参数结构体
|
|
452
569
|
*/
|
|
@@ -548,21 +665,42 @@ export interface CreateEnvironmentResponse {
|
|
|
548
665
|
RequestId?: string;
|
|
549
666
|
}
|
|
550
667
|
/**
|
|
551
|
-
*
|
|
668
|
+
* ImportTableFile返回参数结构体
|
|
552
669
|
*/
|
|
553
|
-
export interface
|
|
670
|
+
export interface ImportTableFileResponse {
|
|
554
671
|
/**
|
|
555
|
-
*
|
|
672
|
+
* 表格ID。
|
|
556
673
|
*/
|
|
557
|
-
|
|
674
|
+
TableId?: string;
|
|
558
675
|
/**
|
|
559
|
-
*
|
|
676
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
560
677
|
*/
|
|
561
|
-
|
|
678
|
+
RequestId?: string;
|
|
679
|
+
}
|
|
680
|
+
/**
|
|
681
|
+
* ImportTableFile请求参数结构体
|
|
682
|
+
*/
|
|
683
|
+
export interface ImportTableFileRequest {
|
|
562
684
|
/**
|
|
563
|
-
*
|
|
685
|
+
* 表格关联的项目ID。
|
|
564
686
|
*/
|
|
565
|
-
|
|
687
|
+
ProjectId: string;
|
|
688
|
+
/**
|
|
689
|
+
* 表格名称。最多支持200个字符。
|
|
690
|
+
*/
|
|
691
|
+
Name: string;
|
|
692
|
+
/**
|
|
693
|
+
* 表格文件Cos对象路径。
|
|
694
|
+
*/
|
|
695
|
+
CosUri: string;
|
|
696
|
+
/**
|
|
697
|
+
* 表格文件中每列的数据类型,支持的类型包括:Int、Float、String、File、Boolean、Array[Int]、Array[Float]、Array[String]、Array[File]、Array[Boolean]
|
|
698
|
+
*/
|
|
699
|
+
DataType: Array<string>;
|
|
700
|
+
/**
|
|
701
|
+
* 表格描述。最多支持500个字符。
|
|
702
|
+
*/
|
|
703
|
+
Description?: string;
|
|
566
704
|
}
|
|
567
705
|
/**
|
|
568
706
|
* 任务运行状态。
|
|
@@ -578,17 +716,41 @@ export interface RunStatusCount {
|
|
|
578
716
|
Count?: number;
|
|
579
717
|
}
|
|
580
718
|
/**
|
|
581
|
-
*
|
|
719
|
+
* DescribeApplications返回参数结构体
|
|
582
720
|
*/
|
|
583
|
-
export interface
|
|
721
|
+
export interface DescribeApplicationsResponse {
|
|
584
722
|
/**
|
|
585
|
-
*
|
|
723
|
+
* <p>应用列表总数</p>
|
|
586
724
|
*/
|
|
587
|
-
|
|
725
|
+
TotalCount?: number;
|
|
588
726
|
/**
|
|
589
|
-
*
|
|
727
|
+
* <p>应用列表</p>
|
|
590
728
|
*/
|
|
591
|
-
|
|
729
|
+
Applications?: Array<Application>;
|
|
730
|
+
/**
|
|
731
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
732
|
+
*/
|
|
733
|
+
RequestId?: string;
|
|
734
|
+
}
|
|
735
|
+
/**
|
|
736
|
+
* DescribeEnvironments请求参数结构体
|
|
737
|
+
*/
|
|
738
|
+
export interface DescribeEnvironmentsRequest {
|
|
739
|
+
/**
|
|
740
|
+
* 偏移量,默认为0。
|
|
741
|
+
*/
|
|
742
|
+
Offset?: number;
|
|
743
|
+
/**
|
|
744
|
+
* 返回数量,默认为20,最大值为100。
|
|
745
|
+
*/
|
|
746
|
+
Limit?: number;
|
|
747
|
+
/**
|
|
748
|
+
* 过滤器,支持过滤字段:
|
|
749
|
+
- EnvironmentId:环境ID
|
|
750
|
+
- Name:名称
|
|
751
|
+
- Status:环境状态
|
|
752
|
+
*/
|
|
753
|
+
Filters?: Array<Filter>;
|
|
592
754
|
}
|
|
593
755
|
/**
|
|
594
756
|
* 任务批次通知。
|
|
@@ -625,30 +787,111 @@ export interface CreateEnvironmentRequest {
|
|
|
625
787
|
IsDefault?: boolean;
|
|
626
788
|
}
|
|
627
789
|
/**
|
|
628
|
-
*
|
|
790
|
+
* DescribeInputTemplates请求参数结构体
|
|
629
791
|
*/
|
|
630
|
-
export interface
|
|
792
|
+
export interface DescribeInputTemplatesRequest {
|
|
631
793
|
/**
|
|
632
|
-
*
|
|
794
|
+
* <p>项目ID</p>
|
|
633
795
|
*/
|
|
634
|
-
|
|
796
|
+
ProjectId?: string;
|
|
797
|
+
/**
|
|
798
|
+
* <p>翻页入参</p>
|
|
799
|
+
*/
|
|
800
|
+
Limit?: number;
|
|
801
|
+
/**
|
|
802
|
+
* <p>翻页入参</p>
|
|
803
|
+
*/
|
|
804
|
+
Offset?: number;
|
|
805
|
+
/**
|
|
806
|
+
* <p>过滤器,支持过滤字段:</p><ul><li>Name:模板名称</li><li>InputTemplateId:模板ID</li></ul>
|
|
807
|
+
*/
|
|
808
|
+
Filters?: Array<Filter>;
|
|
809
|
+
/**
|
|
810
|
+
* <p>运行应用版本ID</p>
|
|
811
|
+
*/
|
|
812
|
+
ApplicationVersionId?: string;
|
|
813
|
+
/**
|
|
814
|
+
* <p>运行应用ID</p>
|
|
815
|
+
*/
|
|
816
|
+
ApplicationId?: string;
|
|
635
817
|
}
|
|
636
818
|
/**
|
|
637
|
-
*
|
|
819
|
+
* 应用详情
|
|
638
820
|
*/
|
|
639
|
-
export interface
|
|
821
|
+
export interface Application {
|
|
640
822
|
/**
|
|
641
|
-
*
|
|
823
|
+
* <p>应用ID</p>
|
|
642
824
|
*/
|
|
643
|
-
|
|
825
|
+
ApplicationId?: string;
|
|
644
826
|
/**
|
|
645
|
-
*
|
|
827
|
+
* <p>项目ID</p>
|
|
646
828
|
*/
|
|
647
|
-
|
|
829
|
+
ProjectId?: string;
|
|
648
830
|
/**
|
|
649
|
-
*
|
|
831
|
+
* <p>名称</p>
|
|
650
832
|
*/
|
|
651
|
-
|
|
833
|
+
Name?: string;
|
|
834
|
+
/**
|
|
835
|
+
* <p>描述</p>
|
|
836
|
+
*/
|
|
837
|
+
Description?: string;
|
|
838
|
+
/**
|
|
839
|
+
* <p>类型</p><p>枚举值:</p><ul><li>WDL: WDL</li><li>NEXTFLOW: NEXTFLOW</li></ul>
|
|
840
|
+
*/
|
|
841
|
+
Type?: string;
|
|
842
|
+
/**
|
|
843
|
+
* <p>代码入口</p>
|
|
844
|
+
*/
|
|
845
|
+
Entrypoint?: string;
|
|
846
|
+
/**
|
|
847
|
+
* <p>创建时间</p>
|
|
848
|
+
*/
|
|
849
|
+
CreateTime?: string;
|
|
850
|
+
/**
|
|
851
|
+
* <p>更新时间</p>
|
|
852
|
+
*/
|
|
853
|
+
UpdateTime?: string;
|
|
854
|
+
/**
|
|
855
|
+
* <p>创建人</p>
|
|
856
|
+
*/
|
|
857
|
+
Creator?: string;
|
|
858
|
+
/**
|
|
859
|
+
* <p>创建人ID</p>
|
|
860
|
+
*/
|
|
861
|
+
CreatorId?: string;
|
|
862
|
+
/**
|
|
863
|
+
* <p>版本数量</p>
|
|
864
|
+
*/
|
|
865
|
+
VersionCount?: number;
|
|
866
|
+
/**
|
|
867
|
+
* <p>版本列表</p>
|
|
868
|
+
*/
|
|
869
|
+
Versions?: Array<ApplicationVersion>;
|
|
870
|
+
/**
|
|
871
|
+
* <p>GIT信息</p>
|
|
872
|
+
*/
|
|
873
|
+
GitSource?: GitInfo;
|
|
874
|
+
/**
|
|
875
|
+
* <p>运行限制</p>
|
|
876
|
+
*/
|
|
877
|
+
RunConstraints?: RunConstraints;
|
|
878
|
+
/**
|
|
879
|
+
* <p>应用COS文件信息</p>
|
|
880
|
+
*/
|
|
881
|
+
CosSource?: CosFileInfo;
|
|
882
|
+
/**
|
|
883
|
+
* <p>排序顺序</p>
|
|
884
|
+
*/
|
|
885
|
+
SortOrder?: number;
|
|
886
|
+
}
|
|
887
|
+
/**
|
|
888
|
+
* Nextflow工作流引擎设置
|
|
889
|
+
*/
|
|
890
|
+
export interface NextflowConfig {
|
|
891
|
+
/**
|
|
892
|
+
* 工作流任务并发数
|
|
893
|
+
*/
|
|
894
|
+
ExecutorQueueSize: number;
|
|
652
895
|
}
|
|
653
896
|
/**
|
|
654
897
|
* 任务。
|
|
@@ -765,24 +1008,17 @@ export interface DescribeTablesRowsRequest {
|
|
|
765
1008
|
Filters?: Array<Filter>;
|
|
766
1009
|
}
|
|
767
1010
|
/**
|
|
768
|
-
*
|
|
1011
|
+
* 标签
|
|
769
1012
|
*/
|
|
770
|
-
export interface
|
|
1013
|
+
export interface Tag {
|
|
771
1014
|
/**
|
|
772
|
-
*
|
|
1015
|
+
* 标签键
|
|
773
1016
|
*/
|
|
774
|
-
|
|
1017
|
+
Key: string;
|
|
775
1018
|
/**
|
|
776
|
-
*
|
|
1019
|
+
* 标签值
|
|
777
1020
|
*/
|
|
778
|
-
|
|
779
|
-
/**
|
|
780
|
-
* 过滤器,支持过滤字段:
|
|
781
|
-
- EnvironmentId:环境ID
|
|
782
|
-
- Name:名称
|
|
783
|
-
- Status:环境状态
|
|
784
|
-
*/
|
|
785
|
-
Filters?: Array<Filter>;
|
|
1021
|
+
Value: string;
|
|
786
1022
|
}
|
|
787
1023
|
/**
|
|
788
1024
|
* 资源配额。
|
|
@@ -1296,6 +1532,25 @@ export interface RunApplicationResponse {
|
|
|
1296
1532
|
*/
|
|
1297
1533
|
RequestId?: string;
|
|
1298
1534
|
}
|
|
1535
|
+
/**
|
|
1536
|
+
* DescribeInputTemplates返回参数结构体
|
|
1537
|
+
*/
|
|
1538
|
+
export interface DescribeInputTemplatesResponse {
|
|
1539
|
+
/**
|
|
1540
|
+
* <p>运行应用参数模板列表</p>
|
|
1541
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1542
|
+
*/
|
|
1543
|
+
InputTemplates?: Array<InputTemplate>;
|
|
1544
|
+
/**
|
|
1545
|
+
* <p>运行参数模板列表总数</p>
|
|
1546
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1547
|
+
*/
|
|
1548
|
+
TotalCount?: number;
|
|
1549
|
+
/**
|
|
1550
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1551
|
+
*/
|
|
1552
|
+
RequestId?: string;
|
|
1553
|
+
}
|
|
1299
1554
|
/**
|
|
1300
1555
|
* DescribeHPCClusters返回参数结构体
|
|
1301
1556
|
*/
|
|
@@ -1567,6 +1822,25 @@ export interface RunGroupTimeoutNotification {
|
|
|
1567
1822
|
*/
|
|
1568
1823
|
NotificationType?: NotificationType;
|
|
1569
1824
|
}
|
|
1825
|
+
/**
|
|
1826
|
+
* GetInputTemplateFile返回参数结构体
|
|
1827
|
+
*/
|
|
1828
|
+
export interface GetInputTemplateFileResponse {
|
|
1829
|
+
/**
|
|
1830
|
+
* <p>COS签名url</p>
|
|
1831
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1832
|
+
*/
|
|
1833
|
+
CosSignedUrl?: string;
|
|
1834
|
+
/**
|
|
1835
|
+
* <p>模板内容</p>
|
|
1836
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1837
|
+
*/
|
|
1838
|
+
Content?: string;
|
|
1839
|
+
/**
|
|
1840
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1841
|
+
*/
|
|
1842
|
+
RequestId?: string;
|
|
1843
|
+
}
|
|
1570
1844
|
/**
|
|
1571
1845
|
* DescribeHPCClusters请求参数结构体
|
|
1572
1846
|
*/
|
|
@@ -1589,22 +1863,56 @@ export interface DescribeHPCClustersRequest {
|
|
|
1589
1863
|
Filters?: Array<Filter>;
|
|
1590
1864
|
}
|
|
1591
1865
|
/**
|
|
1592
|
-
*
|
|
1866
|
+
* DescribeApplicationVersions返回参数结构体
|
|
1593
1867
|
*/
|
|
1594
|
-
export interface
|
|
1868
|
+
export interface DescribeApplicationVersionsResponse {
|
|
1595
1869
|
/**
|
|
1596
|
-
*
|
|
1870
|
+
* <p>应用运行版本列表</p>
|
|
1871
|
+
*/
|
|
1872
|
+
ApplicationVersions?: Array<ApplicationVersion>;
|
|
1873
|
+
/**
|
|
1874
|
+
* <p>应用运行版本列表总数</p>
|
|
1597
1875
|
*/
|
|
1598
1876
|
TotalCount?: number;
|
|
1599
1877
|
/**
|
|
1600
|
-
*
|
|
1878
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1601
1879
|
*/
|
|
1602
|
-
|
|
1880
|
+
RequestId?: string;
|
|
1881
|
+
}
|
|
1882
|
+
/**
|
|
1883
|
+
* DescribeTablesRows返回参数结构体
|
|
1884
|
+
*/
|
|
1885
|
+
export interface DescribeTablesRowsResponse {
|
|
1886
|
+
/**
|
|
1887
|
+
* 结果总数。
|
|
1888
|
+
*/
|
|
1889
|
+
TotalCount?: number;
|
|
1890
|
+
/**
|
|
1891
|
+
* 表格行列表。
|
|
1892
|
+
*/
|
|
1893
|
+
Rows?: Array<TableRow>;
|
|
1603
1894
|
/**
|
|
1604
1895
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1605
1896
|
*/
|
|
1606
1897
|
RequestId?: string;
|
|
1607
1898
|
}
|
|
1899
|
+
/**
|
|
1900
|
+
* DescribeProjects请求参数结构体
|
|
1901
|
+
*/
|
|
1902
|
+
export interface DescribeProjectsRequest {
|
|
1903
|
+
/**
|
|
1904
|
+
* <p>翻页入参</p>
|
|
1905
|
+
*/
|
|
1906
|
+
Limit?: number;
|
|
1907
|
+
/**
|
|
1908
|
+
* <p>翻页入参</p>
|
|
1909
|
+
*/
|
|
1910
|
+
Offset?: number;
|
|
1911
|
+
/**
|
|
1912
|
+
* <p>过滤器,支持过滤字段:</p><ul><li>Name:项目名称</li><li>ProjectId:项目ID</li><li>Region:地域</li></ul>
|
|
1913
|
+
*/
|
|
1914
|
+
Filters?: Array<Filter>;
|
|
1915
|
+
}
|
|
1608
1916
|
/**
|
|
1609
1917
|
* CreateVolume返回参数结构体
|
|
1610
1918
|
*/
|
|
@@ -1627,6 +1935,23 @@ export interface DeleteVolumeRequest {
|
|
|
1627
1935
|
*/
|
|
1628
1936
|
VolumeId: string;
|
|
1629
1937
|
}
|
|
1938
|
+
/**
|
|
1939
|
+
* DescribeProjects返回参数结构体
|
|
1940
|
+
*/
|
|
1941
|
+
export interface DescribeProjectsResponse {
|
|
1942
|
+
/**
|
|
1943
|
+
* <p>项目列表总数</p>
|
|
1944
|
+
*/
|
|
1945
|
+
TotalCount?: number;
|
|
1946
|
+
/**
|
|
1947
|
+
* <p>项目列表</p>
|
|
1948
|
+
*/
|
|
1949
|
+
Projects?: Array<Project>;
|
|
1950
|
+
/**
|
|
1951
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1952
|
+
*/
|
|
1953
|
+
RequestId?: string;
|
|
1954
|
+
}
|
|
1630
1955
|
/**
|
|
1631
1956
|
* 缓存卷。
|
|
1632
1957
|
*/
|
|
@@ -1707,6 +2032,31 @@ export interface ModifyVolumeResponse {
|
|
|
1707
2032
|
*/
|
|
1708
2033
|
RequestId?: string;
|
|
1709
2034
|
}
|
|
2035
|
+
/**
|
|
2036
|
+
* DescribeApplications请求参数结构体
|
|
2037
|
+
*/
|
|
2038
|
+
export interface DescribeApplicationsRequest {
|
|
2039
|
+
/**
|
|
2040
|
+
* <p>项目ID</p>
|
|
2041
|
+
*/
|
|
2042
|
+
ProjectId: string;
|
|
2043
|
+
/**
|
|
2044
|
+
* <p>翻页入参</p>
|
|
2045
|
+
*/
|
|
2046
|
+
Limit?: number;
|
|
2047
|
+
/**
|
|
2048
|
+
* <p>翻页入参</p>
|
|
2049
|
+
*/
|
|
2050
|
+
Offset?: number;
|
|
2051
|
+
/**
|
|
2052
|
+
* <p>过滤器,支持过滤字段:</p><ul><li>Name:应用名称</li><li>ApplicationId:应用ID</li><li>HasRun</li><li>CreatorId:创建人ID</li><li>Type:应用类型</li></ul>
|
|
2053
|
+
*/
|
|
2054
|
+
Filters?: Array<Filter>;
|
|
2055
|
+
/**
|
|
2056
|
+
* <p>排序</p>
|
|
2057
|
+
*/
|
|
2058
|
+
OrderBy?: string;
|
|
2059
|
+
}
|
|
1710
2060
|
/**
|
|
1711
2061
|
* COS 文件信息
|
|
1712
2062
|
*/
|
|
@@ -1750,29 +2100,25 @@ export interface VPCOption {
|
|
|
1750
2100
|
SubnetCIDRBlock?: string;
|
|
1751
2101
|
}
|
|
1752
2102
|
/**
|
|
1753
|
-
*
|
|
2103
|
+
* GetInputTemplateFile请求参数结构体
|
|
1754
2104
|
*/
|
|
1755
|
-
export interface
|
|
2105
|
+
export interface GetInputTemplateFileRequest {
|
|
1756
2106
|
/**
|
|
1757
|
-
*
|
|
2107
|
+
* <p>运行参数模板ID</p>
|
|
1758
2108
|
*/
|
|
1759
|
-
|
|
2109
|
+
InputTemplateId: string;
|
|
1760
2110
|
/**
|
|
1761
|
-
*
|
|
2111
|
+
* <p>项目ID</p>
|
|
1762
2112
|
*/
|
|
1763
|
-
|
|
2113
|
+
ProjectId?: string;
|
|
1764
2114
|
/**
|
|
1765
|
-
*
|
|
2115
|
+
* <p>运行应用版本ID</p>
|
|
1766
2116
|
*/
|
|
1767
|
-
|
|
1768
|
-
/**
|
|
1769
|
-
* 表格文件中每列的数据类型,支持的类型包括:Int、Float、String、File、Boolean、Array[Int]、Array[Float]、Array[String]、Array[File]、Array[Boolean]
|
|
1770
|
-
*/
|
|
1771
|
-
DataType: Array<string>;
|
|
2117
|
+
ApplicationVersionId?: string;
|
|
1772
2118
|
/**
|
|
1773
|
-
*
|
|
2119
|
+
* <p>运行应用ID</p>
|
|
1774
2120
|
*/
|
|
1775
|
-
|
|
2121
|
+
ApplicationId?: string;
|
|
1776
2122
|
}
|
|
1777
2123
|
/**
|
|
1778
2124
|
* DeleteVolume返回参数结构体
|
|
@@ -1870,6 +2216,15 @@ export interface RunApplicationRequest {
|
|
|
1870
2216
|
*/
|
|
1871
2217
|
EmailForNotification?: Array<string>;
|
|
1872
2218
|
}
|
|
2219
|
+
/**
|
|
2220
|
+
* 运行限制
|
|
2221
|
+
*/
|
|
2222
|
+
export interface RunConstraints {
|
|
2223
|
+
/**
|
|
2224
|
+
* <p>运行时可选的Nextflow版本</p>
|
|
2225
|
+
*/
|
|
2226
|
+
NextflowVersion?: Array<string>;
|
|
2227
|
+
}
|
|
1873
2228
|
/**
|
|
1874
2229
|
* Cromwell工作流引擎设置
|
|
1875
2230
|
*/
|
|
@@ -1978,6 +2333,116 @@ export interface EnvironmentConfig {
|
|
|
1978
2333
|
*/
|
|
1979
2334
|
SecurityGroupOption?: SecurityGroupOption;
|
|
1980
2335
|
}
|
|
2336
|
+
/**
|
|
2337
|
+
* DescribeRuns返回参数结构体
|
|
2338
|
+
*/
|
|
2339
|
+
export interface DescribeRunsResponse {
|
|
2340
|
+
/**
|
|
2341
|
+
* 符合条件的数量。
|
|
2342
|
+
*/
|
|
2343
|
+
TotalCount?: number;
|
|
2344
|
+
/**
|
|
2345
|
+
* 任务列表。
|
|
2346
|
+
*/
|
|
2347
|
+
Runs?: Array<Run>;
|
|
2348
|
+
/**
|
|
2349
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2350
|
+
*/
|
|
2351
|
+
RequestId?: string;
|
|
2352
|
+
}
|
|
2353
|
+
/**
|
|
2354
|
+
* 任务作业详情。
|
|
2355
|
+
*/
|
|
2356
|
+
export interface RunMetadata {
|
|
2357
|
+
/**
|
|
2358
|
+
* 任务类型。
|
|
2359
|
+
*/
|
|
2360
|
+
RunType?: string;
|
|
2361
|
+
/**
|
|
2362
|
+
* 任务ID。
|
|
2363
|
+
*/
|
|
2364
|
+
RunId?: string;
|
|
2365
|
+
/**
|
|
2366
|
+
* 父层ID。
|
|
2367
|
+
*/
|
|
2368
|
+
ParentId?: string;
|
|
2369
|
+
/**
|
|
2370
|
+
* 作业ID。
|
|
2371
|
+
*/
|
|
2372
|
+
JobId?: string;
|
|
2373
|
+
/**
|
|
2374
|
+
* 作业名称。
|
|
2375
|
+
*/
|
|
2376
|
+
CallName?: string;
|
|
2377
|
+
/**
|
|
2378
|
+
* Scatter索引。
|
|
2379
|
+
*/
|
|
2380
|
+
ScatterIndex?: string;
|
|
2381
|
+
/**
|
|
2382
|
+
* 输入。
|
|
2383
|
+
*/
|
|
2384
|
+
Input?: string;
|
|
2385
|
+
/**
|
|
2386
|
+
* 输出。
|
|
2387
|
+
*/
|
|
2388
|
+
Output?: string;
|
|
2389
|
+
/**
|
|
2390
|
+
* 状态
|
|
2391
|
+
*/
|
|
2392
|
+
Status?: string;
|
|
2393
|
+
/**
|
|
2394
|
+
* 错误信息。
|
|
2395
|
+
*/
|
|
2396
|
+
ErrorMessage?: string;
|
|
2397
|
+
/**
|
|
2398
|
+
* 开始时间
|
|
2399
|
+
*/
|
|
2400
|
+
StartTime?: string;
|
|
2401
|
+
/**
|
|
2402
|
+
* 提交时间。
|
|
2403
|
+
*/
|
|
2404
|
+
SubmitTime?: string;
|
|
2405
|
+
/**
|
|
2406
|
+
* 结束时间。
|
|
2407
|
+
*/
|
|
2408
|
+
EndTime?: string;
|
|
2409
|
+
/**
|
|
2410
|
+
* 命令行。
|
|
2411
|
+
*/
|
|
2412
|
+
Command?: string;
|
|
2413
|
+
/**
|
|
2414
|
+
* 运行时。
|
|
2415
|
+
*/
|
|
2416
|
+
Runtime?: string;
|
|
2417
|
+
/**
|
|
2418
|
+
* 预处理。
|
|
2419
|
+
*/
|
|
2420
|
+
Preprocess?: boolean;
|
|
2421
|
+
/**
|
|
2422
|
+
* 后处理。
|
|
2423
|
+
*/
|
|
2424
|
+
PostProcess?: boolean;
|
|
2425
|
+
/**
|
|
2426
|
+
* Cache命中
|
|
2427
|
+
*/
|
|
2428
|
+
CallCached?: boolean;
|
|
2429
|
+
/**
|
|
2430
|
+
* 工作目录。
|
|
2431
|
+
*/
|
|
2432
|
+
WorkDir?: string;
|
|
2433
|
+
/**
|
|
2434
|
+
* 标准输出。
|
|
2435
|
+
*/
|
|
2436
|
+
Stdout?: string;
|
|
2437
|
+
/**
|
|
2438
|
+
* 错误输出。
|
|
2439
|
+
*/
|
|
2440
|
+
Stderr?: string;
|
|
2441
|
+
/**
|
|
2442
|
+
* 其他信息。
|
|
2443
|
+
*/
|
|
2444
|
+
Meta?: string;
|
|
2445
|
+
}
|
|
1981
2446
|
/**
|
|
1982
2447
|
* ModifyVolume请求参数结构体
|
|
1983
2448
|
*/
|
|
@@ -2166,95 +2631,31 @@ export interface CVMOption {
|
|
|
2166
2631
|
InstanceType: string;
|
|
2167
2632
|
}
|
|
2168
2633
|
/**
|
|
2169
|
-
*
|
|
2634
|
+
* ImportCommonApplication请求参数结构体
|
|
2170
2635
|
*/
|
|
2171
|
-
export interface
|
|
2172
|
-
/**
|
|
2173
|
-
* 任务类型。
|
|
2174
|
-
*/
|
|
2175
|
-
RunType?: string;
|
|
2176
|
-
/**
|
|
2177
|
-
* 任务ID。
|
|
2178
|
-
*/
|
|
2179
|
-
RunId?: string;
|
|
2180
|
-
/**
|
|
2181
|
-
* 父层ID。
|
|
2182
|
-
*/
|
|
2183
|
-
ParentId?: string;
|
|
2184
|
-
/**
|
|
2185
|
-
* 作业ID。
|
|
2186
|
-
*/
|
|
2187
|
-
JobId?: string;
|
|
2636
|
+
export interface ImportCommonApplicationRequest {
|
|
2188
2637
|
/**
|
|
2189
|
-
*
|
|
2638
|
+
* <p>公共应用ID</p>
|
|
2190
2639
|
*/
|
|
2191
|
-
|
|
2640
|
+
CommonAppUuid: string;
|
|
2192
2641
|
/**
|
|
2193
|
-
*
|
|
2642
|
+
* <p>公共应用重命名</p>
|
|
2194
2643
|
*/
|
|
2195
|
-
|
|
2644
|
+
CommonAppNewName: string;
|
|
2196
2645
|
/**
|
|
2197
|
-
*
|
|
2646
|
+
* <p>项目ID</p>
|
|
2198
2647
|
*/
|
|
2199
|
-
|
|
2200
|
-
/**
|
|
2201
|
-
* 输出。
|
|
2202
|
-
*/
|
|
2203
|
-
Output?: string;
|
|
2204
|
-
/**
|
|
2205
|
-
* 状态
|
|
2206
|
-
*/
|
|
2207
|
-
Status?: string;
|
|
2208
|
-
/**
|
|
2209
|
-
* 错误信息。
|
|
2210
|
-
*/
|
|
2211
|
-
ErrorMessage?: string;
|
|
2212
|
-
/**
|
|
2213
|
-
* 开始时间
|
|
2214
|
-
*/
|
|
2215
|
-
StartTime?: string;
|
|
2216
|
-
/**
|
|
2217
|
-
* 提交时间。
|
|
2218
|
-
*/
|
|
2219
|
-
SubmitTime?: string;
|
|
2220
|
-
/**
|
|
2221
|
-
* 结束时间。
|
|
2222
|
-
*/
|
|
2223
|
-
EndTime?: string;
|
|
2224
|
-
/**
|
|
2225
|
-
* 命令行。
|
|
2226
|
-
*/
|
|
2227
|
-
Command?: string;
|
|
2228
|
-
/**
|
|
2229
|
-
* 运行时。
|
|
2230
|
-
*/
|
|
2231
|
-
Runtime?: string;
|
|
2232
|
-
/**
|
|
2233
|
-
* 预处理。
|
|
2234
|
-
*/
|
|
2235
|
-
Preprocess?: boolean;
|
|
2236
|
-
/**
|
|
2237
|
-
* 后处理。
|
|
2238
|
-
*/
|
|
2239
|
-
PostProcess?: boolean;
|
|
2240
|
-
/**
|
|
2241
|
-
* Cache命中
|
|
2242
|
-
*/
|
|
2243
|
-
CallCached?: boolean;
|
|
2244
|
-
/**
|
|
2245
|
-
* 工作目录。
|
|
2246
|
-
*/
|
|
2247
|
-
WorkDir?: string;
|
|
2648
|
+
ProjectId: string;
|
|
2248
2649
|
/**
|
|
2249
|
-
*
|
|
2650
|
+
* <p>公共应用类型</p><p>枚举值:</p><ul><li>WDL: WDL</li><li>NEXTFLOW: NEXTFLOW</li></ul>
|
|
2250
2651
|
*/
|
|
2251
|
-
|
|
2652
|
+
Type: string;
|
|
2252
2653
|
/**
|
|
2253
|
-
*
|
|
2654
|
+
* <p>NEXTFLOW版本</p>
|
|
2254
2655
|
*/
|
|
2255
|
-
|
|
2656
|
+
NextflowVersion: string;
|
|
2256
2657
|
/**
|
|
2257
|
-
*
|
|
2658
|
+
* <p>是否内部应用</p>
|
|
2258
2659
|
*/
|
|
2259
|
-
|
|
2660
|
+
Internal?: boolean;
|
|
2260
2661
|
}
|