mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-03-25 09:25:53 +00:00
added Sydney region
This commit is contained in:
parent
b4f30b72b5
commit
443daf1ed0
2 changed files with 11 additions and 0 deletions
|
|
@ -25,6 +25,7 @@
|
|||
+ (S3Region *)usWestOregon;
|
||||
+ (S3Region *)euIreland;
|
||||
+ (S3Region *)asiaPacificSingapore;
|
||||
+ (S3Region *)asiaPacificSydney;
|
||||
+ (S3Region *)asiaPacificTokyo;
|
||||
+ (S3Region *)southAmericaSaoPaulo;
|
||||
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
[ret addObject:[S3Region usWestOregon]];
|
||||
[ret addObject:[S3Region euIreland]];
|
||||
[ret addObject:[S3Region asiaPacificSingapore]];
|
||||
[ret addObject:[S3Region asiaPacificSydney]];
|
||||
[ret addObject:[S3Region asiaPacificTokyo]];
|
||||
[ret addObject:[S3Region southAmericaSaoPaulo]];
|
||||
return ret;
|
||||
|
|
@ -84,6 +85,15 @@
|
|||
dollarsPerGBMonthStandard:.125
|
||||
dollarsPerGBMonthRRS:.093] autorelease];
|
||||
}
|
||||
+ (S3Region *)asiaPacificSydney {
|
||||
return [[[S3Region alloc] initWithBucketNameSuffix:@"-ap-southeast-2"
|
||||
legacyBucketNameSuffix:@"ap-southeast-2"
|
||||
locationConstraint:@"ap-southeast-2"
|
||||
endpoint:@"s3-ap-southeast-2.amazonaws.com"
|
||||
displayName:@"Asia Pacific (Sydney)"
|
||||
dollarsPerGBMonthStandard:.105
|
||||
dollarsPerGBMonthRRS:.084] autorelease];
|
||||
}
|
||||
+ (S3Region *)asiaPacificTokyo {
|
||||
return [[[S3Region alloc] initWithBucketNameSuffix:@"-ap-northeast-1"
|
||||
legacyBucketNameSuffix:@"ap-northeast-1"
|
||||
|
|
|
|||
Loading…
Reference in a new issue