Sha256: d38930f632aa7cb7cb158161bbca06099d36ed348411eba625e3df4fe270a2ac
Contents?: true
Size: 872 Bytes
Versions: 9
Compression:
Stored size: 872 Bytes
Contents
# FileMigration ## Example FileMigration Object ``` { "id": 1, "path": "MyFolder", "dest_path": "MyFolder", "files_moved": 1, "files_total": 1, "operation": "move", "region": "USA", "status": "complete", "log_url": "https://www.example.com/log_file" } ``` * `id` (int64): File migration ID * `path` (string): Source path This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters. * `dest_path` (string): Destination path * `files_moved` (int64): Number of files processed * `files_total` (int64): * `operation` (string): The type of operation * `region` (string): Region * `status` (string): Status * `log_url` (string): Link to download the log file for this migration. --- ## Show File Migration ``` Files::FileMigration.find(id) ``` ### Parameters * `id` (int64): Required - File Migration ID.
Version data entries
9 entries across 9 versions & 1 rubygems