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
|
2023-01-09 12:20:10 +00:00
|
|
|
%w[
|
|
|
|
ap-northeast-1
|
|
|
|
ap-northeast-2
|
|
|
|
ap-east-1
|
|
|
|
ap-south-1
|
|
|
|
ap-southeast-1
|
|
|
|
ap-southeast-2
|
|
|
|
ca-central-1
|
|
|
|
cn-north-1
|
|
|
|
cn-northwest-1
|
|
|
|
eu-central-1
|
|
|
|
eu-north-1
|
|
|
|
eu-south-1
|
|
|
|
eu-west-1
|
|
|
|
eu-west-2
|
|
|
|
eu-west-3
|
|
|
|
sa-east-1
|
|
|
|
us-east-1
|
|
|
|
us-east-2
|
|
|
|
us-gov-east-1
|
|
|
|
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
|