aws-partitions 1.457.0 → 1.464.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 +35 -0
- data/VERSION +1 -1
- data/lib/aws-partitions.rb +1 -0
- data/partitions.json +54 -0
- 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: fc013ae3dea3c70413e48eb3cc9f4c3f6c1ece4891fa785c28bcffdbf6565aca
|
|
4
|
+
data.tar.gz: 79949d9da440436ae5419b304c130a602b4b4cdcfd451a788ea7d5840f800688
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cee620b290d53ac2b2b4689699d834855a094a721374f2f26f1b2c0a9f6f04d45a9e422baf45f44eb90c16fc65524ec157968bb7ad2b14a44d134560aae1fda5
|
|
7
|
+
data.tar.gz: ae1a3aa3231637485f4dc8c6463e2c1e86c69402a2187c3fff5b7deb139fe7e5508362c9af7e7ea5dd76fb713174fa0d18af65b5f5c872862db963b2f8b229b0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,41 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.464.0 (2021-05-27)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
8
|
+
|
|
9
|
+
1.463.0 (2021-05-26)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
13
|
+
|
|
14
|
+
1.462.0 (2021-05-24)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
18
|
+
|
|
19
|
+
1.461.0 (2021-05-21)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
23
|
+
|
|
24
|
+
1.460.0 (2021-05-20)
|
|
25
|
+
------------------
|
|
26
|
+
|
|
27
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
28
|
+
|
|
29
|
+
1.459.0 (2021-05-19)
|
|
30
|
+
------------------
|
|
31
|
+
|
|
32
|
+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
|
|
33
|
+
|
|
34
|
+
1.458.0 (2021-05-18)
|
|
35
|
+
------------------
|
|
36
|
+
|
|
37
|
+
* Feature - Added support for enumerating regions for `Aws::AppRunner`.
|
|
38
|
+
|
|
4
39
|
1.457.0 (2021-05-17)
|
|
5
40
|
------------------
|
|
6
41
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.464.0
|
data/lib/aws-partitions.rb
CHANGED
|
@@ -237,6 +237,7 @@ module Aws
|
|
|
237
237
|
'AppIntegrationsService' => 'app-integrations',
|
|
238
238
|
'AppMesh' => 'appmesh',
|
|
239
239
|
'AppRegistry' => 'servicecatalog-appregistry',
|
|
240
|
+
'AppRunner' => 'apprunner',
|
|
240
241
|
'AppStream' => 'appstream2',
|
|
241
242
|
'AppSync' => 'appsync',
|
|
242
243
|
'Appflow' => 'appflow',
|
data/partitions.json
CHANGED
|
@@ -723,6 +723,15 @@
|
|
|
723
723
|
"us-west-2" : { }
|
|
724
724
|
}
|
|
725
725
|
},
|
|
726
|
+
"apprunner" : {
|
|
727
|
+
"endpoints" : {
|
|
728
|
+
"ap-northeast-1" : { },
|
|
729
|
+
"eu-west-1" : { },
|
|
730
|
+
"us-east-1" : { },
|
|
731
|
+
"us-east-2" : { },
|
|
732
|
+
"us-west-2" : { }
|
|
733
|
+
}
|
|
734
|
+
},
|
|
726
735
|
"appstream2" : {
|
|
727
736
|
"defaults" : {
|
|
728
737
|
"credentialScope" : {
|
|
@@ -2712,6 +2721,7 @@
|
|
|
2712
2721
|
"eu-west-1" : { },
|
|
2713
2722
|
"eu-west-2" : { },
|
|
2714
2723
|
"eu-west-3" : { },
|
|
2724
|
+
"sa-east-1" : { },
|
|
2715
2725
|
"us-east-1" : { },
|
|
2716
2726
|
"us-east-2" : { },
|
|
2717
2727
|
"us-west-1" : { },
|
|
@@ -3908,6 +3918,7 @@
|
|
|
3908
3918
|
"ap-southeast-2" : { },
|
|
3909
3919
|
"ca-central-1" : { },
|
|
3910
3920
|
"eu-central-1" : { },
|
|
3921
|
+
"eu-north-1" : { },
|
|
3911
3922
|
"eu-west-1" : { },
|
|
3912
3923
|
"eu-west-2" : { },
|
|
3913
3924
|
"eu-west-3" : { },
|
|
@@ -4856,6 +4867,7 @@
|
|
|
4856
4867
|
"ap-northeast-1" : { },
|
|
4857
4868
|
"ap-southeast-1" : { },
|
|
4858
4869
|
"ap-southeast-2" : { },
|
|
4870
|
+
"ca-central-1" : { },
|
|
4859
4871
|
"eu-central-1" : { },
|
|
4860
4872
|
"eu-west-2" : { },
|
|
4861
4873
|
"us-east-1" : { },
|
|
@@ -4881,6 +4893,24 @@
|
|
|
4881
4893
|
"ap-southeast-2" : { },
|
|
4882
4894
|
"eu-central-1" : { },
|
|
4883
4895
|
"eu-west-1" : { },
|
|
4896
|
+
"fips-us-east-1" : {
|
|
4897
|
+
"credentialScope" : {
|
|
4898
|
+
"region" : "us-east-1"
|
|
4899
|
+
},
|
|
4900
|
+
"hostname" : "qldb-fips.us-east-1.amazonaws.com"
|
|
4901
|
+
},
|
|
4902
|
+
"fips-us-east-2" : {
|
|
4903
|
+
"credentialScope" : {
|
|
4904
|
+
"region" : "us-east-2"
|
|
4905
|
+
},
|
|
4906
|
+
"hostname" : "qldb-fips.us-east-2.amazonaws.com"
|
|
4907
|
+
},
|
|
4908
|
+
"fips-us-west-2" : {
|
|
4909
|
+
"credentialScope" : {
|
|
4910
|
+
"region" : "us-west-2"
|
|
4911
|
+
},
|
|
4912
|
+
"hostname" : "qldb-fips.us-west-2.amazonaws.com"
|
|
4913
|
+
},
|
|
4884
4914
|
"us-east-1" : { },
|
|
4885
4915
|
"us-east-2" : { },
|
|
4886
4916
|
"us-west-2" : { }
|
|
@@ -5192,6 +5222,7 @@
|
|
|
5192
5222
|
"ap-east-1" : { },
|
|
5193
5223
|
"ap-northeast-1" : { },
|
|
5194
5224
|
"ap-northeast-2" : { },
|
|
5225
|
+
"ap-northeast-3" : { },
|
|
5195
5226
|
"ap-south-1" : { },
|
|
5196
5227
|
"ap-southeast-1" : { },
|
|
5197
5228
|
"ap-southeast-2" : { },
|
|
@@ -5947,6 +5978,24 @@
|
|
|
5947
5978
|
"ap-southeast-2" : { },
|
|
5948
5979
|
"eu-central-1" : { },
|
|
5949
5980
|
"eu-west-1" : { },
|
|
5981
|
+
"fips-us-east-1" : {
|
|
5982
|
+
"credentialScope" : {
|
|
5983
|
+
"region" : "us-east-1"
|
|
5984
|
+
},
|
|
5985
|
+
"hostname" : "session.qldb-fips.us-east-1.amazonaws.com"
|
|
5986
|
+
},
|
|
5987
|
+
"fips-us-east-2" : {
|
|
5988
|
+
"credentialScope" : {
|
|
5989
|
+
"region" : "us-east-2"
|
|
5990
|
+
},
|
|
5991
|
+
"hostname" : "session.qldb-fips.us-east-2.amazonaws.com"
|
|
5992
|
+
},
|
|
5993
|
+
"fips-us-west-2" : {
|
|
5994
|
+
"credentialScope" : {
|
|
5995
|
+
"region" : "us-west-2"
|
|
5996
|
+
},
|
|
5997
|
+
"hostname" : "session.qldb-fips.us-west-2.amazonaws.com"
|
|
5998
|
+
},
|
|
5950
5999
|
"us-east-1" : { },
|
|
5951
6000
|
"us-east-2" : { },
|
|
5952
6001
|
"us-west-2" : { }
|
|
@@ -9951,6 +10000,11 @@
|
|
|
9951
10000
|
"us-iso-east-1" : { }
|
|
9952
10001
|
}
|
|
9953
10002
|
},
|
|
10003
|
+
"ram" : {
|
|
10004
|
+
"endpoints" : {
|
|
10005
|
+
"us-iso-east-1" : { }
|
|
10006
|
+
}
|
|
10007
|
+
},
|
|
9954
10008
|
"rds" : {
|
|
9955
10009
|
"endpoints" : {
|
|
9956
10010
|
"us-iso-east-1" : { }
|
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.464.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: 2021-05-
|
|
11
|
+
date: 2021-05-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Provides interfaces to enumerate AWS partitions, regions, and services.
|
|
14
14
|
email:
|