Skip to main content
Version: 4.2.0

version

Applet version lifecycle management

Description

Manages the lifecycle status of applet versions — publishing a built version, deprecating a broken or obsolete one, and renewing (un-deprecating) it.

Usage

sos applet version <subcommand> [options]

Subcommands

publish

Publish an applet version

sos applet version publish [options]

→ See detailed documentation

deprecate

Deprecate an applet version

sos applet version deprecate [options]

→ See detailed documentation

renew

Renew (un-deprecate) an applet version

sos applet version renew [options]

→ See detailed documentation

Examples

# Publish a version
sos applet version publish --applet-uid my-applet-uid --applet-version 1.0.0

# Deprecate a version
sos applet version deprecate --applet-uid my-applet-uid --applet-version 1.0.0

# Renew (un-deprecate) a version
sos applet version renew --applet-uid my-applet-uid --applet-version 1.0.0

Since

2.9.0

Global Options

All commands support the following global options:

OptionAliasDescription
--help-hDisplay help information for any command
--version-vDisplay the installed version of the CLI
--api-url-uOverride the API URL for REST requests
--profileUse a specific profile from ~/.sosrc config

Examples

# Show version
sos --version

# Get help for any command
sos applet --help
sos applet upload --help

# Use custom API endpoint
sos --api-url https://api.example.com applet upload

# Use specific profile
sos --profile production organization list

In this section