CLI
Snapshots
Download and deploy snapshots for a tenant
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Download and deploy snapshots for a tenant
hotglue snapshots deploy --sourceFolder <path>
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
--sourceFolder | string | Yes | - | Path to the source folder containing snapshots to deploy |
--tenant | string | Yes | default | Target tenant for deployment |
# Deploy snapshots to default tenant
hotglue snapshots deploy --sourceFolder ./snapshots
# Deploy snapshots to specific tenant
hotglue snapshots deploy --sourceFolder ./snapshots --tenant abc123
hotglue snapshots download --downloadTo <path> --overwrite <boolean>
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
--downloadTo | string | Yes | - | Destination path where snapshots will be downloaded |
--overwrite | boolean | No | - | Whether to overwrite existing files at the destination |
--tenant | string | Yes | default | Source tenant to download snapshots from |
# Download snapshots to local directory
hotglue snapshots download --downloadTo ./local-snapshots --overwrite true
# Download snapshots from specific tenant
hotglue snapshots download --downloadTo ./backup --overwrite false --tenant abc1234