-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArguments.json
More file actions
65 lines (65 loc) · 1.8 KB
/
Copy pathArguments.json
File metadata and controls
65 lines (65 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[
{
"name": "backup-name",
"description": "Name of the backup to trigger",
"type": "string",
"key": "--backup-name",
"required": true
},
{
"name": "url",
"description": "HYCU API base URL (can also be set via HYCU_URL environment variable)",
"type": "string",
"key": "--url",
"required": false
},
{
"name": "auth-token",
"description": "Authentication token (can also be set via HYCU_AUTH_TOKEN environment variable)",
"type": "string",
"key": "--auth-token",
"required": false
},
{
"name": "auth-file",
"description": "Path to authentication file containing credentials (can also be set via HYCU_AUTH_FILE environment variable)",
"type": "string",
"key": "--auth-file",
"required": false
},
{
"name": "check-interval",
"description": "Interval between status checks in seconds (default: 30)",
"type": "integer",
"key": "--check-interval",
"required": false
},
{
"name": "timeout",
"description": "Maximum monitoring time in seconds (default: 3600)",
"type": "integer",
"key": "--timeout",
"required": false
},
{
"name": "backup-config",
"description": "Path to JSON file containing backup configuration",
"type": "string",
"key": "--backup-config",
"required": false
},
{
"name": "no-monitor",
"description": "Trigger backup without monitoring execution",
"type": "flag",
"key": "--no-monitor",
"required": false
},
{
"name": "verbose",
"description": "Enable verbose logging",
"type": "flag",
"key": "--verbose",
"required": false
}
]