aws-partitions 1.684.0 → 1.697.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 +65 -0
- data/VERSION +1 -1
- data/lib/aws-partitions.rb +2 -0
- data/partitions.json +311 -7
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e19a5d2ab675f0d6c58d85d8d066122f0214c2a40e3d2086ff63b6ad1d0ebcdc
|
|
4
|
+
data.tar.gz: f511efa9f589a23d56f09f1b14f2a0f371ed7eed25febd04afd0ff596277ba9c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7c8353b9dad3ea3d97c1462e066970afed4ec59feb4882bd25fa0cf105b483abfad34ef6dcc31f0ab188a0c5cfe712e8f9a37cfdfa06c81cb08a1ce5f31f1c21
|
|
7
|
+
data.tar.gz: 0df75872e4cf7fedfd0403e05687d76b17ae7446bf3496920c2a67c474f8ec30525a457b33d703301956ef97b54d7bfaa791967f97d752922e843e48210cb4fb
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,71 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.697.0 (2023-01-20)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
8
|
+
|
|
9
|
+
1.696.0 (2023-01-19)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
13
|
+
|
|
14
|
+
1.695.0 (2023-01-18)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
18
|
+
|
|
19
|
+
1.694.0 (2023-01-17)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
23
|
+
|
|
24
|
+
1.693.0 (2023-01-13)
|
|
25
|
+
------------------
|
|
26
|
+
|
|
27
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
28
|
+
|
|
29
|
+
1.692.0 (2023-01-12)
|
|
30
|
+
------------------
|
|
31
|
+
|
|
32
|
+
* Feature - Added support for enumerating regions for `Aws::CleanRooms`.
|
|
33
|
+
|
|
34
|
+
1.691.0 (2023-01-10)
|
|
35
|
+
------------------
|
|
36
|
+
|
|
37
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
38
|
+
|
|
39
|
+
1.690.0 (2023-01-09)
|
|
40
|
+
------------------
|
|
41
|
+
|
|
42
|
+
* Feature - Added support for enumerating regions for `Aws::KendraRanking`.
|
|
43
|
+
|
|
44
|
+
1.689.0 (2023-01-06)
|
|
45
|
+
------------------
|
|
46
|
+
|
|
47
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
48
|
+
|
|
49
|
+
1.688.0 (2023-01-05)
|
|
50
|
+
------------------
|
|
51
|
+
|
|
52
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
53
|
+
|
|
54
|
+
1.687.0 (2023-01-03)
|
|
55
|
+
------------------
|
|
56
|
+
|
|
57
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
58
|
+
|
|
59
|
+
1.686.0 (2022-12-30)
|
|
60
|
+
------------------
|
|
61
|
+
|
|
62
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
63
|
+
|
|
64
|
+
1.685.0 (2022-12-29)
|
|
65
|
+
------------------
|
|
66
|
+
|
|
67
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
68
|
+
|
|
4
69
|
1.684.0 (2022-12-23)
|
|
5
70
|
------------------
|
|
6
71
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.697.0
|
data/lib/aws-partitions.rb
CHANGED
|
@@ -287,6 +287,7 @@ module Aws
|
|
|
287
287
|
'ChimeSDKMeetings' => 'meetings-chime',
|
|
288
288
|
'ChimeSDKMessaging' => 'messaging-chime',
|
|
289
289
|
'ChimeSDKVoice' => 'voice-chime',
|
|
290
|
+
'CleanRooms' => 'cleanrooms',
|
|
290
291
|
'Cloud9' => 'cloud9',
|
|
291
292
|
'CloudControlApi' => 'cloudcontrolapi',
|
|
292
293
|
'CloudDirectory' => 'clouddirectory',
|
|
@@ -414,6 +415,7 @@ module Aws
|
|
|
414
415
|
'Kafka' => 'kafka',
|
|
415
416
|
'KafkaConnect' => 'kafkaconnect',
|
|
416
417
|
'Kendra' => 'kendra',
|
|
418
|
+
'KendraRanking' => 'kendra-ranking',
|
|
417
419
|
'Keyspaces' => 'cassandra',
|
|
418
420
|
'Kinesis' => 'kinesis',
|
|
419
421
|
'KinesisAnalytics' => 'kinesisanalytics',
|
data/partitions.json
CHANGED
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"description" : "Middle East (Bahrain)"
|
|
88
88
|
},
|
|
89
89
|
"sa-east-1" : {
|
|
90
|
-
"description" : "South America (
|
|
90
|
+
"description" : "South America (Sao Paulo)"
|
|
91
91
|
},
|
|
92
92
|
"us-east-1" : {
|
|
93
93
|
"description" : "US East (N. Virginia)"
|
|
@@ -1015,12 +1015,15 @@
|
|
|
1015
1015
|
},
|
|
1016
1016
|
"api.mediatailor" : {
|
|
1017
1017
|
"endpoints" : {
|
|
1018
|
+
"af-south-1" : { },
|
|
1018
1019
|
"ap-northeast-1" : { },
|
|
1020
|
+
"ap-south-1" : { },
|
|
1019
1021
|
"ap-southeast-1" : { },
|
|
1020
1022
|
"ap-southeast-2" : { },
|
|
1021
1023
|
"eu-central-1" : { },
|
|
1022
1024
|
"eu-west-1" : { },
|
|
1023
1025
|
"us-east-1" : { },
|
|
1026
|
+
"us-east-2" : { },
|
|
1024
1027
|
"us-west-2" : { }
|
|
1025
1028
|
}
|
|
1026
1029
|
},
|
|
@@ -2069,6 +2072,7 @@
|
|
|
2069
2072
|
"eu-west-1" : { },
|
|
2070
2073
|
"eu-west-2" : { },
|
|
2071
2074
|
"eu-west-3" : { },
|
|
2075
|
+
"me-central-1" : { },
|
|
2072
2076
|
"me-south-1" : { },
|
|
2073
2077
|
"sa-east-1" : { },
|
|
2074
2078
|
"us-east-1" : { },
|
|
@@ -2162,6 +2166,7 @@
|
|
|
2162
2166
|
"deprecated" : true,
|
|
2163
2167
|
"hostname" : "fips.batch.us-west-2.amazonaws.com"
|
|
2164
2168
|
},
|
|
2169
|
+
"me-central-1" : { },
|
|
2165
2170
|
"me-south-1" : { },
|
|
2166
2171
|
"sa-east-1" : { },
|
|
2167
2172
|
"us-east-1" : {
|
|
@@ -2307,6 +2312,21 @@
|
|
|
2307
2312
|
"isRegionalized" : false,
|
|
2308
2313
|
"partitionEndpoint" : "aws-global"
|
|
2309
2314
|
},
|
|
2315
|
+
"cleanrooms" : {
|
|
2316
|
+
"endpoints" : {
|
|
2317
|
+
"ap-northeast-1" : { },
|
|
2318
|
+
"ap-northeast-2" : { },
|
|
2319
|
+
"ap-southeast-1" : { },
|
|
2320
|
+
"ap-southeast-2" : { },
|
|
2321
|
+
"eu-central-1" : { },
|
|
2322
|
+
"eu-north-1" : { },
|
|
2323
|
+
"eu-west-1" : { },
|
|
2324
|
+
"eu-west-2" : { },
|
|
2325
|
+
"us-east-1" : { },
|
|
2326
|
+
"us-east-2" : { },
|
|
2327
|
+
"us-west-2" : { }
|
|
2328
|
+
}
|
|
2329
|
+
},
|
|
2310
2330
|
"cloud9" : {
|
|
2311
2331
|
"endpoints" : {
|
|
2312
2332
|
"af-south-1" : { },
|
|
@@ -2691,6 +2711,7 @@
|
|
|
2691
2711
|
"eu-west-1" : { },
|
|
2692
2712
|
"eu-west-2" : { },
|
|
2693
2713
|
"eu-west-3" : { },
|
|
2714
|
+
"me-central-1" : { },
|
|
2694
2715
|
"me-south-1" : { },
|
|
2695
2716
|
"sa-east-1" : { },
|
|
2696
2717
|
"us-east-1" : {
|
|
@@ -4719,6 +4740,7 @@
|
|
|
4719
4740
|
"ap-northeast-2" : { },
|
|
4720
4741
|
"ap-northeast-3" : { },
|
|
4721
4742
|
"ap-south-1" : { },
|
|
4743
|
+
"ap-south-2" : { },
|
|
4722
4744
|
"ap-southeast-1" : { },
|
|
4723
4745
|
"ap-southeast-2" : { },
|
|
4724
4746
|
"ap-southeast-3" : { },
|
|
@@ -4729,8 +4751,10 @@
|
|
|
4729
4751
|
} ]
|
|
4730
4752
|
},
|
|
4731
4753
|
"eu-central-1" : { },
|
|
4754
|
+
"eu-central-2" : { },
|
|
4732
4755
|
"eu-north-1" : { },
|
|
4733
4756
|
"eu-south-1" : { },
|
|
4757
|
+
"eu-south-2" : { },
|
|
4734
4758
|
"eu-west-1" : { },
|
|
4735
4759
|
"eu-west-2" : { },
|
|
4736
4760
|
"eu-west-3" : { },
|
|
@@ -5330,6 +5354,12 @@
|
|
|
5330
5354
|
"tags" : [ "fips" ]
|
|
5331
5355
|
} ]
|
|
5332
5356
|
},
|
|
5357
|
+
"eu-south-2" : {
|
|
5358
|
+
"variants" : [ {
|
|
5359
|
+
"hostname" : "elasticfilesystem-fips.eu-south-2.amazonaws.com",
|
|
5360
|
+
"tags" : [ "fips" ]
|
|
5361
|
+
} ]
|
|
5362
|
+
},
|
|
5333
5363
|
"eu-west-1" : {
|
|
5334
5364
|
"variants" : [ {
|
|
5335
5365
|
"hostname" : "elasticfilesystem-fips.eu-west-1.amazonaws.com",
|
|
@@ -5446,6 +5476,13 @@
|
|
|
5446
5476
|
"deprecated" : true,
|
|
5447
5477
|
"hostname" : "elasticfilesystem-fips.eu-south-1.amazonaws.com"
|
|
5448
5478
|
},
|
|
5479
|
+
"fips-eu-south-2" : {
|
|
5480
|
+
"credentialScope" : {
|
|
5481
|
+
"region" : "eu-south-2"
|
|
5482
|
+
},
|
|
5483
|
+
"deprecated" : true,
|
|
5484
|
+
"hostname" : "elasticfilesystem-fips.eu-south-2.amazonaws.com"
|
|
5485
|
+
},
|
|
5449
5486
|
"fips-eu-west-1" : {
|
|
5450
5487
|
"credentialScope" : {
|
|
5451
5488
|
"region" : "eu-west-1"
|
|
@@ -8088,6 +8125,7 @@
|
|
|
8088
8125
|
},
|
|
8089
8126
|
"kendra" : {
|
|
8090
8127
|
"endpoints" : {
|
|
8128
|
+
"ap-south-1" : { },
|
|
8091
8129
|
"ap-southeast-1" : { },
|
|
8092
8130
|
"ap-southeast-2" : { },
|
|
8093
8131
|
"ca-central-1" : { },
|
|
@@ -8133,6 +8171,90 @@
|
|
|
8133
8171
|
}
|
|
8134
8172
|
}
|
|
8135
8173
|
},
|
|
8174
|
+
"kendra-ranking" : {
|
|
8175
|
+
"defaults" : {
|
|
8176
|
+
"dnsSuffix" : "api.aws",
|
|
8177
|
+
"variants" : [ {
|
|
8178
|
+
"dnsSuffix" : "api.aws",
|
|
8179
|
+
"hostname" : "{service}-fips.{region}.{dnsSuffix}",
|
|
8180
|
+
"tags" : [ "fips" ]
|
|
8181
|
+
} ]
|
|
8182
|
+
},
|
|
8183
|
+
"endpoints" : {
|
|
8184
|
+
"af-south-1" : {
|
|
8185
|
+
"hostname" : "kendra-ranking.af-south-1.api.aws"
|
|
8186
|
+
},
|
|
8187
|
+
"ap-east-1" : {
|
|
8188
|
+
"hostname" : "kendra-ranking.ap-east-1.api.aws"
|
|
8189
|
+
},
|
|
8190
|
+
"ap-northeast-2" : {
|
|
8191
|
+
"hostname" : "kendra-ranking.ap-northeast-2.api.aws"
|
|
8192
|
+
},
|
|
8193
|
+
"ap-northeast-3" : {
|
|
8194
|
+
"hostname" : "kendra-ranking.ap-northeast-3.api.aws"
|
|
8195
|
+
},
|
|
8196
|
+
"ap-south-2" : {
|
|
8197
|
+
"hostname" : "kendra-ranking.ap-south-2.api.aws"
|
|
8198
|
+
},
|
|
8199
|
+
"ap-southeast-1" : {
|
|
8200
|
+
"hostname" : "kendra-ranking.ap-southeast-1.api.aws"
|
|
8201
|
+
},
|
|
8202
|
+
"ap-southeast-2" : {
|
|
8203
|
+
"hostname" : "kendra-ranking.ap-southeast-2.api.aws"
|
|
8204
|
+
},
|
|
8205
|
+
"ap-southeast-3" : {
|
|
8206
|
+
"hostname" : "kendra-ranking.ap-southeast-3.api.aws"
|
|
8207
|
+
},
|
|
8208
|
+
"ca-central-1" : {
|
|
8209
|
+
"hostname" : "kendra-ranking.ca-central-1.api.aws"
|
|
8210
|
+
},
|
|
8211
|
+
"eu-central-1" : {
|
|
8212
|
+
"hostname" : "kendra-ranking.eu-central-1.api.aws"
|
|
8213
|
+
},
|
|
8214
|
+
"eu-central-2" : {
|
|
8215
|
+
"hostname" : "kendra-ranking.eu-central-2.api.aws"
|
|
8216
|
+
},
|
|
8217
|
+
"eu-north-1" : {
|
|
8218
|
+
"hostname" : "kendra-ranking.eu-north-1.api.aws"
|
|
8219
|
+
},
|
|
8220
|
+
"eu-south-1" : {
|
|
8221
|
+
"hostname" : "kendra-ranking.eu-south-1.api.aws"
|
|
8222
|
+
},
|
|
8223
|
+
"eu-south-2" : {
|
|
8224
|
+
"hostname" : "kendra-ranking.eu-south-2.api.aws"
|
|
8225
|
+
},
|
|
8226
|
+
"eu-west-1" : {
|
|
8227
|
+
"hostname" : "kendra-ranking.eu-west-1.api.aws"
|
|
8228
|
+
},
|
|
8229
|
+
"eu-west-2" : {
|
|
8230
|
+
"hostname" : "kendra-ranking.eu-west-2.api.aws"
|
|
8231
|
+
},
|
|
8232
|
+
"eu-west-3" : {
|
|
8233
|
+
"hostname" : "kendra-ranking.eu-west-3.api.aws"
|
|
8234
|
+
},
|
|
8235
|
+
"me-central-1" : {
|
|
8236
|
+
"hostname" : "kendra-ranking.me-central-1.api.aws"
|
|
8237
|
+
},
|
|
8238
|
+
"me-south-1" : {
|
|
8239
|
+
"hostname" : "kendra-ranking.me-south-1.api.aws"
|
|
8240
|
+
},
|
|
8241
|
+
"sa-east-1" : {
|
|
8242
|
+
"hostname" : "kendra-ranking.sa-east-1.api.aws"
|
|
8243
|
+
},
|
|
8244
|
+
"us-east-1" : {
|
|
8245
|
+
"hostname" : "kendra-ranking.us-east-1.api.aws"
|
|
8246
|
+
},
|
|
8247
|
+
"us-east-2" : {
|
|
8248
|
+
"hostname" : "kendra-ranking.us-east-2.api.aws"
|
|
8249
|
+
},
|
|
8250
|
+
"us-west-1" : {
|
|
8251
|
+
"hostname" : "kendra-ranking.us-west-1.api.aws"
|
|
8252
|
+
},
|
|
8253
|
+
"us-west-2" : {
|
|
8254
|
+
"hostname" : "kendra-ranking.us-west-2.api.aws"
|
|
8255
|
+
}
|
|
8256
|
+
}
|
|
8257
|
+
},
|
|
8136
8258
|
"kinesis" : {
|
|
8137
8259
|
"endpoints" : {
|
|
8138
8260
|
"af-south-1" : { },
|
|
@@ -9232,6 +9354,7 @@
|
|
|
9232
9354
|
"m2" : {
|
|
9233
9355
|
"endpoints" : {
|
|
9234
9356
|
"ap-northeast-1" : { },
|
|
9357
|
+
"ap-northeast-2" : { },
|
|
9235
9358
|
"ap-south-1" : { },
|
|
9236
9359
|
"ap-southeast-1" : { },
|
|
9237
9360
|
"ap-southeast-2" : { },
|
|
@@ -9250,6 +9373,12 @@
|
|
|
9250
9373
|
"fips-us-east-1" : {
|
|
9251
9374
|
"deprecated" : true
|
|
9252
9375
|
},
|
|
9376
|
+
"fips-us-east-2" : {
|
|
9377
|
+
"deprecated" : true
|
|
9378
|
+
},
|
|
9379
|
+
"fips-us-west-1" : {
|
|
9380
|
+
"deprecated" : true
|
|
9381
|
+
},
|
|
9253
9382
|
"fips-us-west-2" : {
|
|
9254
9383
|
"deprecated" : true
|
|
9255
9384
|
},
|
|
@@ -9259,6 +9388,16 @@
|
|
|
9259
9388
|
"tags" : [ "fips" ]
|
|
9260
9389
|
} ]
|
|
9261
9390
|
},
|
|
9391
|
+
"us-east-2" : {
|
|
9392
|
+
"variants" : [ {
|
|
9393
|
+
"tags" : [ "fips" ]
|
|
9394
|
+
} ]
|
|
9395
|
+
},
|
|
9396
|
+
"us-west-1" : {
|
|
9397
|
+
"variants" : [ {
|
|
9398
|
+
"tags" : [ "fips" ]
|
|
9399
|
+
} ]
|
|
9400
|
+
},
|
|
9262
9401
|
"us-west-2" : {
|
|
9263
9402
|
"variants" : [ {
|
|
9264
9403
|
"tags" : [ "fips" ]
|
|
@@ -9796,12 +9935,60 @@
|
|
|
9796
9935
|
"eu-west-1" : { },
|
|
9797
9936
|
"eu-west-2" : { },
|
|
9798
9937
|
"eu-west-3" : { },
|
|
9938
|
+
"fips-us-east-1" : {
|
|
9939
|
+
"credentialScope" : {
|
|
9940
|
+
"region" : "us-east-1"
|
|
9941
|
+
},
|
|
9942
|
+
"deprecated" : true,
|
|
9943
|
+
"hostname" : "mgn-fips.us-east-1.amazonaws.com"
|
|
9944
|
+
},
|
|
9945
|
+
"fips-us-east-2" : {
|
|
9946
|
+
"credentialScope" : {
|
|
9947
|
+
"region" : "us-east-2"
|
|
9948
|
+
},
|
|
9949
|
+
"deprecated" : true,
|
|
9950
|
+
"hostname" : "mgn-fips.us-east-2.amazonaws.com"
|
|
9951
|
+
},
|
|
9952
|
+
"fips-us-west-1" : {
|
|
9953
|
+
"credentialScope" : {
|
|
9954
|
+
"region" : "us-west-1"
|
|
9955
|
+
},
|
|
9956
|
+
"deprecated" : true,
|
|
9957
|
+
"hostname" : "mgn-fips.us-west-1.amazonaws.com"
|
|
9958
|
+
},
|
|
9959
|
+
"fips-us-west-2" : {
|
|
9960
|
+
"credentialScope" : {
|
|
9961
|
+
"region" : "us-west-2"
|
|
9962
|
+
},
|
|
9963
|
+
"deprecated" : true,
|
|
9964
|
+
"hostname" : "mgn-fips.us-west-2.amazonaws.com"
|
|
9965
|
+
},
|
|
9799
9966
|
"me-south-1" : { },
|
|
9800
9967
|
"sa-east-1" : { },
|
|
9801
|
-
"us-east-1" : {
|
|
9802
|
-
|
|
9803
|
-
|
|
9804
|
-
|
|
9968
|
+
"us-east-1" : {
|
|
9969
|
+
"variants" : [ {
|
|
9970
|
+
"hostname" : "mgn-fips.us-east-1.amazonaws.com",
|
|
9971
|
+
"tags" : [ "fips" ]
|
|
9972
|
+
} ]
|
|
9973
|
+
},
|
|
9974
|
+
"us-east-2" : {
|
|
9975
|
+
"variants" : [ {
|
|
9976
|
+
"hostname" : "mgn-fips.us-east-2.amazonaws.com",
|
|
9977
|
+
"tags" : [ "fips" ]
|
|
9978
|
+
} ]
|
|
9979
|
+
},
|
|
9980
|
+
"us-west-1" : {
|
|
9981
|
+
"variants" : [ {
|
|
9982
|
+
"hostname" : "mgn-fips.us-west-1.amazonaws.com",
|
|
9983
|
+
"tags" : [ "fips" ]
|
|
9984
|
+
} ]
|
|
9985
|
+
},
|
|
9986
|
+
"us-west-2" : {
|
|
9987
|
+
"variants" : [ {
|
|
9988
|
+
"hostname" : "mgn-fips.us-west-2.amazonaws.com",
|
|
9989
|
+
"tags" : [ "fips" ]
|
|
9990
|
+
} ]
|
|
9991
|
+
}
|
|
9805
9992
|
}
|
|
9806
9993
|
},
|
|
9807
9994
|
"migrationhub-orchestrator" : {
|
|
@@ -12067,6 +12254,7 @@
|
|
|
12067
12254
|
"eu-west-1" : { },
|
|
12068
12255
|
"eu-west-2" : { },
|
|
12069
12256
|
"eu-west-3" : { },
|
|
12257
|
+
"me-central-1" : { },
|
|
12070
12258
|
"me-south-1" : { },
|
|
12071
12259
|
"sa-east-1" : { },
|
|
12072
12260
|
"us-east-1" : { },
|
|
@@ -13040,6 +13228,7 @@
|
|
|
13040
13228
|
"deprecated" : true,
|
|
13041
13229
|
"hostname" : "securityhub-fips.us-west-2.amazonaws.com"
|
|
13042
13230
|
},
|
|
13231
|
+
"me-central-1" : { },
|
|
13043
13232
|
"me-south-1" : { },
|
|
13044
13233
|
"sa-east-1" : { },
|
|
13045
13234
|
"us-east-1" : {
|
|
@@ -13272,6 +13461,7 @@
|
|
|
13272
13461
|
"deprecated" : true,
|
|
13273
13462
|
"hostname" : "servicecatalog-appregistry-fips.us-west-2.amazonaws.com"
|
|
13274
13463
|
},
|
|
13464
|
+
"me-central-1" : { },
|
|
13275
13465
|
"me-south-1" : { },
|
|
13276
13466
|
"sa-east-1" : { },
|
|
13277
13467
|
"us-east-1" : {
|
|
@@ -14262,7 +14452,28 @@
|
|
|
14262
14452
|
},
|
|
14263
14453
|
"ssm-sap" : {
|
|
14264
14454
|
"endpoints" : {
|
|
14265
|
-
"
|
|
14455
|
+
"af-south-1" : { },
|
|
14456
|
+
"ap-east-1" : { },
|
|
14457
|
+
"ap-northeast-1" : { },
|
|
14458
|
+
"ap-northeast-2" : { },
|
|
14459
|
+
"ap-northeast-3" : { },
|
|
14460
|
+
"ap-south-1" : { },
|
|
14461
|
+
"ap-southeast-1" : { },
|
|
14462
|
+
"ap-southeast-2" : { },
|
|
14463
|
+
"ap-southeast-3" : { },
|
|
14464
|
+
"ca-central-1" : { },
|
|
14465
|
+
"eu-central-1" : { },
|
|
14466
|
+
"eu-north-1" : { },
|
|
14467
|
+
"eu-south-1" : { },
|
|
14468
|
+
"eu-west-1" : { },
|
|
14469
|
+
"eu-west-2" : { },
|
|
14470
|
+
"eu-west-3" : { },
|
|
14471
|
+
"me-south-1" : { },
|
|
14472
|
+
"sa-east-1" : { },
|
|
14473
|
+
"us-east-1" : { },
|
|
14474
|
+
"us-east-2" : { },
|
|
14475
|
+
"us-west-1" : { },
|
|
14476
|
+
"us-west-2" : { }
|
|
14266
14477
|
}
|
|
14267
14478
|
},
|
|
14268
14479
|
"sso" : {
|
|
@@ -15601,6 +15812,13 @@
|
|
|
15601
15812
|
"deprecated" : true,
|
|
15602
15813
|
"hostname" : "waf-regional-fips.eu-west-3.amazonaws.com"
|
|
15603
15814
|
},
|
|
15815
|
+
"fips-me-central-1" : {
|
|
15816
|
+
"credentialScope" : {
|
|
15817
|
+
"region" : "me-central-1"
|
|
15818
|
+
},
|
|
15819
|
+
"deprecated" : true,
|
|
15820
|
+
"hostname" : "waf-regional-fips.me-central-1.amazonaws.com"
|
|
15821
|
+
},
|
|
15604
15822
|
"fips-me-south-1" : {
|
|
15605
15823
|
"credentialScope" : {
|
|
15606
15824
|
"region" : "me-south-1"
|
|
@@ -15643,6 +15861,16 @@
|
|
|
15643
15861
|
"deprecated" : true,
|
|
15644
15862
|
"hostname" : "waf-regional-fips.us-west-2.amazonaws.com"
|
|
15645
15863
|
},
|
|
15864
|
+
"me-central-1" : {
|
|
15865
|
+
"credentialScope" : {
|
|
15866
|
+
"region" : "me-central-1"
|
|
15867
|
+
},
|
|
15868
|
+
"hostname" : "waf-regional.me-central-1.amazonaws.com",
|
|
15869
|
+
"variants" : [ {
|
|
15870
|
+
"hostname" : "waf-regional-fips.me-central-1.amazonaws.com",
|
|
15871
|
+
"tags" : [ "fips" ]
|
|
15872
|
+
} ]
|
|
15873
|
+
},
|
|
15646
15874
|
"me-south-1" : {
|
|
15647
15875
|
"credentialScope" : {
|
|
15648
15876
|
"region" : "me-south-1"
|
|
@@ -15979,6 +16207,13 @@
|
|
|
15979
16207
|
"deprecated" : true,
|
|
15980
16208
|
"hostname" : "wafv2-fips.eu-west-3.amazonaws.com"
|
|
15981
16209
|
},
|
|
16210
|
+
"fips-me-central-1" : {
|
|
16211
|
+
"credentialScope" : {
|
|
16212
|
+
"region" : "me-central-1"
|
|
16213
|
+
},
|
|
16214
|
+
"deprecated" : true,
|
|
16215
|
+
"hostname" : "wafv2-fips.me-central-1.amazonaws.com"
|
|
16216
|
+
},
|
|
15982
16217
|
"fips-me-south-1" : {
|
|
15983
16218
|
"credentialScope" : {
|
|
15984
16219
|
"region" : "me-south-1"
|
|
@@ -16021,6 +16256,16 @@
|
|
|
16021
16256
|
"deprecated" : true,
|
|
16022
16257
|
"hostname" : "wafv2-fips.us-west-2.amazonaws.com"
|
|
16023
16258
|
},
|
|
16259
|
+
"me-central-1" : {
|
|
16260
|
+
"credentialScope" : {
|
|
16261
|
+
"region" : "me-central-1"
|
|
16262
|
+
},
|
|
16263
|
+
"hostname" : "wafv2.me-central-1.amazonaws.com",
|
|
16264
|
+
"variants" : [ {
|
|
16265
|
+
"hostname" : "wafv2-fips.me-central-1.amazonaws.com",
|
|
16266
|
+
"tags" : [ "fips" ]
|
|
16267
|
+
} ]
|
|
16268
|
+
},
|
|
16024
16269
|
"me-south-1" : {
|
|
16025
16270
|
"credentialScope" : {
|
|
16026
16271
|
"region" : "me-south-1"
|
|
@@ -16961,6 +17206,24 @@
|
|
|
16961
17206
|
"cn-northwest-1" : { }
|
|
16962
17207
|
}
|
|
16963
17208
|
},
|
|
17209
|
+
"kendra-ranking" : {
|
|
17210
|
+
"defaults" : {
|
|
17211
|
+
"dnsSuffix" : "api.amazonwebservices.com.cn",
|
|
17212
|
+
"variants" : [ {
|
|
17213
|
+
"dnsSuffix" : "api.amazonwebservices.com.cn",
|
|
17214
|
+
"hostname" : "{service}-fips.{region}.{dnsSuffix}",
|
|
17215
|
+
"tags" : [ "fips" ]
|
|
17216
|
+
} ]
|
|
17217
|
+
},
|
|
17218
|
+
"endpoints" : {
|
|
17219
|
+
"cn-north-1" : {
|
|
17220
|
+
"hostname" : "kendra-ranking.cn-north-1.api.amazonwebservices.com.cn"
|
|
17221
|
+
},
|
|
17222
|
+
"cn-northwest-1" : {
|
|
17223
|
+
"hostname" : "kendra-ranking.cn-northwest-1.api.amazonwebservices.com.cn"
|
|
17224
|
+
}
|
|
17225
|
+
}
|
|
17226
|
+
},
|
|
16964
17227
|
"kinesis" : {
|
|
16965
17228
|
"endpoints" : {
|
|
16966
17229
|
"cn-north-1" : { },
|
|
@@ -16973,6 +17236,11 @@
|
|
|
16973
17236
|
"cn-northwest-1" : { }
|
|
16974
17237
|
}
|
|
16975
17238
|
},
|
|
17239
|
+
"kinesisvideo" : {
|
|
17240
|
+
"endpoints" : {
|
|
17241
|
+
"cn-north-1" : { }
|
|
17242
|
+
}
|
|
17243
|
+
},
|
|
16976
17244
|
"kms" : {
|
|
16977
17245
|
"endpoints" : {
|
|
16978
17246
|
"cn-north-1" : { },
|
|
@@ -18478,7 +18746,19 @@
|
|
|
18478
18746
|
},
|
|
18479
18747
|
"databrew" : {
|
|
18480
18748
|
"endpoints" : {
|
|
18481
|
-
"us-gov-west-1" : {
|
|
18749
|
+
"fips-us-gov-west-1" : {
|
|
18750
|
+
"credentialScope" : {
|
|
18751
|
+
"region" : "us-gov-west-1"
|
|
18752
|
+
},
|
|
18753
|
+
"deprecated" : true,
|
|
18754
|
+
"hostname" : "databrew.us-gov-west-1.amazonaws.com"
|
|
18755
|
+
},
|
|
18756
|
+
"us-gov-west-1" : {
|
|
18757
|
+
"variants" : [ {
|
|
18758
|
+
"hostname" : "databrew.us-gov-west-1.amazonaws.com",
|
|
18759
|
+
"tags" : [ "fips" ]
|
|
18760
|
+
} ]
|
|
18761
|
+
}
|
|
18482
18762
|
}
|
|
18483
18763
|
},
|
|
18484
18764
|
"datasync" : {
|
|
@@ -19536,6 +19816,24 @@
|
|
|
19536
19816
|
}
|
|
19537
19817
|
}
|
|
19538
19818
|
},
|
|
19819
|
+
"kendra-ranking" : {
|
|
19820
|
+
"defaults" : {
|
|
19821
|
+
"dnsSuffix" : "api.aws",
|
|
19822
|
+
"variants" : [ {
|
|
19823
|
+
"dnsSuffix" : "api.aws",
|
|
19824
|
+
"hostname" : "{service}-fips.{region}.{dnsSuffix}",
|
|
19825
|
+
"tags" : [ "fips" ]
|
|
19826
|
+
} ]
|
|
19827
|
+
},
|
|
19828
|
+
"endpoints" : {
|
|
19829
|
+
"us-gov-east-1" : {
|
|
19830
|
+
"hostname" : "kendra-ranking.us-gov-east-1.api.aws"
|
|
19831
|
+
},
|
|
19832
|
+
"us-gov-west-1" : {
|
|
19833
|
+
"hostname" : "kendra-ranking.us-gov-west-1.api.aws"
|
|
19834
|
+
}
|
|
19835
|
+
}
|
|
19836
|
+
},
|
|
19539
19837
|
"kinesis" : {
|
|
19540
19838
|
"endpoints" : {
|
|
19541
19839
|
"us-gov-east-1" : {
|
|
@@ -19998,6 +20296,12 @@
|
|
|
19998
20296
|
}
|
|
19999
20297
|
}
|
|
20000
20298
|
},
|
|
20299
|
+
"pi" : {
|
|
20300
|
+
"endpoints" : {
|
|
20301
|
+
"us-gov-east-1" : { },
|
|
20302
|
+
"us-gov-west-1" : { }
|
|
20303
|
+
}
|
|
20304
|
+
},
|
|
20001
20305
|
"pinpoint" : {
|
|
20002
20306
|
"defaults" : {
|
|
20003
20307
|
"credentialScope" : {
|
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.697.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:
|
|
11
|
+
date: 2023-01-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Provides interfaces to enumerate AWS partitions, regions, and services.
|
|
14
14
|
email:
|