public enum Source
| Modifier and Type | Class and Description |
|---|---|
static class |
Source.Companion |
| Enum Constant and Description |
|---|
AUTO
Create instances from most recent backup (local or remote) or fallback to creating from the scratch
if there is no backup available.
|
BACKUP_ANY
Force using backup from any source.
|
BACKUP_LOCAL
Force using local backup (created by task 'instanceBackup').
|
BACKUP_REMOTE
Force using backup available at remote source (available by using 'localInstance.backup.downloadUrl|uploadUrl').
|
SCRATCH
Force creating instances from the scratch.
|
| Modifier and Type | Field and Description |
|---|---|
static Source.Companion |
Companion |
public static Source AUTO
Create instances from most recent backup (local or remote) or fallback to creating from the scratch if there is no backup available.
public static Source SCRATCH
Force creating instances from the scratch.
public static Source BACKUP_ANY
Force using backup from any source.
public static Source BACKUP_REMOTE
Force using backup available at remote source (available by using 'localInstance.backup.downloadUrl|uploadUrl').
public static Source BACKUP_LOCAL
Force using local backup (created by task 'instanceBackup').
public static Source.Companion Companion