mirror of
https://github.com/rclone/rclone.git
synced 2024-11-29 03:45:25 +01:00
Add us-east-2 (Ohio) and eu-west-2 (London) S3 regions
This commit is contained in:
parent
56f017c60c
commit
3c5c5eeec2
14
s3/s3.go
14
s3/s3.go
@ -69,6 +69,9 @@ func init() {
|
|||||||
Examples: []fs.OptionExample{{
|
Examples: []fs.OptionExample{{
|
||||||
Value: "us-east-1",
|
Value: "us-east-1",
|
||||||
Help: "The default endpoint - a good choice if you are unsure.\nUS Region, Northern Virginia or Pacific Northwest.\nLeave location constraint empty.",
|
Help: "The default endpoint - a good choice if you are unsure.\nUS Region, Northern Virginia or Pacific Northwest.\nLeave location constraint empty.",
|
||||||
|
}, {
|
||||||
|
Value: "us-east-2",
|
||||||
|
Help: "US East (Ohio) Region\nNeeds location constraint us-east-2.",
|
||||||
}, {
|
}, {
|
||||||
Value: "us-west-2",
|
Value: "us-west-2",
|
||||||
Help: "US West (Oregon) Region\nNeeds location constraint us-west-2.",
|
Help: "US West (Oregon) Region\nNeeds location constraint us-west-2.",
|
||||||
@ -80,7 +83,10 @@ func init() {
|
|||||||
Help: "Canada (Central) Region\nNeeds location constraint ca-central-1.",
|
Help: "Canada (Central) Region\nNeeds location constraint ca-central-1.",
|
||||||
}, {
|
}, {
|
||||||
Value: "eu-west-1",
|
Value: "eu-west-1",
|
||||||
Help: "EU (Ireland) Region Region\nNeeds location constraint EU or eu-west-1.",
|
Help: "EU (Ireland) Region\nNeeds location constraint EU or eu-west-1.",
|
||||||
|
}, {
|
||||||
|
Value: "eu-west-2",
|
||||||
|
Help: "EU (London) Region\nNeeds location constraint eu-west-2.",
|
||||||
}, {
|
}, {
|
||||||
Value: "eu-central-1",
|
Value: "eu-central-1",
|
||||||
Help: "EU (Frankfurt) Region\nNeeds location constraint eu-central-1.",
|
Help: "EU (Frankfurt) Region\nNeeds location constraint eu-central-1.",
|
||||||
@ -118,6 +124,9 @@ func init() {
|
|||||||
Examples: []fs.OptionExample{{
|
Examples: []fs.OptionExample{{
|
||||||
Value: "",
|
Value: "",
|
||||||
Help: "Empty for US Region, Northern Virginia or Pacific Northwest.",
|
Help: "Empty for US Region, Northern Virginia or Pacific Northwest.",
|
||||||
|
}, {
|
||||||
|
Value: "us-east-2",
|
||||||
|
Help: "US East (Ohio) Region.",
|
||||||
}, {
|
}, {
|
||||||
Value: "us-west-2",
|
Value: "us-west-2",
|
||||||
Help: "US West (Oregon) Region.",
|
Help: "US West (Oregon) Region.",
|
||||||
@ -130,6 +139,9 @@ func init() {
|
|||||||
}, {
|
}, {
|
||||||
Value: "eu-west-1",
|
Value: "eu-west-1",
|
||||||
Help: "EU (Ireland) Region.",
|
Help: "EU (Ireland) Region.",
|
||||||
|
}, {
|
||||||
|
Value: "eu-west-2",
|
||||||
|
Help: "EU (London) Region.",
|
||||||
}, {
|
}, {
|
||||||
Value: "EU",
|
Value: "EU",
|
||||||
Help: "EU Region.",
|
Help: "EU Region.",
|
||||||
|
Loading…
Reference in New Issue
Block a user