@osaas/cli 0.15.4 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/readme.md +21 -24
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osaas/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Open Source Cloud CLI",
|
|
5
5
|
"author": "Eyevinn Technology <work@eyevinn.se>",
|
|
6
6
|
"homepage": "https://www.osaas.io",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "5aa052131d01a8a9f0b88579af09a998ef879cb8"
|
|
41
41
|
}
|
package/readme.md
CHANGED
|
@@ -20,34 +20,31 @@ npm install -g @osaas/cli
|
|
|
20
20
|
Usage: osc [options] [command]
|
|
21
21
|
|
|
22
22
|
Options:
|
|
23
|
-
--
|
|
24
|
-
|
|
23
|
+
-v, --version Output the current version
|
|
24
|
+
--env <environment> Environment to use
|
|
25
|
+
-h, --help display help for command
|
|
25
26
|
|
|
26
27
|
Commands:
|
|
27
28
|
admin
|
|
28
|
-
list <serviceId>
|
|
29
|
-
create [options] <serviceId> <name>
|
|
30
|
-
|
|
31
|
-
|
|
29
|
+
list <serviceId> List all my service instances
|
|
30
|
+
create [options] <serviceId> <name> Create a service instance
|
|
31
|
+
describe <serviceId> <name> Get details for a service instance
|
|
32
|
+
remove <serviceId> <name> Remove a service instance
|
|
33
|
+
logs <serviceId> <name> Get logs for a service instance
|
|
34
|
+
transcode [options] <source> <dest> [packageDestination] Transcode file to ABR fileset and store on S3
|
|
35
|
+
bucket
|
|
36
|
+
encore
|
|
37
|
+
pipeline
|
|
38
|
+
packager [options] <source> <dest> Create streaming package from ABR bundle on S3
|
|
39
|
+
and store on another S3 bucket
|
|
32
40
|
compare
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
% osc help admin
|
|
41
|
-
Usage: osc admin [options] [command]
|
|
42
|
-
|
|
43
|
-
Options:
|
|
44
|
-
-h, --help display help for command
|
|
45
|
-
|
|
46
|
-
Commands:
|
|
47
|
-
gen-pat <tenantId> <username> Generate a personal access token
|
|
48
|
-
list-instances <tenantId> <serviceId> List all instances for a service and tenant
|
|
49
|
-
remove-instance <tenantId> <serviceId> <name> Remove an instance
|
|
50
|
-
help [command] display help for command
|
|
41
|
+
live
|
|
42
|
+
intercom
|
|
43
|
+
transcribe [options] <source> Generate subtitles from video or audio using Open
|
|
44
|
+
AI Whisper
|
|
45
|
+
db
|
|
46
|
+
architect
|
|
47
|
+
help [command] display help for command
|
|
51
48
|
```
|
|
52
49
|
|
|
53
50
|
## Examples
|