aws-partitions 1.494.0 → 1.498.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 68284b79ecb6de7af1a3ddb0b0dd04b68ae911bff48195cbfa2f25b76644a9fa
4
- data.tar.gz: 4aa5f1eddbee1391acbbe35dd65201e551242dd81167501a1eaa2cb221b771b7
3
+ metadata.gz: 06507aa04147d4a1c9dfd30f0e96b9e2d352eb8f143fccccca40c97ce62c4ce8
4
+ data.tar.gz: 3ac351f0758aee8c420db1fc9802cd88aa4ba59c78b7c7bbdfe12e955a83b660
5
5
  SHA512:
6
- metadata.gz: ed0393546f1dddcf96abfd4a512816f1fd2d5ae7ac164e1ac56b64c29f9e70e55a20ddc23f803f6a137b3f69b6bb7763d492ce5e0179beb8e26e26179496904e
7
- data.tar.gz: 9ea04cc65a7727bb2b5630b3174d39143097c43ed1925d2a3d698717c2ad45f808908b278d28a70ffc0958d4e590645f1ba0acbd275ca6439ec4acdd0764798b
6
+ metadata.gz: e63cab15893f5bbe5f242d1d20a0fd3a0a4a212c10367dc0f786a35c384b516ab2d0f09969954c44a918d19900b3f1d17713d5260481fc38b7c356fb0c9baa7a
7
+ data.tar.gz: 5b3ba71f38c8f2dc5617a82b74d1fcbf4517a220ed1a0a3cbef98a9c4dc4e75c8f7f31e96b703285666ebe8fad38a8fbd39047dd63b173f62e5eb190c62e0e7a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.498.0 (2021-09-08)
5
+ ------------------
6
+
7
+ * Feature - Added support for enumerating regions for `Aws::OpenSearchService`.
8
+
9
+ 1.497.0 (2021-09-07)
10
+ ------------------
11
+
12
+ * Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
13
+
14
+ 1.496.0 (2021-09-03)
15
+ ------------------
16
+
17
+ * Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
18
+
19
+ 1.495.0 (2021-09-02)
20
+ ------------------
21
+
22
+ * Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
23
+
4
24
  1.494.0 (2021-09-01)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.494.0
1
+ 1.498.0
@@ -96,9 +96,10 @@ module Aws
96
96
  .sub('{dnsSuffix}', partition['dnsSuffix'])
97
97
  end
98
98
 
99
- def get_partition(region)
100
- partition_containing_region(region) ||
101
- partition_matching_region(region) ||
99
+ def get_partition(region_or_partition)
100
+ partition_containing_region(region_or_partition) ||
101
+ partition_matching_region(region_or_partition) ||
102
+ partition_matching_name(region_or_partition) ||
102
103
  default_partition
103
104
  end
104
105
 
@@ -117,6 +118,10 @@ module Aws
117
118
  end
118
119
  end
119
120
 
121
+ def partition_matching_name(partition_name)
122
+ @rules['partitions'].find { |p| p['partition'] == partition_name }
123
+ end
124
+
120
125
  def default_partition
121
126
  @rules['partitions'].find { |p| p['partition'] == 'aws' } ||
122
127
  @rules['partitions'].first
@@ -414,6 +414,7 @@ module Aws
414
414
  'NetworkFirewall' => 'network-firewall',
415
415
  'NetworkManager' => 'networkmanager',
416
416
  'NimbleStudio' => 'nimble',
417
+ 'OpenSearchService' => 'es',
417
418
  'OpsWorks' => 'opsworks',
418
419
  'OpsWorksCM' => 'opsworks-cm',
419
420
  'Organizations' => 'organizations',
data/partitions.json CHANGED
@@ -251,11 +251,17 @@
251
251
  "airflow" : {
252
252
  "endpoints" : {
253
253
  "ap-northeast-1" : { },
254
+ "ap-northeast-2" : { },
255
+ "ap-south-1" : { },
254
256
  "ap-southeast-1" : { },
255
257
  "ap-southeast-2" : { },
258
+ "ca-central-1" : { },
256
259
  "eu-central-1" : { },
257
260
  "eu-north-1" : { },
258
261
  "eu-west-1" : { },
262
+ "eu-west-2" : { },
263
+ "eu-west-3" : { },
264
+ "sa-east-1" : { },
259
265
  "us-east-1" : { },
260
266
  "us-east-2" : { },
261
267
  "us-west-2" : { }
@@ -620,6 +626,7 @@
620
626
  "ap-east-1" : { },
621
627
  "ap-northeast-1" : { },
622
628
  "ap-northeast-2" : { },
629
+ "ap-northeast-3" : { },
623
630
  "ap-south-1" : { },
624
631
  "ap-southeast-1" : { },
625
632
  "ap-southeast-2" : { },
@@ -1021,6 +1028,13 @@
1021
1028
  "us-west-2" : { }
1022
1029
  }
1023
1030
  },
1031
+ "braket" : {
1032
+ "endpoints" : {
1033
+ "us-east-1" : { },
1034
+ "us-west-1" : { },
1035
+ "us-west-2" : { }
1036
+ }
1037
+ },
1024
1038
  "budgets" : {
1025
1039
  "endpoints" : {
1026
1040
  "aws-global" : {
@@ -1063,9 +1077,11 @@
1063
1077
  },
1064
1078
  "cloud9" : {
1065
1079
  "endpoints" : {
1080
+ "af-south-1" : { },
1066
1081
  "ap-east-1" : { },
1067
1082
  "ap-northeast-1" : { },
1068
1083
  "ap-northeast-2" : { },
1084
+ "ap-northeast-3" : { },
1069
1085
  "ap-south-1" : { },
1070
1086
  "ap-southeast-1" : { },
1071
1087
  "ap-southeast-2" : { },
@@ -5107,6 +5123,7 @@
5107
5123
  },
5108
5124
  "polly" : {
5109
5125
  "endpoints" : {
5126
+ "af-south-1" : { },
5110
5127
  "ap-east-1" : { },
5111
5128
  "ap-northeast-1" : { },
5112
5129
  "ap-northeast-2" : { },
@@ -5634,6 +5651,7 @@
5634
5651
  "ap-east-1" : { },
5635
5652
  "ap-northeast-1" : { },
5636
5653
  "ap-northeast-2" : { },
5654
+ "ap-northeast-3" : { },
5637
5655
  "ap-south-1" : { },
5638
5656
  "ap-southeast-1" : { },
5639
5657
  "ap-southeast-2" : { },
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.494.0
4
+ version: 1.498.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-09-01 00:00:00.000000000 Z
11
+ date: 2021-09-08 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Provides interfaces to enumerate AWS partitions, regions, and services.
14
14
  email: