2019-05-03 08:17:27 +10: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 15:07:25 +10:00
|
|
|
def self.values
|
2016-01-19 17:14:45 +01: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 15:36:38 +02:00
|
|
|
%w[
|
2013-08-23 17:35:01 -04:00
|
|
|
ap-northeast-1
|
2016-01-18 22:50:15 +09:00
|
|
|
ap-northeast-2
|
2021-03-22 17:22:29 +08:00
|
|
|
ap-east-1
|
2017-07-10 15:36:38 +02:00
|
|
|
ap-south-1
|
|
|
|
ap-southeast-1
|
|
|
|
ap-southeast-2
|
2019-03-07 22:42:20 +01:00
|
|
|
ca-central-1
|
2017-07-10 15:36:38 +02:00
|
|
|
cn-north-1
|
2018-08-27 04:22:46 +03:00
|
|
|
cn-northwest-1
|
2017-07-10 15:36:38 +02:00
|
|
|
eu-central-1
|
2019-03-07 22:42:20 +01:00
|
|
|
eu-north-1
|
2021-09-15 17:31:00 +02:00
|
|
|
eu-south-1
|
2017-07-10 15:36:38 +02:00
|
|
|
eu-west-1
|
|
|
|
eu-west-2
|
2018-07-08 10:09:44 +00:00
|
|
|
eu-west-3
|
2016-07-14 22:56:09 +08:00
|
|
|
sa-east-1
|
2017-07-10 15:36:38 +02:00
|
|
|
us-east-1
|
|
|
|
us-east-2
|
2019-03-07 22:42:20 +01:00
|
|
|
us-gov-east-1
|
2017-07-10 15:36:38 +02:00
|
|
|
us-gov-west-1
|
|
|
|
us-west-1
|
|
|
|
us-west-2
|
2016-01-19 17:14:45 +01:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.translate_names?
|
|
|
|
true
|
2013-06-11 14:23:52 -04:00
|
|
|
end
|
2014-10-04 08:37:20 +05:30
|
|
|
|
|
|
|
private_class_method :valid_values
|
2013-06-23 15:07:25 +10:00
|
|
|
end
|