Sha256: 264dd5d757c78a526884c961ad6b02b9298ee05f69a6aa9f60673f8a6c1c5f15
Contents?: true
Size: 904 Bytes
Versions: 109
Compression:
Stored size: 904 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): Total number of files to process * `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
109 entries across 109 versions & 1 rubygems