You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/io/seqera/tower/cli/commands/studios/DataLinkRefOptions.java
+8-9Lines changed: 8 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -29,15 +29,14 @@ public class DataLinkRefOptions {
29
29
publicDataLinkRefdataLinkRef;
30
30
31
31
publicstaticclassDataLinkRef {
32
-
@CommandLine.Option(names = {"--mount-data"}, description = "Optional configuration override for 'mountData' setting (comma separate list of data-link names).", split = ",")
33
-
privateList<String> mountDataNames;
34
32
35
-
@CommandLine.Option(names = {"--mount-data-ids"}, description = "Optional configuration override for 'mountData' setting (comma separate list of data-link Ids).", split = ",")
33
+
@CommandLine.Option(names = {"--mount-data-uris"}, description = "Comma separate list of data-link URIs: s3://nextflow-bucket,s3://another-bucket", split = ",")
34
+
privateList<String> mountDataUris;
35
+
@CommandLine.Option(names = {"--mount-data"}, description = "Comma separate list of data-link names: nextflow-bucket,my-custom-data-link-name", split = ",")
36
+
privateList<String> mountDataNames;
37
+
@CommandLine.Option(names = {"--mount-data-ids"}, description = "Comma separate list of data-link ids: v1-cloud-YjI3MjMwOTMyNjUwNzk5tbG9yZQ=,v1-user-d2c505e70901d2bf6516d,", split = ",")
36
38
privateList<String> mountDataIds;
37
39
38
-
@CommandLine.Option(names = {"--mount-data-resource-refs"}, description = "Optional configuration override for 'mountData' setting (comma separate list of data-link resource refs).", split = ",")
39
-
privateList<String> mountDataResourceRefs;
40
-
41
40
publicList<String> getMountDataNames() {
42
41
validate();
43
42
returnmountDataNames;
@@ -48,14 +47,14 @@ public List<String> getMountDataIds() {
0 commit comments