aws-partitions 1.645.0 → 1.654.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +47 -0
- data/VERSION +1 -1
- data/lib/aws-partitions/partition.rb +10 -2
- data/lib/aws-partitions/partition_list.rb +50 -0
- data/lib/aws-partitions.rb +21 -1
- data/partitions-metadata.json +101 -0
- data/partitions.json +112 -2
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d6c9f34df93a51bb92fef2cf400ad98cfb792058dfeff4e1cc221e56b1f623a0
|
|
4
|
+
data.tar.gz: e613eafec9e767558ea16a8a16ebe47d9efdad52499eecd2ca352e494ef02742
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6f380f43b6443e5c299a511da87c4fdc65c82f60f36895bf51c6f55c11f24373d9b7f0321c1dbc8c40e2b891f2a6b025d7ea7ac15c51b80a870ee6e86da8e3ee
|
|
7
|
+
data.tar.gz: 9e169bdca516799274ae02fdee52908561d24ff5850e92817673e03aa3512ffc6f9119f6ca67b6566779489887b96bf5f5713388135e4210c7aeee48d65877b6
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,53 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.654.0 (2022-10-31)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
8
|
+
|
|
9
|
+
1.653.0 (2022-10-28)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
13
|
+
|
|
14
|
+
1.652.0 (2022-10-27)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
18
|
+
|
|
19
|
+
1.651.0 (2022-10-25)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
23
|
+
|
|
24
|
+
* Feature - Add a metadata method to `Partition` to supplement endpoint generation in service gems.
|
|
25
|
+
|
|
26
|
+
1.650.0 (2022-10-24)
|
|
27
|
+
------------------
|
|
28
|
+
|
|
29
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
30
|
+
|
|
31
|
+
1.649.0 (2022-10-20)
|
|
32
|
+
------------------
|
|
33
|
+
|
|
34
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
35
|
+
|
|
36
|
+
1.648.0 (2022-10-19)
|
|
37
|
+
------------------
|
|
38
|
+
|
|
39
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
40
|
+
|
|
41
|
+
1.647.0 (2022-10-18)
|
|
42
|
+
------------------
|
|
43
|
+
|
|
44
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
45
|
+
|
|
46
|
+
1.646.0 (2022-10-14)
|
|
47
|
+
------------------
|
|
48
|
+
|
|
49
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
50
|
+
|
|
4
51
|
1.645.0 (2022-10-13)
|
|
5
52
|
------------------
|
|
6
53
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.654.0
|
|
@@ -10,12 +10,20 @@ module Aws
|
|
|
10
10
|
def initialize(options = {})
|
|
11
11
|
@name = options[:name]
|
|
12
12
|
@regions = options[:regions]
|
|
13
|
+
@region_regex = options[:region_regex]
|
|
13
14
|
@services = options[:services]
|
|
15
|
+
@metadata = options[:metadata]
|
|
14
16
|
end
|
|
15
17
|
|
|
16
18
|
# @return [String] The partition name, e.g. "aws", "aws-cn", "aws-us-gov".
|
|
17
19
|
attr_reader :name
|
|
18
20
|
|
|
21
|
+
# @return [String] The regex representing the region format.
|
|
22
|
+
attr_reader :region_regex
|
|
23
|
+
|
|
24
|
+
# @return [Metadata] The metadata for the partition.
|
|
25
|
+
attr_reader :metadata
|
|
26
|
+
|
|
19
27
|
# @param [String] region_name The name of the region, e.g. "us-east-1".
|
|
20
28
|
# @return [Region]
|
|
21
29
|
# @raise [ArgumentError] Raises `ArgumentError` for unknown region name.
|
|
@@ -70,6 +78,7 @@ module Aws
|
|
|
70
78
|
Partition.new(
|
|
71
79
|
name: partition['partition'],
|
|
72
80
|
regions: build_regions(partition),
|
|
81
|
+
region_regex: partition['regionRegex'],
|
|
73
82
|
services: build_services(partition)
|
|
74
83
|
)
|
|
75
84
|
end
|
|
@@ -79,8 +88,7 @@ module Aws
|
|
|
79
88
|
# @param [Hash] partition
|
|
80
89
|
# @return [Hash<String,Region>]
|
|
81
90
|
def build_regions(partition)
|
|
82
|
-
partition['regions'].each_with_object({}) do
|
|
83
|
-
|(region_name, region), regions|
|
|
91
|
+
partition['regions'].each_with_object({}) do |(region_name, region), regions|
|
|
84
92
|
next if region_name == "#{partition['partition']}-global"
|
|
85
93
|
|
|
86
94
|
regions[region_name] = Region.build(
|
|
@@ -42,12 +42,62 @@ module Aws
|
|
|
42
42
|
end
|
|
43
43
|
end
|
|
44
44
|
|
|
45
|
+
# @param [Partition] partition
|
|
46
|
+
# @api private
|
|
47
|
+
def merge_metadata(partitions_metadata)
|
|
48
|
+
partitions_metadata['partitions'].each do |partition_metadata|
|
|
49
|
+
outputs = partition_metadata['outputs']
|
|
50
|
+
|
|
51
|
+
if existing = @partitions[partition_metadata['id']]
|
|
52
|
+
@partitions[partition_metadata['id']] = Partition.new(
|
|
53
|
+
name: existing.name,
|
|
54
|
+
regions: build_metadata_regions(
|
|
55
|
+
partition_metadata['id'],
|
|
56
|
+
partition_metadata['regions'],
|
|
57
|
+
existing),
|
|
58
|
+
region_regex: partition_metadata['regionRegex'],
|
|
59
|
+
services: existing.services.each_with_object({}) do |s, services|
|
|
60
|
+
services[s.name] = s
|
|
61
|
+
end,
|
|
62
|
+
metadata: outputs
|
|
63
|
+
)
|
|
64
|
+
else
|
|
65
|
+
@partitions[partition_metadata['id']] = Partition.new(
|
|
66
|
+
name: partition_metadata['id'],
|
|
67
|
+
regions: build_metadata_regions(
|
|
68
|
+
partition_metadata['id'], partition_metadata['regions']
|
|
69
|
+
),
|
|
70
|
+
region_regex: partition_metadata['regionRegex'],
|
|
71
|
+
services: {},
|
|
72
|
+
metadata: outputs
|
|
73
|
+
)
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
end
|
|
77
|
+
|
|
45
78
|
# Removed all partitions.
|
|
46
79
|
# @api private
|
|
47
80
|
def clear
|
|
48
81
|
@partitions = {}
|
|
49
82
|
end
|
|
50
83
|
|
|
84
|
+
private
|
|
85
|
+
|
|
86
|
+
def build_metadata_regions(partition_name, metadata_regions, existing = nil)
|
|
87
|
+
metadata_regions.each_with_object({}) do |(region_name, region), regions|
|
|
88
|
+
if existing && existing.region?(region_name)
|
|
89
|
+
regions[region_name] = existing.region(region_name)
|
|
90
|
+
else
|
|
91
|
+
regions[region_name] = Region.new(
|
|
92
|
+
name: region_name,
|
|
93
|
+
description: region['description'],
|
|
94
|
+
partition_name: partition_name,
|
|
95
|
+
services: Set.new
|
|
96
|
+
)
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
end
|
|
100
|
+
|
|
51
101
|
class << self
|
|
52
102
|
|
|
53
103
|
# @api private
|
data/lib/aws-partitions.rb
CHANGED
|
@@ -195,6 +195,12 @@ module Aws
|
|
|
195
195
|
end
|
|
196
196
|
end
|
|
197
197
|
|
|
198
|
+
# @param [Hash] partition metadata
|
|
199
|
+
# @api private For Internal use only
|
|
200
|
+
def merge_metadata(partition_metadata)
|
|
201
|
+
default_partition_list.merge_metadata(partition_metadata)
|
|
202
|
+
end
|
|
203
|
+
|
|
198
204
|
# @api private For internal use only.
|
|
199
205
|
def clear
|
|
200
206
|
default_partition_list.clear
|
|
@@ -204,7 +210,11 @@ module Aws
|
|
|
204
210
|
# @return [PartitionList]
|
|
205
211
|
# @api private
|
|
206
212
|
def default_partition_list
|
|
207
|
-
@default_partition_list ||=
|
|
213
|
+
@default_partition_list ||= begin
|
|
214
|
+
partitions = PartitionList.build(defaults)
|
|
215
|
+
partitions.merge_metadata(default_metadata)
|
|
216
|
+
partitions
|
|
217
|
+
end
|
|
208
218
|
end
|
|
209
219
|
|
|
210
220
|
# @return [Hash]
|
|
@@ -217,6 +227,16 @@ module Aws
|
|
|
217
227
|
end
|
|
218
228
|
end
|
|
219
229
|
|
|
230
|
+
# @return [Hash]
|
|
231
|
+
# @api private
|
|
232
|
+
def default_metadata
|
|
233
|
+
@default_metadata ||= begin
|
|
234
|
+
path = File.expand_path('../../partitions-metadata.json', __FILE__)
|
|
235
|
+
defaults = JSON.parse(File.read(path), freeze: true)
|
|
236
|
+
defaults.merge('partitions' => defaults['partitions'].dup)
|
|
237
|
+
end
|
|
238
|
+
end
|
|
239
|
+
|
|
220
240
|
# @return [Hash<String,String>] Returns a map of service module names
|
|
221
241
|
# to their id as used in the endpoints.json document.
|
|
222
242
|
# @api private For internal use only.
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.1",
|
|
3
|
+
"partitions": [
|
|
4
|
+
{
|
|
5
|
+
"id": "aws",
|
|
6
|
+
"regionRegex": "^(us|eu|ap|sa|ca|me|af)-\\w+-\\d+$",
|
|
7
|
+
"regions": {
|
|
8
|
+
"af-south-1": {},
|
|
9
|
+
"af-east-1": {},
|
|
10
|
+
"ap-northeast-1": {},
|
|
11
|
+
"ap-northeast-2": {},
|
|
12
|
+
"ap-northeast-3": {},
|
|
13
|
+
"ap-south-1": {},
|
|
14
|
+
"ap-southeast-1": {},
|
|
15
|
+
"ap-southeast-2": {},
|
|
16
|
+
"ap-southeast-3": {},
|
|
17
|
+
"ca-central-1": {},
|
|
18
|
+
"eu-central-1": {},
|
|
19
|
+
"eu-north-1": {},
|
|
20
|
+
"eu-south-1": {},
|
|
21
|
+
"eu-west-1": {},
|
|
22
|
+
"eu-west-2": {},
|
|
23
|
+
"eu-west-3": {},
|
|
24
|
+
"me-south-1": {},
|
|
25
|
+
"sa-east-1": {},
|
|
26
|
+
"us-east-1": {},
|
|
27
|
+
"us-east-2": {},
|
|
28
|
+
"us-west-1": {},
|
|
29
|
+
"us-west-2": {},
|
|
30
|
+
"aws-global": {}
|
|
31
|
+
},
|
|
32
|
+
"outputs": {
|
|
33
|
+
"name": "aws",
|
|
34
|
+
"dnsSuffix": "amazonaws.com",
|
|
35
|
+
"dualStackDnsSuffix": "api.aws",
|
|
36
|
+
"supportsFIPS": true,
|
|
37
|
+
"supportsDualStack": true
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"id": "aws-us-gov",
|
|
42
|
+
"regionRegex": "^us\\-gov\\-\\w+\\-\\d+$",
|
|
43
|
+
"regions": {
|
|
44
|
+
"us-gov-west-1": {},
|
|
45
|
+
"us-gov-east-1": {},
|
|
46
|
+
"aws-us-gov-global": {}
|
|
47
|
+
},
|
|
48
|
+
"outputs": {
|
|
49
|
+
"name": "aws-us-gov",
|
|
50
|
+
"dnsSuffix": "amazonaws.com",
|
|
51
|
+
"dualStackDnsSuffix": "api.aws",
|
|
52
|
+
"supportsFIPS": true,
|
|
53
|
+
"supportsDualStack": true
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"id": "aws-cn",
|
|
58
|
+
"regionRegex": "^cn\\-\\w+\\-\\d+$",
|
|
59
|
+
"regions": {
|
|
60
|
+
"cn-north-1": {},
|
|
61
|
+
"cn-northwest-1": {},
|
|
62
|
+
"aws-cn-global": {}
|
|
63
|
+
},
|
|
64
|
+
"outputs": {
|
|
65
|
+
"name": "aws-cn",
|
|
66
|
+
"dnsSuffix": "amazonaws.com.cn",
|
|
67
|
+
"dualStackDnsSuffix": "api.amazonwebservices.com.cn",
|
|
68
|
+
"supportsFIPS": true,
|
|
69
|
+
"supportsDualStack": true
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"id": "aws-iso",
|
|
74
|
+
"regionRegex": "^us\\-iso\\-\\w+\\-\\d+$",
|
|
75
|
+
"outputs": {
|
|
76
|
+
"name": "aws-iso",
|
|
77
|
+
"dnsSuffix": "c2s.ic.gov",
|
|
78
|
+
"supportsFIPS": true,
|
|
79
|
+
"supportsDualStack": false,
|
|
80
|
+
"dualStackDnsSuffix": "c2s.ic.gov"
|
|
81
|
+
},
|
|
82
|
+
"regions": {
|
|
83
|
+
"aws-iso-global": {}
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"id": "aws-iso-b",
|
|
88
|
+
"regionRegex": "^us\\-isob\\-\\w+\\-\\d+$",
|
|
89
|
+
"outputs": {
|
|
90
|
+
"name": "aws-iso-b",
|
|
91
|
+
"dnsSuffix": "sc2s.sgov.gov",
|
|
92
|
+
"supportsFIPS": true,
|
|
93
|
+
"supportsDualStack": false,
|
|
94
|
+
"dualStackDnsSuffix": "sc2s.sgov.gov"
|
|
95
|
+
},
|
|
96
|
+
"regions": {
|
|
97
|
+
"aws-iso-b-global": {}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
]
|
|
101
|
+
}
|
data/partitions.json
CHANGED
|
@@ -922,12 +922,24 @@
|
|
|
922
922
|
},
|
|
923
923
|
"hostname" : "api.iotwireless.ap-southeast-2.amazonaws.com"
|
|
924
924
|
},
|
|
925
|
+
"eu-central-1" : {
|
|
926
|
+
"credentialScope" : {
|
|
927
|
+
"region" : "eu-central-1"
|
|
928
|
+
},
|
|
929
|
+
"hostname" : "api.iotwireless.eu-central-1.amazonaws.com"
|
|
930
|
+
},
|
|
925
931
|
"eu-west-1" : {
|
|
926
932
|
"credentialScope" : {
|
|
927
933
|
"region" : "eu-west-1"
|
|
928
934
|
},
|
|
929
935
|
"hostname" : "api.iotwireless.eu-west-1.amazonaws.com"
|
|
930
936
|
},
|
|
937
|
+
"sa-east-1" : {
|
|
938
|
+
"credentialScope" : {
|
|
939
|
+
"region" : "sa-east-1"
|
|
940
|
+
},
|
|
941
|
+
"hostname" : "api.iotwireless.sa-east-1.amazonaws.com"
|
|
942
|
+
},
|
|
931
943
|
"us-east-1" : {
|
|
932
944
|
"credentialScope" : {
|
|
933
945
|
"region" : "us-east-1"
|
|
@@ -1661,6 +1673,7 @@
|
|
|
1661
1673
|
},
|
|
1662
1674
|
"appsync" : {
|
|
1663
1675
|
"endpoints" : {
|
|
1676
|
+
"af-south-1" : { },
|
|
1664
1677
|
"ap-east-1" : { },
|
|
1665
1678
|
"ap-northeast-1" : { },
|
|
1666
1679
|
"ap-northeast-2" : { },
|
|
@@ -1668,6 +1681,7 @@
|
|
|
1668
1681
|
"ap-south-1" : { },
|
|
1669
1682
|
"ap-southeast-1" : { },
|
|
1670
1683
|
"ap-southeast-2" : { },
|
|
1684
|
+
"ap-southeast-3" : { },
|
|
1671
1685
|
"ca-central-1" : { },
|
|
1672
1686
|
"eu-central-1" : { },
|
|
1673
1687
|
"eu-north-1" : { },
|
|
@@ -2188,6 +2202,7 @@
|
|
|
2188
2202
|
"deprecated" : true,
|
|
2189
2203
|
"hostname" : "cloudcontrolapi-fips.us-west-2.amazonaws.com"
|
|
2190
2204
|
},
|
|
2205
|
+
"me-central-1" : { },
|
|
2191
2206
|
"me-south-1" : { },
|
|
2192
2207
|
"sa-east-1" : { },
|
|
2193
2208
|
"us-east-1" : {
|
|
@@ -3494,6 +3509,7 @@
|
|
|
3494
3509
|
"deprecated" : true,
|
|
3495
3510
|
"hostname" : "data.iot-fips.us-west-2.amazonaws.com"
|
|
3496
3511
|
},
|
|
3512
|
+
"me-central-1" : { },
|
|
3497
3513
|
"me-south-1" : { },
|
|
3498
3514
|
"sa-east-1" : { },
|
|
3499
3515
|
"us-east-1" : {
|
|
@@ -5200,6 +5216,13 @@
|
|
|
5200
5216
|
"deprecated" : true,
|
|
5201
5217
|
"hostname" : "elasticfilesystem-fips.eu-west-3.amazonaws.com"
|
|
5202
5218
|
},
|
|
5219
|
+
"fips-me-central-1" : {
|
|
5220
|
+
"credentialScope" : {
|
|
5221
|
+
"region" : "me-central-1"
|
|
5222
|
+
},
|
|
5223
|
+
"deprecated" : true,
|
|
5224
|
+
"hostname" : "elasticfilesystem-fips.me-central-1.amazonaws.com"
|
|
5225
|
+
},
|
|
5203
5226
|
"fips-me-south-1" : {
|
|
5204
5227
|
"credentialScope" : {
|
|
5205
5228
|
"region" : "me-south-1"
|
|
@@ -5242,6 +5265,12 @@
|
|
|
5242
5265
|
"deprecated" : true,
|
|
5243
5266
|
"hostname" : "elasticfilesystem-fips.us-west-2.amazonaws.com"
|
|
5244
5267
|
},
|
|
5268
|
+
"me-central-1" : {
|
|
5269
|
+
"variants" : [ {
|
|
5270
|
+
"hostname" : "elasticfilesystem-fips.me-central-1.amazonaws.com",
|
|
5271
|
+
"tags" : [ "fips" ]
|
|
5272
|
+
} ]
|
|
5273
|
+
},
|
|
5245
5274
|
"me-south-1" : {
|
|
5246
5275
|
"variants" : [ {
|
|
5247
5276
|
"hostname" : "elasticfilesystem-fips.me-south-1.amazonaws.com",
|
|
@@ -6330,9 +6359,15 @@
|
|
|
6330
6359
|
},
|
|
6331
6360
|
"fsx" : {
|
|
6332
6361
|
"endpoints" : {
|
|
6362
|
+
"af-south-1" : { },
|
|
6363
|
+
"ap-east-1" : { },
|
|
6333
6364
|
"ap-northeast-1" : { },
|
|
6365
|
+
"ap-northeast-2" : { },
|
|
6366
|
+
"ap-northeast-3" : { },
|
|
6367
|
+
"ap-south-1" : { },
|
|
6334
6368
|
"ap-southeast-1" : { },
|
|
6335
6369
|
"ap-southeast-2" : { },
|
|
6370
|
+
"ap-southeast-3" : { },
|
|
6336
6371
|
"ca-central-1" : {
|
|
6337
6372
|
"variants" : [ {
|
|
6338
6373
|
"hostname" : "fsx-fips.ca-central-1.amazonaws.com",
|
|
@@ -6340,8 +6375,11 @@
|
|
|
6340
6375
|
} ]
|
|
6341
6376
|
},
|
|
6342
6377
|
"eu-central-1" : { },
|
|
6378
|
+
"eu-north-1" : { },
|
|
6379
|
+
"eu-south-1" : { },
|
|
6343
6380
|
"eu-west-1" : { },
|
|
6344
6381
|
"eu-west-2" : { },
|
|
6382
|
+
"eu-west-3" : { },
|
|
6345
6383
|
"fips-ca-central-1" : {
|
|
6346
6384
|
"credentialScope" : {
|
|
6347
6385
|
"region" : "ca-central-1"
|
|
@@ -6370,6 +6408,13 @@
|
|
|
6370
6408
|
"deprecated" : true,
|
|
6371
6409
|
"hostname" : "fsx-fips.us-east-2.amazonaws.com"
|
|
6372
6410
|
},
|
|
6411
|
+
"fips-prod-us-west-1" : {
|
|
6412
|
+
"credentialScope" : {
|
|
6413
|
+
"region" : "us-west-1"
|
|
6414
|
+
},
|
|
6415
|
+
"deprecated" : true,
|
|
6416
|
+
"hostname" : "fsx-fips.us-west-1.amazonaws.com"
|
|
6417
|
+
},
|
|
6373
6418
|
"fips-prod-us-west-2" : {
|
|
6374
6419
|
"credentialScope" : {
|
|
6375
6420
|
"region" : "us-west-2"
|
|
@@ -6391,6 +6436,13 @@
|
|
|
6391
6436
|
"deprecated" : true,
|
|
6392
6437
|
"hostname" : "fsx-fips.us-east-2.amazonaws.com"
|
|
6393
6438
|
},
|
|
6439
|
+
"fips-us-west-1" : {
|
|
6440
|
+
"credentialScope" : {
|
|
6441
|
+
"region" : "us-west-1"
|
|
6442
|
+
},
|
|
6443
|
+
"deprecated" : true,
|
|
6444
|
+
"hostname" : "fsx-fips.us-west-1.amazonaws.com"
|
|
6445
|
+
},
|
|
6394
6446
|
"fips-us-west-2" : {
|
|
6395
6447
|
"credentialScope" : {
|
|
6396
6448
|
"region" : "us-west-2"
|
|
@@ -6398,6 +6450,7 @@
|
|
|
6398
6450
|
"deprecated" : true,
|
|
6399
6451
|
"hostname" : "fsx-fips.us-west-2.amazonaws.com"
|
|
6400
6452
|
},
|
|
6453
|
+
"me-south-1" : { },
|
|
6401
6454
|
"prod-ca-central-1" : {
|
|
6402
6455
|
"credentialScope" : {
|
|
6403
6456
|
"region" : "ca-central-1"
|
|
@@ -6428,6 +6481,16 @@
|
|
|
6428
6481
|
"tags" : [ "fips" ]
|
|
6429
6482
|
} ]
|
|
6430
6483
|
},
|
|
6484
|
+
"prod-us-west-1" : {
|
|
6485
|
+
"credentialScope" : {
|
|
6486
|
+
"region" : "us-west-1"
|
|
6487
|
+
},
|
|
6488
|
+
"deprecated" : true,
|
|
6489
|
+
"variants" : [ {
|
|
6490
|
+
"hostname" : "fsx-fips.us-west-1.amazonaws.com",
|
|
6491
|
+
"tags" : [ "fips" ]
|
|
6492
|
+
} ]
|
|
6493
|
+
},
|
|
6431
6494
|
"prod-us-west-2" : {
|
|
6432
6495
|
"credentialScope" : {
|
|
6433
6496
|
"region" : "us-west-2"
|
|
@@ -6438,6 +6501,7 @@
|
|
|
6438
6501
|
"tags" : [ "fips" ]
|
|
6439
6502
|
} ]
|
|
6440
6503
|
},
|
|
6504
|
+
"sa-east-1" : { },
|
|
6441
6505
|
"us-east-1" : {
|
|
6442
6506
|
"variants" : [ {
|
|
6443
6507
|
"hostname" : "fsx-fips.us-east-1.amazonaws.com",
|
|
@@ -6450,6 +6514,12 @@
|
|
|
6450
6514
|
"tags" : [ "fips" ]
|
|
6451
6515
|
} ]
|
|
6452
6516
|
},
|
|
6517
|
+
"us-west-1" : {
|
|
6518
|
+
"variants" : [ {
|
|
6519
|
+
"hostname" : "fsx-fips.us-west-1.amazonaws.com",
|
|
6520
|
+
"tags" : [ "fips" ]
|
|
6521
|
+
} ]
|
|
6522
|
+
},
|
|
6453
6523
|
"us-west-2" : {
|
|
6454
6524
|
"variants" : [ {
|
|
6455
6525
|
"hostname" : "fsx-fips.us-west-2.amazonaws.com",
|
|
@@ -7191,6 +7261,7 @@
|
|
|
7191
7261
|
"deprecated" : true,
|
|
7192
7262
|
"hostname" : "iot-fips.us-west-2.amazonaws.com"
|
|
7193
7263
|
},
|
|
7264
|
+
"me-central-1" : { },
|
|
7194
7265
|
"me-south-1" : { },
|
|
7195
7266
|
"sa-east-1" : { },
|
|
7196
7267
|
"us-east-1" : {
|
|
@@ -7869,6 +7940,13 @@
|
|
|
7869
7940
|
},
|
|
7870
7941
|
"kms" : {
|
|
7871
7942
|
"endpoints" : {
|
|
7943
|
+
"ProdFips" : {
|
|
7944
|
+
"credentialScope" : {
|
|
7945
|
+
"region" : "eu-central-2"
|
|
7946
|
+
},
|
|
7947
|
+
"deprecated" : true,
|
|
7948
|
+
"hostname" : "kms-fips.eu-central-2.amazonaws.com"
|
|
7949
|
+
},
|
|
7872
7950
|
"af-south-1" : {
|
|
7873
7951
|
"variants" : [ {
|
|
7874
7952
|
"hostname" : "kms-fips.af-south-1.amazonaws.com",
|
|
@@ -7947,6 +8025,13 @@
|
|
|
7947
8025
|
"deprecated" : true,
|
|
7948
8026
|
"hostname" : "kms-fips.ap-south-1.amazonaws.com"
|
|
7949
8027
|
},
|
|
8028
|
+
"ap-south-2-fips" : {
|
|
8029
|
+
"credentialScope" : {
|
|
8030
|
+
"region" : "ap-south-2"
|
|
8031
|
+
},
|
|
8032
|
+
"deprecated" : true,
|
|
8033
|
+
"hostname" : "kms-fips.ap-south-2.amazonaws.com"
|
|
8034
|
+
},
|
|
7950
8035
|
"ap-southeast-1" : {
|
|
7951
8036
|
"variants" : [ {
|
|
7952
8037
|
"hostname" : "kms-fips.ap-southeast-1.amazonaws.com",
|
|
@@ -8012,6 +8097,13 @@
|
|
|
8012
8097
|
"deprecated" : true,
|
|
8013
8098
|
"hostname" : "kms-fips.eu-central-1.amazonaws.com"
|
|
8014
8099
|
},
|
|
8100
|
+
"eu-central-2-fips" : {
|
|
8101
|
+
"credentialScope" : {
|
|
8102
|
+
"region" : "eu-central-2"
|
|
8103
|
+
},
|
|
8104
|
+
"deprecated" : true,
|
|
8105
|
+
"hostname" : "kms-fips.eu-central-2.amazonaws.com"
|
|
8106
|
+
},
|
|
8015
8107
|
"eu-north-1" : {
|
|
8016
8108
|
"variants" : [ {
|
|
8017
8109
|
"hostname" : "kms-fips.eu-north-1.amazonaws.com",
|
|
@@ -9585,6 +9677,7 @@
|
|
|
9585
9677
|
"ap-south-1" : { },
|
|
9586
9678
|
"ap-southeast-1" : { },
|
|
9587
9679
|
"ap-southeast-2" : { },
|
|
9680
|
+
"ap-southeast-3" : { },
|
|
9588
9681
|
"ca-central-1" : {
|
|
9589
9682
|
"variants" : [ {
|
|
9590
9683
|
"hostname" : "network-firewall-fips.ca-central-1.amazonaws.com",
|
|
@@ -10452,6 +10545,7 @@
|
|
|
10452
10545
|
"deprecated" : true,
|
|
10453
10546
|
"hostname" : "ram-fips.us-west-2.amazonaws.com"
|
|
10454
10547
|
},
|
|
10548
|
+
"me-central-1" : { },
|
|
10455
10549
|
"me-south-1" : { },
|
|
10456
10550
|
"sa-east-1" : { },
|
|
10457
10551
|
"us-east-1" : {
|
|
@@ -11962,6 +12056,7 @@
|
|
|
11962
12056
|
"ap-south-1" : { },
|
|
11963
12057
|
"ap-southeast-1" : { },
|
|
11964
12058
|
"ap-southeast-2" : { },
|
|
12059
|
+
"ap-southeast-3" : { },
|
|
11965
12060
|
"ca-central-1" : {
|
|
11966
12061
|
"variants" : [ {
|
|
11967
12062
|
"tags" : [ "fips" ]
|
|
@@ -12475,6 +12570,7 @@
|
|
|
12475
12570
|
"eu-west-1" : { },
|
|
12476
12571
|
"eu-west-2" : { },
|
|
12477
12572
|
"eu-west-3" : { },
|
|
12573
|
+
"me-central-1" : { },
|
|
12478
12574
|
"me-south-1" : { },
|
|
12479
12575
|
"sa-east-1" : { },
|
|
12480
12576
|
"servicediscovery" : {
|
|
@@ -14980,6 +15076,12 @@
|
|
|
14980
15076
|
"fips-us-west-2" : {
|
|
14981
15077
|
"deprecated" : true
|
|
14982
15078
|
},
|
|
15079
|
+
"ui-ap-northeast-1" : { },
|
|
15080
|
+
"ui-ap-southeast-2" : { },
|
|
15081
|
+
"ui-eu-central-1" : { },
|
|
15082
|
+
"ui-eu-west-2" : { },
|
|
15083
|
+
"ui-us-east-1" : { },
|
|
15084
|
+
"ui-us-west-2" : { },
|
|
14983
15085
|
"us-east-1" : {
|
|
14984
15086
|
"variants" : [ {
|
|
14985
15087
|
"tags" : [ "fips" ]
|
|
@@ -17166,6 +17268,12 @@
|
|
|
17166
17268
|
"us-gov-west-1" : { }
|
|
17167
17269
|
}
|
|
17168
17270
|
},
|
|
17271
|
+
"controltower" : {
|
|
17272
|
+
"endpoints" : {
|
|
17273
|
+
"us-gov-east-1" : { },
|
|
17274
|
+
"us-gov-west-1" : { }
|
|
17275
|
+
}
|
|
17276
|
+
},
|
|
17169
17277
|
"data-ats.iot" : {
|
|
17170
17278
|
"defaults" : {
|
|
17171
17279
|
"credentialScope" : {
|
|
@@ -20279,7 +20387,8 @@
|
|
|
20279
20387
|
},
|
|
20280
20388
|
"ds" : {
|
|
20281
20389
|
"endpoints" : {
|
|
20282
|
-
"us-iso-east-1" : { }
|
|
20390
|
+
"us-iso-east-1" : { },
|
|
20391
|
+
"us-iso-west-1" : { }
|
|
20283
20392
|
}
|
|
20284
20393
|
},
|
|
20285
20394
|
"dynamodb" : {
|
|
@@ -20557,7 +20666,8 @@
|
|
|
20557
20666
|
},
|
|
20558
20667
|
"ssm" : {
|
|
20559
20668
|
"endpoints" : {
|
|
20560
|
-
"us-iso-east-1" : { }
|
|
20669
|
+
"us-iso-east-1" : { },
|
|
20670
|
+
"us-iso-west-1" : { }
|
|
20561
20671
|
}
|
|
20562
20672
|
},
|
|
20563
20673
|
"states" : {
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-partitions
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.654.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-10-
|
|
11
|
+
date: 2022-10-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Provides interfaces to enumerate AWS partitions, regions, and services.
|
|
14
14
|
email:
|
|
@@ -25,6 +25,7 @@ files:
|
|
|
25
25
|
- lib/aws-partitions/partition_list.rb
|
|
26
26
|
- lib/aws-partitions/region.rb
|
|
27
27
|
- lib/aws-partitions/service.rb
|
|
28
|
+
- partitions-metadata.json
|
|
28
29
|
- partitions.json
|
|
29
30
|
homepage: https://github.com/aws/aws-sdk-ruby
|
|
30
31
|
licenses:
|