- "Long": "This command can be used to restore one or more objects from GLACIER to normal storage \nor from INTELLIGENT-TIERING Archive Access / Deep Archive Access tier to the Frequent Access tier.\n\nUsage Examples:\n\n rclone backend restore s3:bucket/path/to/object -o priority=PRIORITY -o lifetime=DAYS\n rclone backend restore s3:bucket/path/to/directory -o priority=PRIORITY -o lifetime=DAYS\n rclone backend restore s3:bucket -o priority=PRIORITY -o lifetime=DAYS\n rclone backend restore s3:bucket/path/to/directory -o priority=PRIORITY\n\nThis flag also obeys the filters. Test first with --interactive/-i or --dry-run flags\n\n rclone --interactive backend restore --include \"*.txt\" s3:bucket/path -o priority=Standard -o lifetime=1\n\nAll the objects shown will be marked for restore, then\n\n rclone backend restore --include \"*.txt\" s3:bucket/path -o priority=Standard -o lifetime=1\n\nIt returns a list of status dictionaries with Remote and Status\nkeys. The Status will be OK if it was successful or an error message\nif not.\n\n [\n {\n \"Status\": \"OK\",\n \"Remote\": \"test.txt\"\n },\n {\n \"Status\": \"OK\",\n \"Remote\": \"test/file4.txt\"\n }\n ]\n\n",
0 commit comments