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