Show / Hide Table of Contents

List published LambdaSharp modules at an origin

The util list-modules command is used to list all published LambdaSharp modules with their version numbers. By default, pre-release versions are not included unless the --include-prerelease command line option is specified.

Arguments

The util list-modules command takes a single argument. The argument can either be the name of an S3 bucket or a module reference. If the argument is a module reference, only versions for the specified module are shown.

lash list-modules lambdasharp

-OR-

lash list-modules LambdaSharp.S3.IO@lambdasharp

Options

--bucket <BUCKETNAME>

List modules from this S3 bucket (default: match argument)

--origin <ORIGIN>

(optional) List modules from this origin (default: match argument)

--include-prerelease

(optional) Show pre-releases versions (default: omit pre-release versions)

--aws-profile|-P <NAME>

(optional) Use a specific AWS profile from the AWS credentials file

--aws-region <NAME>

(optional) Use a specific AWS region (default: read from AWS profile)

--no-ansi

(optional) Disable colored ANSI terminal output

--quiet

(optional) Don't show banner or execution time

--no-beep

(optional) Don't emit beep when finished

Examples

List all modules from the lambdasharp origin

Using PowerShell/Bash:

lash util list-modules lambdasharp

Output:

LambdaSharp CLI (v0.8.0.9) - List all modules at origin

LambdaRobots.HotShotRobot: 1.0, 1.2
LambdaRobots.Server: 1.0, 1.2
LambdaRobots.TargetRobot: 1.0, 1.2
LambdaRobots.YosemiteSamRobot: 1.0, 1.2
LambdaSharp.App.Api: 0.8.1.0
LambdaSharp.App.Bucket: 0.8.1.0
LambdaSharp.Core: 0.7.0, 0.7.0.8, 0.8.0.0, 0.8.0.2, 0.8.0.3, 0.8.0.4, 0.8.0.6, 0.8.1.0
LambdaSharp.S3.IO: 0.7.0, 0.7.0.3, 0.7.0.8, 0.8.0.0, 0.8.0.2, 0.8.0.3, 0.8.0.4, 0.8.0.6, 0.8.1.0
LambdaSharp.S3.Subscriber: 0.7.0, 0.7.0.3, 0.7.0.8, 0.8.0.0, 0.8.0.2, 0.8.0.3, 0.8.0.4, 0.8.0.6, 0.8.1.0
LambdaSharp.Twitter.Query: 0.7.0, 0.7.0.3, 0.7.0.8, 0.8.0.0, 0.8.0.2, 0.8.0.3, 0.8.0.4, 0.8.0.6, 0.8.1.0

Done (finished: 8/31/2020 1:17:52 PM; duration: 00:00:01.7544419)

List all version of the LambdaSharp.S3.IO@lambdasharp module

Using PowerShell/Bash:

lash util list-modules LambdaSharp.S3.IO@lambdasharp

Output:

LambdaSharp CLI (v0.8.0.9) - List all modules at origin

LambdaSharp.S3.IO: 0.7.0, 0.7.0.3, 0.7.0.8, 0.8.0.0, 0.8.0.2, 0.8.0.3, 0.8.0.4, 0.8.0.6, 0.8.1.0

Done (finished: 8/31/2020 1:18:47 PM; duration: 00:00:01.7517330)

List all version of the LambdaSharp.S3.IO@lambdasharp module, including pre-release versions

Using PowerShell/Bash:

lash util list-modules --include-prerelease LambdaSharp.S3.IO@lambdasharp

Output:

LambdaSharp CLI (v0.8.0.9) - List all modules at origin

LambdaSharp.S3.IO: 0.7.0-rc4, 0.7.0-rc5, 0.7.0-rc6, 0.7.0-rc7, 0.7.0, 0.7.0.3, 0.7.0.8, 0.7.1.0-rc1, 0.8.0.0, 0.8.0.2, 0.8.0.3, 0.8.0.4, 0.8.0.6, 0.8.1.0

Done (finished: 8/31/2020 1:19:26 PM; duration: 00:00:01.7473406)
In This Article
Back to top Generated by DocFX