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