github.com/ncw/rclone@v1.48.1-0.20190724201158-a35aa1360e3e/docs/content/commands/rclone_settier.md (about)

     1  ---
     2  date: 2019-06-20T16:09:42+01:00
     3  title: "rclone settier"
     4  slug: rclone_settier
     5  url: /commands/rclone_settier/
     6  ---
     7  ## rclone settier
     8  
     9  Changes storage class/tier of objects in remote.
    10  
    11  ### Synopsis
    12  
    13  
    14  rclone settier changes storage tier or class at remote if supported.
    15  Few cloud storage services provides different storage classes on objects,
    16  for example AWS S3 and Glacier, Azure Blob storage - Hot, Cool and Archive,
    17  Google Cloud Storage, Regional Storage, Nearline, Coldline etc.
    18  
    19  Note that, certain tier changes make objects not available to access immediately.
    20  For example tiering to archive in azure blob storage makes objects in frozen state,
    21  user can restore by setting tier to Hot/Cool, similarly S3 to Glacier makes object
    22  inaccessible.true
    23  
    24  You can use it to tier single object
    25  
    26      rclone settier Cool remote:path/file
    27  
    28  Or use rclone filters to set tier on only specific files
    29  
    30  	rclone --include "*.txt" settier Hot remote:path/dir
    31  
    32  Or just provide remote directory and all files in directory will be tiered
    33  
    34      rclone settier tier remote:path/dir
    35  
    36  
    37  ```
    38  rclone settier tier remote:path [flags]
    39  ```
    40  
    41  ### Options
    42  
    43  ```
    44    -h, --help   help for settier
    45  ```
    46  
    47  See the [global flags page](/flags/) for global options not listed here.
    48  
    49  ### SEE ALSO
    50  
    51  * [rclone](/commands/rclone/)	 - Show help for rclone commands, flags and backends.
    52