2013-08-23 16:35:01 -05:00
|
|
|
require_dependency 'enum_site_setting'
|
|
|
|
|
|
|
|
class S3RegionSiteSetting < EnumSiteSetting
|
2017-07-10 08:36:38 -05:00
|
|
|
|
2013-06-11 13:23:52 -05:00
|
|
|
def self.valid_value?(val)
|
2013-08-23 16:35:01 -05:00
|
|
|
valid_values.include? val
|
2013-06-11 13:23:52 -05:00
|
|
|
end
|
|
|
|
|
2013-06-23 00:07:25 -05:00
|
|
|
def self.values
|
2016-01-19 10:14:45 -06:00
|
|
|
@values ||= valid_values.sort.map { |x| { name: "s3.regions.#{x.tr("-", "_")}", value: x } }
|
2013-08-23 16:35:01 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.valid_values
|
2017-07-10 08:36:38 -05:00
|
|
|
[
|
2013-08-23 16:35:01 -05:00
|
|
|
'ap-northeast-1',
|
2016-01-18 07:50:15 -06:00
|
|
|
'ap-northeast-2',
|
2017-07-10 08:36:38 -05:00
|
|
|
'ap-south-1',
|
|
|
|
'ap-southeast-1',
|
|
|
|
'ap-southeast-2',
|
2019-03-07 15:42:20 -06:00
|
|
|
'ca-central-1',
|
2017-07-10 08:36:38 -05:00
|
|
|
'cn-north-1',
|
2018-08-26 20:22:46 -05:00
|
|
|
'cn-northwest-1',
|
2017-07-10 08:36:38 -05:00
|
|
|
'eu-central-1',
|
2019-03-07 15:42:20 -06:00
|
|
|
'eu-north-1',
|
2017-07-10 08:36:38 -05:00
|
|
|
'eu-west-1',
|
|
|
|
'eu-west-2',
|
2018-07-08 05:09:44 -05:00
|
|
|
'eu-west-3',
|
2016-07-14 09:56:09 -05:00
|
|
|
'sa-east-1',
|
2017-07-10 08:36:38 -05:00
|
|
|
'us-east-1',
|
|
|
|
'us-east-2',
|
2019-03-07 15:42:20 -06:00
|
|
|
'us-gov-east-1',
|
2017-07-10 08:36:38 -05:00
|
|
|
'us-gov-west-1',
|
|
|
|
'us-west-1',
|
|
|
|
'us-west-2',
|
2016-01-19 10:14:45 -06:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.translate_names?
|
|
|
|
true
|
2013-06-11 13:23:52 -05:00
|
|
|
end
|
2014-10-03 22:07:20 -05:00
|
|
|
|
|
|
|
private_class_method :valid_values
|
2013-06-23 00:07:25 -05:00
|
|
|
end
|