aspera-cli 4.19.0 → 4.21.1
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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +46 -0
- data/CONTRIBUTING.md +18 -4
- data/README.md +886 -510
- data/bin/asession +27 -20
- data/examples/build_exec +65 -76
- data/examples/build_exec_rubyc +40 -0
- data/examples/get_proto_file.rb +7 -0
- data/lib/aspera/agent/alpha.rb +18 -24
- data/lib/aspera/agent/base.rb +2 -18
- data/lib/aspera/agent/connect.rb +34 -15
- data/lib/aspera/agent/direct.rb +44 -54
- data/lib/aspera/agent/httpgw.rb +2 -3
- data/lib/aspera/agent/node.rb +11 -21
- data/lib/aspera/agent/{trsdk.rb → transferd.rb} +27 -51
- data/lib/aspera/api/alee.rb +15 -0
- data/lib/aspera/api/aoc.rb +139 -105
- data/lib/aspera/api/ats.rb +1 -1
- data/lib/aspera/api/cos_node.rb +1 -1
- data/lib/aspera/api/httpgw.rb +15 -10
- data/lib/aspera/api/node.rb +70 -32
- data/lib/aspera/ascmd.rb +56 -48
- data/lib/aspera/ascp/installation.rb +166 -70
- data/lib/aspera/ascp/management.rb +30 -8
- data/lib/aspera/assert.rb +10 -5
- data/lib/aspera/cli/formatter.rb +166 -162
- data/lib/aspera/cli/hints.rb +2 -1
- data/lib/aspera/cli/info.rb +12 -10
- data/lib/aspera/cli/main.rb +28 -13
- data/lib/aspera/cli/manager.rb +7 -2
- data/lib/aspera/cli/plugin.rb +17 -31
- data/lib/aspera/cli/plugins/alee.rb +3 -3
- data/lib/aspera/cli/plugins/aoc.rb +246 -208
- data/lib/aspera/cli/plugins/ats.rb +16 -14
- data/lib/aspera/cli/plugins/config.rb +154 -94
- data/lib/aspera/cli/plugins/console.rb +3 -3
- data/lib/aspera/cli/plugins/cos.rb +1 -0
- data/lib/aspera/cli/plugins/faspex.rb +15 -23
- data/lib/aspera/cli/plugins/faspex5.rb +64 -50
- data/lib/aspera/cli/plugins/faspio.rb +2 -2
- data/lib/aspera/cli/plugins/httpgw.rb +1 -1
- data/lib/aspera/cli/plugins/node.rb +174 -109
- data/lib/aspera/cli/plugins/orchestrator.rb +14 -13
- data/lib/aspera/cli/plugins/preview.rb +8 -9
- data/lib/aspera/cli/plugins/server.rb +5 -9
- data/lib/aspera/cli/plugins/shares.rb +2 -2
- data/lib/aspera/cli/sync_actions.rb +2 -2
- data/lib/aspera/cli/transfer_agent.rb +12 -14
- data/lib/aspera/cli/transfer_progress.rb +37 -17
- data/lib/aspera/cli/version.rb +1 -1
- data/lib/aspera/command_line_builder.rb +4 -5
- data/lib/aspera/coverage.rb +13 -1
- data/lib/aspera/environment.rb +75 -25
- data/lib/aspera/faspex_gw.rb +2 -2
- data/lib/aspera/json_rpc.rb +1 -1
- data/lib/aspera/keychain/macos_security.rb +7 -12
- data/lib/aspera/log.rb +3 -4
- data/lib/aspera/node_simulator.rb +230 -112
- data/lib/aspera/oauth/base.rb +64 -83
- data/lib/aspera/oauth/factory.rb +52 -6
- data/lib/aspera/oauth/generic.rb +4 -8
- data/lib/aspera/oauth/jwt.rb +6 -3
- data/lib/aspera/oauth/url_json.rb +1 -2
- data/lib/aspera/oauth/web.rb +5 -2
- data/lib/aspera/persistency_action_once.rb +16 -8
- data/lib/aspera/persistency_folder.rb +20 -2
- data/lib/aspera/preview/generator.rb +1 -1
- data/lib/aspera/preview/utils.rb +11 -17
- data/lib/aspera/products/alpha.rb +30 -0
- data/lib/aspera/products/connect.rb +48 -0
- data/lib/aspera/products/other.rb +82 -0
- data/lib/aspera/products/transferd.rb +54 -0
- data/lib/aspera/rest.rb +116 -87
- data/lib/aspera/secret_hider.rb +2 -2
- data/lib/aspera/ssh.rb +31 -24
- data/lib/aspera/transfer/faux_file.rb +4 -4
- data/lib/aspera/transfer/parameters.rb +16 -17
- data/lib/aspera/transfer/spec.rb +12 -12
- data/lib/aspera/transfer/spec.yaml +22 -20
- data/lib/aspera/transfer/sync.rb +2 -10
- data/lib/aspera/transfer/uri.rb +3 -3
- data/lib/aspera/uri_reader.rb +1 -1
- data/lib/aspera/web_auth.rb +166 -17
- data/lib/aspera/web_server_simple.rb +4 -3
- data/lib/transferd_pb.rb +86 -0
- data/lib/transferd_services_pb.rb +84 -0
- data.tar.gz.sig +0 -0
- metadata +58 -22
- metadata.gz.sig +0 -0
- data/lib/aspera/ascp/products.rb +0 -156
data/README.md
CHANGED
@@ -1,8 +1,13 @@
|
|
1
1
|
# Command Line Interface for IBM Aspera products
|
2
|
-
<!--
|
3
|
-
|
2
|
+
<!--
|
3
|
+
Do not edit this README.md, edit docs/README.erb.md, for details, read docs/README.md
|
4
4
|
|
5
|
-
|
5
|
+
markdownlint-disable MD033 MD003 MD053
|
6
|
+
cspell:ignore Serban Antipolis
|
7
|
+
PANDOC_META_BEGIN
|
8
|
+
subtitle: "ascli 4.21.1"
|
9
|
+
PANDOC_META_END
|
10
|
+
-->
|
6
11
|
|
7
12
|
[](https://badge.fury.io/rb/aspera-cli)
|
8
13
|
[](https://github.com/IBM/aspera-cli/actions)
|
@@ -10,9 +15,9 @@
|
|
10
15
|
|
11
16
|
## Introduction
|
12
17
|
|
13
|
-
Version : 4.
|
18
|
+
Version : 4.21.1
|
14
19
|
|
15
|
-
Laurent/2016-
|
20
|
+
Laurent/2016-2025
|
16
21
|
|
17
22
|
This gem provides the `ascli` CLI (Command Line Interface) to IBM Aspera software.
|
18
23
|
|
@@ -22,9 +27,9 @@ Ruby Gem: [https://rubygems.org/gems/aspera-cli](https://rubygems.org/gems/asper
|
|
22
27
|
|
23
28
|
Ruby Doc: [https://www.rubydoc.info/gems/aspera-cli](https://www.rubydoc.info/gems/aspera-cli)
|
24
29
|
|
25
|
-
Minimum required Ruby version: >=
|
30
|
+
Minimum required Ruby version: >= 3.1.
|
26
31
|
|
27
|
-
> **Deprecation notice**: the minimum Ruby version will be 3.
|
32
|
+
> **Deprecation notice**: the minimum Ruby version will be 3.2 in a future version.
|
28
33
|
|
29
34
|
[Aspera APIs on IBM developer](https://developer.ibm.com/?size=30&q=aspera&DWContentType[0]=APIs&sort=title_asc)
|
30
35
|
[Link 2](https://developer.ibm.com/apis/catalog/?search=aspera)
|
@@ -37,6 +42,11 @@ A PDF version of this documentation is available here: [docs/Manual.pdf](docs/Ma
|
|
37
42
|
|
38
43
|
Refer to [BUGS.md](BUGS.md) and [CONTRIBUTING.md](CONTRIBUTING.md).
|
39
44
|
|
45
|
+
This documentation does not provide ALL the detailed description of all options and commands.
|
46
|
+
The reason is that most commands and payloads are directly Rest API calls on the various Aspera products.
|
47
|
+
So, to get the full description of all options and commands, refer to the official Aspera API documentation.
|
48
|
+
(To see which API is used, set option `--log-level=debug`)
|
49
|
+
|
40
50
|
### When to use and when not to use
|
41
51
|
|
42
52
|
`ascli` is designed to be used as a command line tool to:
|
@@ -59,13 +69,23 @@ It is designed for:
|
|
59
69
|
If the need is to perform operations programmatically in languages such as: C, Go, Python, nodejs, ... then it is better to directly use [Aspera APIs](https://ibm.biz/aspera_api)
|
60
70
|
|
61
71
|
- Product APIs (REST) : e.g. AoC, Faspex, node
|
62
|
-
- Transfer SDK : with gRPC interface and language stubs (C, C++, Python, .NET/C#, java, Ruby, etc...)
|
72
|
+
- Transfer SDK : with gRPC interface and language stubs (C, C++, Python, .NET/C#, java, Go, Ruby, Rust, etc...)
|
63
73
|
|
64
74
|
Using APIs (application REST API and transfer SDK) will prove to be easier to develop and maintain.
|
65
75
|
Code examples here: <https://github.com/laurent-martin/aspera-api-examples>
|
66
76
|
|
67
77
|
For scripting and ad'hoc command line operations, `ascli` is perfect.
|
68
78
|
|
79
|
+
So, which is Aspera's CLI ? `ascli` or `ascp`
|
80
|
+
|
81
|
+
`ascp` is the low level Aspera command line for **transfers**.
|
82
|
+
It is in fact the implementation of the FASP protocol.
|
83
|
+
So, ANY Aspera transfer leads to one ascp process running on client side and another on server side.
|
84
|
+
`ascp` can be used as a command line, but it is very low level, and practically it can be used on command line only if there is no Aspera web ap (AoC, Faspex, etc..) and ONLY to do a transfer (send/receive), not for any operation on Aspera apps (e.g. listing remote files).
|
85
|
+
`ascp` does not provide a configuration file to store credentials or options, it does not resume automatically on transfer error.
|
86
|
+
|
87
|
+
In fact, `ascli` can do everything that `ascp` does, and much more, and in an easier way.
|
88
|
+
|
69
89
|
### Notations, Shell, Examples
|
70
90
|
|
71
91
|
Command line operations examples are shown using a shell such as: `bash` or `zsh`.
|
@@ -92,7 +112,7 @@ Once the gem is installed, `ascli` shall be accessible:
|
|
92
112
|
|
93
113
|
```console
|
94
114
|
$ ascli --version
|
95
|
-
4.
|
115
|
+
4.21.1
|
96
116
|
```
|
97
117
|
|
98
118
|
### First use
|
@@ -191,26 +211,31 @@ The direct installation is recommended and consists in installing:
|
|
191
211
|
- [aspera-cli](#ruby-gem-aspera-cli) <!-- markdownlint-disable-line -->
|
192
212
|
- [Aspera SDK (`ascp`)](#fasp-protocol-ascp)
|
193
213
|
|
194
|
-
Ruby version: >=
|
214
|
+
Ruby version: >= 3.1.
|
195
215
|
|
196
|
-
> **Deprecation notice**: the minimum Ruby version will be 3.
|
216
|
+
> **Deprecation notice**: the minimum Ruby version will be 3.2 in a future version.
|
197
217
|
|
198
218
|
The following sections provide information on the various installation methods.
|
199
219
|
|
200
220
|
An internet connection is required for the installation.
|
201
221
|
If you don't have internet for the installation, refer to section [Installation without internet access](#installation-in-air-gapped-environment).
|
202
222
|
|
203
|
-
A package with pre-installed Ruby, gem and ascp may also be provided.
|
223
|
+
A package with pre-installed Ruby, gem and `ascp` may also be provided.
|
204
224
|
|
205
|
-
###
|
225
|
+
### `ascli` executable
|
206
226
|
|
207
|
-
|
227
|
+
**Note:** This is an Alpha feature. The binary depends on certain GLIBC version for Linux.
|
228
|
+
|
229
|
+
It is planned to provide `ascli` as a single platform-dependent executable.
|
230
|
+
[Alpha releases can be found here](https://ibm.biz/aspera-cli-exe).
|
231
|
+
|
232
|
+
### Ruby
|
208
233
|
|
209
234
|
A Ruby interpreter is required to run `ascli`.
|
210
235
|
|
211
|
-
Required Ruby version: >=
|
236
|
+
Required Ruby version: >= 3.1.
|
212
237
|
|
213
|
-
> **Deprecation notice**: the minimum Ruby version will be 3.
|
238
|
+
> **Deprecation notice**: the minimum Ruby version will be 3.2 in a future version.
|
214
239
|
|
215
240
|
**Ruby can be installed using any method** : rpm, yum, dnf, rvm, brew, Windows installer, ... .
|
216
241
|
|
@@ -221,64 +246,8 @@ Required Ruby version: >= 2.6.
|
|
221
246
|
|
222
247
|
For convenience, you may refer to the following sections for a proposed method for specific operating systems.
|
223
248
|
|
224
|
-
|
225
|
-
|
226
|
-
Install `rvm`.
|
227
|
-
Follow [https://rvm.io/](https://rvm.io/).
|
228
|
-
|
229
|
-
Execute the shell/curl command.
|
230
|
-
As regular user, it installs in the user's home: `~/.rvm` .
|
231
|
-
|
232
|
-
```bash
|
233
|
-
\curl -sSL https://get.rvm.io | bash -s stable
|
234
|
-
```
|
235
|
-
|
236
|
-
Follow on-screen instructions to install keys, and then re-execute the command.
|
237
|
-
|
238
|
-
Upon RVM installation, open a new terminal or initialize with:
|
239
|
-
|
240
|
-
```bash
|
241
|
-
source ~/.rvm/scripts/rvm
|
242
|
-
```
|
243
|
-
|
244
|
-
It is advised to get one of the pre-compiled Ruby version, you can list with:
|
245
|
-
|
246
|
-
```bash
|
247
|
-
rvm list --remote
|
248
|
-
```
|
249
|
-
|
250
|
-
Install the chosen pre-compiled Ruby version:
|
251
|
-
|
252
|
-
```bash
|
253
|
-
rvm install 3.2.2
|
254
|
-
```
|
255
|
-
|
256
|
-
Ruby is now installed for the user, go to [Gem installation](#ruby-gem-aspera-cli). <!-- markdownlint-disable-line -->
|
257
|
-
|
258
|
-
Alternatively RVM can be installed system-wide, for this execute as `root`.
|
259
|
-
It then installs by default in `/usr/local/rvm` for all users and creates `/etc/profile.d/rvm.sh`.
|
260
|
-
One can install in another location with:
|
261
|
-
|
262
|
-
```bash
|
263
|
-
curl -sSL https://get.rvm.io | bash -s -- --path /usr/local
|
264
|
-
```
|
265
|
-
|
266
|
-
As root, make sure this will not collide with other application using Ruby (e.g. Faspex).
|
267
|
-
If so, one can rename the environment script so that it is not loaded by default:
|
268
|
-
|
269
|
-
```bash
|
270
|
-
mv /etc/profile.d/rvm.sh /etc/profile.d/rvm.sh.ok
|
271
|
-
```
|
272
|
-
|
273
|
-
To activate Ruby (and ascli) later, source it:
|
274
|
-
|
275
|
-
```bash
|
276
|
-
source /etc/profile.d/rvm.sh.ok
|
277
|
-
```
|
278
|
-
|
279
|
-
```bash
|
280
|
-
rvm version
|
281
|
-
```
|
249
|
+
Latest version of `ascli` requires a ruby version [at least under maintenance support](https://www.ruby-lang.org/en/downloads/branches/).
|
250
|
+
If an older Ruby version is needed, then use an older version of `ascli` that supports it.
|
282
251
|
|
283
252
|
#### Windows: Installer
|
284
253
|
|
@@ -302,15 +271,24 @@ rubyinstaller-devkit-3.2.2-1-x64.exe /silent /currentuser /noicons /dir=C:\asper
|
|
302
271
|
|
303
272
|
#### macOS: `brew`
|
304
273
|
|
305
|
-
**macOS**
|
306
|
-
|
274
|
+
**macOS** comes with Ruby 2.6.
|
275
|
+
It is an old unsupported version and [Apple has deprecated it](https://developer.apple.com/documentation/macos-release-notes/macos-catalina-10_15-release-notes), and it will be removed in the future.
|
276
|
+
Do not use it.
|
307
277
|
|
308
|
-
The recommended way is to either
|
278
|
+
The recommended way is to either use [Homebrew](https://brew.sh/) or [RVM](https://rvm.io/).
|
309
279
|
|
310
280
|
```bash
|
311
281
|
brew install ruby
|
312
282
|
```
|
313
283
|
|
284
|
+
This installs a recent ruby suitable for `ascli`.
|
285
|
+
|
286
|
+
If using `rvm`, one way to force use of openssl 3.0 is:
|
287
|
+
|
288
|
+
```bash
|
289
|
+
RUBY_CONFIGURE_OPTS="--with-openssl-dir=$(brew --prefix openssl@3.0)" rvm install 3.4.0
|
290
|
+
```
|
291
|
+
|
314
292
|
#### Linux: Package
|
315
293
|
|
316
294
|
If your Linux distribution provides a standard Ruby package, you can use it provided that the version supported.
|
@@ -364,7 +342,66 @@ One can remove all installed gems, for example to start fresh:
|
|
364
342
|
gem uninstall -axI $(ls $(gem env gemdir)/gems/|sed -e 's/-[^-]*$//'|sort -u)
|
365
343
|
```
|
366
344
|
|
367
|
-
####
|
345
|
+
#### Unix-like: RVM: Single user installation (not root)
|
346
|
+
|
347
|
+
Install `rvm`.
|
348
|
+
Follow [https://rvm.io/](https://rvm.io/).
|
349
|
+
|
350
|
+
Execute the shell/curl command.
|
351
|
+
As regular user, it installs in the user's home: `~/.rvm` .
|
352
|
+
|
353
|
+
```bash
|
354
|
+
\curl -sSL https://get.rvm.io | bash -s stable
|
355
|
+
```
|
356
|
+
|
357
|
+
Follow on-screen instructions to install keys, and then re-execute the command.
|
358
|
+
|
359
|
+
Upon RVM installation, open a new terminal or initialize with:
|
360
|
+
|
361
|
+
```bash
|
362
|
+
source ~/.rvm/scripts/rvm
|
363
|
+
```
|
364
|
+
|
365
|
+
It is advised to get one of the pre-compiled Ruby version, you can list with:
|
366
|
+
|
367
|
+
```bash
|
368
|
+
rvm list --remote
|
369
|
+
```
|
370
|
+
|
371
|
+
Install the chosen pre-compiled Ruby version:
|
372
|
+
|
373
|
+
```bash
|
374
|
+
rvm install 3.2.2
|
375
|
+
```
|
376
|
+
|
377
|
+
Ruby is now installed for the user, go to [Gem installation](#ruby-gem-aspera-cli). <!-- markdownlint-disable-line -->
|
378
|
+
|
379
|
+
Alternatively RVM can be installed system-wide, for this execute as `root`.
|
380
|
+
It then installs by default in `/usr/local/rvm` for all users and creates `/etc/profile.d/rvm.sh`.
|
381
|
+
One can install in another location with:
|
382
|
+
|
383
|
+
```bash
|
384
|
+
curl -sSL https://get.rvm.io | bash -s -- --path /usr/local
|
385
|
+
```
|
386
|
+
|
387
|
+
As root, make sure this will not collide with other application using Ruby (e.g. Faspex).
|
388
|
+
If so, one can rename the environment script so that it is not loaded by default:
|
389
|
+
|
390
|
+
```bash
|
391
|
+
mv /etc/profile.d/rvm.sh /etc/profile.d/rvm.sh.ok
|
392
|
+
```
|
393
|
+
|
394
|
+
To activate Ruby (and ascli) later, source it:
|
395
|
+
|
396
|
+
```bash
|
397
|
+
source /etc/profile.d/rvm.sh.ok
|
398
|
+
```
|
399
|
+
|
400
|
+
```bash
|
401
|
+
rvm version
|
402
|
+
```
|
403
|
+
|
404
|
+
#### Linux as non-root
|
368
405
|
|
369
406
|
If you don't have root access, you can install Ruby in your home directory using `rbenv` see [rbenv-installer](https://github.com/rbenv/rbenv-installer#rbenv-installer):
|
370
407
|
|
@@ -372,7 +409,7 @@ If you don't have root access, you can install Ruby in your home directory using
|
|
372
409
|
curl -fsSL https://github.com/rbenv/rbenv-installer/raw/HEAD/bin/rbenv-installer | bash
|
373
410
|
```
|
374
411
|
|
375
|
-
Then open a new terminal, or
|
412
|
+
Then open a new terminal, or `source` the shell initialization script:
|
376
413
|
|
377
414
|
```bash
|
378
415
|
source ~/.bashrc
|
@@ -391,8 +428,7 @@ For example for AIX, one can look at:
|
|
391
428
|
|
392
429
|
<https://www.ibm.com/support/pages/aix-toolbox-open-source-software-downloads-alpha#R>
|
393
430
|
|
394
|
-
If your Unix does not provide a pre-built Ruby, you can get it using one of those
|
395
|
-
[methods](https://www.ruby-lang.org/en/documentation/installation/).
|
431
|
+
If your Unix does not provide a pre-built Ruby, you can get it using one of those [methods](https://www.ruby-lang.org/en/documentation/installation/).
|
396
432
|
|
397
433
|
For instance to build from source and install in `/opt/ruby` :
|
398
434
|
|
@@ -445,16 +481,24 @@ JRUBY_OPTS=--dev ascli -v
|
|
445
481
|
|
446
482
|
#### Optional gems
|
447
483
|
|
448
|
-
Some additional gems
|
484
|
+
Some additional gems are required for some specific features, see [Gemfile.optional](Gemfile.optional):
|
449
485
|
|
450
|
-
|
451
|
-
|
452
|
-
|
486
|
+
| name | version | comment |
|
487
|
+
| ---- | ------- | ------- |
|
488
|
+
| grpc | ~> 1.65 | for transferSDK |
|
489
|
+
| mimemagic | ~> 0.4 | for preview |
|
490
|
+
| rmagick | ~> 5.5 | for terminal view |
|
491
|
+
| symmetric-encryption | ~> 4.6 | for file vault |
|
492
|
+
| bigdecimal | ~> 3.1.9 | if RUBY_VERSION >= '3.4' for symmetric-encryption ? |
|
453
493
|
|
454
494
|
Install like this:
|
455
495
|
|
456
496
|
```bash
|
457
|
-
gem install
|
497
|
+
gem install grpc -v '~> 1.65'
|
498
|
+
gem install mimemagic -v '~> 0.4'
|
499
|
+
gem install rmagick -v '~> 5.5'
|
500
|
+
gem install symmetric-encryption -v '~> 4.6'
|
501
|
+
gem install bigdecimal -v '~> 3.1.9'
|
458
502
|
```
|
459
503
|
|
460
504
|
> **Note:** Those are not installed as part of dependencies because they involve compilation of native code.
|
@@ -509,24 +553,59 @@ Only two additional files are required to perform an Aspera Transfer, which are
|
|
509
553
|
- `ascp`
|
510
554
|
- `aspera-license` (in same folder, or ../etc)
|
511
555
|
|
512
|
-
This can be installed either be installing an Aspera transfer software
|
556
|
+
This can be installed either be installing an Aspera transfer software or using an `ascli` command.
|
557
|
+
|
558
|
+
#### Installation of `ascp` through `transferd`
|
559
|
+
|
560
|
+
The easiest option to install `ascp` is through the use of the IBM Aspera Transfer Daemon.
|
561
|
+
|
562
|
+
Supported platforms are listed in the [Release Notes](https://developer.ibm.com/apis/catalog/aspera--aspera-transfer-sdk/Release+notes) and archives can be downloaded from [Downloads](https://developer.ibm.com/apis/catalog/aspera--aspera-transfer-sdk/downloads/downloads.json).
|
563
|
+
|
564
|
+
Install with:
|
513
565
|
|
514
566
|
```bash
|
515
567
|
ascli config ascp install
|
516
568
|
```
|
517
569
|
|
518
|
-
|
570
|
+
or
|
571
|
+
|
572
|
+
```bash
|
573
|
+
ascli config transferd install
|
574
|
+
```
|
575
|
+
|
576
|
+
This command will retrieve the list of current archives for all platforms from: <https://ibm.biz/sdk_location> and then select the latest version for the current platform.
|
577
|
+
In this case, the default value for option `sdk_url` is `DEF`.
|
578
|
+
|
579
|
+
Available Transfer Daemon versions can be listed with: `ascli config transferd list`
|
580
|
+
|
581
|
+
To install a specific version, e.g. 1.1.3:
|
519
582
|
|
520
583
|
```bash
|
521
|
-
|
584
|
+
ascli config ascp install 1.1.3
|
522
585
|
```
|
523
586
|
|
587
|
+
To get the download URL for a specific platform and version:
|
588
|
+
|
524
589
|
```bash
|
525
|
-
ascli config
|
590
|
+
ascli config transferd list --select=@json:'{"platform":"osx-arm64","version":"1.1.3"}' --fields=url
|
591
|
+
```
|
592
|
+
|
593
|
+
To download it, pipe to `config download`:
|
594
|
+
|
595
|
+
```bash
|
596
|
+
ascli config transferd list --select=@json:'{"platform":"osx-arm64","version":"1.1.3"}' --fields=url | ascli config download @stdin:
|
597
|
+
```
|
598
|
+
|
599
|
+
If installation from a local file preferred instead of fetching from internet: one can specify the location of the SDK file with option `sdk_url`:
|
600
|
+
|
601
|
+
```bash
|
602
|
+
ascli config ascp install --sdk-url=file:///macos-arm64-1.1.3-c6c7a2a.zip
|
526
603
|
```
|
527
604
|
|
528
605
|
The format is: `file:///<path>`, where `<path>` can be either a relative path (not starting with `/`), or an absolute path.
|
529
606
|
|
607
|
+
#### Installation of `ascp` through other component
|
608
|
+
|
530
609
|
If the embedded method is not used, the following packages are also suitable:
|
531
610
|
|
532
611
|
- IBM Aspera Connect Client (Free)
|
@@ -706,7 +785,7 @@ ascli -v
|
|
706
785
|
```
|
707
786
|
|
708
787
|
```text
|
709
|
-
4.
|
788
|
+
4.21.1
|
710
789
|
```
|
711
790
|
|
712
791
|
In order to keep persistency of configuration on the host, you should specify your user's configuration folder as a volume for the container.
|
@@ -969,7 +1048,7 @@ ascli config echo @uri:https://localhost:9092/ping --cert-stores=myserver.pem
|
|
969
1048
|
|
970
1049
|
## Command Line Interface
|
971
1050
|
|
972
|
-
The command line tool is:
|
1051
|
+
The command line tool is: `ascli`
|
973
1052
|
|
974
1053
|
The `aspera-cli` gem provides a command line interface (CLI) which interacts with Aspera Products (mostly using REST APIs):
|
975
1054
|
|
@@ -1060,6 +1139,8 @@ Hello World
|
|
1060
1139
|
2
|
1061
1140
|
```
|
1062
1141
|
|
1142
|
+
> **Note:** Use `pp` instead of `puts` to display as ruby Array.
|
1143
|
+
|
1063
1144
|
Once the shell has dealt with the command line "special" characters for it, the shell calls Windows' `CreateProcess` with just the whole command line as a single string.
|
1064
1145
|
(Unlike Unix-like systems where the command line is split into arguments by the shell.)
|
1065
1146
|
|
@@ -1328,7 +1409,7 @@ The tokenization of the command line is typically done by the shell, refer to th
|
|
1328
1409
|
`ascli` handles two types of command line arguments:
|
1329
1410
|
|
1330
1411
|
- **Positional Arguments** : position is significant
|
1331
|
-
- **Options** : only order is significant, but not position
|
1412
|
+
- **Options** : only order is significant, but not absolute position
|
1332
1413
|
|
1333
1414
|
For example:
|
1334
1415
|
|
@@ -1349,11 +1430,11 @@ The value of **Options** and **Positional Arguments** is evaluated with the [Ext
|
|
1349
1430
|
**Positional Arguments** are either:
|
1350
1431
|
|
1351
1432
|
- **Commands**, typically at the beginning
|
1352
|
-
- **Command Parameters
|
1433
|
+
- **Command Parameters**, mandatory arguments, e.g. creation data or entity identifier
|
1353
1434
|
|
1354
1435
|
When options are removed from the command line, the remaining arguments are typically **Positional Arguments** with a pre-defined order.
|
1355
1436
|
|
1356
|
-
**Commands** are typically entity types or verbs to act on those entities.
|
1437
|
+
**Commands** are typically entity types (e.g. `users`) or verbs (e.g. `create`) to act on those entities.
|
1357
1438
|
Its value is a `String` that must belong to a fixed list of values in a given context.
|
1358
1439
|
|
1359
1440
|
Example:
|
@@ -1372,19 +1453,22 @@ Order is significant.
|
|
1372
1453
|
The provided command must match one of the supported commands in the given context.
|
1373
1454
|
If wrong, or no command is provided when expected, an error message is displayed and the list of supported commands is displayed.
|
1374
1455
|
|
1375
|
-
|
1456
|
+
Standard **Commands** are: `create`, `show`, `list`, `modify`, `delete`.
|
1457
|
+
Some entities also support additional commands.
|
1458
|
+
When those additional commands are related to an entity also reachable in another context, then those commands are located below command `do`.
|
1459
|
+
For example sub-commands appear after entity selection (identifier), e.g. `ascli aoc admin node do 1234 browse /`: `browse` is a sub-command of `node`.
|
1376
1460
|
|
1377
1461
|
**Command Parameters** are typically mandatory values for a command, such as entity creation data or entity identifier.
|
1378
1462
|
|
1379
1463
|
> **Note:** It could also have been designed as an option.
|
1380
|
-
But since it is mandatory and typically these data
|
1381
|
-
The advantages of using a **Command Parameter** instead of an option for the same are that the command line is shorter (no option name, just the position)
|
1382
|
-
The disadvantage is that it is not possible to define a default value in a configuration file or environment variable
|
1464
|
+
But since it is mandatory and typically these data do not need to be set in a configuration file, it is better designed as a Command Parameter, rather than as an additional specific option.
|
1465
|
+
The advantages of using a **Command Parameter** instead of an option for the same are that the command line is shorter (no option name, just the position), the value is clearly mandatory and position clearly indicates its role.
|
1466
|
+
The disadvantage is that it is not possible to define a default value in a configuration file or environment variable using an option value.
|
1383
1467
|
Nevertheless, [Extended Values](#extended-value-syntax) syntax is supported, so it is possible to retrieve a value from the configuration file (using `@preset:`) or environment variable (using `@env:`).
|
1384
1468
|
|
1385
1469
|
If a **Command Parameters** begins with `-`, then either use the `@val:` syntax (see [Extended Values](#extended-value-syntax)), or use the `--` separator (see below).
|
1386
1470
|
|
1387
|
-
A few **Command Parameters** are optional, they are located at the end of the command line.
|
1471
|
+
A few **Command Parameters** are optional, they are always located at the end of the command line.
|
1388
1472
|
|
1389
1473
|
#### Options
|
1390
1474
|
|
@@ -1464,16 +1548,33 @@ To redirect results to a file, use option `output`.
|
|
1464
1548
|
|
1465
1549
|
Depending on action, the output will contain:
|
1466
1550
|
|
1467
|
-
|
1468
|
-
|
1469
|
-
|
1470
|
-
|
1471
|
-
|
1472
|
-
|
1551
|
+
| Result Type | Description |
|
1552
|
+
|-----------------|-------------------|
|
1553
|
+
| `single_object` | displayed as a 2 dimensional table: one line per field, first column is field name, and second is field value. Nested hashes are collapsed. |
|
1554
|
+
| `object_list` | displayed as a 2 dimensional table: one line per item, one column per field. |
|
1555
|
+
| `value_list` | a table with one column. |
|
1556
|
+
| `empty` | nothing |
|
1557
|
+
| `status` | a message |
|
1558
|
+
| `other_struct` | a complex structure that cannot be displayed as an array |
|
1473
1559
|
|
1474
|
-
####
|
1560
|
+
#### Option: `format`
|
1475
1561
|
|
1476
|
-
|
1562
|
+
The style of output can be set using the `format` option:
|
1563
|
+
|
1564
|
+
| `format` | Output formatting |
|
1565
|
+
|----------|-------------------|
|
1566
|
+
| `table` | Text table (default) |
|
1567
|
+
| `text` | Value as `String` |
|
1568
|
+
| `ruby` | Ruby code |
|
1569
|
+
| `json` | JSON code |
|
1570
|
+
| `jsonpp` | JSON pretty printed |
|
1571
|
+
| `yaml` | YAML |
|
1572
|
+
| `csv` | Comma Separated Values |
|
1573
|
+
| `image` | Image URL or Image data |
|
1574
|
+
|
1575
|
+
By default, result of type `single_object` and `object_list` are displayed using format `table`.
|
1576
|
+
|
1577
|
+
#### Option: `table_style`
|
1477
1578
|
|
1478
1579
|
The table style can be customized with option: `table_style` which expects a `Hash`, options are the ones described in gem [`terminal-table`](https://github.com/tj/terminal-table).
|
1479
1580
|
|
@@ -1485,28 +1586,64 @@ ascli config preset over --table-style=@ruby:'{border: :unicode_thick_edge}'
|
|
1485
1586
|
|
1486
1587
|
> **Note:** Other border styles exist, not limited to: `:unicode`, `:unicode_round`.
|
1487
1588
|
|
1488
|
-
|
1489
|
-
|
1490
|
-
|
1491
|
-
|
1589
|
+
#### Option: `flat_hash`: `.`-join keys
|
1590
|
+
|
1591
|
+
This optin controls how object fields are displayed for complex objects.
|
1592
|
+
|
1593
|
+
Effective only when `format` is `table` to display `single_object` or `object_list`.
|
1594
|
+
|
1595
|
+
If value is `no`, then object's `field` names are only the first level keys of the `Hash` result and values that are `Hash` are displayed as such in Ruby syntax.
|
1596
|
+
|
1597
|
+
If value is `yes` (default), then object are flattened, i.e. deep `Hash` are transformed into 1-level Hash, where keys are `.`-junction of deep keys.
|
1598
|
+
In this case, it is possible to filter fields using the option `fields` using the compound field name using `.` (dot) as separator.
|
1599
|
+
|
1600
|
+
Example: Result of command is a list of objects with a single object:
|
1601
|
+
|
1602
|
+
```console
|
1603
|
+
$ ascli config echo @json:'[{"user":{"id":1,"name":"toto"},"project":"blah"}]'
|
1604
|
+
╭─────────┬───────────┬─────────╮
|
1605
|
+
│ user.id │ user.name │ project │
|
1606
|
+
╞═════════╪═══════════╪═════════╡
|
1607
|
+
│ 1 │ toto │ blah │
|
1608
|
+
╰─────────┴───────────┴─────────╯
|
1609
|
+
|
1610
|
+
$ ascli config echo @json:'[{"user":{"id":1,"name":"toto"},"project":"blah"}]' --flat-hash=no
|
1611
|
+
╭───────────────────────────┬─────────╮
|
1612
|
+
│ user │ project │
|
1613
|
+
╞═══════════════════════════╪═════════╡
|
1614
|
+
│ {"id"=>1, "name"=>"toto"} │ blah │
|
1615
|
+
╰───────────────────────────┴─────────╯
|
1616
|
+
```
|
1617
|
+
|
1618
|
+
#### Option: `multi_single`
|
1619
|
+
|
1620
|
+
This option controls if object fields are displayed as columns or lines.
|
1621
|
+
|
1622
|
+
If value is `no` (default), `object_list` are displayed with one object per line, with fields as columns (see above).
|
1623
|
+
`single_object` are displayed with one field per line (and columns are: `field`, `value`).
|
1492
1624
|
|
1493
|
-
|
1494
|
-
Single objects (or tables with a single result) are transposed: one attribute per line.
|
1495
|
-
If transposition of single object is not desired, use option: `transpose_single` set to `no`.
|
1625
|
+
If an `object_list` has a single element, it is possible to have `ascli` display the object as a single object (one field per line instead of columns) with option: `multi_single` set to `single`.
|
1496
1626
|
|
1497
|
-
|
1627
|
+
This parameter can be set as a global default with:
|
1498
1628
|
|
1499
|
-
|
1500
|
-
|
1501
|
-
|
1502
|
-
|
1503
|
-
|
1504
|
-
- `jsonpp` : JSON pretty printed
|
1505
|
-
- `yaml` : YAML
|
1506
|
-
- `csv` : Comma Separated Values
|
1507
|
-
- `image` : Image URL or Image data
|
1629
|
+
```bash
|
1630
|
+
ascli config preset set GLOBAL multi_single single
|
1631
|
+
```
|
1632
|
+
|
1633
|
+
In case multiple objects are returned, it is possible to display one table per object with option `multi_single` set to `yes`.
|
1508
1634
|
|
1509
|
-
|
1635
|
+
```console
|
1636
|
+
$ ascli config echo @json:'[{"user":{"id":1,"name":"toto"},"project":"blash"}]' --multi-single=yes
|
1637
|
+
╭───────────┬───────╮
|
1638
|
+
│ field │ value │
|
1639
|
+
╞═══════════╪═══════╡
|
1640
|
+
│ user.id │ 1 │
|
1641
|
+
│ user.name │ toto │
|
1642
|
+
│ project │ blash │
|
1643
|
+
╰───────────┴───────╯
|
1644
|
+
```
|
1645
|
+
|
1646
|
+
#### Option: `display`: Verbosity of output
|
1510
1647
|
|
1511
1648
|
Output messages are categorized in 3 types:
|
1512
1649
|
|
@@ -1520,13 +1657,17 @@ The option `display` controls the level of output:
|
|
1520
1657
|
- `data` display `data` and `error` messages
|
1521
1658
|
- `error` display only error messages.
|
1522
1659
|
|
1523
|
-
|
1524
|
-
|
1660
|
+
#### Option: `show_secrets`: Hide or show secrets in results
|
1661
|
+
|
1662
|
+
If value is `no` (default), then secrets are redacted from command results.
|
1663
|
+
|
1664
|
+
If value is `yes`, then secrets shown in clear in results.
|
1525
1665
|
|
1526
|
-
|
1666
|
+
If `display` is `data`, secrets are included to allows piping results.
|
1527
1667
|
|
1528
|
-
|
1529
|
-
|
1668
|
+
#### Option: `fields`: Selection of output object fields
|
1669
|
+
|
1670
|
+
Depending on the command, results may include by default all fields, or only some selected fields.
|
1530
1671
|
It is possible to define specific columns to be displayed, by setting the `fields` option.
|
1531
1672
|
|
1532
1673
|
The `fields` option is a list that can be either a comma separated list or an extended value `Array`.
|
@@ -1535,8 +1676,8 @@ Individual elements of the list can be:
|
|
1535
1676
|
|
1536
1677
|
- **property** : add property to the current list
|
1537
1678
|
- `-`**property** : remove property from the current list
|
1538
|
-
- `DEF` : default list of
|
1539
|
-
- `ALL` : all
|
1679
|
+
- `DEF` : default list of fields (that's the default, when not set)
|
1680
|
+
- `ALL` : all fields
|
1540
1681
|
- A Ruby `RegEx` : using `@ruby:'/.../'`, or `@re:...` add those matching to the list
|
1541
1682
|
|
1542
1683
|
Examples:
|
@@ -1544,18 +1685,18 @@ Examples:
|
|
1544
1685
|
- `a,b,c` : the list of attributes specified as a comma separated list (overrides the all default)
|
1545
1686
|
- `@json:'["a","b","c"]'` : `Array` extended value: same as above
|
1546
1687
|
- `b,DEF,-a` : default property list, remove `a` and add `b` in first position
|
1547
|
-
- `@ruby:'/^server/'` : Display all
|
1688
|
+
- `@ruby:'/^server/'` : Display all fields whose name begin with `server`
|
1548
1689
|
|
1549
1690
|
#### Option: `select`
|
1550
1691
|
|
1551
1692
|
Table output (`object_list`) can be filtered using option `select`.
|
1552
1693
|
This option is either a `Hash` or `Proc`.
|
1553
|
-
The `Proc` takes as argument a line (`Hash`) in the table and is a Ruby lambda expression that returns `true` or `false
|
1694
|
+
The `Proc` takes as argument a line (`Hash`) in the table and is a Ruby lambda expression that shall returns `true` to select or `false` to remove an entry.
|
1554
1695
|
|
1555
1696
|
Example:
|
1556
1697
|
|
1557
1698
|
```bash
|
1558
|
-
ascli aoc admin
|
1699
|
+
ascli aoc admin user list --fields=name,email,ats_admin --query=@json:'{"sort":"name"}' --select=@json:'{"ats_admin":true}'
|
1559
1700
|
```
|
1560
1701
|
|
1561
1702
|
```output
|
@@ -1579,19 +1720,26 @@ In above example, the same result is obtained with option:
|
|
1579
1720
|
|
1580
1721
|
The percent selector allows identification of an entity by another unique identifier other than the native identifier.
|
1581
1722
|
|
1582
|
-
|
1583
|
-
e.g. `ascli aoc admin res user show 1234` where `1234` is the user's identifier.
|
1723
|
+
Syntax: `%<field>:<value>`
|
1584
1724
|
|
1585
|
-
|
1586
|
-
|
1725
|
+
When a command is executed on a single entity, the entity is identified by a unique identifier that follows the command.
|
1726
|
+
For example, in the following command, `1234` is the user's identifier:
|
1587
1727
|
|
1588
|
-
|
1728
|
+
```bash
|
1729
|
+
ascli aoc admin user show 1234
|
1730
|
+
```
|
1589
1731
|
|
1590
|
-
|
1732
|
+
Some commands provide the following capability:
|
1733
|
+
If the entity can also be uniquely identified by a name, then the name can be used instead of the identifier, using the **percent selector**.
|
1734
|
+
For example, if the name of the user is `john` and a field for this entity named `name` has a value `john`:
|
1735
|
+
|
1736
|
+
```bash
|
1737
|
+
ascli aoc admin user show %name:john
|
1738
|
+
```
|
1591
1739
|
|
1592
1740
|
### Extended Value Syntax
|
1593
1741
|
|
1594
|
-
Most options and arguments are specified by a simple string (e.g. username or url).
|
1742
|
+
Most options and arguments are specified by a simple string (e.g. `username` or `url`).
|
1595
1743
|
Sometime it is convenient to read a value from a file: for example read the PEM value of a private key, or a list of files.
|
1596
1744
|
Some options expect a more complex value such as `Hash` or `Array`.
|
1597
1745
|
|
@@ -1607,31 +1755,31 @@ Decoders act like a function with its parameter on right hand side and are recog
|
|
1607
1755
|
|
1608
1756
|
The following decoders are supported:
|
1609
1757
|
|
1610
|
-
| Decoder | Parameter| Returns
|
1611
|
-
|
1612
|
-
| `base64` | String
|
1613
|
-
| `csvt` | String
|
1614
|
-
| `env` | String
|
1615
|
-
| `file` | String
|
1616
|
-
| `json` | String
|
1617
|
-
| `lines` | String
|
1618
|
-
| `list` | String
|
1619
|
-
| `none` | None | Nil
|
1620
|
-
| `path` | String
|
1621
|
-
| `preset` | String
|
1622
|
-
| `extend` | String
|
1623
|
-
| `re` | String
|
1624
|
-
| `ruby` | String
|
1625
|
-
| `secret` | None | String
|
1626
|
-
| `stdin` | None | String
|
1627
|
-
| `stdbin` | None | String
|
1628
|
-
| `uri` | String
|
1629
|
-
| `val` | String
|
1630
|
-
| `yaml` | String
|
1631
|
-
| `zlib` | String
|
1758
|
+
| Decoder | Parameter| Returns | Description |
|
1759
|
+
|----------|----------|----------|-------------|
|
1760
|
+
| `base64` | `String` | `String` | Decode a base64 encoded string |
|
1761
|
+
| `csvt` | `String` | `Array` | Decode a titled CSV value |
|
1762
|
+
| `env` | `String` | `String` | Read from a named env var name, e.g. `--password=@env:MYPASSVAR` |
|
1763
|
+
| `file` | `String` | `String` | Read value from specified file (prefix `~/` is replaced with the users home folder), e.g. `--key=@file:~/.ssh/mykey` |
|
1764
|
+
| `json` | `String` | Any | Decode JSON values (convenient to provide complex structures) |
|
1765
|
+
| `lines` | `String` | `Array` | Split a string in multiple lines and return an array |
|
1766
|
+
| `list` | `String` | `Array` | Split a string in multiple items taking first character as separator and return an array |
|
1767
|
+
| `none` | None | Nil | A null value |
|
1768
|
+
| `path` | `String` | `String` | Performs path expansion on specified path (prefix `~/` is replaced with the users home folder), e.g. `--config-file=@path:~/sample_config.yml` |
|
1769
|
+
| `preset` | `String` | `Hash` | Get whole option preset value by name. Sub-values can also be used using `.` as separator. e.g. `foo.bar` is `conf[foo][bar]` |
|
1770
|
+
| `extend` | `String` | `String` | Evaluates embedded extended value syntax in string |
|
1771
|
+
| `re` | `String` | `Regexp` | Ruby Regular Expression (short for `@ruby:/.../`) |
|
1772
|
+
| `ruby` | `String` | Any | Execute specified Ruby code |
|
1773
|
+
| `secret` | None | `String` | Ask password interactively (hides input) |
|
1774
|
+
| `stdin` | None | `String` | Read from stdin in text mode (no value on right) |
|
1775
|
+
| `stdbin` | None | `String` | Read from stdin in binary mode (no value on right) |
|
1776
|
+
| `uri` | `String` | `String` | Read value from specified URL, e.g. `--fpac=@uri:http://serv/f.pac` |
|
1777
|
+
| `val` | `String` | `String` | Prevent decoders on the right to be decoded. e.g. `--key=@val:@file:foo` sets the option `key` to value `@file:foo`. |
|
1778
|
+
| `yaml` | `String` | Any | Decode YAML |
|
1779
|
+
| `zlib` | `String` | `String` | Un-compress zlib data |
|
1632
1780
|
|
1633
1781
|
> **Note:** A few commands support a value of type `Proc` (lambda expression).
|
1634
|
-
For example, the **Extended Value** `@ruby:'->(i){i["attr"]}'` is a lambda expression that returns the value
|
1782
|
+
For example, the **Extended Value** `@ruby:'->(i){i["attr"]}'` is a lambda expression that returns the value for key `attr` of the `Hash` `i`.
|
1635
1783
|
|
1636
1784
|
To display the result of an extended value, use the `config echo` command.
|
1637
1785
|
|
@@ -1689,14 +1837,14 @@ ascli config echo @json:@extend:'{"hello":true,"version":"@preset:config.version
|
|
1689
1837
|
|
1690
1838
|
```output
|
1691
1839
|
+---------+-----------+
|
1692
|
-
|
|
1840
|
+
| field | value |
|
1693
1841
|
+---------+-----------+
|
1694
1842
|
| hello | true |
|
1695
1843
|
| version | 4.14.0 |
|
1696
1844
|
+---------+-----------+
|
1697
1845
|
```
|
1698
1846
|
|
1699
|
-
Example: Create a `Hash` from YAML provided as **heredoc**:
|
1847
|
+
Example: Create a `Hash` from YAML provided as shell **heredoc**:
|
1700
1848
|
|
1701
1849
|
```bash
|
1702
1850
|
ascli config echo @yaml:@stdin: --format=json<<EOF
|
@@ -1716,7 +1864,7 @@ EOF
|
|
1716
1864
|
|
1717
1865
|
### Configuration and Persistency Folder
|
1718
1866
|
|
1719
|
-
`ascli` configuration and
|
1867
|
+
`ascli` configuration and persistency files (token cache, file lists, persistency files) are stored by default in `[User's home folder]/.aspera/ascli`.
|
1720
1868
|
|
1721
1869
|
> **Note:** `[User's home folder]` is found using Ruby's `Dir.home` (`rb_w32_home_dir`).
|
1722
1870
|
It uses the `HOME` env var primarily, and on MS Windows it also looks at `%HOMEDRIVE%%HOMEPATH%` and `%USERPROFILE%`.
|
@@ -1745,9 +1893,9 @@ ascli config folder
|
|
1745
1893
|
C:\Users\Kenji\.aspera\ascli
|
1746
1894
|
```
|
1747
1895
|
|
1748
|
-
When OAuth is used (AoC,
|
1896
|
+
When OAuth is used (AoC, Faspex5) `ascli` keeps a cache of generated bearer tokens in folder `persist_store` in configuration folder by default.
|
1749
1897
|
Option `cache_tokens` (**yes**/no) allows to control if Oauth tokens are cached on file system, or generated for each request.
|
1750
|
-
The command `config
|
1898
|
+
The command `config tokens flush` clears that cache.
|
1751
1899
|
Tokens are kept on disk for a maximum of 30 minutes (`TOKEN_CACHE_EXPIRY_SEC`) and garbage collected after that.
|
1752
1900
|
When a token has expired, then a new token is generated, either using a refresh_token if it is available, or by the default method.
|
1753
1901
|
|
@@ -1917,17 +2065,16 @@ ascp errors
|
|
1917
2065
|
ascp info --sdk-folder=sdk_test_dir
|
1918
2066
|
ascp install
|
1919
2067
|
ascp install --sdk-folder=sdk_test_dir
|
2068
|
+
ascp install 1.1.3
|
1920
2069
|
ascp products list
|
1921
2070
|
ascp products use 'IBM Aspera Connect'
|
1922
2071
|
ascp show
|
1923
2072
|
ascp spec
|
1924
|
-
ascp use /usr/bin/ascp
|
1925
2073
|
check_update
|
1926
2074
|
coffee
|
1927
2075
|
coffee --ui=text
|
1928
2076
|
coffee --ui=text --image=@json:'{"text":true,"double":false}'
|
1929
2077
|
coffee --ui=text --image=@json:'{"text":true}'
|
1930
|
-
detect https://faspex4.example.com/path
|
1931
2078
|
detect https://faspex5.example.com/path
|
1932
2079
|
detect https://node.example.com/path
|
1933
2080
|
detect https://shares.example.com/path shares
|
@@ -1936,10 +2083,13 @@ detect https://tst.example.com/path httpgw
|
|
1936
2083
|
detect my_org aoc
|
1937
2084
|
doc
|
1938
2085
|
doc transfer-parameters
|
2086
|
+
echo '<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50" fill="#006699"/></svg>' --format=image
|
1939
2087
|
echo -- --special-string
|
1940
2088
|
echo @base64:SGVsbG8gV29ybGQK
|
1941
2089
|
echo @csvt:@stdin:
|
1942
2090
|
echo @env:USER
|
2091
|
+
echo @json:'[{"user":{"id":1,"name":"foo"},"project":"bar"}]' --multi-single=single
|
2092
|
+
echo @json:'[{"user":{"id":1,"name":"foo"},"project":"bar"}]' --multi-single=yes
|
1943
2093
|
echo @lines:@stdin:
|
1944
2094
|
echo @list:,1,2,3
|
1945
2095
|
echo @secret:
|
@@ -1951,7 +2101,8 @@ echo @vault:my_preset.password
|
|
1951
2101
|
echo @zlib:@stdin:
|
1952
2102
|
echo hello
|
1953
2103
|
email_test --notify-to=my_email_external
|
1954
|
-
|
2104
|
+
file
|
2105
|
+
file --logger=syslog --log-level=debug
|
1955
2106
|
folder
|
1956
2107
|
gem name
|
1957
2108
|
gem path
|
@@ -1967,6 +2118,7 @@ preset delete conf_name
|
|
1967
2118
|
preset initialize conf_name @json:'{"p1":"v1","p2":"v2"}'
|
1968
2119
|
preset list
|
1969
2120
|
preset overview
|
2121
|
+
preset set GLOBAL version_check_days 0
|
1970
2122
|
preset set conf_name param value
|
1971
2123
|
preset set default shares conf_name
|
1972
2124
|
preset show conf_name
|
@@ -1977,8 +2129,13 @@ pubkey @file:my_key
|
|
1977
2129
|
remote_certificate chain https://node.example.com/path
|
1978
2130
|
remote_certificate name https://node.example.com/path
|
1979
2131
|
remote_certificate only https://node.example.com/path
|
2132
|
+
smtp_settings
|
2133
|
+
tokens flush
|
2134
|
+
transferd install
|
2135
|
+
transferd list
|
1980
2136
|
vault create my_label @json:'{"password":"my_password_here","description":"my secret"}'
|
1981
2137
|
vault delete my_label
|
2138
|
+
vault info
|
1982
2139
|
vault list
|
1983
2140
|
vault show my_label
|
1984
2141
|
wizard https://console.example.com/path console
|
@@ -2104,7 +2261,7 @@ ascli config wizard
|
|
2104
2261
|
#### Example of configuration for a plugin
|
2105
2262
|
|
2106
2263
|
For Faspex, Shares, Node (including ATS, Aspera Transfer Service), Console,
|
2107
|
-
only username/password and
|
2264
|
+
only username/password and URL are required (either on command line, or from configuration file).
|
2108
2265
|
Those can usually be provided on the command line:
|
2109
2266
|
|
2110
2267
|
```bash
|
@@ -2350,16 +2507,16 @@ This is available:
|
|
2350
2507
|
- in the `thumbnail` command of `node` when using **gen4/access key** API.
|
2351
2508
|
- when using the `show` command of `preview` plugin.
|
2352
2509
|
- `coffee` and `image` commands of `config` plugin.
|
2353
|
-
- any displayed value which is
|
2510
|
+
- any displayed value which is a URL to image can be displayed with option `format` set to `image`
|
2354
2511
|
|
2355
2512
|
The following options can be specified in the option `image`:
|
2356
2513
|
|
2357
2514
|
| Option | Type | Description |
|
2358
2515
|
|------------|---------|-------------|
|
2359
|
-
| reserve | Integer | Lines reserved to display a status |
|
2360
|
-
| text | Bool | Display text instead of image|
|
2361
|
-
| double | Bool | Display double text resolution (half characters) |
|
2362
|
-
| font_ratio | Float | Font height/width ratio in terminal |
|
2516
|
+
| reserve | `Integer` | Lines reserved to display a status |
|
2517
|
+
| text | `Bool` | Display text instead of image|
|
2518
|
+
| double | `Bool` | Display double text resolution (half characters) |
|
2519
|
+
| font_ratio | `Float` | Font height/width ratio in terminal |
|
2363
2520
|
|
2364
2521
|
```bash
|
2365
2522
|
ascli config image https://eudemo.asperademo.com/wallpaper.jpg --ui=text --image=@json:'{"text":true}'
|
@@ -2392,12 +2549,12 @@ The gem is equipped with traces, mainly for debugging and learning APIs.
|
|
2392
2549
|
By default logging level is `warn` and the output channel is `stderr`.
|
2393
2550
|
To increase debug level, use option `log_level` (e.g. using command line `--log-level=xx`, env var `ASCLI_LOG_LEVEL`, or an [Option Preset](#option-preset)).
|
2394
2551
|
|
2395
|
-
By default passwords and secrets are
|
2396
|
-
|
2552
|
+
By default passwords and secrets are redacted from logs.
|
2553
|
+
Set option `log_secrets` to `yes` to include secrets in logs.
|
2397
2554
|
|
2398
|
-
|
2555
|
+
Option `logger`: `stdout`, `stderr`, `syslog`.
|
2399
2556
|
|
2400
|
-
|
2557
|
+
Option `log_level`: `debug`, `info`, `warn`, `error`.
|
2401
2558
|
|
2402
2559
|
> **Note:** When using the `direct` agent (`ascp`), additional transfer logs can be activated using `ascp` options and `ascp_args`, see [`direct`](#agent-direct).
|
2403
2560
|
|
@@ -2439,14 +2596,18 @@ To disable the warning, use option `silent_insecure` set to `no`.
|
|
2439
2596
|
|
2440
2597
|
HTTP connection parameters (not `ascp` wss) can be adjusted using option `http_options`:
|
2441
2598
|
|
2442
|
-
| Parameter
|
2443
|
-
|
2444
|
-
| `read_timeout`
|
2445
|
-
| `write_timeout`
|
2446
|
-
| `open_timeout`
|
2447
|
-
| `keep_alive_timeout`
|
2448
|
-
|
2449
|
-
|
2599
|
+
| Parameter | Default | Where |
|
2600
|
+
|---------------------------|---------------|-----------|
|
2601
|
+
| `read_timeout` | 60 | ruby |
|
2602
|
+
| `write_timeout` | 60 | ruby |
|
2603
|
+
| `open_timeout` | 60 | ruby |
|
2604
|
+
| `keep_alive_timeout` | 2 | ruby |
|
2605
|
+
| `user_agent` | `ascli` | `ascli` |
|
2606
|
+
| `download_partial_suffix` | .http_partial | `ascli` |
|
2607
|
+
| `retry_on_error` | 0 | `ascli` |
|
2608
|
+
| `retry_sleep` | nil | `ascli` |
|
2609
|
+
|
2610
|
+
Time values are in set **seconds** and can be of type either `Integer` or `Float`.
|
2450
2611
|
Default values are the ones of Ruby:
|
2451
2612
|
For a full list, refer to the Ruby library: [`Net::HTTP`](https://ruby-doc.org/stdlib/libdoc/net/http/rdoc/Net/HTTP.html).
|
2452
2613
|
|
@@ -2455,7 +2616,7 @@ Like any other option, those can be set either on command line, or in configurat
|
|
2455
2616
|
Example:
|
2456
2617
|
|
2457
2618
|
```bash
|
2458
|
-
ascli aoc admin
|
2619
|
+
ascli aoc admin package list --http-options=@json:'{"read_timeout":10.0}'
|
2459
2620
|
```
|
2460
2621
|
|
2461
2622
|
### Proxy
|
@@ -2600,7 +2761,7 @@ ascli config ascp info
|
|
2600
2761
|
|
2601
2762
|
```output
|
2602
2763
|
+--------------------+-----------------------------------------------------------+
|
2603
|
-
|
|
2764
|
+
| field | value |
|
2604
2765
|
+--------------------+-----------------------------------------------------------+
|
2605
2766
|
| ascp | /Users/laurent/.aspera/ascli/sdk/ascp |
|
2606
2767
|
...
|
@@ -2717,51 +2878,53 @@ Downloaded: IBMAsperaConnectInstaller-3.11.2.63.dmg
|
|
2717
2878
|
### Transfer Clients: Agents
|
2718
2879
|
|
2719
2880
|
Some of the actions on Aspera Applications lead to file transfers (upload and download) using the FASP protocol (`ascp`).
|
2720
|
-
|
2721
|
-
When a transfer needs to be started, a [**transfer-spec**](#transfer-specification) has been internally prepared.
|
2722
|
-
This [**transfer-spec**](#transfer-specification) will be executed by a transfer client, here called **Transfer Agent**.
|
2881
|
+
Transfers will be executed by a transfer client, here called **Transfer Agent**.
|
2723
2882
|
|
2724
2883
|
The following agents are supported and selected with option `transfer`:
|
2725
2884
|
|
2726
|
-
|
2727
|
-
|
2728
|
-
|
2729
|
-
|
2730
|
-
|
2731
|
-
|
2885
|
+
| `transfer` | location | Description of agent |
|
2886
|
+
|------------------------------------|----------|-------------------------------|
|
2887
|
+
| [`direct`](#agent-direct) | local | direct execution of `ascp` |
|
2888
|
+
| [`transferd`](#agent-transfer-sdk) | local | Aspera Transfer Daemon |
|
2889
|
+
| [`connect`](#agent-connect-client) | local | Aspera Connect Client |
|
2890
|
+
| [`alpha`](#agent-desktop-client) | local | Aspera for Desktop |
|
2891
|
+
| [`node`](#agent-node-api) | remote | Aspera Transfer Node |
|
2892
|
+
| [`httpgw`](#agent-http-gateway) | remote | Aspera HTTP Gateway |
|
2732
2893
|
|
2733
2894
|
> **Note:** All transfer operations are seen from the point of view of the agent.
|
2734
|
-
For example,
|
2735
|
-
will effectively push files to the related server from the agent node.
|
2895
|
+
For example, an agent executing an **upload**, or **package send** operation will effectively push files to the related server from the system where the agent runs.
|
2736
2896
|
|
2737
|
-
`
|
2897
|
+
All of above agents (including `direct`) receive transfer parameters as a [**transfer-spec**](#transfer-specification).
|
2898
|
+
Parameters in transfer-spec can be modified with option `ts`.
|
2738
2899
|
|
2739
|
-
Specific options for agents are provided with option `transfer_info
|
2900
|
+
**Specific** options for agents are provided with option `transfer_info`.
|
2901
|
+
|
2902
|
+
> **Note:** Parameters in `transfer_info` are specific for each agent type and are described in the agents respective sections.
|
2740
2903
|
|
2741
2904
|
#### Agent: Direct
|
2742
2905
|
|
2743
|
-
The `direct` agent directly executes a local `ascp`.
|
2906
|
+
The `direct` agent directly executes a local `ascp` in `ascli`.
|
2744
2907
|
This is the default agent for `ascli` (option `--transfer=direct`).
|
2745
|
-
`ascli` will search
|
2908
|
+
`ascli` will locally search installed Aspera products, including SDK, and use `ascp` from that component.
|
2746
2909
|
Refer to section [FASP](#fasp-configuration).
|
2747
2910
|
|
2748
2911
|
The `transfer_info` option accepts the following optional parameters to control multi-session, Web Socket Session, Resume policy and add any argument to `ascp`:
|
2749
2912
|
|
2750
2913
|
| Name | Type | Description |
|
2751
2914
|
|------------------------|---------|-------------|
|
2752
|
-
| `wss` | Bool | Web Socket Session<br/>Enable use of web socket session in case it is available<br/>Default: true |
|
2753
|
-
| `quiet` | Bool | If `true`, then `ascp` progress bar is not shown.<br/>Default: `false` |
|
2754
|
-
| `trusted_certs` | Array | List of repositories for trusted certificates. |
|
2755
|
-
| `client_ssh_key` | String
|
2756
|
-
| `ascp_args` | Array | Array of strings with native `ascp` arguments.<br/>Default: `[]` |
|
2757
|
-
| `spawn_timeout_sec` | Float | Multi session<br/>Verification time that `ascp` is running<br/>Default: `3` |
|
2758
|
-
| `spawn_delay_sec` | Float | Multi session<br/>Delay between startup of sessions<br/>Default: `2` |
|
2759
|
-
| `multi_incr_udp` | Bool | Multi Session<br/>Increment UDP port on multi-session<br/>If `true`, each session will have a different UDP port starting at `fasp_port` (or default 33001)<br/>Else, each session will use `fasp_port` (or `ascp` default)<br/>Default: `true` on Windows, else `false` |
|
2760
|
-
| `resume` | Hash | Resume parameters. See below |
|
2761
|
-
| `resume.iter_max` | Integer | Max number of retry on error<br/>Default: `7` |
|
2762
|
-
| `resume.sleep_initial` | Integer | First Sleep before retry<br/>Default: `2` |
|
2763
|
-
| `resume.sleep_factor` | Integer | Multiplier of sleep period between attempts<br/>Default: `2` |
|
2764
|
-
| `resume.sleep_max` | Integer | Default: `60` |
|
2915
|
+
| `wss` | `Bool` | Web Socket Session<br/>Enable use of web socket session in case it is available<br/>Default: true |
|
2916
|
+
| `quiet` | `Bool` | If `true`, then `ascp` progress bar is not shown.<br/>Default: `false` |
|
2917
|
+
| `trusted_certs` | `Array` | List of repositories for trusted certificates. |
|
2918
|
+
| `client_ssh_key` | `String` | SSH Keys to use for token-based transfers. One of: `dsa_rsa`, `rsa`, `per_client`. Default: `rsa` |
|
2919
|
+
| `ascp_args` | `Array` | Array of strings with native `ascp` arguments.<br/>Default: `[]` |
|
2920
|
+
| `spawn_timeout_sec` | `Float` | Multi session<br/>Verification time that `ascp` is running<br/>Default: `3` |
|
2921
|
+
| `spawn_delay_sec` | `Float` | Multi session<br/>Delay between startup of sessions<br/>Default: `2` |
|
2922
|
+
| `multi_incr_udp` | `Bool` | Multi Session<br/>Increment UDP port on multi-session<br/>If `true`, each session will have a different UDP port starting at `fasp_port` (or default 33001)<br/>Else, each session will use `fasp_port` (or `ascp` default)<br/>Default: `true` on Windows, else `false` |
|
2923
|
+
| `resume` | `Hash` | Resume parameters. See below |
|
2924
|
+
| `resume.iter_max` | `Integer` | Max number of retry on error<br/>Default: `7` |
|
2925
|
+
| `resume.sleep_initial` | `Integer` | First Sleep before retry<br/>Default: `2` |
|
2926
|
+
| `resume.sleep_factor` | `Integer` | Multiplier of sleep period between attempts<br/>Default: `2` |
|
2927
|
+
| `resume.sleep_max` | `Integer` | Default: `60` |
|
2765
2928
|
|
2766
2929
|
In case of transfer interruption, the agent will **resume** a transfer up to `iter_max` time.
|
2767
2930
|
Sleep between iterations is given by the following formula where `iter_index` is the current iteration index, starting at 0:
|
@@ -2893,12 +3056,12 @@ This is especially useful for direct node-to-node transfers.
|
|
2893
3056
|
|
2894
3057
|
Parameters provided in option `transfer_info` are:
|
2895
3058
|
|
2896
|
-
|
|
2897
|
-
|
2898
|
-
| url |
|
2899
|
-
| username |
|
2900
|
-
| password |
|
2901
|
-
| root_id |
|
3059
|
+
| Nam e | Type | Description |
|
3060
|
+
|------------|--------|--------------------------------------------------|
|
3061
|
+
| `url` | `String` | URL of the node API</br>Mandatory |
|
3062
|
+
| `username` | `String` | Node api user or access key</br>Mandatory |
|
3063
|
+
| `password` | `String` | Password, secret or bearer token</br>Mandatory |
|
3064
|
+
| `root_id` | `String` | Root file id</br>Mandatory only for bearer token |
|
2902
3065
|
|
2903
3066
|
Like any other option, `transfer_info` can get its value from a pre-configured [Option Preset](#option-preset) :
|
2904
3067
|
|
@@ -2927,10 +3090,10 @@ Parameters provided in option `transfer_info` are:
|
|
2927
3090
|
|
2928
3091
|
| Name | Type | Description |
|
2929
3092
|
|------------------------|--------|---------------------------------------|
|
2930
|
-
| url |
|
2931
|
-
| upload_chunk_size |
|
2932
|
-
| api_version |
|
2933
|
-
| synchronous |
|
3093
|
+
| url | `String` | URL of the HTTP GW</br>Mandatory |
|
3094
|
+
| upload_chunk_size | `Integer` | Size in bytes of chunks for upload<br/>Default: `64000` |
|
3095
|
+
| api_version | `String` | Force use of version (`v1`, `v2`)<br/>Default: `v2` |
|
3096
|
+
| synchronous | `Bool` | Wait for each message acknowledgment<br/>Default: `false` |
|
2934
3097
|
|
2935
3098
|
Example:
|
2936
3099
|
|
@@ -2945,15 +3108,15 @@ If the application, e.g. AoC or Faspex 5, is configured to use the HTTP Gateway,
|
|
2945
3108
|
#### Agent: Transfer SDK
|
2946
3109
|
|
2947
3110
|
Another possibility is to use the Transfer SDK daemon (`asperatransferd`).
|
2948
|
-
Set option `transfer` to `
|
3111
|
+
Set option `transfer` to `transferd`.
|
2949
3112
|
|
2950
3113
|
Options for `transfer_info` are:
|
2951
3114
|
|
2952
3115
|
| Name | Type | Description |
|
2953
3116
|
|----------|--------|-------------|
|
2954
|
-
| `url` |
|
2955
|
-
| `external` |
|
2956
|
-
| `keep` |
|
3117
|
+
| `url` | `String` | IP address and port listened by the daemon</br>Mandatory<br/>Default: `:0` |
|
3118
|
+
| `external` | `Bool` | Use external daemon, do not start one.<br/>Default: `false` |
|
3119
|
+
| `keep` | `Bool` | Keep the daemon running after exiting `ascli`<br/>Default: `false` |
|
2957
3120
|
|
2958
3121
|
> **Note:** If port zero is specified in the URL, then the daemon will listen on a random available port. If no address is specified, then `127.0.0.1` is used.
|
2959
3122
|
|
@@ -3036,91 +3199,92 @@ Columns:
|
|
3036
3199
|
|
3037
3200
|
`ascp` argument or environment variable is provided in description.
|
3038
3201
|
|
3039
|
-
| Field | Type |
|
3040
|
-
| ----- | ---- | - | - | - | - | - | ----------- |
|
3041
|
-
| apply_local_docroot | bool | Y | | | | | Apply local docroot to source paths.<br/>(--apply-local-docroot) |
|
3042
|
-
| authentication | string | | |
|
3043
|
-
| cipher | string | Y | Y | Y | Y | Y | In transit encryption type.<br/>Allowed values: none, aes-128, aes-192, aes-256, aes-128-cfb, aes-192-cfb, aes-256-cfb, aes-128-gcm, aes-192-gcm, aes-256-gcm<br/>(-c (conversion){enum}) |
|
3044
|
-
| cipher_allowed | string | Y | Y | Y | Y | Y | returned by node API. Valid literals include "aes-128" and "none".<br/>(<ignored>) |
|
3045
|
-
| compression | int | | | | | | ascp4 only, 0 / 1?<br/>(<ignored>) |
|
3046
|
-
| content_protection | string | Y | Y | Y | Y | Y | Enable client-side encryption at rest. (CSEAR, content protection)<br/>Allowed values: encrypt, decrypt<br/>(--file-crypt {enum}) |
|
3047
|
-
| content_protection_password | string | Y | Y | Y | Y | Y | Specifies CSEAR password. (content protection)<br/>(env:ASPERA_SCP_FILEPASS) |
|
3048
|
-
| cookie | string | Y | Y | Y | Y | Y | Metadata for transfer specified by application<br/>(env:ASPERA_SCP_COOKIE) |
|
3049
|
-
| create_dir | bool | Y | Y | Y | Y | Y | Specifies whether to create new directories.<br/>(-d) |
|
3050
|
-
| delete_before_transfer | bool | Y | Y | Y | Y | Y | Before transfer, delete files that exist at the destination but not at the source.<br/>The source and destination arguments must be directories that have matching names.<br/>Objects on the destination that have the same name but different type or size as objects<br/>on the source are not deleted.<br/>(--delete-before-transfer) |
|
3051
|
-
| delete_source | bool | Y | Y | | | | Remove SRC files after transfer success<br/>(--remove-after-transfer) |
|
3052
|
-
| destination_root | string | Y | Y | Y | Y | Y | Destination root directory.<br/>(<special>) |
|
3053
|
-
| destination_root_id | string | | | | | | The file ID of the destination root directory.<br/>Required when using Bearer token auth for the destination node.<br/>(<ignored>) |
|
3054
|
-
| dgram_size | int | Y | Y | Y | Y | Y | UDP datagram size in bytes<br/>(-Z {int}) |
|
3055
|
-
| direction | string | Y | Y | Y | Y | Y | Direction of transfer (on client side)<br/>Allowed values: send, receive<br/>(--mode (conversion){enum}) |
|
3056
|
-
| exclude_newer_than |
|
3057
|
-
| exclude_older_than |
|
3058
|
-
| fasp_port | int | Y | Y | Y | Y | Y | Specifies fasp (UDP) port.<br/>(-O {int}) |
|
3059
|
-
| fasp_url | string | | | | | | Only used in Faspex.<br/>(<ignored>) |
|
3060
|
-
| file_checksum | string | Y | Y | | | | Enable checksum reporting for transferred files by specifying the hash to use.<br/>Allowed values: sha-512, sha-384, sha-256, sha1, md5, none<br/>(<ignored>) |
|
3061
|
-
| http_fallback | bool<br/>string | Y | Y | Y | Y | Y | When true(1), attempts to perform an HTTP transfer if a FASP transfer cannot be performed.<br/>(-y (conversion){bool}\|{string}) |
|
3062
|
-
| http_fallback_port | int | Y | | | | | Specifies http port when no cipher is used<br/>(-t {int}) |
|
3063
|
-
| https_fallback_port | int | Y | Y | Y | Y | Y | Specifies https port when cipher is used<br/>(-t {int}) |
|
3064
|
-
| keepalive | bool | Y | | | | | The session is running in persistent session mode.<br/>(--keepalive) |
|
3065
|
-
| lock_min_rate | bool | Y | Y | Y | Y | Y | TODO: remove ?<br/>(<ignored>) |
|
3066
|
-
| lock_min_rate_kbps | bool | | |
|
3067
|
-
| lock_rate_policy | bool | | |
|
3068
|
-
| lock_target_rate | bool | Y | Y | Y | Y | Y | TODO: remove ?<br/>(<ignored>) |
|
3069
|
-
| lock_target_rate_kbps | bool | Y | Y | Y | Y | Y | If true, lock the target transfer rate to the default value set for target_rate_kbps.<br/>If false, users can adjust the transfer rate up to the value set for target_rate_cap_kbps.<br/>(<ignored>) |
|
3070
|
-
| min_rate_cap_kbps | int | Y | Y | Y | Y | Y | The highest minimum rate that an incoming transfer can request, in kilobits per second.<br/>Client minimum rate requests that exceed the minimum rate cap are ignored.<br/>The default value of unlimited applies no cap to the minimum rate. (Default: 0)<br/>(<ignored>) |
|
3071
|
-
| min_rate_kbps | int | Y | Y | Y | Y | Y | Set the minimum transfer rate in kilobits per second.<br/>(-m {int}) |
|
3072
|
-
| move_after_transfer | string | Y | Y | | | | The relative path to which the files will be moved after the transfer at the source side. Available as of 3.8.0.<br/>(--move-after-transfer {string}) |
|
3073
|
-
| multi_session | int | Y | Y | Y | Y | Y | Use multi-session transfer. max 128.<br/>Each participant on one host needs an independent UDP (-O) port.<br/>Large files are split between sessions only when transferring with resume_policy=none.<br/><br/>(<special>) |
|
3074
|
-
| multi_session_threshold | int | Y | Y | | | | Split files across multiple ascp sessions if their size in bytes is greater than or equal to the specified value.<br/>(0=no file is split)<br/>(--multi-session-threshold {int}) |
|
3075
|
-
| obfuscate_file_names | bool | | | | | Y | HTTP Gateway obfuscates file names when set to true.<br/>(<ignored>) |
|
3076
|
-
| overwrite | string | Y | Y | Y | Y | Y | Overwrite destination files with the source files of the same name.<br/>Allowed values: never, always, diff, older, diff+older<br/>(--overwrite {enum}) |
|
3077
|
-
| password | string | |
|
3078
|
-
| paths | array | Y | Y | Y | Y | Y | Array of path to the source (required) and a path to the destination (optional).<br/>(<special>) |
|
3079
|
-
| precalculate_job_size | bool | Y | Y | Y | Y | Y | Specifies whether to precalculate the job size.<br/>(--precalculate-job-size) |
|
3080
|
-
| preserve_access_time | bool | Y | Y | Y | Y | Y | Preserve the source-file access timestamps at the destination.<br/>Because source access times are updated by the transfer operation,<br/>the timestamp that is preserved is the one just before to the transfer.<br/>(--preserve-access-time) |
|
3081
|
-
| preserve_acls | string | Y | | | | | Preserve access control lists.<br/>Allowed values: none, native, metafile<br/>(--preserve-acls {enum}) |
|
3082
|
-
| preserve_creation_time | bool | Y | Y | Y | Y | Y | (Windows only) Preserve source-file creation timestamps at the destination.<br/>Only Windows systems retain information about creation time.<br/>If the destination is not a Windows computer, this option is ignored.<br/>(--preserve-creation-time) |
|
3083
|
-
| preserve_extended_attrs | string | | | | | | Preserve the extended attributes.<br/>Allowed values: none, native, metafile<br/>(--preserve-xattrs {enum}) |
|
3084
|
-
| preserve_file_owner_gid | bool | Y | | | | | Preserve the group ID for a file owner<br/>(--preserve-file-owner-gid) |
|
3085
|
-
| preserve_file_owner_uid | bool | Y | | | | | Preserve the user ID for a file owner<br/>(--preserve-file-owner-uid) |
|
3086
|
-
| preserve_modification_time | bool | Y | Y | Y | Y | Y | Set the modification time, the last time a file or directory was modified (written), of a transferred file<br/>to the modification of the source file or directory.<br/>Preserve source-file modification timestamps at the destination.<br/>(--preserve-modification-time) |
|
3087
|
-
| preserve_remote_acls | string | Y | | | | | Preserve remote access control lists.<br/>Allowed values: none, native, metafile<br/>(--remote-preserve-acls {enum}) |
|
3088
|
-
| preserve_source_access_time | bool | Y | | | | | Preserve the time logged for when the source file was accessed<br/>(--preserve-source-access-time) |
|
3089
|
-
| preserve_times | bool | |
|
3090
|
-
| proxy | string | Y | | | | | Specify the address of the Aspera high-speed proxy server.<br/>dnat(s)://[user[:password]@]server:port<br/>Default ports for DNAT and DNATS protocols are 9091 and 9092.<br/>Password, if specified here, overrides the value of environment variable ASPERA_PROXY_PASS.<br/>(--proxy {string}) |
|
3091
|
-
| rate_policy | string | Y | Y | Y | Y | Y | The transfer rate policy to use when sharing bandwidth.<br/>Allowed values: low, fair, high, fixed<br/>(--policy {enum}) |
|
3092
|
-
| rate_policy_allowed | string | | |
|
3093
|
-
| read_threads | int | | | | | | ascp4 only<br/>(<ignored>) |
|
3094
|
-
| remote_access_key | string | | | | | | The access key ID of the access key that was used to construct the bearer token that is used to authenticate to the remote node.<br/>(<ignored>) |
|
3095
|
-
| remote_host | string | Y | Y | Y | Y | Y | IP or fully qualified domain name of the remote server<br/>(--host {string}) |
|
3096
|
-
| remote_password | string | Y | Y | Y | Y | Y | SSH session password<br/>(env:ASPERA_SCP_PASS) |
|
3097
|
-
| remote_user | string | Y | Y | Y | Y | Y | Remote user. Default value is "xfer" on node or connect.<br/>(--user {string}) |
|
3098
|
-
| remove_after_transfer | bool | Y | Y | | | | Remove SRC files after transfer success<br/>(--remove-after-transfer) |
|
3099
|
-
| remove_empty_directories | bool | Y | Y | | | | Specifies whether to remove empty directories.<br/>(--remove-empty-directories) |
|
3100
|
-
| remove_empty_source_directory | bool | Y | | | | | Remove empty source subdirectories and remove the source directory itself, if empty<br/>(--remove-empty-source-directory) |
|
3101
|
-
| remove_skipped | bool | Y | Y |
|
3102
|
-
| resume_policy | string | Y | Y | Y | Y | Y | If a transfer is interrupted or fails to finish, resume without re-transferring the whole files.<br/>Allowed values: none, attrs, sparse_csum, full_csum<br/>(-k (conversion){enum}) |
|
3103
|
-
| retry_duration | string<br/>int | |
|
3104
|
-
| source_root | string | Y | Y | Y | Y | Y | Path to be prepended to each source path.<br/>This is either a conventional path or it can be a URI but only if there is no root defined.<br/>(--source-prefix64 (conversion){string}) |
|
3105
|
-
| source_root_id | string | |
|
3106
|
-
| src_base | string | Y | Y | | | | Specify the prefix to be stripped off from each source object.<br/>The remaining portion of the source path is kept intact at the destination.<br/>Special care must be taken when used with cloud storage.<br/>(--src-base64 (conversion){string}) |
|
3107
|
-
| ssh_args | string | | | | | | Array of arguments to pass to SSH. Use with caution.<br/>(<ignored>) |
|
3108
|
-
| ssh_port | int | Y | Y | Y | Y | Y | Specifies SSH (TCP) port. Default: local:22, other:33001<br/>(-P {int}) |
|
3109
|
-
| ssh_private_key | string | Y | | | | | Private key used for SSH authentication.<br/>Shall look like: -----BEGIN RSA PRIV4TE KEY-----\nMII...<br/>Note the JSON encoding: \n for newlines.<br/>(env:ASPERA_SCP_KEY) |
|
3110
|
-
| ssh_private_key_passphrase | string | Y | | | | | The passphrase associated with the transfer user's SSH private key. Available as of 3.7.2.<br/>(env:ASPERA_SCP_PASS) |
|
3111
|
-
| sshfp | string | Y | Y | Y | Y | Y | Check it against server SSH host key fingerprint<br/>(--check-sshfp {string}) |
|
3112
|
-
| symlink_policy | string | Y | Y | Y | Y | Y | Handle source side symbolic links<br/>Allowed values: follow, copy, copy+force, skip<br/>(--symbolic-links {enum}) |
|
3113
|
-
| tags | hash | Y | Y | Y | Y | Y | Metadata for transfer as JSON
|
3114
|
-
| target_rate_cap_kbps | int | | |
|
3115
|
-
| target_rate_kbps | int | Y | Y | Y | Y | Y | Specifies desired speed for the transfer.<br/>(-l {int}) |
|
3116
|
-
| target_rate_percentage | string | Y | Y | Y | Y | Y | TODO: remove ?<br/>(<ignored>) |
|
3117
|
-
| title | string | |
|
3118
|
-
| token | string | Y | Y | Y | Y | Y | Authorization token: Bearer, Basic or ATM (Also arg -W)<br/>(env:ASPERA_SCP_TOKEN) |
|
3119
|
-
| use_ascp4 | bool | Y | Y | | | | specify version of protocol<br/>(<special>) |
|
3120
|
-
| use_system_ssh | string | | | | | | TODO, comment...<br/>(<ignored>) |
|
3121
|
-
| write_threads | int | | | | | | ascp4 only<br/>(<ignored>) |
|
3122
|
-
| wss_enabled | bool | Y | Y | Y | Y | Y | Server has Web Socket service enabled<br/>(<special>) |
|
3123
|
-
| wss_port | int | Y | Y | Y | Y | Y | TCP port used for websocket service feed<br/>(<special>) |
|
3202
|
+
| Field | Type | N | D | A | T | H | C | Description |
|
3203
|
+
| ----- | ---- | - | - | - | - | - | - | ----------- |
|
3204
|
+
| apply_local_docroot | bool | | Y | | | | | Apply local docroot to source paths.<br/>(--apply-local-docroot) |
|
3205
|
+
| authentication | string | | | | | | Y | value=token for SSH bypass keys, else password asked if not provided.<br/>(<ignored>) |
|
3206
|
+
| cipher | string | Y | Y | Y | Y | Y | Y | In transit encryption type.<br/>Allowed values: none, aes-128, aes-192, aes-256, aes-128-cfb, aes-192-cfb, aes-256-cfb, aes-128-gcm, aes-192-gcm, aes-256-gcm<br/>(-c (conversion){enum}) |
|
3207
|
+
| cipher_allowed | string | Y | Y | Y | Y | Y | Y | returned by node API. Valid literals include "aes-128" and "none".<br/>(<ignored>) |
|
3208
|
+
| compression | int | | | | | | | ascp4 only, 0 / 1?<br/>(<ignored>) |
|
3209
|
+
| content_protection | string | Y | Y | Y | Y | Y | Y | Enable client-side encryption at rest. (CSEAR, content protection)<br/>Allowed values: encrypt, decrypt<br/>(--file-crypt {enum}) |
|
3210
|
+
| content_protection_password | string | Y | Y | Y | Y | Y | Y | Specifies CSEAR password. (content protection)<br/>(env:ASPERA_SCP_FILEPASS) |
|
3211
|
+
| cookie | string | Y | Y | Y | Y | Y | Y | Metadata for transfer specified by application<br/>(env:ASPERA_SCP_COOKIE) |
|
3212
|
+
| create_dir | bool | Y | Y | Y | Y | Y | Y | Specifies whether to create new directories.<br/>(-d) |
|
3213
|
+
| delete_before_transfer | bool | Y | Y | Y | Y | Y | Y | Before transfer, delete files that exist at the destination but not at the source.<br/>The source and destination arguments must be directories that have matching names.<br/>Objects on the destination that have the same name but different type or size as objects<br/>on the source are not deleted.<br/>(--delete-before-transfer) |
|
3214
|
+
| delete_source | bool | Y | Y | | | | | Remove SRC files after transfer success<br/>(--remove-after-transfer) |
|
3215
|
+
| destination_root | string | Y | Y | Y | Y | Y | Y | Destination root directory.<br/>(<special>) |
|
3216
|
+
| destination_root_id | string | | | | | | | The file ID of the destination root directory.<br/>Required when using Bearer token auth for the destination node.<br/>(<ignored>) |
|
3217
|
+
| dgram_size | int | Y | Y | Y | Y | Y | Y | UDP datagram size in bytes<br/>(-Z {int}) |
|
3218
|
+
| direction | string | Y | Y | Y | Y | Y | Y | Direction of transfer (on client side)<br/>Allowed values: send, receive<br/>(--mode (conversion){enum}) |
|
3219
|
+
| exclude_newer_than | string | Y | Y | Y | Y | Y | Y | Exclude files, but not directories, from the transfer if they are newer than the specified number of seconds added to the source computer's epoch. e.g. "-86400" for newer than a day back.<br/>(--exclude-newer-than {string}) |
|
3220
|
+
| exclude_older_than | string | Y | Y | Y | Y | Y | Y | Exclude files, but not directories, from the transfer if they are older than the specified number of seconds added to the source computer's epoch. e.g. "-86400" for older than a day back.<br/>(--exclude-older-than {string}) |
|
3221
|
+
| fasp_port | int | Y | Y | Y | Y | Y | Y | Specifies fasp (UDP) port.<br/>(-O {int}) |
|
3222
|
+
| fasp_url | string | | | | | | | Only used in Faspex.<br/>(<ignored>) |
|
3223
|
+
| file_checksum | string | Y | Y | | | | | Enable checksum reporting for transferred files by specifying the hash to use.<br/>Allowed values: sha-512, sha-384, sha-256, sha1, md5, none<br/>(<ignored>) |
|
3224
|
+
| http_fallback | bool<br/>string | Y | Y | Y | Y | Y | Y | When true(1), attempts to perform an HTTP transfer if a FASP transfer cannot be performed.<br/>(-y (conversion){bool}\|{string}) |
|
3225
|
+
| http_fallback_port | int | | Y | | | | | Specifies http port when no cipher is used<br/>(-t {int}) |
|
3226
|
+
| https_fallback_port | int | Y | Y | Y | Y | Y | Y | Specifies https port when cipher is used<br/>(-t {int}) |
|
3227
|
+
| keepalive | bool | | Y | | | | | The session is running in persistent session mode.<br/>(--keepalive) |
|
3228
|
+
| lock_min_rate | bool | Y | Y | Y | Y | Y | Y | TODO: remove ?<br/>(<ignored>) |
|
3229
|
+
| lock_min_rate_kbps | bool | | | | | | Y | If true, lock the minimum transfer rate to the value set for min_rate_kbps.<br/>If false, users can adjust the transfer rate up to the value set for target_rate_cap_kbps.<br/>(<ignored>) |
|
3230
|
+
| lock_rate_policy | bool | | | | | | Y | If true, lock the rate policy to the default value.<br/>(<ignored>) |
|
3231
|
+
| lock_target_rate | bool | Y | Y | Y | Y | Y | Y | TODO: remove ?<br/>(<ignored>) |
|
3232
|
+
| lock_target_rate_kbps | bool | Y | Y | Y | Y | Y | Y | If true, lock the target transfer rate to the default value set for target_rate_kbps.<br/>If false, users can adjust the transfer rate up to the value set for target_rate_cap_kbps.<br/>(<ignored>) |
|
3233
|
+
| min_rate_cap_kbps | int | Y | Y | Y | Y | Y | Y | The highest minimum rate that an incoming transfer can request, in kilobits per second.<br/>Client minimum rate requests that exceed the minimum rate cap are ignored.<br/>The default value of unlimited applies no cap to the minimum rate. (Default: 0)<br/>(<ignored>) |
|
3234
|
+
| min_rate_kbps | int | Y | Y | Y | Y | Y | Y | Set the minimum transfer rate in kilobits per second.<br/>(-m {int}) |
|
3235
|
+
| move_after_transfer | string | Y | Y | | | | | The relative path to which the files will be moved after the transfer at the source side. Available as of 3.8.0.<br/>(--move-after-transfer {string}) |
|
3236
|
+
| multi_session | int | Y | Y | Y | Y | Y | Y | Use multi-session transfer. max 128.<br/>Each participant on one host needs an independent UDP (-O) port.<br/>Large files are split between sessions only when transferring with resume_policy=none.<br/><br/>(<special>) |
|
3237
|
+
| multi_session_threshold | int | Y | Y | | | | | Split files across multiple ascp sessions if their size in bytes is greater than or equal to the specified value.<br/>(0=no file is split)<br/>(--multi-session-threshold {int}) |
|
3238
|
+
| obfuscate_file_names | bool | | | | | Y | | HTTP Gateway obfuscates file names when set to true.<br/>(<ignored>) |
|
3239
|
+
| overwrite | string | Y | Y | Y | Y | Y | Y | Overwrite destination files with the source files of the same name.<br/>Allowed values: never, always, diff, older, diff+older<br/>(--overwrite {enum}) |
|
3240
|
+
| password | string | Y | | | | | | Password for local Windows user when transfer user associated with node api user is not the same as the one running asperanoded.<br/>Allows impersonating the transfer user and have access to resources (e.g. network shares).<br/>Windows only, node api only.<br/>(<ignored>) |
|
3241
|
+
| paths | array | Y | Y | Y | Y | Y | Y | Array of path to the source (required) and a path to the destination (optional).<br/>(<special>) |
|
3242
|
+
| precalculate_job_size | bool | Y | Y | Y | Y | Y | Y | Specifies whether to precalculate the job size.<br/>(--precalculate-job-size) |
|
3243
|
+
| preserve_access_time | bool | Y | Y | Y | Y | Y | Y | Preserve the source-file access timestamps at the destination.<br/>Because source access times are updated by the transfer operation,<br/>the timestamp that is preserved is the one just before to the transfer.<br/>(--preserve-access-time) |
|
3244
|
+
| preserve_acls | string | | Y | | | | | Preserve access control lists.<br/>Allowed values: none, native, metafile<br/>(--preserve-acls {enum}) |
|
3245
|
+
| preserve_creation_time | bool | Y | Y | Y | Y | Y | Y | (Windows only) Preserve source-file creation timestamps at the destination.<br/>Only Windows systems retain information about creation time.<br/>If the destination is not a Windows computer, this option is ignored.<br/>(--preserve-creation-time) |
|
3246
|
+
| preserve_extended_attrs | string | | | | | | | Preserve the extended attributes.<br/>Allowed values: none, native, metafile<br/>(--preserve-xattrs {enum}) |
|
3247
|
+
| preserve_file_owner_gid | bool | | Y | | | | | Preserve the group ID for a file owner<br/>(--preserve-file-owner-gid) |
|
3248
|
+
| preserve_file_owner_uid | bool | | Y | | | | | Preserve the user ID for a file owner<br/>(--preserve-file-owner-uid) |
|
3249
|
+
| preserve_modification_time | bool | Y | Y | Y | Y | Y | Y | Set the modification time, the last time a file or directory was modified (written), of a transferred file<br/>to the modification of the source file or directory.<br/>Preserve source-file modification timestamps at the destination.<br/>(--preserve-modification-time) |
|
3250
|
+
| preserve_remote_acls | string | | Y | | | | | Preserve remote access control lists.<br/>Allowed values: none, native, metafile<br/>(--remote-preserve-acls {enum}) |
|
3251
|
+
| preserve_source_access_time | bool | | Y | | | | | Preserve the time logged for when the source file was accessed<br/>(--preserve-source-access-time) |
|
3252
|
+
| preserve_times | bool | Y | | | | | | Preserve file timestamps.<br/>(--preserve-times) |
|
3253
|
+
| proxy | string | | Y | | | | | Specify the address of the Aspera high-speed proxy server.<br/>dnat(s)://[user[:password]@]server:port<br/>Default ports for DNAT and DNATS protocols are 9091 and 9092.<br/>Password, if specified here, overrides the value of environment variable ASPERA_PROXY_PASS.<br/>(--proxy {string}) |
|
3254
|
+
| rate_policy | string | Y | Y | Y | Y | Y | Y | The transfer rate policy to use when sharing bandwidth.<br/>Allowed values: low, fair, high, fixed<br/>(--policy {enum}) |
|
3255
|
+
| rate_policy_allowed | string | | | | | | Y | Specifies most aggressive rate policy that is allowed.<br/>Returned by node API.<br/>Allowed values: low, fair, high, fixed<br/>(<ignored>) |
|
3256
|
+
| read_threads | int | | | | | | | ascp4 only<br/>(<ignored>) |
|
3257
|
+
| remote_access_key | string | | | | | | | The access key ID of the access key that was used to construct the bearer token that is used to authenticate to the remote node.<br/>(<ignored>) |
|
3258
|
+
| remote_host | string | Y | Y | Y | Y | Y | Y | IP or fully qualified domain name of the remote server<br/>(--host {string}) |
|
3259
|
+
| remote_password | string | Y | Y | Y | Y | Y | Y | SSH session password<br/>(env:ASPERA_SCP_PASS) |
|
3260
|
+
| remote_user | string | Y | Y | Y | Y | Y | Y | Remote user. Default value is "xfer" on node or connect.<br/>(--user {string}) |
|
3261
|
+
| remove_after_transfer | bool | Y | Y | | | | | Remove SRC files after transfer success<br/>(--remove-after-transfer) |
|
3262
|
+
| remove_empty_directories | bool | Y | Y | | | | | Specifies whether to remove empty directories.<br/>(--remove-empty-directories) |
|
3263
|
+
| remove_empty_source_directory | bool | | Y | | | | | Remove empty source subdirectories and remove the source directory itself, if empty<br/>(--remove-empty-source-directory) |
|
3264
|
+
| remove_skipped | bool | Y | Y | | | | Y | Must also have remove_after_transfer set to true, Defaults to false, if true, skipped files will be removed as well.<br/>(--remove-skipped) |
|
3265
|
+
| resume_policy | string | Y | Y | Y | Y | Y | Y | If a transfer is interrupted or fails to finish, resume without re-transferring the whole files.<br/>Allowed values: none, attrs, sparse_csum, full_csum<br/>(-k (conversion){enum}) |
|
3266
|
+
| retry_duration | string<br/>int | Y | | | | | Y | Specifies how long to wait before retrying transfer. (e.g. "5min")<br/>(<ignored>) |
|
3267
|
+
| source_root | string | Y | Y | Y | Y | Y | Y | Path to be prepended to each source path.<br/>This is either a conventional path or it can be a URI but only if there is no root defined.<br/>(--source-prefix64 (conversion){string}) |
|
3268
|
+
| source_root_id | string | Y | | | | | | The file ID of the source root directory. Required when using Bearer token auth for the source node.<br/>(<ignored>) |
|
3269
|
+
| src_base | string | Y | Y | | | | | Specify the prefix to be stripped off from each source object.<br/>The remaining portion of the source path is kept intact at the destination.<br/>Special care must be taken when used with cloud storage.<br/>(--src-base64 (conversion){string}) |
|
3270
|
+
| ssh_args | string | | | | | | | Array of arguments to pass to SSH. Use with caution.<br/>(<ignored>) |
|
3271
|
+
| ssh_port | int | Y | Y | Y | Y | Y | Y | Specifies SSH (TCP) port. Default: local:22, other:33001<br/>(-P {int}) |
|
3272
|
+
| ssh_private_key | string | | Y | | | | | Private key used for SSH authentication.<br/>Shall look like: -----BEGIN RSA PRIV4TE KEY-----\nMII...<br/>Note the JSON encoding: \n for newlines.<br/>(env:ASPERA_SCP_KEY) |
|
3273
|
+
| ssh_private_key_passphrase | string | | Y | | | | | The passphrase associated with the transfer user's SSH private key. Available as of 3.7.2.<br/>(env:ASPERA_SCP_PASS) |
|
3274
|
+
| sshfp | string | Y | Y | Y | Y | Y | Y | Check it against server SSH host key fingerprint<br/>(--check-sshfp {string}) |
|
3275
|
+
| symlink_policy | string | Y | Y | Y | Y | Y | Y | Handle source side symbolic links<br/>Allowed values: follow, copy, copy+force, skip<br/>(--symbolic-links {enum}) |
|
3276
|
+
| tags | hash | Y | Y | Y | Y | Y | Y | Metadata for transfer as JSON. Key `aspera` is reserved. Key `aspera.xfer_retry` specified a retry timeout for node api initiated transfers.<br/>(--tags64 (conversion){hash}) |
|
3277
|
+
| target_rate_cap_kbps | int | | | | | | Y | Returned by upload/download_setup node API.<br/>(<ignored>) |
|
3278
|
+
| target_rate_kbps | int | Y | Y | Y | Y | Y | Y | Specifies desired speed for the transfer.<br/>(-l {int}) |
|
3279
|
+
| target_rate_percentage | string | Y | Y | Y | Y | Y | Y | TODO: remove ?<br/>(<ignored>) |
|
3280
|
+
| title | string | Y | | | | | Y | Title of the transfer<br/>(<ignored>) |
|
3281
|
+
| token | string | Y | Y | Y | Y | Y | Y | Authorization token: Bearer, Basic or ATM (Also arg -W)<br/>(env:ASPERA_SCP_TOKEN) |
|
3282
|
+
| use_ascp4 | bool | Y | Y | | | | | specify version of protocol<br/>(<special>) |
|
3283
|
+
| use_system_ssh | string | | | | | | | TODO, comment...<br/>(<ignored>) |
|
3284
|
+
| write_threads | int | | | | | | | ascp4 only<br/>(<ignored>) |
|
3285
|
+
| wss_enabled | bool | Y | Y | Y | Y | Y | Y | Server has Web Socket service enabled<br/>(<special>) |
|
3286
|
+
| wss_port | int | Y | Y | Y | Y | Y | Y | TCP port used for websocket service feed<br/>(<special>) |
|
3287
|
+
| xfer_max_retries | int | Y | | | | | | maximum number of retries, for node API initiated transfers. Shall not exceed aspera.conf `transfer_manager_max_retries` (default 5).<br/>(<ignored>) |
|
3124
3288
|
|
3125
3289
|
#### Destination folder for transfers
|
3126
3290
|
|
@@ -3516,9 +3680,9 @@ where:
|
|
3516
3680
|
| Name | Type | Description |
|
3517
3681
|
|--------|------|-------------|
|
3518
3682
|
|count |int |Number of files<br/>Mandatory|
|
3519
|
-
|file |string|Basename for files<br
|
3520
|
-
|size |int |Size of first file.<br
|
3521
|
-
|inc |int |Increment applied to determine next file size<br
|
3683
|
+
|file |string|Basename for files<br/>Default: `file`|
|
3684
|
+
|size |int |Size of first file.<br/>Default: 0|
|
3685
|
+
|inc |int |Increment applied to determine next file size<br/>Default: 0|
|
3522
3686
|
|seq |enum |Sequence in determining next file size<br/>Values: random, sequential<br/>Default: sequential|
|
3523
3687
|
|buf_init|enum |How source data is initialized<br/>Option 'none' is not allowed for downloads.<br/>Values:none, zero, random<br/>Default:zero|
|
3524
3688
|
|
@@ -3565,7 +3729,7 @@ ascli server upload "faux:///mydir?file=testfile&count=1m&size=0&inc=2&seq=seque
|
|
3565
3729
|
```text
|
3566
3730
|
ascli -h
|
3567
3731
|
NAME
|
3568
|
-
ascli -- a command line tool for Aspera Applications (v4.
|
3732
|
+
ascli -- a command line tool for Aspera Applications (v4.21.1)
|
3569
3733
|
|
3570
3734
|
SYNOPSIS
|
3571
3735
|
ascli COMMANDS [OPTIONS] [ARGS]
|
@@ -3597,14 +3761,14 @@ OPTIONS: global
|
|
3597
3761
|
--interactive=ENUM Use interactive input of missing params: [no], yes
|
3598
3762
|
--ask-options=ENUM Ask even optional options: [no], yes
|
3599
3763
|
--struct-parser=ENUM Default parser when expected value is a struct: json, ruby
|
3600
|
-
--format=ENUM Output format: text, nagios, ruby, json, jsonpp, yaml, [table],
|
3764
|
+
--format=ENUM Output format: text, nagios, ruby, json, jsonpp, yaml, [table], csv, image
|
3601
3765
|
--output=VALUE Destination for results (String)
|
3602
3766
|
--display=ENUM Output only some information: [info], data, error
|
3603
3767
|
--fields=VALUE Comma separated list of: fields, or ALL, or DEF (String, Array, Regexp, Proc)
|
3604
3768
|
--select=VALUE Select only some items in lists: column, value (Hash, Proc)
|
3605
3769
|
--table-style=VALUE Table display style (Hash)
|
3606
|
-
--flat-hash=ENUM Display deep values as additional keys: no, [yes]
|
3607
|
-
--
|
3770
|
+
--flat-hash=ENUM (Table) Display deep values as additional keys: no, [yes]
|
3771
|
+
--multi-single=ENUM (Table) Control how object list is displayed as single table, or multiple objects: [no], yes, single
|
3608
3772
|
--show-secrets=ENUM Show secrets on command output: [no], yes
|
3609
3773
|
--image=VALUE Options for image display (Hash)
|
3610
3774
|
-h, --help Show this message
|
@@ -3619,17 +3783,12 @@ OPTIONS: global
|
|
3619
3783
|
--log-secrets=ENUM Show passwords in logs: [no], yes
|
3620
3784
|
--clean-temp=ENUM Cleanup temporary files on exit: no, [yes]
|
3621
3785
|
--pid-file=VALUE Write process identifier to file, delete on exit (String)
|
3622
|
-
|
3623
|
-
COMMAND: config
|
3624
|
-
SUBCOMMANDS: ascp check_update coffee detect documentation echo email_test file flush_tokens folder gem genkey image initdemo open platform plugins preset proxy_check pubkey remote_certificate smtp_settings throw vault wizard
|
3625
|
-
OPTIONS:
|
3626
3786
|
--home=VALUE Home folder for tool (String)
|
3627
3787
|
--config-file=VALUE Path to YAML file with preset configuration
|
3628
3788
|
--secret=VALUE Secret for access keys
|
3629
3789
|
--vault=VALUE Vault for secrets (Hash)
|
3630
3790
|
--vault-password=VALUE Vault password
|
3631
|
-
--query=VALUE Additional filter for for some commands (list/delete) (Hash)
|
3632
|
-
--value=VALUE Value for create, update, list filter (Hash) (deprecated: (4.14) Use positional value for create/modify or option: query for list/delete)
|
3791
|
+
--query=VALUE Additional filter for for some commands (list/delete) (Hash, Array)
|
3633
3792
|
--property=VALUE Name of property to set (modify operation)
|
3634
3793
|
--bulk=ENUM Bulk operation (only some): [no], yes
|
3635
3794
|
--bfail=ENUM Bulk operation error handling: no, [yes]
|
@@ -3657,14 +3816,17 @@ OPTIONS:
|
|
3657
3816
|
--http-proxy=VALUE URL for HTTP proxy with optional credentials (String)
|
3658
3817
|
--cache-tokens=ENUM Save and reuse OAuth tokens: no, [yes]
|
3659
3818
|
--fpac=VALUE Proxy auto configuration script
|
3660
|
-
--proxy-credentials=VALUE HTTP proxy credentials for fpac
|
3819
|
+
--proxy-credentials=VALUE HTTP proxy credentials for fpac: user, password (Array)
|
3661
3820
|
--ts=VALUE Override transfer spec values (Hash)
|
3662
3821
|
--to-folder=VALUE Destination folder for transferred files
|
3663
3822
|
--sources=VALUE How list of transferred files is provided (@args,@ts,Array)
|
3664
3823
|
--src-type=ENUM Type of file list: [list], pair
|
3665
|
-
--transfer=ENUM Type of transfer agent: node, [direct], alpha, httpgw, connect
|
3824
|
+
--transfer=ENUM Type of transfer agent: node, [direct], alpha, transferd, httpgw, connect
|
3666
3825
|
--transfer-info=VALUE Parameters for transfer agent (Hash)
|
3667
3826
|
|
3827
|
+
COMMAND: config
|
3828
|
+
SUBCOMMANDS: ascp check_update coffee detect documentation download echo email_test file folder gem genkey image initdemo open platform plugins preset proxy_check pubkey remote_certificate smtp_settings test tokens transferd vault wizard
|
3829
|
+
|
3668
3830
|
|
3669
3831
|
COMMAND: shares
|
3670
3832
|
SUBCOMMANDS: admin files health
|
@@ -3684,7 +3846,8 @@ OPTIONS:
|
|
3684
3846
|
--asperabrowserurl=VALUE URL for simple aspera web ui
|
3685
3847
|
--sync-name=VALUE Sync name
|
3686
3848
|
--default-ports=ENUM Use standard FASP ports or get from node api (gen4): no, [yes]
|
3687
|
-
--
|
3849
|
+
--node-cache=ENUM Set to no to force actual file system read (gen4): no, [yes]
|
3850
|
+
--root-id=VALUE File id of top folder when using access key (override AK root id)
|
3688
3851
|
--sync-info=VALUE Information for sync instance and sessions (Hash)
|
3689
3852
|
|
3690
3853
|
|
@@ -3833,12 +3996,6 @@ OPTIONS:
|
|
3833
3996
|
--workspace=VALUE Name of workspace (String, NilClass)
|
3834
3997
|
--new-user-option=VALUE New user creation option for unknown package recipients (Hash)
|
3835
3998
|
--validate-metadata=ENUM Validate shared inbox metadata: no, [yes]
|
3836
|
-
--validator=VALUE Identifier of validator (optional for central)
|
3837
|
-
--asperabrowserurl=VALUE URL for simple aspera web ui
|
3838
|
-
--sync-name=VALUE Sync name
|
3839
|
-
--default-ports=ENUM Use standard FASP ports or get from node api (gen4): no, [yes]
|
3840
|
-
--root-id=VALUE File id of top folder if using bearer tokens
|
3841
|
-
--sync-info=VALUE Information for sync instance and sessions (Hash)
|
3842
3999
|
|
3843
4000
|
|
3844
4001
|
COMMAND: server
|
@@ -3873,6 +4030,22 @@ Bulk creation and deletion of resources are possible using option `bulk` (`yes`,
|
|
3873
4030
|
In that case, the operation expects an `Array` of `Hash` instead of a simple `Hash` using the [Extended Value Syntax](#extended-value-syntax).
|
3874
4031
|
This option is available only for some of the resources: if you need it: try and see if the entities you try to create or delete support this option.
|
3875
4032
|
|
4033
|
+
### Option: `query`
|
4034
|
+
|
4035
|
+
The `query` option can generally be used to add URL parameters to commands that list ressources.
|
4036
|
+
It takes either a `Hash` or an `Array`, corresponding to key/value pairs that appear in the query part of request.
|
4037
|
+
|
4038
|
+
For example: `--query=@json:'{"p1":"v1","p2":"v2"}'` leads to query: `?p1=v1&p2=v2`.
|
4039
|
+
|
4040
|
+
If the same parameter needs to be provided several times, then it's possible as well to provide an Array or 2-element Array: `--query=@json:'[["p1":,"v1"],["p2":"v2"]]'` leads to the same result as previously.
|
4041
|
+
|
4042
|
+
If PHP's style array is used, then one can use either:
|
4043
|
+
|
4044
|
+
- `--query=@json:'{"a":["[]","v1","v2"]}'`
|
4045
|
+
- `--query=@json:'[["a[]","v1"],["a[]","v2"]]'`
|
4046
|
+
|
4047
|
+
Both result in: `?a[]=v1&a[]=v2`.
|
4048
|
+
|
3876
4049
|
### Plugins
|
3877
4050
|
|
3878
4051
|
`ascli` uses a plugin mechanism.
|
@@ -3963,7 +4136,7 @@ ascli aoc user profile show
|
|
3963
4136
|
Optionally, it is possible to create a new organization-specific integration, i.e. client application identification.
|
3964
4137
|
For this, specify the option: `--use-generic-client=no`.
|
3965
4138
|
|
3966
|
-
If you already know the application, and want to limit the detection to it, provide
|
4139
|
+
If you already know the application, and want to limit the detection to it, provide URL and plugin name:
|
3967
4140
|
|
3968
4141
|
```bash
|
3969
4142
|
ascli config wizard _your_instance_ aoc
|
@@ -3981,7 +4154,7 @@ Several types of OAuth authentication are supported:
|
|
3981
4154
|
|
3982
4155
|
- JSON Web Token (JWT) : authentication is secured by a private key (recommended for `ascli`)
|
3983
4156
|
- Web based authentication : authentication is made by user using a browser
|
3984
|
-
- URL Token : external users authentication with
|
4157
|
+
- URL Token : external users authentication with URL tokens (public links)
|
3985
4158
|
|
3986
4159
|
The authentication method is controlled by option `auth`.
|
3987
4160
|
|
@@ -4016,7 +4189,7 @@ Let's start by a registration with web based authentication (auth=web):
|
|
4016
4189
|
- leave the JWT part for now
|
4017
4190
|
- **Save**
|
4018
4191
|
|
4019
|
-
> **Note:** For web based authentication, `ascli` listens on a local port (e.g. specified by the redirect_uri, in this example: 12345), and the browser will provide the OAuth code there. For
|
4192
|
+
> **Note:** For web based authentication, `ascli` listens on a local port (e.g. specified by the redirect_uri, in this example: 12345), and the browser will provide the OAuth code there. For `ascli`, HTTP is required, and 12345 is the default port.
|
4020
4193
|
|
4021
4194
|
Once the client is registered, a **Client ID** and **Secret** are created, these values will be used in the next step.
|
4022
4195
|
|
@@ -4070,7 +4243,7 @@ If you are not using the built-in client_id and secret, JWT needs to be authoriz
|
|
4070
4243
|
- Using command line
|
4071
4244
|
|
4072
4245
|
```bash
|
4073
|
-
ascli aoc admin
|
4246
|
+
ascli aoc admin client list
|
4074
4247
|
```
|
4075
4248
|
|
4076
4249
|
```output
|
@@ -4082,7 +4255,7 @@ ascli aoc admin res client list
|
|
4082
4255
|
```
|
4083
4256
|
|
4084
4257
|
```bash
|
4085
|
-
ascli aoc admin
|
4258
|
+
ascli aoc admin client modify my_BJbQiFw @json:'{"jwt_grant_enabled":true,"explicit_authorization_required":false}'
|
4086
4259
|
```
|
4087
4260
|
|
4088
4261
|
```output
|
@@ -4107,7 +4280,7 @@ Open the previously generated public key located here: `$HOME/.aspera/ascli/my_p
|
|
4107
4280
|
##### Using command line
|
4108
4281
|
|
4109
4282
|
```bash
|
4110
|
-
ascli aoc admin
|
4283
|
+
ascli aoc admin user list
|
4111
4284
|
```
|
4112
4285
|
|
4113
4286
|
```output
|
@@ -4194,7 +4367,7 @@ ascli aoc files bearer_token_node /
|
|
4194
4367
|
```
|
4195
4368
|
|
4196
4369
|
```bash
|
4197
|
-
ascli aoc admin
|
4370
|
+
ascli aoc admin node v4 1234 --secret=_ak_secret_here_ bearer_token_node /
|
4198
4371
|
```
|
4199
4372
|
|
4200
4373
|
### Administration
|
@@ -4205,7 +4378,8 @@ It allows actions (create, update, delete) on **resources**: users, group, nodes
|
|
4205
4378
|
|
4206
4379
|
#### Listing resources
|
4207
4380
|
|
4208
|
-
The command `aoc admin
|
4381
|
+
The command `aoc admin <type> list` lists all entities of given type.
|
4382
|
+
It uses paging and multiple requests if necessary.
|
4209
4383
|
|
4210
4384
|
The option `query` can be optionally used.
|
4211
4385
|
It expects a `Hash` using [Extended Value Syntax](#extended-value-syntax), generally provided using: `--query=@json:{...}`.
|
@@ -4236,19 +4410,19 @@ Examples:
|
|
4236
4410
|
- List users with `laurent` in name:
|
4237
4411
|
|
4238
4412
|
```bash
|
4239
|
-
ascli aoc admin
|
4413
|
+
ascli aoc admin user list --query=@json:'{"q":"laurent"}'
|
4240
4414
|
```
|
4241
4415
|
|
4242
4416
|
- List users who logged-in before a date:
|
4243
4417
|
|
4244
4418
|
```bash
|
4245
|
-
ascli aoc admin
|
4419
|
+
ascli aoc admin user list --query=@json:'{"q":"last_login_at:<2018-05-28"}'
|
4246
4420
|
```
|
4247
4421
|
|
4248
4422
|
- List external users and sort in reverse alphabetical order using name:
|
4249
4423
|
|
4250
4424
|
```bash
|
4251
|
-
ascli aoc admin
|
4425
|
+
ascli aoc admin user list --query=@json:'{"member_of_any_workspace":false,"sort":"-name"}'
|
4252
4426
|
```
|
4253
4427
|
|
4254
4428
|
Refer to the AoC API for full list of query parameters, or use the browser in developer mode with the web UI.
|
@@ -4261,17 +4435,17 @@ Resources are identified by a unique `id`, as well as a unique `name` (case inse
|
|
4261
4435
|
|
4262
4436
|
To execute an action on a specific resource, select it using one of those methods:
|
4263
4437
|
|
4264
|
-
- **recommended**: give id directly on command line **after the action**: `aoc admin
|
4265
|
-
- Give name on command line **after the action**: `aoc admin
|
4266
|
-
- Provide option `id` : `aoc admin
|
4267
|
-
- Provide option `name` : `aoc admin
|
4438
|
+
- **recommended**: give id directly on command line **after the action**: `aoc admin node show 123`
|
4439
|
+
- Give name on command line **after the action**: `aoc admin node show name abc`
|
4440
|
+
- Provide option `id` : `aoc admin node show 123`
|
4441
|
+
- Provide option `name` : `aoc admin node show --name=abc`
|
4268
4442
|
|
4269
4443
|
#### Creating a resource
|
4270
4444
|
|
4271
4445
|
New resources (users, groups, workspaces, etc..) can be created using a command like:
|
4272
4446
|
|
4273
4447
|
```bash
|
4274
|
-
ascli aoc admin
|
4448
|
+
ascli aoc admin create <resource type> @json:'{<...parameters...>}'
|
4275
4449
|
```
|
4276
4450
|
|
4277
4451
|
Some of the API endpoints are described [here](https://developer.ibm.com/apis/catalog?search=%22aspera%20on%20cloud%20api%22). Sadly, not all.
|
@@ -4279,7 +4453,7 @@ Some of the API endpoints are described [here](https://developer.ibm.com/apis/ca
|
|
4279
4453
|
Nevertheless, it is possible to guess the structure of the creation value by simply dumping an existing resource, and use the same parameters for the creation.
|
4280
4454
|
|
4281
4455
|
```bash
|
4282
|
-
ascli aoc admin
|
4456
|
+
ascli aoc admin group show 12345 --format=json
|
4283
4457
|
```
|
4284
4458
|
|
4285
4459
|
```json
|
@@ -4291,7 +4465,7 @@ Remove the parameters that are either obviously added by the system: `id`, `crea
|
|
4291
4465
|
And then craft your command:
|
4292
4466
|
|
4293
4467
|
```bash
|
4294
|
-
ascli aoc admin
|
4468
|
+
ascli aoc admin group create @json:'{"description":"test to delete","name":"test 1 to delete","saml_group":false}'
|
4295
4469
|
```
|
4296
4470
|
|
4297
4471
|
If the command returns an error, example:
|
@@ -4318,7 +4492,7 @@ The secret is provided using the `secret` option.
|
|
4318
4492
|
For example in a command like:
|
4319
4493
|
|
4320
4494
|
```bash
|
4321
|
-
ascli aoc admin
|
4495
|
+
ascli aoc admin node 123 --secret="my_secret_here" v3 info
|
4322
4496
|
```
|
4323
4497
|
|
4324
4498
|
It is also possible to store secrets in the [secret vault](#secret-vault) and then automatically find the related secret using the [config finder](#configuration-finder).
|
@@ -4407,7 +4581,7 @@ Current Workspace: Default (default)
|
|
4407
4581
|
#### Example: Bulk creation of users
|
4408
4582
|
|
4409
4583
|
```bash
|
4410
|
-
ascli aoc admin
|
4584
|
+
ascli aoc admin user create --bulk=yes @json:'[{"email":"dummyuser1@example.com"},{"email":"dummyuser2@example.com"}]'
|
4411
4585
|
```
|
4412
4586
|
|
4413
4587
|
```output
|
@@ -4422,7 +4596,7 @@ ascli aoc admin res user create --bulk=yes @json:'[{"email":"dummyuser1@example.
|
|
4422
4596
|
#### Example: Find with filter and delete
|
4423
4597
|
|
4424
4598
|
```bash
|
4425
|
-
ascli aoc admin
|
4599
|
+
ascli aoc admin user list --query='@json:{"q":"dummyuser"}' --fields=id,email
|
4426
4600
|
```
|
4427
4601
|
|
4428
4602
|
```output
|
@@ -4435,7 +4609,7 @@ ascli aoc admin res user list --query='@json:{"q":"dummyuser"}' --fields=id,emai
|
|
4435
4609
|
```
|
4436
4610
|
|
4437
4611
|
```bash
|
4438
|
-
ascli aoc admin
|
4612
|
+
ascli aoc admin user list --query='@json:{"q":"dummyuser"}' --fields=id --display=data --format=csv | ascli aoc admin user delete @lines:@stdin: --bulk=yes
|
4439
4613
|
```
|
4440
4614
|
|
4441
4615
|
```output
|
@@ -4450,7 +4624,7 @@ ascli aoc admin res user list --query='@json:{"q":"dummyuser"}' --fields=id --di
|
|
4450
4624
|
#### Example: Find deactivated users since more than 2 years
|
4451
4625
|
|
4452
4626
|
```ruby
|
4453
|
-
ascli aoc admin
|
4627
|
+
ascli aoc admin user list --query=@ruby:'{"deactivated"=>true,"q"=>"last_login_at:<#{(DateTime.now.to_time.utc-2*365*86400).iso8601}"}'
|
4454
4628
|
```
|
4455
4629
|
|
4456
4630
|
To delete them use the same method as before
|
@@ -4482,7 +4656,7 @@ ascli aoc admin resource node --name=_node_name_ --secret=_secret_ v4 access_key
|
|
4482
4656
|
#### Example: Display transfer events (ops/transfer)
|
4483
4657
|
|
4484
4658
|
```bash
|
4485
|
-
ascli aoc admin
|
4659
|
+
ascli aoc admin node --secret=_secret_ v3 transfer list --query=@json:'[["q","*"],["count",5]]'
|
4486
4660
|
```
|
4487
4661
|
|
4488
4662
|
Examples of query:
|
@@ -4498,13 +4672,13 @@ Examples of query:
|
|
4498
4672
|
#### Example: Display node events (events)
|
4499
4673
|
|
4500
4674
|
```bash
|
4501
|
-
ascli aoc admin
|
4675
|
+
ascli aoc admin node --secret=_secret_ v3 events
|
4502
4676
|
```
|
4503
4677
|
|
4504
4678
|
#### Example: Display members of a workspace
|
4505
4679
|
|
4506
4680
|
```bash
|
4507
|
-
ascli aoc admin
|
4681
|
+
ascli aoc admin workspace_membership list --fields=member_type,manager,member.email --query=@json:'{"embed":"member","inherited":false,"workspace_id":11363,"sort":"name"}'
|
4508
4682
|
```
|
4509
4683
|
|
4510
4684
|
```output
|
@@ -4512,7 +4686,7 @@ ascli aoc admin res workspace_membership list --fields=member_type,manager,membe
|
|
4512
4686
|
| member_type | manager | member.email |
|
4513
4687
|
+-------------+---------+----------------------------------+
|
4514
4688
|
| user | true | john.curtis@email.com |
|
4515
|
-
| user | false | someuser@example.com
|
4689
|
+
| user | false | someuser@example.com |
|
4516
4690
|
| user | false | jean.dupont@me.com |
|
4517
4691
|
| user | false | another.user@example.com |
|
4518
4692
|
| group | false | |
|
@@ -4532,20 +4706,20 @@ a- Get id of first workspace
|
|
4532
4706
|
|
4533
4707
|
```bash
|
4534
4708
|
WS1='First Workspace'
|
4535
|
-
WS1ID=$(ascli aoc admin
|
4709
|
+
WS1ID=$(ascli aoc admin workspace list --query=@json:'{"q":"'"$WS1"'"}' --select=@json:'{"name":"'"$WS1"'"}' --fields=id --format=csv)
|
4536
4710
|
```
|
4537
4711
|
|
4538
4712
|
b- Get id of second workspace
|
4539
4713
|
|
4540
4714
|
```bash
|
4541
4715
|
WS2='Second Workspace'
|
4542
|
-
WS2ID=$(ascli aoc admin
|
4716
|
+
WS2ID=$(ascli aoc admin workspace list --query=@json:'{"q":"'"$WS2"'"}' --select=@json:'{"name":"'"$WS2"'"}' --fields=id --format=csv)
|
4543
4717
|
```
|
4544
4718
|
|
4545
4719
|
c- Extract membership information
|
4546
4720
|
|
4547
4721
|
```bash
|
4548
|
-
ascli aoc admin
|
4722
|
+
ascli aoc admin workspace_membership list --fields=manager,member_id,member_type,workspace_id --query=@json:'{"workspace_id":'"$WS1ID"'}' --format=jsonpp --output=ws1_members.json
|
4549
4723
|
```
|
4550
4724
|
|
4551
4725
|
d- Convert to creation data for second workspace:
|
@@ -4563,13 +4737,13 @@ jq '[.[] | {member_type,member_id,workspace_id,manager,workspace_id:"'"$WS2ID"'"
|
|
4563
4737
|
e- Add members to second workspace
|
4564
4738
|
|
4565
4739
|
```bash
|
4566
|
-
ascli aoc admin
|
4740
|
+
ascli aoc admin workspace_membership create --bulk=yes @json:@file:ws2_members.json
|
4567
4741
|
```
|
4568
4742
|
|
4569
4743
|
#### Example: Get users who did not log since a date
|
4570
4744
|
|
4571
4745
|
```bash
|
4572
|
-
ascli aoc admin
|
4746
|
+
ascli aoc admin user list --fields=email --query=@json:'{"q":"last_login_at:<2018-05-28"}'
|
4573
4747
|
```
|
4574
4748
|
|
4575
4749
|
```output
|
@@ -4584,7 +4758,7 @@ ascli aoc admin res user list --fields=email --query=@json:'{"q":"last_login_at:
|
|
4584
4758
|
#### Example: List **Limited** users
|
4585
4759
|
|
4586
4760
|
```bash
|
4587
|
-
ascli aoc admin
|
4761
|
+
ascli aoc admin user list --fields=email --select=@json:'{"member_of_any_workspace":false}'
|
4588
4762
|
```
|
4589
4763
|
|
4590
4764
|
#### Example: Create a group, add to workspace and add user to group
|
@@ -4592,7 +4766,7 @@ ascli aoc admin res user list --fields=email --select=@json:'{"member_of_any_wor
|
|
4592
4766
|
- Create the group and take note of `id`
|
4593
4767
|
|
4594
4768
|
```bash
|
4595
|
-
ascli aoc admin
|
4769
|
+
ascli aoc admin group create @json:'{"name":"group 1","description":"my super group"}'
|
4596
4770
|
```
|
4597
4771
|
|
4598
4772
|
Group: `11111`
|
@@ -4600,7 +4774,7 @@ Group: `11111`
|
|
4600
4774
|
- Get the workspace id
|
4601
4775
|
|
4602
4776
|
```bash
|
4603
|
-
ascli aoc admin
|
4777
|
+
ascli aoc admin workspace list --query=@json:'{"q":"myworkspace"}' --fields=id --format=csv --display=data
|
4604
4778
|
```
|
4605
4779
|
|
4606
4780
|
Workspace: 22222
|
@@ -4608,13 +4782,13 @@ Workspace: 22222
|
|
4608
4782
|
- Add group to workspace
|
4609
4783
|
|
4610
4784
|
```bash
|
4611
|
-
ascli aoc admin
|
4785
|
+
ascli aoc admin workspace_membership create @json:'{"workspace_id":22222,"member_type":"user","member_id":11111}'
|
4612
4786
|
```
|
4613
4787
|
|
4614
4788
|
- Get a user's id
|
4615
4789
|
|
4616
4790
|
```bash
|
4617
|
-
ascli aoc admin
|
4791
|
+
ascli aoc admin user list --query=@json:'{"q":"manu.macron@example.com"}' --fields=id --format=csv --display=data
|
4618
4792
|
```
|
4619
4793
|
|
4620
4794
|
User: 33333
|
@@ -4622,7 +4796,7 @@ User: 33333
|
|
4622
4796
|
- Add user to group
|
4623
4797
|
|
4624
4798
|
```bash
|
4625
|
-
ascli aoc admin
|
4799
|
+
ascli aoc admin group_membership create @json:'{"group_id":11111,"member_type":"user","member_id":33333}'
|
4626
4800
|
```
|
4627
4801
|
|
4628
4802
|
#### Example: Perform a multi Gbps transfer between two remote shared folders
|
@@ -4670,7 +4844,7 @@ ascli -Paoc_show aoc files transfer --from-folder='IBM Cloud SJ' --to-folder='AW
|
|
4670
4844
|
#### Example: Create registration key to register a node
|
4671
4845
|
|
4672
4846
|
```bash
|
4673
|
-
ascli aoc admin
|
4847
|
+
ascli aoc admin client create @json:'{"data":{"name":"laurentnode","client_subject_scopes":["alee","aejd"],"client_subject_enabled":true}}' --fields=token --format=csv
|
4674
4848
|
```
|
4675
4849
|
|
4676
4850
|
```output
|
@@ -4680,7 +4854,7 @@ jfqslfdjlfdjfhdjklqfhdkl
|
|
4680
4854
|
#### Example: Delete all registration keys
|
4681
4855
|
|
4682
4856
|
```bash
|
4683
|
-
ascli aoc admin
|
4857
|
+
ascli aoc admin client list --fields=id --format=csv|ascli aoc admin client delete @lines:@stdin: --bulk=yes
|
4684
4858
|
```
|
4685
4859
|
|
4686
4860
|
```output
|
@@ -4725,13 +4899,13 @@ So, for example, the creation of a node using ATS in IBM Cloud looks like (see o
|
|
4725
4899
|
First, Retrieve the ATS node address
|
4726
4900
|
|
4727
4901
|
```bash
|
4728
|
-
ascli aoc admin ats cluster show --cloud=softlayer --region=eu-de --fields=transfer_setup_url --format=csv
|
4902
|
+
ascli aoc admin ats cluster show --cloud=softlayer --region=eu-de --fields=transfer_setup_url --format=csv
|
4729
4903
|
```
|
4730
4904
|
|
4731
4905
|
Then use the returned address for the `url` key to actually create the AoC Node entity:
|
4732
4906
|
|
4733
4907
|
```bash
|
4734
|
-
ascli aoc admin
|
4908
|
+
ascli aoc admin node create @json:'{"name":"myname","access_key":"myaccesskeyid","ats_access_key":true,"ats_storage_type":"ibm-s3","url":"https://ats-sl-fra-all.aspera.io"}'
|
4735
4909
|
```
|
4736
4910
|
|
4737
4911
|
Creation of a node with a self-managed node is similar, but the command `aoc admin ats access_key create` is replaced with `node access_key create` on the private node itself.
|
@@ -4789,6 +4963,20 @@ If a user recipient (email) is not already registered and the workspace allows e
|
|
4789
4963
|
- if the option `new_user_option` is `@json:{"package_contact":true}` (default), then a public link is sent and the external user does not need to create an account
|
4790
4964
|
- if the option `new_user_option` is `@json:{}`, then external users are invited to join the workspace
|
4791
4965
|
|
4966
|
+
#### List packages
|
4967
|
+
|
4968
|
+
By default, when using `aoc packages list`, the following `query` is performed:
|
4969
|
+
|
4970
|
+
| query parameter | value |
|
4971
|
+
|----------------------------|-------|
|
4972
|
+
| `archived` | `false` |
|
4973
|
+
| `has_content` | `true` |
|
4974
|
+
| `received` | `true` |
|
4975
|
+
| `completed` | `true` |
|
4976
|
+
| `workspace_id` | based on current workspace |
|
4977
|
+
| `exclude_dropbox_packages` | `true` or `false` depending if watching a dropbox|
|
4978
|
+
| `dropbox_id` | set accoring to `dropbox_name` |
|
4979
|
+
|
4792
4980
|
#### Example: Send a package with one file to two users, using their email
|
4793
4981
|
|
4794
4982
|
```bash
|
@@ -4798,13 +4986,13 @@ ascli aoc packages send @json:'{"name":"my title","note":"my note","recipients":
|
|
4798
4986
|
#### Example: Send a package to a shared inbox with metadata
|
4799
4987
|
|
4800
4988
|
```bash
|
4801
|
-
ascli aoc packages send --workspace=
|
4989
|
+
ascli aoc packages send --workspace="my ws" @json:'{"name":"my pack title","recipients":["Shared Inbox With Meta"],"metadata":{"Project Id":"123","Type":"Opt2","CheckThose":["Check1","Check2"],"Optional Date":"2021-01-13T15:02:00.000Z"}}' ~/Documents/Samples/200KB.1
|
4802
4990
|
```
|
4803
4991
|
|
4804
4992
|
It is also possible to use identifiers and API parameters:
|
4805
4993
|
|
4806
4994
|
```bash
|
4807
|
-
ascli aoc packages send --workspace=
|
4995
|
+
ascli aoc packages send --workspace="my ws" @json:'{"name":"my pack title","recipients":[{"type":"dropbox","id":"12345"}],"metadata":[{"input_type":"single-text","name":"Project Id","values":["123"]},{"input_type":"single-dropdown","name":"Type","values":["Opt2"]},{"input_type":"multiple-checkbox","name":"CheckThose","values":["Check1","Check2"]},{"input_type":"date","name":"Optional Date","values":["2021-01-13T15:02:00.000Z"]}]}' ~/Documents/Samples/200KB.1
|
4808
4996
|
```
|
4809
4997
|
|
4810
4998
|
#### Example: List packages in a given shared inbox
|
@@ -4830,7 +5018,7 @@ ascli aoc packages list --query=@json:'{"dropbox_name":"My Shared Inbox","archiv
|
|
4830
5018
|
Using shared inbox identifier: first retrieve the id of the shared inbox, and then list packages with the appropriate filter.
|
4831
5019
|
|
4832
5020
|
```bash
|
4833
|
-
shared_box_id=$(ascli aoc packages shared_inboxes show --name='My Shared Inbox' --format=csv --display=data --fields=id
|
5021
|
+
shared_box_id=$(ascli aoc packages shared_inboxes show --name='My Shared Inbox' --format=csv --display=data --fields=id)
|
4834
5022
|
```
|
4835
5023
|
|
4836
5024
|
```bash
|
@@ -4882,6 +5070,26 @@ ascli aoc packages recv ALL --once-only=yes --lock-port=12345
|
|
4882
5070
|
|
4883
5071
|
Typically, one would execute this command on a regular basis, using the method of your choice: see [Scheduler](#scheduler).
|
4884
5072
|
|
5073
|
+
### Example: Content of a received Package
|
5074
|
+
|
5075
|
+
Some `node` operations are available for a package, such as `browse` and `find`.
|
5076
|
+
|
5077
|
+
To list the content of a package, use command `packages browse <package id> <folder>`:
|
5078
|
+
|
5079
|
+
```bash
|
5080
|
+
ascli aoc package browse my5CnbeWng /
|
5081
|
+
```
|
5082
|
+
|
5083
|
+
To list recursively, use command `find`.
|
5084
|
+
|
5085
|
+
To download only some of the files listed in the package, just add the path of the files on the command line.
|
5086
|
+
|
5087
|
+
For advanced users, it's also possible to pipe node information for the package and use node operations:
|
5088
|
+
|
5089
|
+
```bash
|
5090
|
+
ascli aoc package node_info <package id here> / --format=json --show-secrets=yes --display=data | ascli node -N --preset=@json:@stdin: access_key do self browse /
|
5091
|
+
```
|
5092
|
+
|
4885
5093
|
### Files
|
4886
5094
|
|
4887
5095
|
The Files application presents a **Home** folder to users in a given workspace.
|
@@ -4907,13 +5115,47 @@ ascli aoc files download <single file path>
|
|
4907
5115
|
|
4908
5116
|
#### Shared folders
|
4909
5117
|
|
4910
|
-
Shared
|
5118
|
+
Like in AoC web UI, "Shared Folders" can be created and shared with either **Private** or **Public** links.
|
5119
|
+
**Private** links require the collaborator to log-in to access the shared folder.
|
5120
|
+
**Public** links include a passcode that enables the user to access the shared folder without login-in.
|
5121
|
+
|
5122
|
+
Shared folders can be created either:
|
5123
|
+
|
5124
|
+
- by users in a workspace: they can share personal folders with other users in the same workspace: `aoc files perm`
|
5125
|
+
- by administrators: they can share a folder with users in any workspace: `aoc admin node do [node id] perm`
|
5126
|
+
|
5127
|
+
Technically (API), shared folder are managed through [permissions](https://developer.ibm.com/apis/catalog/aspera--aspera-node-api/Introduction) on node and an event is sent to AoC to create a **link** in the user's home folder to the shared folder.
|
5128
|
+
In both cases, it is necessary to specify a workspace.
|
4911
5129
|
|
4912
|
-
|
4913
|
-
`ascli` expects the same payload for creation, but it will automatically populate required tags if needed.
|
5130
|
+
The basic payload (last argument at creation usually specified with `@json:`) is:
|
4914
5131
|
|
4915
|
-
|
4916
|
-
|
5132
|
+
```json
|
5133
|
+
{
|
5134
|
+
"file_id": "50",
|
5135
|
+
"access_levels": ["list","read","write","delete","mkdir","rename","preview"],
|
5136
|
+
"access_type": "user",
|
5137
|
+
"access_id": "john@example.com",
|
5138
|
+
"tags": {...},
|
5139
|
+
}
|
5140
|
+
```
|
5141
|
+
|
5142
|
+
`ascli` expects the same payload for creation.
|
5143
|
+
`ascli` automatically populates this payload like this:
|
5144
|
+
|
5145
|
+
- `file_id` : the id of the folder to share whose path is specified in the command line
|
5146
|
+
- `access_levels` : are set by default to full access.
|
5147
|
+
- `tags` : are set with expected values for AoC: user name who creates, and workspace in which the shared folder is created.
|
5148
|
+
- `access_type` and `access_id` : need to be set by the user, or using special key as follows.
|
5149
|
+
|
5150
|
+
To change `access_levels`, just provide the list of levels in the `@json:` payload.
|
5151
|
+
|
5152
|
+
In order to declare/create the shared folder in the workspace, a special value for `access_id` is used: `ASPERA_ACCESS_KEY_ADMIN_WS_[workspace id]]`. This is conveniently set by `ascli` using an empty string for the pseudo key `with`. In order to share a folder with a different, special tags are set, but this is conveniently done by `ascli` using the `as` key.
|
5153
|
+
|
5154
|
+
The following optional additional helper keys are supported by `ascli`:
|
5155
|
+
|
5156
|
+
- `with` : Recipient of shared folder. Can be a user name, a group name, or a workspace name. `ascli` will resolve the name to the proper type and id in fields `access_type` and `access_id`. If the value is the empty string, then it declares the shared folder in the workspace (first action to do, see below).
|
5157
|
+
- `link_name` : The name of the link file created in the user's home folder for private links.
|
5158
|
+
- `as` : The name of the link file created in the user's home folder for admin shared folders.
|
4917
5159
|
|
4918
5160
|
- List permissions on a shared folder as user
|
4919
5161
|
|
@@ -4936,12 +5178,24 @@ ascli aoc files perm /shared_folder_test1 delete 6161
|
|
4936
5178
|
Public and Private short links can be managed with command:
|
4937
5179
|
|
4938
5180
|
```bash
|
4939
|
-
ascli aoc files short_link private create
|
4940
|
-
ascli aoc files short_link private list
|
4941
|
-
ascli aoc files short_link public list
|
5181
|
+
ascli aoc files short_link _path_here_ private create
|
5182
|
+
ascli aoc files short_link _path_here_ private list
|
5183
|
+
ascli aoc files short_link _path_here_ public list
|
4942
5184
|
ascli aoc files short_link public delete _id_
|
4943
5185
|
```
|
4944
5186
|
|
5187
|
+
- Create an admin shared folder and shared with a user or group or workspace
|
5188
|
+
|
5189
|
+
```bash
|
5190
|
+
ascli aoc admin node do 1234 mkdir folder_on_node
|
5191
|
+
ascli aoc admin node do 1234 perm folder_on_node create @json:'{"with":"","as":"folder_for_users"}' --workspace="my ws"
|
5192
|
+
ascli aoc admin node do 1234 perm folder_on_node create @json:'{"with":"john@example.com","as":"folder_for_users"}' --workspace="my ws"
|
5193
|
+
ascli aoc admin node do 1234 perm folder_on_node create @json:'{"with":"group 1","as":"folder_for_users"}' --workspace="my ws"
|
5194
|
+
ascli aoc admin node do 1234 perm folder_on_node create @json:'{"with":"my ws","as":"folder_for_users"}' --workspace="my ws"
|
5195
|
+
```
|
5196
|
+
|
5197
|
+
> **Note:** The node can be conveniently identified using the **percent selector** instead of numerical id.
|
5198
|
+
|
4945
5199
|
#### Cross Organization transfers
|
4946
5200
|
|
4947
5201
|
It is possible to transfer files directly between organizations without having to first download locally and then upload...
|
@@ -4979,7 +5233,7 @@ The command `aoc files find` allows to search for files in a given workspace.
|
|
4979
5233
|
It works also on `node` resource using the `v4` command:
|
4980
5234
|
|
4981
5235
|
```bash
|
4982
|
-
ascli aoc admin
|
5236
|
+
ascli aoc admin node --name='my node name' --secret='my_secret_here' v4 find ...
|
4983
5237
|
```
|
4984
5238
|
|
4985
5239
|
For instructions, refer to section `find` for plugin `node`.
|
@@ -4990,8 +5244,8 @@ For instructions, refer to section `find` for plugin `node`.
|
|
4990
5244
|
|
4991
5245
|
```bash
|
4992
5246
|
admin analytics transfers nodes
|
4993
|
-
admin analytics transfers organization --query=@json:'{"status":"completed","direction":"receive"}' --notify-to=my_email_external --notify-template=@ruby:'%Q{From: <%=from_name%> <<%=from_email%>>\nTo: <<%=to%>>\nSubject: <%=ev["files_completed"]%> files received\n\n<%=ev.to_yaml%>}'
|
4994
|
-
admin analytics transfers users --
|
5247
|
+
admin analytics transfers organization --query=@json:'{"status":"completed","direction":"receive","limit":2}' --notify-to=my_email_external --notify-template=@ruby:'%Q{From: <%=from_name%> <<%=from_email%>>\nTo: <<%=to%>>\nSubject: <%=ev["files_completed"]%> files received\n\n<%=ev.to_yaml%>}'
|
5248
|
+
admin analytics transfers users --once-only=yes
|
4995
5249
|
admin application list
|
4996
5250
|
admin ats access_key create --cloud=aws --region=my_region --params=@json:'{"id":"ak_aws","name":"my test key AWS","storage":{"type":"aws_s3","bucket":"my_bucket","credentials":{"access_key_id":"my_access_key","secret_access_key":"my_secret_key"},"path":"/"}}'
|
4997
5251
|
admin ats access_key create --cloud=softlayer --region=my_region --params=@json:'{"id":"ak1ibmcloud","secret":"my_secret_here","name":"my test key","storage":{"type":"ibm-s3","bucket":"my_bucket","credentials":{"access_key_id":"my_access_key","secret_access_key":"my_secret_key"},"path":"/"}}'
|
@@ -5013,12 +5267,19 @@ admin dropbox list
|
|
5013
5267
|
admin dropbox_membership list
|
5014
5268
|
admin group list
|
5015
5269
|
admin kms_profile list
|
5016
|
-
admin node do %name:
|
5017
|
-
admin node do %name:
|
5018
|
-
admin node do %name:
|
5019
|
-
admin node do %name:
|
5020
|
-
admin node do %name:
|
5021
|
-
admin node do %name:
|
5270
|
+
admin node do %name:my_node_name --secret=my_ak_secret browse /
|
5271
|
+
admin node do %name:my_node_name --secret=my_ak_secret delete /folder1
|
5272
|
+
admin node do %name:my_node_name --secret=my_ak_secret delete /folder_sub
|
5273
|
+
admin node do %name:my_node_name --secret=my_ak_secret mkdir /folder1
|
5274
|
+
admin node do %name:my_node_name --secret=my_ak_secret mkdir /folder_sub
|
5275
|
+
admin node do %name:my_node_name --secret=my_ak_secret v3 access_key create @json:'{"id":"testsub1","storage":{"path":"/folder_sub"}}'
|
5276
|
+
admin node do %name:my_node_name --secret=my_ak_secret v3 access_key delete testsub1
|
5277
|
+
admin node do %name:my_node_name --secret=my_ak_secret v3 events
|
5278
|
+
admin node do %name:my_node_name delete test_shared_folder
|
5279
|
+
admin node do %name:my_node_name mkdir test_shared_folder
|
5280
|
+
admin node do %name:my_node_name perm test_shared_folder create @json:'{"with":"","as":"other_name_shared"}' --workspace=my_workspace_shared_inbox
|
5281
|
+
admin node do %name:my_node_name perm test_shared_folder create @json:'{"with":"my_user_email","as":"other_name_shared"}' --workspace=my_workspace_shared_inbox
|
5282
|
+
admin node do %name:my_node_name perm test_shared_folder create @json:'{"with":"my_user_group","as":"other_name_shared"}' --workspace=my_workspace_shared_inbox
|
5022
5283
|
admin node list
|
5023
5284
|
admin operation list
|
5024
5285
|
admin organization show
|
@@ -5051,15 +5312,17 @@ files browse my_remote_folder/
|
|
5051
5312
|
files delete /testsrc
|
5052
5313
|
files download --transfer=alpha testdst/test_file.bin
|
5053
5314
|
files download --transfer=connect testdst/test_file.bin
|
5315
|
+
files find /
|
5054
5316
|
files find / '\.partial$'
|
5317
|
+
files find / @ruby:'->(f){f["type"].eql?("file")}'
|
5055
5318
|
files http_node_download --to-folder=. testdst/test_file.bin
|
5056
5319
|
files mkdir /testsrc
|
5057
5320
|
files modify my_test_folder
|
5058
5321
|
files permission my_test_folder list
|
5059
5322
|
files rename /some_folder testdst
|
5060
|
-
files short_link private create
|
5061
|
-
files short_link private list
|
5062
|
-
files short_link public create
|
5323
|
+
files short_link /testdst private create
|
5324
|
+
files short_link /testdst private list
|
5325
|
+
files short_link /testdst public create
|
5063
5326
|
files show %id:aoc_file_id
|
5064
5327
|
files show /
|
5065
5328
|
files show testdst/test_file.bin
|
@@ -5080,13 +5343,14 @@ files v3 info
|
|
5080
5343
|
gateway --pid-file=pid_aocfxgw https://localhost:12345/aspera/faspex &
|
5081
5344
|
org --url=my_public_link_recv_from_aoc_user
|
5082
5345
|
organization
|
5083
|
-
packages browse package_id3 /
|
5346
|
+
packages browse package_id3 /
|
5084
5347
|
packages list
|
5085
5348
|
packages list --query=@json:'{"dropbox_name":"my_shared_inbox_name","sort":"-received_at","archived":false,"received":true,"has_content":true,"exclude_dropbox_packages":false}'
|
5086
5349
|
packages receive ALL --once-only=yes --to-folder=. --lock-port=12345
|
5087
5350
|
packages receive ALL --once-only=yes --to-folder=. --lock-port=12345 --query=@json:'{"dropbox_name":"my_shared_inbox_name","archived":false,"received":true,"has_content":true,"exclude_dropbox_packages":false,"include_draft":false}' --ts=@json:'{"resume_policy":"sparse_csum","target_rate_kbps":50000}'
|
5088
5351
|
packages receive INIT --once-only=yes --query=@json:'{"dropbox_name":"my_shared_inbox_name"}'
|
5089
5352
|
packages receive package_id3 --to-folder=.
|
5353
|
+
packages receive package_id3 --to-folder=. /
|
5090
5354
|
packages send --workspace=my_workspace_shared_inbox --validate-metadata=yes @json:'{"name":"$(notdir test) PACKAGE_TITLE_BASE","recipients":["my_shared_inbox_meta"],"metadata":[{"input_type":"single-text","name":"Project Id","values":["123"]},{"input_type":"single-dropdown","name":"Type","values":["Opt2"]},{"input_type":"multiple-checkbox","name":"CheckThose","values":["Check1","Check2"]},{"input_type":"date","name":"Optional Date","values":["2021-01-13T15:02:00.000Z"]}]}' test_file.bin
|
5091
5355
|
packages send --workspace=my_workspace_shared_inbox --validate-metadata=yes @json:'{"name":"$(notdir test) PACKAGE_TITLE_BASE","recipients":["my_shared_inbox_meta"],"metadata":{"Project Id":"456","Type":"Opt2","CheckThose":["Check1","Check2"],"Optional Date":"2021-01-13T15:02:00.000Z"}}' test_file.bin
|
5092
5356
|
packages send --workspace=my_workspace_shared_inbox --validate-metadata=yes @json:'{"name":"$(notdir test) PACKAGE_TITLE_BASE","recipients":["my_shared_inbox_meta"],"metadata":{"Type":"Opt2","CheckThose":["Check1","Check2"],"Optional Date":"2021-01-13T15:02:00.000Z"}}' test_file.bin
|
@@ -5096,8 +5360,10 @@ packages send @json:'{"name":"$(notdir test) PACKAGE_TITLE_BASE","recipients":["
|
|
5096
5360
|
packages send @json:'{"name":"$(notdir test) PACKAGE_TITLE_BASE"}' test_file.bin --url=my_public_link_send_aoc_user --password=my_public_link_send_use_pass
|
5097
5361
|
packages send @json:'{"name":"$(notdir test) PACKAGE_TITLE_BASE"}' test_file.bin --url=my_public_link_send_shared_inbox
|
5098
5362
|
packages shared_inboxes list
|
5363
|
+
packages shared_inboxes show %name:my_shared_inbox_name
|
5099
5364
|
remind --username=my_user_email
|
5100
5365
|
servers
|
5366
|
+
tier_restrictions
|
5101
5367
|
user pref modify @json:'{"default_language":"en-us"}'
|
5102
5368
|
user pref show
|
5103
5369
|
user profile modify @json:'{"name":"dummy change"}'
|
@@ -5179,7 +5445,7 @@ ascli ats api_key create
|
|
5179
5445
|
|
5180
5446
|
```output
|
5181
5447
|
+--------+----------------------------------------------+
|
5182
|
-
|
|
5448
|
+
| field | value |
|
5183
5449
|
+--------+----------------------------------------------+
|
5184
5450
|
| id | ats_XXXXXXXXXXXXXXXXXXXXXXXX |
|
5185
5451
|
| secret | YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY |
|
@@ -5254,11 +5520,18 @@ cluster show 1f412ae7-869a-445c-9c05-02ad16813be2
|
|
5254
5520
|
## Plugin: `server`: IBM Aspera High Speed Transfer Server (SSH)
|
5255
5521
|
|
5256
5522
|
The `server` plugin is used for operations on Aspera HSTS using SSH authentication.
|
5257
|
-
It is the
|
5523
|
+
It is the original way of accessing an Aspera Server, often used for server to server transfers.
|
5258
5524
|
An SSH session is established, authenticated with either a password or an SSH private key,
|
5259
5525
|
then commands `ascp` (for transfers) and `ascmd` (for file operations) are executed.
|
5260
5526
|
|
5261
|
-
|
5527
|
+
The URL to be provided with option `url` shall be like `ssh://_server_address_:33001`, then option `username` is used to specify the transfer user, and finally either option `password` or `ssh_keys` (with one or several paths) for the authentication.
|
5528
|
+
|
5529
|
+
Typically:
|
5530
|
+
|
5531
|
+
```console
|
5532
|
+
`ascli` server --url=ssh://hsts.example.com:33001 --username=john --password=_something_here_ ...
|
5533
|
+
`ascli` server --url=ssh://hsts.example.com:33001 --username=john --ssh-keys=~/.ssh/id_rsa ...
|
5534
|
+
```
|
5262
5535
|
|
5263
5536
|
### Server sample commands
|
5264
5537
|
|
@@ -5274,7 +5547,7 @@ delete my_inside_folder
|
|
5274
5547
|
delete my_upload_folder/to.delete
|
5275
5548
|
df
|
5276
5549
|
download my_inside_folder/test_file.bin --to-folder=. --transfer-info=@json:'{"wss":false,"resume":{"iter_max":1}}'
|
5277
|
-
download
|
5550
|
+
download my_large_file --to-folder=my_upload_folder --transfer=node --ts=@json:'{"resume_policy":"none"}'
|
5278
5551
|
du /
|
5279
5552
|
health transfer --to-folder=my_upload_folder --format=nagios
|
5280
5553
|
info
|
@@ -5292,10 +5565,10 @@ upload 'faux:///test1?100m' 'faux:///test2?100m' --to-folder=/Upload --ts=@json:
|
|
5292
5565
|
upload 'test_file.bin' --to-folder=my_inside_folder --ts=@json:'{"multi_session":3,"multi_session_threshold":1,"resume_policy":"none","target_rate_kbps":100000}' --transfer-info=@json:'{"spawn_delay_sec":2.5,"multi_incr_udp":false}' --progress-bar=yes
|
5293
5566
|
upload --sources=@ts --transfer-info=@json:'{"ascp_args":["--file-list","filelist.txt"]}' --to-folder=my_inside_folder
|
5294
5567
|
upload --sources=@ts --transfer-info=@json:'{"ascp_args":["--file-pair-list","file_pair_list.txt"]}'
|
5295
|
-
upload --sources=@ts --ts=@json:'{"paths":[{"source":"test_file.bin","destination":"my_inside_folder/other_name_4"}]}' --transfer=
|
5568
|
+
upload --sources=@ts --ts=@json:'{"paths":[{"source":"test_file.bin","destination":"my_inside_folder/other_name_4"}]}' --transfer=transferd
|
5296
5569
|
upload --src-type=pair 'test_file.bin' my_inside_folder/other_name_2 --notify-to=my_email_external --transfer-info=@json:'{"ascp_args":["-l","100m"]}'
|
5297
|
-
upload --src-type=pair --sources=@json:'["test_file.bin","my_inside_folder/other_name_3"]' --transfer-info=@json:'{"quiet":false}' --
|
5298
|
-
upload --src-type=pair test_file.bin my_upload_folder/other_name_5 --ts=@json:'{"cipher":"aes-192-gcm","content_protection":"encrypt","content_protection_password":"my_secret_here","cookie":"biscuit","create_dir":true,"delete_before_transfer":false,"delete_source":false,"exclude_newer_than":1,"exclude_older_than":10000,"fasp_port":33001,"http_fallback":false,"multi_session":0,"overwrite":"diff+older","precalculate_job_size":true,"preserve_access_time":true,"preserve_creation_time":true,"rate_policy":"fair","resume_policy":"sparse_csum","symlink_policy":"follow"}'
|
5570
|
+
upload --src-type=pair --sources=@json:'["test_file.bin","my_inside_folder/other_name_3"]' --transfer-info=@json:'{"quiet":false}' --progress=no
|
5571
|
+
upload --src-type=pair test_file.bin my_upload_folder/other_name_5 --ts=@json:'{"cipher":"aes-192-gcm","content_protection":"encrypt","content_protection_password":"my_secret_here","cookie":"biscuit","create_dir":true,"delete_before_transfer":false,"delete_source":false,"exclude_newer_than":"-1","exclude_older_than":"-10000","fasp_port":33001,"http_fallback":false,"multi_session":0,"overwrite":"diff+older","precalculate_job_size":true,"preserve_access_time":true,"preserve_creation_time":true,"rate_policy":"fair","resume_policy":"sparse_csum","symlink_policy":"follow"}'
|
5299
5572
|
upload --to-folder=my_upload_folder/target_hot --lock-port=12345 --transfer-info=@json:'{"ascp_args":["--remove-after-transfer","--remove-empty-directories","--exclude-newer-than=-8","--src-base","source_hot"]}' source_hot
|
5300
5573
|
```
|
5301
5574
|
|
@@ -5308,7 +5581,8 @@ If SSH is the session protocol (by default i.e. not WSS), then following session
|
|
5308
5581
|
|
5309
5582
|
If `username` is not provided then the default transfer user `xfer` is used.
|
5310
5583
|
|
5311
|
-
If
|
5584
|
+
If neither SSH password nor key is provided and a transfer token is provided in transfer spec (option `ts`), then standard SSH bypass key(s) is used.
|
5585
|
+
|
5312
5586
|
Example:
|
5313
5587
|
|
5314
5588
|
```bash
|
@@ -5404,6 +5678,8 @@ This plugin gives access to capabilities provided by the HSTS node API.
|
|
5404
5678
|
The authentication is `username` and `password` or `access_key` and `secret` through options: `username` and `password`.
|
5405
5679
|
|
5406
5680
|
> **Note:** Capabilities of this plugin are used in other plugins which access to the node API, such as `aoc`, `ats`, `shares`.
|
5681
|
+
>
|
5682
|
+
> **Note:** This plugin can be used with any type of **Aspera Node**, either on-prem or ATS, provided that you have node api credentials. Those credentials can be either Node API user or Access Key (e.g. on ATS).
|
5407
5683
|
|
5408
5684
|
### File Operations
|
5409
5685
|
|
@@ -5427,11 +5703,13 @@ Native API parameters can be placed in option `query`.
|
|
5427
5703
|
|
5428
5704
|
Special parameters can be placed in option `query` for "gen3" browse:
|
5429
5705
|
|
5430
|
-
| Parameter
|
5431
|
-
|
5706
|
+
| Parameter | Description |
|
5707
|
+
|-------------|-------------|
|
5432
5708
|
| `recursive` | Recursively list files |
|
5433
|
-
| `max`
|
5434
|
-
| `self`
|
5709
|
+
| `max` | Maximum number of files to list |
|
5710
|
+
| `self` | Offset in the list |
|
5711
|
+
|
5712
|
+
Option `node_cache` can be set to `no` to avoid use of folder cache (Redis) and force actual read of file system.
|
5435
5713
|
|
5436
5714
|
### Operation `find` on **gen4/access key**
|
5437
5715
|
|
@@ -5508,6 +5786,24 @@ ascli node access_keys do self find / @ruby:'->(f){f["type"].eql?("file") and (D
|
|
5508
5786
|
|
5509
5787
|
> **Note:** The pipe `|` character on the last line.
|
5510
5788
|
|
5789
|
+
### Listing transfer events
|
5790
|
+
|
5791
|
+
When a transfer is run, its information is stored (typicall, 1 day) in the HSTS database (Redis).
|
5792
|
+
This information can be retrieved with command: `transfer list`.
|
5793
|
+
|
5794
|
+
If the number of transfer is too large, then the list will be retrieved in several API calls.
|
5795
|
+
|
5796
|
+
In addition, it is possible to list "only new information" using option `once_only`.
|
5797
|
+
|
5798
|
+
```bash
|
5799
|
+
ascli node transfer list --once-only=yes
|
5800
|
+
```
|
5801
|
+
|
5802
|
+
The `iteratin_token` that keeps memory of latest event is stored in the persistance repository of `ascli`.
|
5803
|
+
To reset it, add option: `--query=@json:'{"reset": true}'`.
|
5804
|
+
To list only a number of events, use the `max` parameter in query.
|
5805
|
+
Other parameters are directly transmitted to the underlying API (`GET /ops/transfers`).
|
5806
|
+
|
5511
5807
|
### Central
|
5512
5808
|
|
5513
5809
|
The central subcommand uses the **reliable query** API (session and file).
|
@@ -5562,8 +5858,8 @@ Follow the Aspera Transfer Server configuration to activate this feature.
|
|
5562
5858
|
|
5563
5859
|
The following command lists one file that requires validation, and assign it to the unique validator identifier provided:
|
5564
5860
|
|
5565
|
-
```
|
5566
|
-
ascli node central file list --validator=ascli
|
5861
|
+
```json
|
5862
|
+
ascli node central file list --validator=ascli @json:'{"file_transfer_filter":{"max_result":1}}'
|
5567
5863
|
```
|
5568
5864
|
|
5569
5865
|
```output
|
@@ -5576,8 +5872,8 @@ ascli node central file list --validator=ascli --data=@json:'{"file_transfer_fil
|
|
5576
5872
|
|
5577
5873
|
To update the status of the file, use the following command:
|
5578
5874
|
|
5579
|
-
```
|
5580
|
-
ascli node central file update --validator=ascli
|
5875
|
+
```json
|
5876
|
+
ascli node central file update --validator=ascli @json:'{"files":[{"session_uuid": "1a74444c-...","file_id": "084fb181-...","status": "completed"}]}'
|
5581
5877
|
```
|
5582
5878
|
|
5583
5879
|
```output
|
@@ -5651,11 +5947,11 @@ ascli node info --field=@ruby:'/^access_key_configuration_capabilities.*/'
|
|
5651
5947
|
|
5652
5948
|
Bearer tokens are part of the **gen4/access key** API.
|
5653
5949
|
It follows the model of OAuth 2.
|
5654
|
-
For example they are used in Aspera on Cloud.
|
5950
|
+
For example, they are used in Aspera on Cloud.
|
5655
5951
|
This is also available for developers for any application integrating Aspera.
|
5656
|
-
In this API, files, users and groups are identified by an id (a String
|
5952
|
+
In this API, files, users and groups are identified by an id (a `String`, e.g. `"125"`, not necessarily numerical).
|
5657
5953
|
|
5658
|
-
Bearer tokens are typically generated by the authentication application
|
5954
|
+
Bearer tokens are typically generated by the authentication application and then recognized by the node API.
|
5659
5955
|
A bearer token is authorized on the node by creating `permissions` on a **folder**.
|
5660
5956
|
|
5661
5957
|
Bearer tokens can be generated using command `bearer_token`: it takes two arguments:
|
@@ -5681,6 +5977,11 @@ Bearer tokens can be generated using command `bearer_token`: it takes two argume
|
|
5681
5977
|
|
5682
5978
|
#### Bearer token: Environment
|
5683
5979
|
|
5980
|
+
An access key shall be created to grant access for transfers to its storage.
|
5981
|
+
The access_key and its secrets represent an administrative access to the storage as it has access rights to the whole storage of the access key.
|
5982
|
+
|
5983
|
+
They way to create access keys depend slightly on the type of HSTS:
|
5984
|
+
|
5684
5985
|
- If a self-managed Aspera node is used, then a **node user admin** must be created:
|
5685
5986
|
It has no `docroot` but has at least one file restriction (for testing, one can use `*` to accept creation of an access key with any storage root path).
|
5686
5987
|
Refer to the Aspera HSTS documentation.
|
@@ -5689,12 +5990,10 @@ Bearer tokens can be generated using command `bearer_token`: it takes two argume
|
|
5689
5990
|
|
5690
5991
|
- If Aspera on Cloud or ATS is used, then the SaaS API for access key creation is used.
|
5691
5992
|
|
5692
|
-
- An access key shall be created to grant access for transfers to its storage.
|
5693
|
-
The access_key and its secrets represent an administrative access to the storage as it has access rights to the whole storage of the access key.
|
5694
|
-
|
5695
5993
|
#### Bearer token: Preparation
|
5696
5994
|
|
5697
5995
|
Let's assume that the access key was created, and a default configuration is set to use this **access key**.
|
5996
|
+
Using `ascli`, an access key can be created using the `access_key create` on the node (using main node credentials) or ATS.
|
5698
5997
|
|
5699
5998
|
- Create a private key (organization key) that will be used to sign bearer tokens:
|
5700
5999
|
|
@@ -5714,6 +6013,7 @@ Let's assume that the access key was created, and a default configuration is set
|
|
5714
6013
|
|
5715
6014
|
> **Note:** Either the public or private key can be provided, and only the public key is used.
|
5716
6015
|
> This will enable to check the signature of the bearer token.
|
6016
|
+
> Above command is executed with access key credentials.
|
5717
6017
|
|
5718
6018
|
Alternatively, use the following equivalent command, as `ascli` kindly extracts the public key with extension `.pub`:
|
5719
6019
|
|
@@ -5756,7 +6056,7 @@ Let's assume that the access key was created, and a default configuration is set
|
|
5756
6056
|
|
5757
6057
|
Now, let's assume we are the user, the only information received are:
|
5758
6058
|
|
5759
|
-
- The
|
6059
|
+
- The URL of the node API
|
5760
6060
|
- A Bearer token
|
5761
6061
|
- A file `id` for which we have access
|
5762
6062
|
|
@@ -5775,18 +6075,17 @@ ascli node -N --url=... --password="Bearer $(cat bearer.txt)" --root-id=$my_fold
|
|
5775
6075
|
access_key create @json:'{"id":"my_username","secret":"my_password_here","storage":{"type":"local","path":"/"}}'
|
5776
6076
|
access_key delete my_username
|
5777
6077
|
access_key do my_ak_name browse /
|
5778
|
-
access_key do my_ak_name delete /
|
5779
|
-
access_key do my_ak_name delete
|
5780
|
-
access_key do my_ak_name download
|
6078
|
+
access_key do my_ak_name delete /test_nd_ak2
|
6079
|
+
access_key do my_ak_name delete test_nd_ak3
|
6080
|
+
access_key do my_ak_name download test_nd_ak3 --to-folder=.
|
5781
6081
|
access_key do my_ak_name find my_test_folder
|
5782
6082
|
access_key do my_ak_name find my_test_folder @ruby:'->(f){f["name"].end_with?(".jpg")}'
|
5783
|
-
access_key do my_ak_name
|
5784
|
-
access_key do my_ak_name mkdir /folder1
|
6083
|
+
access_key do my_ak_name mkdir /tst_nd_ak
|
5785
6084
|
access_key do my_ak_name node_info /
|
5786
|
-
access_key do my_ak_name rename /
|
6085
|
+
access_key do my_ak_name rename /tst_nd_ak test_nd_ak2
|
5787
6086
|
access_key do my_ak_name show %id:1
|
5788
|
-
access_key do my_ak_name show /
|
5789
|
-
access_key do my_ak_name upload 'faux:///
|
6087
|
+
access_key do my_ak_name show /test_nd_ak3
|
6088
|
+
access_key do my_ak_name upload 'faux:///test_nd_ak3?100k' --default-ports=no
|
5790
6089
|
access_key do self permission %id:root_id create @json:'{"access_type":"user","access_id":"666"}'
|
5791
6090
|
access_key do self show / --fields=id --output=root_id
|
5792
6091
|
access_key list
|
@@ -5804,7 +6103,7 @@ basic_token
|
|
5804
6103
|
bearer_token @file:my_private_key @json:'{"user_id":"666"}' --output=bearer_666
|
5805
6104
|
browse / --log-level=trace2
|
5806
6105
|
central file list
|
5807
|
-
central file modify --validator=1
|
6106
|
+
central file modify --validator=1 @json:'{"files":[]}'
|
5808
6107
|
central session list
|
5809
6108
|
delete @list:,my_upload_folder/a_folder,my_upload_folder/tdlink,my_upload_folder/a_file
|
5810
6109
|
delete my_upload_folder/test_file.bin
|
@@ -5825,7 +6124,7 @@ slash
|
|
5825
6124
|
space /
|
5826
6125
|
ssync bandwidth %name:my_node_sync
|
5827
6126
|
ssync counters %name:my_node_sync
|
5828
|
-
ssync create @json:'{"configuration":{"name":"my_node_sync","local":{"path":"
|
6127
|
+
ssync create @json:'{"configuration":{"name":"my_node_sync","local":{"path":"my_local_path_real"},"remote":{"host":"my_host","port":my_port,"user":"my_username","pass":"my_password_here","path":"my_remote_path"}}}'
|
5829
6128
|
ssync delete %name:my_node_sync
|
5830
6129
|
ssync files %name:my_node_sync
|
5831
6130
|
ssync list
|
@@ -5839,7 +6138,9 @@ sync admin status --sync-info=@json:'{"name":"my_node_sync2","reset":true,"direc
|
|
5839
6138
|
sync admin status --sync-info=@json:'{"sessions":[{"name":"my_node_sync1","direction":"pull","local_dir":"/data/local_sync","remote_dir":"/aspera-test-dir-tiny","reset":true}]}'
|
5840
6139
|
sync start --sync-info=@json:'{"name":"my_node_sync1","reset":true,"quiet":false,"direction":"pull","local":{"path":"/data/local_sync"},"remote":{"path":"/aspera-test-dir-tiny"}}'
|
5841
6140
|
sync start --sync-info=@json:'{"name":"my_node_sync2","reset":true,"direction":"pull","local":{"path":"/data/local_sync"},"remote":{"path":"/aspera-test-dir-tiny"}}'
|
6141
|
+
transfer list --once-only=yes
|
5842
6142
|
transfer list --query=@json:'{"active_only":true}'
|
6143
|
+
transfer list --query=@json:'{"reset":true}' --once-only=yes
|
5843
6144
|
transfer sessions
|
5844
6145
|
transport
|
5845
6146
|
upload --to-folder=my_upload_folder --sources=@ts --ts=@json:'{"paths":[{"source":"/aspera-test-dir-small/10MB.2"}],"precalculate_job_size":true}' --transfer=node --transfer-info=@json:'{"url":"https://node.example.com/path@","username":"my_username","password":"my_password_here"}'
|
@@ -5928,16 +6229,16 @@ Activation is in two steps:
|
|
5928
6229
|
- Click on `Create` Button
|
5929
6230
|
- Take note of Client Id (and Client Secret, but not used in current version)
|
5930
6231
|
|
5931
|
-
- The user
|
6232
|
+
- The user will authenticate with a private key and set the public key in his faspex 5 profile.
|
5932
6233
|
|
6234
|
+
**Note:** If you don't have a private key refer to section [Private Key](#private-key) to generate one.
|
6235
|
+
|
5933
6236
|
This operation is done by each user using the CLI.
|
5934
6237
|
|
5935
6238
|
- As user, click on the user logo, left to the app switcher on top right.
|
5936
6239
|
- Select `Account Settings`
|
5937
6240
|
- on the bottom in the text field: `Public key in PEM format` paste the **public** key corresponding to the private key used by the user.
|
5938
6241
|
|
5939
|
-
**Note:** If you don't have any refer to section [Private Key](#private-key)
|
5940
|
-
|
5941
6242
|
Then use these options:
|
5942
6243
|
|
5943
6244
|
```text
|
@@ -6007,12 +6308,12 @@ admin contacts list
|
|
6007
6308
|
admin distribution_lists create @json:'{"name":"test4","contacts":[{"name":"john@example.com"}]}'
|
6008
6309
|
admin distribution_lists delete %name:test4
|
6009
6310
|
admin distribution_lists list --query=@json:'{"type":"global"}'
|
6010
|
-
admin event app
|
6311
|
+
admin event app --query=@json:'{"max":20}'
|
6011
6312
|
admin event web
|
6012
6313
|
admin jobs list --query=@json:'{"job_type":"email","status":"failed"}' --fields=id,error_desc
|
6013
6314
|
admin metadata_profiles list
|
6014
6315
|
admin node list
|
6015
|
-
admin oauth_clients list
|
6316
|
+
admin oauth_clients list --query=@json:'[["client_types[]","public"]]'
|
6016
6317
|
admin registrations list
|
6017
6318
|
admin saml_configs list
|
6018
6319
|
admin shared_inboxes invite %name:my_shared_box_name johnny@example.com
|
@@ -6048,7 +6349,7 @@ packages show --box=my_shared_box_name package_box_id1
|
|
6048
6349
|
packages show --box=my_workgroup --group-type=workgroups workgroup_package_id1
|
6049
6350
|
packages show f5_p31
|
6050
6351
|
packages status f5_p31
|
6051
|
-
postprocessing --pid-file=pid_f5_postproc @json:'{"url":"
|
6352
|
+
postprocessing --pid-file=pid_f5_postproc @json:'{"url":"http://localhost:8088/asclihook","processing":{"script_folder":""}}' &
|
6052
6353
|
shared browse %name:my_src
|
6053
6354
|
shared list
|
6054
6355
|
shared_folders browse %name:my_shared_folder_name
|
@@ -6085,13 +6386,23 @@ To select another inbox, use option `box` with one of the following values:
|
|
6085
6386
|
|
6086
6387
|
### Faspex 5: Send a package
|
6087
6388
|
|
6088
|
-
|
6389
|
+
A package can be sent with the command:
|
6390
|
+
|
6391
|
+
```bash
|
6392
|
+
ascli faspex5 packages send [extended value: Hash with package info ] [files...]
|
6393
|
+
```
|
6089
6394
|
|
6090
|
-
The
|
6395
|
+
The `Hash` creation **Command Parameter** provided to command corresponds to the Faspex 5 API: `POST /packages` (refer to the API reference for a full list of parameters, or look at request in browser).
|
6091
6396
|
|
6092
6397
|
Required fields are `title` and `recipients`.
|
6093
6398
|
|
6094
|
-
Example
|
6399
|
+
Example (assuming a default preset is created for the connection information):
|
6400
|
+
|
6401
|
+
```bash
|
6402
|
+
ascli faspex5 packages send @json:'{"title":"some title","recipients":["user@example.com"]}' mybygfile1
|
6403
|
+
```
|
6404
|
+
|
6405
|
+
Longer example for the ayload of `@json:`:
|
6095
6406
|
|
6096
6407
|
```json
|
6097
6408
|
{"title":"some title","recipients":[{"recipient_type":"user","name":"user@example.com"}]}
|
@@ -6175,7 +6486,7 @@ To list the content of a package, use command `faspex5 packages browse /`.
|
|
6175
6486
|
|
6176
6487
|
Option `query` is available.
|
6177
6488
|
|
6178
|
-
To list recursively add option `--query=@json:{"recursive":true}`.
|
6489
|
+
To list recursively add option `--query=@json:'{"recursive":true}'`.
|
6179
6490
|
|
6180
6491
|
> **Note:** Option `recursive` makes recursive API calls, so it can take a long time on large packages.
|
6181
6492
|
|
@@ -6205,26 +6516,26 @@ To keep the content encrypted, use option: `--ts=@json:'{"content_protection":nu
|
|
6205
6516
|
If you are a regular user, to list work groups you belong to:
|
6206
6517
|
|
6207
6518
|
```bash
|
6208
|
-
ascli faspex5 admin
|
6519
|
+
ascli faspex5 admin workgroup list
|
6209
6520
|
```
|
6210
6521
|
|
6211
6522
|
If you are admin or manager, add option: `--query=@json:'{"all":true}'`, this will list items you manage, even if you do not belong to them.
|
6212
6523
|
Example:
|
6213
6524
|
|
6214
6525
|
```bash
|
6215
|
-
ascli faspex5 admin
|
6526
|
+
ascli faspex5 admin shared list --query=@json:'{"all":true}' --fields=id,name
|
6216
6527
|
```
|
6217
6528
|
|
6218
6529
|
Shared inbox members can also be listed, added, removed, and external users can be invited to a shared inbox.
|
6219
6530
|
|
6220
6531
|
```bash
|
6221
|
-
ascli faspex5 admin
|
6532
|
+
ascli faspex5 admin shared_inboxes invite '%name:the shared inbox' john@example.com
|
6222
6533
|
```
|
6223
6534
|
|
6224
6535
|
It is equivalent to:
|
6225
6536
|
|
6226
6537
|
```bash
|
6227
|
-
ascli faspex5 admin
|
6538
|
+
ascli faspex5 admin shared_inboxes invite '%name:the shared inbox' @json:'{"email_address":"john@example.com"}'
|
6228
6539
|
```
|
6229
6540
|
|
6230
6541
|
Other payload parameters are possible for `invite` in this last `Hash` **Command Parameter**:
|
@@ -6236,27 +6547,27 @@ Other payload parameters are possible for `invite` in this last `Hash` **Command
|
|
6236
6547
|
### Faspex 5: Create Metadata profile
|
6237
6548
|
|
6238
6549
|
```bash
|
6239
|
-
ascli faspex5 admin
|
6550
|
+
ascli faspex5 admin metadata_profiles create @json:'{"name":"the profile","default":false,"title":{"max_length":200,"illegal_chars":[]},"note":{"max_length":400,"illegal_chars":[],"enabled":false},"fields":[{"ordering":0,"name":"field1","type":"text_area","require":true,"illegal_chars":[],"max_length":100},{"ordering":1,"name":"fff2","type":"option_list","require":false,"choices":["opt1","opt2"]}]}'
|
6240
6551
|
```
|
6241
6552
|
|
6242
6553
|
### Faspex 5: Create a Shared inbox with specific metadata profile
|
6243
6554
|
|
6244
6555
|
```bash
|
6245
|
-
ascli faspex5 admin
|
6556
|
+
ascli faspex5 admin shared create @json:'{"name":"the shared inbox","metadata_profile_id":1}'
|
6246
6557
|
```
|
6247
6558
|
|
6248
6559
|
### Faspex 5: List content in Shared folder and send package from remote source
|
6249
6560
|
|
6250
6561
|
```bash
|
6251
|
-
ascli faspex5 shared_folders list
|
6562
|
+
ascli faspex5 shared_folders list --fields=id,name
|
6252
6563
|
```
|
6253
6564
|
|
6254
6565
|
```markdown
|
6255
|
-
|
6256
|
-
| id | name |
|
6257
|
-
|
6258
|
-
| 3 | partages |
|
6259
|
-
|
6566
|
+
+----+----------+
|
6567
|
+
| id | name |
|
6568
|
+
+----+----------+
|
6569
|
+
| 3 | partages |
|
6570
|
+
+----+----------+
|
6260
6571
|
```
|
6261
6572
|
|
6262
6573
|
```bash
|
@@ -6289,19 +6600,23 @@ There are two types of invitations of package submission: public or private.
|
|
6289
6600
|
|
6290
6601
|
Public invitations are for external users, provide just the email address.
|
6291
6602
|
|
6603
|
+
```bash
|
6604
|
+
ascli faspex5 invitations create @json:'{"email_address":"john@example.com"}' --fields=access_url
|
6605
|
+
```
|
6606
|
+
|
6292
6607
|
Private invitations are for internal users, provide the user or shared inbox identifier through field `recipient_name`.
|
6293
6608
|
|
6294
6609
|
### Faspex 5: Cleanup packages
|
6295
6610
|
|
6296
6611
|
> **Note:** Operation requires admin level.
|
6297
6612
|
|
6298
|
-
|
6613
|
+
The default automated cleanup period can be displayed with:
|
6299
6614
|
|
6300
6615
|
```bash
|
6301
6616
|
ascli faspex5 admin configuration show --fields=days_before_deleting_package_records
|
6302
6617
|
```
|
6303
6618
|
|
6304
|
-
This parameter can
|
6619
|
+
This parameter can be modified with:
|
6305
6620
|
|
6306
6621
|
```bash
|
6307
6622
|
ascli faspex5 admin configuration modify @json:'{"days_before_deleting_package_records":30}'
|
@@ -6313,6 +6628,8 @@ To start package purge, i.e. permanently remove packages marked for deletion old
|
|
6313
6628
|
ascli faspex5 admin clean_deleted
|
6314
6629
|
```
|
6315
6630
|
|
6631
|
+
> **Note:** The expiration perid taken by default is the one from `admin configuration show`. To use a different period than the default, specify it on command line with: `@json:'{"days_before_deleting_package_records":15}'`
|
6632
|
+
|
6316
6633
|
To delete all packages, one can use the following command:
|
6317
6634
|
|
6318
6635
|
```bash
|
@@ -6320,12 +6637,32 @@ ascli faspex5 packages list --box=ALL --format=yaml --fields=id | ascli faspex5
|
|
6320
6637
|
```
|
6321
6638
|
|
6322
6639
|
> **Note:** Above command will mark all packages for deletion, and will be permanently removed after the configured period (`clean_deleted` command).
|
6323
|
-
> It is possible to add a filter to the list command to only delete packages matching some criteria, e.g. using `--select=@ruby
|
6640
|
+
> It is possible to add a filter to the list command to only delete packages matching some criteria, e.g. using `--select=@ruby:'->(p){...}'` on `packages list`.
|
6641
|
+
|
6642
|
+
### Faspex 5: Admin: Unlock user
|
6643
|
+
|
6644
|
+
To unlock a user, you can de-activate and then re-activate the user:
|
6645
|
+
|
6646
|
+
```bash
|
6647
|
+
ascli faspex5 admin accounts modify %name:some.user@example.com @json:'{"account_activated":false}'
|
6648
|
+
```
|
6649
|
+
|
6650
|
+
```bash
|
6651
|
+
ascli faspex5 admin accounts modify %name:some.user@example.com @json:'{"account_activated":true}'
|
6652
|
+
```
|
6653
|
+
|
6654
|
+
> **Note:** here we use the convenient percent selector, but the numerical if can be used as well.
|
6655
|
+
|
6656
|
+
To send a password reset link to a user, use command `reset_password` on the `account`.
|
6324
6657
|
|
6325
6658
|
### Faspex 5: Faspex 4-style postprocessing
|
6326
6659
|
|
6327
|
-
|
6328
|
-
It implements Faspex 5 web hooks
|
6660
|
+
The command command `ascli faspex5 postprocessing` emulates Faspex 4 postprocessing script execution in Faspex 5.
|
6661
|
+
It implements Faspex 5 web hooks and calls a script with the same environment variables as set by Faspex 4.
|
6662
|
+
Environment variables at set to the values provided by the web hook which are the same as Faspex 4 postprocessing.
|
6663
|
+
|
6664
|
+
It allows to quickly migrate workflows to Faspex 5 while preserving scripts.
|
6665
|
+
Nevertheless, on long term, a native approach shall be considered, such as using Aspera Orchestrator or other workflow engine.
|
6329
6666
|
|
6330
6667
|
It is invoked like this:
|
6331
6668
|
|
@@ -6333,43 +6670,71 @@ It is invoked like this:
|
|
6333
6670
|
ascli faspex5 postprocessing @json:'{"url":"http://localhost:8080/processing"}'
|
6334
6671
|
```
|
6335
6672
|
|
6336
|
-
The following parameters are supported
|
6673
|
+
The following parameters are supported in the extended value `Hash`:
|
6337
6674
|
|
6338
|
-
| parameter | type
|
6339
|
-
|
6340
|
-
| url |
|
6341
|
-
| certificate |
|
6342
|
-
| certificate.key |
|
6343
|
-
| certificate.cert |
|
6344
|
-
| certificate.chain |
|
6345
|
-
| processing |
|
6346
|
-
| processing.script_folder |
|
6347
|
-
| processing.fail_on_error |
|
6348
|
-
| processing.timeout_seconds |
|
6675
|
+
| parameter | type | default | description |
|
6676
|
+
|----------------------------|----------|---------|-----------------------------------------------------|
|
6677
|
+
| url | `String` | `http://localhost:8080` | Base URL on which requests are listened, a path can be provided. | <!-- markdownlint-disable-line -->
|
6678
|
+
| certificate | `Hash` | nil | Certificate information (if URL is HTTPS) |
|
6679
|
+
| certificate.key | `String` | nil | Path to private key file |
|
6680
|
+
| certificate.cert | `String` | nil | Path to certificate |
|
6681
|
+
| certificate.chain | `String` | nil | Path to certificate chain |
|
6682
|
+
| processing | `Hash` | nil | Behavior of post processing |
|
6683
|
+
| processing.script_folder | `String` | . | Prefix added to script path |
|
6684
|
+
| processing.fail_on_error | `Bool` | false | Fail if true and process exits with non zero code |
|
6685
|
+
| processing.timeout_seconds | `Integer`| 60 | Max. execution time before script is killed |
|
6349
6686
|
|
6350
|
-
Parameter `url` defines:
|
6687
|
+
Parameter `url` (base URL) defines:
|
6351
6688
|
|
6352
6689
|
- If `http` or `https` is used
|
6353
|
-
- The local port number
|
6354
|
-
- The **base path**, i.e. the path under which requests are received.
|
6690
|
+
- The local port number (default 443 for HTTPS, 80 for HTTP)
|
6691
|
+
- The **base path**, i.e. the path under which requests are received, if a reverse proxy is used this can be used to route.
|
6355
6692
|
|
6356
6693
|
When a request is received the following happens:
|
6357
6694
|
|
6358
|
-
-
|
6359
|
-
- It removes the **base path**
|
6695
|
+
- `ascli` gets the path of the URL called
|
6696
|
+
- It removes the **base path** of base URL.
|
6360
6697
|
- It prepends it with the value of `script_folder`
|
6361
6698
|
- It executes the script
|
6362
6699
|
- Upon success, a success code is returned
|
6363
6700
|
|
6364
|
-
|
6701
|
+
For example:
|
6365
6702
|
|
6366
|
-
|
6703
|
+
The base URL is defined as: `http://localhost:8080/processing`.
|
6704
|
+
The parameter `script_folder` is set to `/opt/scripts`
|
6367
6705
|
|
6368
|
-
|
6706
|
+
In Faspex 5, the URL of the webhook endpoint shall be reachable from within Faspex containers.
|
6707
|
+
For example, if `ascli` in running in the base host, the URL hostname shall not be localhost, as this refers to the local address inside Faspex container.
|
6708
|
+
Instead, one can specify the IP address of the host or `host.containers.internal`.
|
6369
6709
|
|
6370
|
-
|
6710
|
+
**Webhook endpoint URI** : `http://host.containers.internal:8080/processing/script1.sh`
|
6371
6711
|
|
6372
|
-
|
6712
|
+
Then the postprocessing script executed will be `/opt/scripts/script1.sh`.
|
6713
|
+
|
6714
|
+
### Faspex 5: Faspex 4 Gateway
|
6715
|
+
|
6716
|
+
> **Note:** This is not a feature for production. It's provided for testing only.
|
6717
|
+
|
6718
|
+
For legacy faspex client applications that use the `send` API (only) of Faspex v4, the command `gateway` provides the capability to present an API compatible with Faspex 4, and it will call the Faspex 5 API.
|
6719
|
+
|
6720
|
+
It takes a single argument which is the URL at which the gateway will be located (locally):
|
6721
|
+
|
6722
|
+
```bash
|
6723
|
+
ascli faspex5 gateway https://localhost:12345/aspera/faspex
|
6724
|
+
```
|
6725
|
+
|
6726
|
+
There are many limitations:
|
6727
|
+
|
6728
|
+
- It's only to emulate the Faspex 4 `send` API (send package)
|
6729
|
+
- No support for remote sources, only for an actual file transfer by the client
|
6730
|
+
- The client must use the transfer spec returned by the API (not faspe: URL)
|
6731
|
+
- tags returned in transfer spec must be used in transfer
|
6732
|
+
- only a single authentication is possible (per gateway) on Faspex5
|
6733
|
+
- no authentication of F4 side (ignored)
|
6734
|
+
|
6735
|
+
Behavior: The API client calls the Faspex 4 API on the gateway, then the gateway transforms this into a Faspex5 API call, which returns a transfer spec, which is returned to the calling client. The calling client uses this to start a transfer to HSTS which is actually managed by Faspex 5.
|
6736
|
+
|
6737
|
+
### Faspex 5: Get Bearer token to use API
|
6373
6738
|
|
6374
6739
|
If a command is missing, then it is still possible to execute command by calling directly the API on the command line using `curl`:
|
6375
6740
|
|
@@ -6379,6 +6744,8 @@ curl -H "Authorization: $(ascli ascli bearer)" https://faspex5.example.com/asper
|
|
6379
6744
|
|
6380
6745
|
## Plugin: `faspex`: IBM Aspera Faspex v4
|
6381
6746
|
|
6747
|
+
> **Note:** Faspex v4 is end of support since Sept. 30th, 2024. So this plugin for faspex v4 is deprecated. If you still need to use Faspex4, then use `ascli` version 4.19.0 or earlier.
|
6748
|
+
>
|
6382
6749
|
> **Note:** For full details on Faspex API, refer to: [Reference on Developer Site](https://developer.ibm.com/apis/catalog/?search=faspex)
|
6383
6750
|
|
6384
6751
|
This plugin uses APIs versions 3 Faspex v4.
|
@@ -6559,7 +6926,7 @@ package receive f4_prs2 --to-folder=. --box=sent
|
|
6559
6926
|
package send --delivery-info=@json:'{"title":"$(notdir test) PACKAGE_TITLE_BASE","recipients":["*my_dbx"]}' test_file.bin
|
6560
6927
|
package send --delivery-info=@json:'{"title":"$(notdir test) PACKAGE_TITLE_BASE","recipients":["*my_wkg"]}' test_file.bin
|
6561
6928
|
package send --delivery-info=@json:'{"title":"$(notdir test) PACKAGE_TITLE_BASE","recipients":["my_email_internal","my_username"]}' test_file.bin
|
6562
|
-
package send --delivery-info=@json:'{"title":"$(notdir test) PACKAGE_TITLE_BASE","recipients":["my_email_internal"]}' --
|
6929
|
+
package send --delivery-info=@json:'{"title":"$(notdir test) PACKAGE_TITLE_BASE","recipients":["my_email_internal"]}' --remote-source=%name:my_src sample_source.txt
|
6563
6930
|
package send --link=https://app.example.com/send_to_dropbox_path --delivery-info=@json:'{"title":"$(notdir test) PACKAGE_TITLE_BASE"}' test_file.bin
|
6564
6931
|
package send --link=https://app.example.com/send_to_user_path --delivery-info=@json:'{"title":"$(notdir test) PACKAGE_TITLE_BASE"}' test_file.bin
|
6565
6932
|
source info %name:my_src --storage=@preset:faspex4_storage
|
@@ -6603,12 +6970,12 @@ To figure out the entities payload, for example for creation, refer to the API d
|
|
6603
6970
|
admin group all list
|
6604
6971
|
admin node list
|
6605
6972
|
admin share list --fields=DEF,-status,status_message
|
6606
|
-
admin share user_permissions
|
6973
|
+
admin share user_permissions 3 list
|
6607
6974
|
admin user all app_authorizations 1 modify @json:'{"app_login":true}'
|
6608
6975
|
admin user all app_authorizations 1 show
|
6609
6976
|
admin user all list
|
6610
6977
|
admin user all share_permissions 1 list
|
6611
|
-
admin user all share_permissions 1 show
|
6978
|
+
admin user all share_permissions 1 show 3
|
6612
6979
|
admin user ldap add the_name
|
6613
6980
|
admin user local list
|
6614
6981
|
admin user saml import @json:'{"id":"the_id","name_id":"the_name"}'
|
@@ -6616,9 +6983,10 @@ files browse /
|
|
6616
6983
|
files delete my_share1/new_folder
|
6617
6984
|
files delete my_share1/test_file.bin
|
6618
6985
|
files download --to-folder=. my_share1/test_file.bin
|
6619
|
-
files download --to-folder=. my_share1/test_file.bin --transfer=httpgw --transfer-info=@json:'{"url":"https://tst.example.com/path@"}'
|
6986
|
+
files download --to-folder=. my_share1/test_file.bin my_share1/test_file.bin --transfer=httpgw --transfer-info=@json:'{"url":"https://tst.example.com/path@"}'
|
6620
6987
|
files mkdir my_share1/new_folder
|
6621
6988
|
files upload --to-folder=https://shares.share1 'faux:///testfile?1m' --transfer=httpgw --transfer-info=@json:'{"url":"my_example.com/path@","synchronous":true,"api_version":"v1","upload_chunk_size":100000}'
|
6989
|
+
files upload --to-folder=https://shares.share1 sendfolder --transfer=httpgw --transfer-info=@json:'{"url":"my_example.com/path@","synchronous":true,"api_version":"v1","upload_chunk_size":100000}'
|
6622
6990
|
files upload --to-folder=my_share1 test_file.bin
|
6623
6991
|
files upload --to-folder=my_share1 test_file.bin --transfer=httpgw --transfer-info=@json:'{"url":"https://tst.example.com/path@"}'
|
6624
6992
|
health
|
@@ -6673,7 +7041,7 @@ If you don't have credentials but have access to the IBM Cloud console, then use
|
|
6673
7041
|
If you have those parameters already, then following options shall be provided:
|
6674
7042
|
|
6675
7043
|
- `bucket` bucket name
|
6676
|
-
- `endpoint` storage endpoint
|
7044
|
+
- `endpoint` storage endpoint URL, e.g. `https://s3.hkg02.cloud-object-storage.appdomain.cloud`
|
6677
7045
|
- `apikey` API Key
|
6678
7046
|
- `crn` resource instance id
|
6679
7047
|
|
@@ -6684,7 +7052,7 @@ ascli config preset update mycos --bucket=mybucket --endpoint=https://s3.us-east
|
|
6684
7052
|
ascli config preset set default cos mycos
|
6685
7053
|
```
|
6686
7054
|
|
6687
|
-
Then, jump to the transfer example.
|
7055
|
+
Then, jump to the [transfer example](#operations-transfers).
|
6688
7056
|
|
6689
7057
|
### Using service credential file
|
6690
7058
|
|
@@ -6759,14 +7127,13 @@ ascli cos node info
|
|
6759
7127
|
ascli cos node upload 'faux:///sample1G?1g'
|
6760
7128
|
```
|
6761
7129
|
|
6762
|
-
> **Note:** A dummy file `sample1G` of size 2GB is generated using the `faux` PVCL (man `ascp` and section above), but you can, of course, send a real file by specifying a real file instead.
|
7130
|
+
> **Note:** A dummy file `sample1G` of size 2GB is generated using the `faux` PVCL (man `ascp` and section above), but you can, of course, send a real file by specifying a real file path instead.
|
6763
7131
|
|
6764
7132
|
### Cos sample commands
|
6765
7133
|
|
6766
7134
|
> **Note:** Add `ascli cos` in front of the commands:
|
6767
7135
|
|
6768
7136
|
```bash
|
6769
|
-
node access_key show self
|
6770
7137
|
node download test_file.bin --to-folder=.
|
6771
7138
|
node info --bucket=my_bucket --endpoint=my_endpoint --apikey=my_api_key --crn=my_resource_instance_id
|
6772
7139
|
node info --bucket=my_bucket --region=my_region --service-credentials=@json:@file:my_cos_svc_cred
|
@@ -6782,6 +7149,7 @@ node upload test_file.bin
|
|
6782
7149
|
|
6783
7150
|
```bash
|
6784
7151
|
health
|
7152
|
+
info
|
6785
7153
|
```
|
6786
7154
|
|
6787
7155
|
## Plugin: `faspio`: Faspio Gateway
|
@@ -6806,7 +7174,8 @@ Retrieve information on subscription.
|
|
6806
7174
|
> **Note:** Add `ascli alee` in front of the commands:
|
6807
7175
|
|
6808
7176
|
```bash
|
6809
|
-
|
7177
|
+
entitlement
|
7178
|
+
health -N
|
6810
7179
|
```
|
6811
7180
|
|
6812
7181
|
## Plugin: `preview`: Preview generator for AoC
|
@@ -7107,6 +7476,7 @@ If the preview generator does not have access to files on the file system (it is
|
|
7107
7476
|
|
7108
7477
|
```bash
|
7109
7478
|
check --skip-types=office
|
7479
|
+
events --once-only=yes --skip-types=office --log-level=info
|
7110
7480
|
scan --scan-id=1 --skip-types=office --log-level=info --file-access=remote --ts=@json:'{"target_rate_kbps":1000000}'
|
7111
7481
|
scan --skip-types=office --log-level=info
|
7112
7482
|
show --base=test my_docx
|
@@ -7211,7 +7581,7 @@ Interesting `ascp` features are found in its arguments: (see `ascp` manual):
|
|
7211
7581
|
|
7212
7582
|
> **Note:** `ascli` takes transfer parameters exclusively as a [**transfer-spec**](#transfer-specification), with `ts` option.
|
7213
7583
|
>
|
7214
|
-
> **Note:**
|
7584
|
+
> **Note:** Usual native `ascp` arguments are available as standard [**transfer-spec**](#transfer-specification) parameters, but not special or advanced options.
|
7215
7585
|
>
|
7216
7586
|
> **Note:** Only for the [`direct`](#agent-direct) transfer agent (not others, like connect or node), native `ascp` arguments can be provided with parameter `ascp_args` of option `transfer_info` .
|
7217
7587
|
|
@@ -7369,10 +7739,12 @@ A default e-mail template is used, but it can be overridden with option `notify_
|
|
7369
7739
|
|
7370
7740
|
The environment provided contains the following additional variables:
|
7371
7741
|
|
7372
|
-
- `subject`
|
7373
|
-
- `
|
7374
|
-
- `
|
7375
|
-
- `
|
7742
|
+
- `subject` : a default subject including transfer status
|
7743
|
+
- `status` : global status of transfer
|
7744
|
+
- `ts` : the [**transfer-spec**](#transfer-specification) used for the transfer
|
7745
|
+
- `from_email` : email of sender (from `smtp` configuration)
|
7746
|
+
- `from_name` : name of sender (from `smtp` configuration)
|
7747
|
+
- `to` : recipient of the email (from `notify_to`)
|
7376
7748
|
|
7377
7749
|
Example of template:
|
7378
7750
|
|
@@ -7381,7 +7753,7 @@ From: <%=from_name%> <<%=from_email%>>
|
|
7381
7753
|
To: <<%=to%>>
|
7382
7754
|
Subject: <%=subject%>
|
7383
7755
|
|
7384
|
-
Transfer is: <%=
|
7756
|
+
Transfer is: <%=status%>
|
7385
7757
|
```
|
7386
7758
|
|
7387
7759
|
## Tool: `asession`
|
@@ -7465,21 +7837,25 @@ asession -h
|
|
7465
7837
|
USAGE
|
7466
7838
|
asession
|
7467
7839
|
asession -h|--help
|
7468
|
-
asession <session spec extended value>
|
7840
|
+
asession [<session spec extended value>]
|
7469
7841
|
|
7470
7842
|
If no argument is provided, default will be used: @json:@stdin
|
7471
7843
|
-h, --help display this message
|
7472
|
-
<session spec extended value> a dictionary
|
7844
|
+
<session spec extended value> a dictionary (Hash)
|
7473
7845
|
The value can be either:
|
7474
7846
|
the JSON description itself, e.g. @json:'{"xx":"yy",...}'
|
7475
7847
|
@json:@stdin, if the JSON is provided from stdin
|
7476
7848
|
@json:@file:<path>, if the JSON is provided from a file
|
7477
|
-
|
7849
|
+
The following keys are recognized in session spec:
|
7850
|
+
spec : mandatory, contains the transfer spec
|
7851
|
+
loglevel : modify log level (to stderr)
|
7852
|
+
agent : modify transfer agent parameters, e.g. ascp_args
|
7853
|
+
file_list_folder : location of temporary files
|
7854
|
+
sdk : location of SDK (ascp)
|
7478
7855
|
Asynchronous commands can be provided on STDIN, examples:
|
7479
7856
|
{"type":"START","source":"/aspera-test-dir-tiny/200KB.2"}
|
7480
7857
|
{"type":"START","source":"xx","destination":"yy"}
|
7481
7858
|
{"type":"DONE"}
|
7482
|
-
Note: debug information can be placed on STDERR, using the "loglevel" parameter in session spec (debug=0)
|
7483
7859
|
EXAMPLES
|
7484
7860
|
asession @json:'{"spec":{"remote_host":"demo.asperasoft.com","remote_user":"asperaweb","ssh_port":33001,"remote_password":"demoaspera","direction":"receive","destination_root":"./test.dir","paths":[{"source":"/aspera-test-dir-tiny/200KB.1"}]}}'
|
7485
7861
|
echo '{"spec":{"remote_host":...}}'|asession @json:@stdin
|