Skip to content

iectl iehub artifacts download

download the specified artifact from IEHUB

iectl iehub artifacts download [flags]

Synopsis

This command enables you to download a specific artifact from the Industrial Edge Hub (IE HUB). It provides several flags to customize the download process:

Required

  • --name
    Specifies the name of the artifact you want to download. This is a required flag to identify the artifact.

  • --path
    Defines the directory where the downloaded artifact will be saved. This is required to specify the destination.

Optional

  • --version
    Allows you to download a particular version of the artifact. If omitted, the latest available version will be downloaded.

  • --type
    Adds uniqueness to the artifact selection by specifying its type. Useful when multiple artifacts have the same name, as the combination of name and type uniquely identifies an artifact.

  • --show-progress
    Displays the progress of the download operation. Useful to monitor large downloads.

To discover available artifacts and their details in IE HUB, you can use the iectl iehub artifacts list command. This helps you find the correct artifact name, type, and version before initiating a download.

Options

  -h, --help              help for download
      --name string       name of the artifact to be downloaded
      --path string       path to the directory where the artifact will be stored
      --show-progress     show download progress [optional]
      --type string       artifact type to add uniqueness to --name filter as type and name together makes an artifact unique.
                          only needed when more than one artifacts exists with same name (eg: --type "iem_va_update") [optional]
      --version string    download specific version available of an artifact, if not provided the latest version will be downloaded (eg: --version "0.0.2") [optional]

Options inherited from parent commands

  -o, --output string   output format
  -q, --query string    query on result of object
  -v, --verbose         verbose output

Example

$ iectl iehub artifacts download --path "/home/user/Downloads" --name "Industrial Edge Management Virtual" --type "iem_va_update" --version "2.6.0-20" --show-progress

SEE ALSO