aws-partitions 1.256.0 → 1.262.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/lib/aws-partitions.rb +1 -0
- data/lib/aws-partitions/endpoint_provider.rb +0 -11
- data/partitions.json +92 -5
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0cd14a0afe8e075a56009565e726c8ff9a124f06
|
|
4
|
+
data.tar.gz: 91c5d5ccdb9b30e89975a0ad63220093b589d04d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2459f0f1209a7a5768347e0f1b34cd374d40464f9d9a384289ec596767a8499cd4583d3a04596dc84a7f04fd22cd699c16f6627fcb239a443983e9be1c69fb29
|
|
7
|
+
data.tar.gz: 7e68c2cb43b32a248ba83c2eb5d0d42eb1f3a0048fbc98bcb04ac9caa59712a0782b96df4c5f1fbbe3619e375d2da322924f267dbc251f0bfb336d480fd206bb
|
data/lib/aws-partitions.rb
CHANGED
|
@@ -263,6 +263,7 @@ module Aws
|
|
|
263
263
|
'CodePipeline' => 'codepipeline',
|
|
264
264
|
'CodeStar' => 'codestar',
|
|
265
265
|
'CodeStarNotifications' => 'codestar-notifications',
|
|
266
|
+
'CodeStarconnections' => 'codestar-connections',
|
|
266
267
|
'CognitoIdentity' => 'cognito-identity',
|
|
267
268
|
'CognitoIdentityProvider' => 'cognito-idp',
|
|
268
269
|
'CognitoSync' => 'cognito-sync',
|
|
@@ -23,12 +23,6 @@ module Aws
|
|
|
23
23
|
us-west-2
|
|
24
24
|
].freeze
|
|
25
25
|
|
|
26
|
-
# Can be removed once S3 endpoint is updated
|
|
27
|
-
S3_IAD_REGIONAL = {
|
|
28
|
-
'hostname' => 's3.us-east-1.amazonaws.com',
|
|
29
|
-
'signatureVersions' => %w[s3 s3v4]
|
|
30
|
-
}.freeze
|
|
31
|
-
|
|
32
26
|
# Intentionally marked private. The format of the endpoint rules
|
|
33
27
|
# is an implementation detail.
|
|
34
28
|
# @api private
|
|
@@ -84,11 +78,6 @@ module Aws
|
|
|
84
78
|
region = service_cfg.fetch('partitionEndpoint', region)
|
|
85
79
|
end
|
|
86
80
|
|
|
87
|
-
# Can be removed once S3 endpoint is updated
|
|
88
|
-
if (service == 's3') && (region == 'us-east-1')
|
|
89
|
-
service_cfg['endpoints'][region] = S3_IAD_REGIONAL
|
|
90
|
-
end
|
|
91
|
-
|
|
92
81
|
# Check for service/region level endpoint.
|
|
93
82
|
endpoint = service_cfg
|
|
94
83
|
.fetch('endpoints', {})
|
data/partitions.json
CHANGED
|
@@ -80,6 +80,12 @@
|
|
|
80
80
|
"ap-southeast-1" : { },
|
|
81
81
|
"ap-southeast-2" : { },
|
|
82
82
|
"ca-central-1" : { },
|
|
83
|
+
"ca-central-1-fips" : {
|
|
84
|
+
"credentialScope" : {
|
|
85
|
+
"region" : "ca-central-1"
|
|
86
|
+
},
|
|
87
|
+
"hostname" : "acm-fips.ca-central-1.amazonaws.com"
|
|
88
|
+
},
|
|
83
89
|
"eu-central-1" : { },
|
|
84
90
|
"eu-north-1" : { },
|
|
85
91
|
"eu-west-1" : { },
|
|
@@ -88,9 +94,33 @@
|
|
|
88
94
|
"me-south-1" : { },
|
|
89
95
|
"sa-east-1" : { },
|
|
90
96
|
"us-east-1" : { },
|
|
97
|
+
"us-east-1-fips" : {
|
|
98
|
+
"credentialScope" : {
|
|
99
|
+
"region" : "us-east-1"
|
|
100
|
+
},
|
|
101
|
+
"hostname" : "acm-fips.us-east-1.amazonaws.com"
|
|
102
|
+
},
|
|
91
103
|
"us-east-2" : { },
|
|
104
|
+
"us-east-2-fips" : {
|
|
105
|
+
"credentialScope" : {
|
|
106
|
+
"region" : "us-east-2"
|
|
107
|
+
},
|
|
108
|
+
"hostname" : "acm-fips.us-east-2.amazonaws.com"
|
|
109
|
+
},
|
|
92
110
|
"us-west-1" : { },
|
|
93
|
-
"us-west-
|
|
111
|
+
"us-west-1-fips" : {
|
|
112
|
+
"credentialScope" : {
|
|
113
|
+
"region" : "us-west-1"
|
|
114
|
+
},
|
|
115
|
+
"hostname" : "acm-fips.us-west-1.amazonaws.com"
|
|
116
|
+
},
|
|
117
|
+
"us-west-2" : { },
|
|
118
|
+
"us-west-2-fips" : {
|
|
119
|
+
"credentialScope" : {
|
|
120
|
+
"region" : "us-west-2"
|
|
121
|
+
},
|
|
122
|
+
"hostname" : "acm-fips.us-west-2.amazonaws.com"
|
|
123
|
+
}
|
|
94
124
|
}
|
|
95
125
|
},
|
|
96
126
|
"acm-pca" : {
|
|
@@ -587,9 +617,15 @@
|
|
|
587
617
|
"cloud9" : {
|
|
588
618
|
"endpoints" : {
|
|
589
619
|
"ap-northeast-1" : { },
|
|
620
|
+
"ap-northeast-2" : { },
|
|
621
|
+
"ap-south-1" : { },
|
|
590
622
|
"ap-southeast-1" : { },
|
|
623
|
+
"ap-southeast-2" : { },
|
|
624
|
+
"ca-central-1" : { },
|
|
591
625
|
"eu-central-1" : { },
|
|
626
|
+
"eu-north-1" : { },
|
|
592
627
|
"eu-west-1" : { },
|
|
628
|
+
"eu-west-2" : { },
|
|
593
629
|
"us-east-1" : { },
|
|
594
630
|
"us-east-2" : { },
|
|
595
631
|
"us-west-2" : { }
|
|
@@ -975,8 +1011,10 @@
|
|
|
975
1011
|
"connect" : {
|
|
976
1012
|
"endpoints" : {
|
|
977
1013
|
"ap-northeast-1" : { },
|
|
1014
|
+
"ap-southeast-1" : { },
|
|
978
1015
|
"ap-southeast-2" : { },
|
|
979
1016
|
"eu-central-1" : { },
|
|
1017
|
+
"eu-west-2" : { },
|
|
980
1018
|
"us-east-1" : { },
|
|
981
1019
|
"us-west-2" : { }
|
|
982
1020
|
}
|
|
@@ -1263,6 +1301,7 @@
|
|
|
1263
1301
|
"eu-north-1" : { },
|
|
1264
1302
|
"eu-west-1" : { },
|
|
1265
1303
|
"eu-west-2" : { },
|
|
1304
|
+
"eu-west-3" : { },
|
|
1266
1305
|
"sa-east-1" : { },
|
|
1267
1306
|
"us-east-1" : { },
|
|
1268
1307
|
"us-east-2" : { },
|
|
@@ -1754,6 +1793,8 @@
|
|
|
1754
1793
|
},
|
|
1755
1794
|
"groundstation" : {
|
|
1756
1795
|
"endpoints" : {
|
|
1796
|
+
"eu-north-1" : { },
|
|
1797
|
+
"me-south-1" : { },
|
|
1757
1798
|
"us-east-2" : { },
|
|
1758
1799
|
"us-west-2" : { }
|
|
1759
1800
|
}
|
|
@@ -2055,11 +2096,13 @@
|
|
|
2055
2096
|
"ap-south-1" : { },
|
|
2056
2097
|
"ap-southeast-1" : { },
|
|
2057
2098
|
"ap-southeast-2" : { },
|
|
2099
|
+
"ca-central-1" : { },
|
|
2058
2100
|
"eu-central-1" : { },
|
|
2059
2101
|
"eu-north-1" : { },
|
|
2060
2102
|
"eu-west-1" : { },
|
|
2061
2103
|
"eu-west-2" : { },
|
|
2062
2104
|
"eu-west-3" : { },
|
|
2105
|
+
"sa-east-1" : { },
|
|
2063
2106
|
"us-east-1" : { },
|
|
2064
2107
|
"us-east-2" : { },
|
|
2065
2108
|
"us-west-2" : { }
|
|
@@ -2067,11 +2110,20 @@
|
|
|
2067
2110
|
},
|
|
2068
2111
|
"kinesisvideo" : {
|
|
2069
2112
|
"endpoints" : {
|
|
2113
|
+
"ap-east-1" : { },
|
|
2070
2114
|
"ap-northeast-1" : { },
|
|
2115
|
+
"ap-northeast-2" : { },
|
|
2116
|
+
"ap-south-1" : { },
|
|
2117
|
+
"ap-southeast-1" : { },
|
|
2071
2118
|
"ap-southeast-2" : { },
|
|
2119
|
+
"ca-central-1" : { },
|
|
2072
2120
|
"eu-central-1" : { },
|
|
2073
2121
|
"eu-west-1" : { },
|
|
2122
|
+
"eu-west-2" : { },
|
|
2123
|
+
"eu-west-3" : { },
|
|
2124
|
+
"sa-east-1" : { },
|
|
2074
2125
|
"us-east-1" : { },
|
|
2126
|
+
"us-east-2" : { },
|
|
2075
2127
|
"us-west-2" : { }
|
|
2076
2128
|
}
|
|
2077
2129
|
},
|
|
@@ -2378,6 +2430,7 @@
|
|
|
2378
2430
|
"ap-southeast-2" : { },
|
|
2379
2431
|
"ca-central-1" : { },
|
|
2380
2432
|
"eu-central-1" : { },
|
|
2433
|
+
"eu-north-1" : { },
|
|
2381
2434
|
"eu-west-1" : { },
|
|
2382
2435
|
"eu-west-2" : { },
|
|
2383
2436
|
"eu-west-3" : { },
|
|
@@ -2405,6 +2458,7 @@
|
|
|
2405
2458
|
},
|
|
2406
2459
|
"hostname" : "mq-fips.us-west-2.amazonaws.com"
|
|
2407
2460
|
},
|
|
2461
|
+
"sa-east-1" : { },
|
|
2408
2462
|
"us-east-1" : { },
|
|
2409
2463
|
"us-east-2" : { },
|
|
2410
2464
|
"us-west-1" : { },
|
|
@@ -2610,6 +2664,19 @@
|
|
|
2610
2664
|
"isRegionalized" : false,
|
|
2611
2665
|
"partitionEndpoint" : "aws-global"
|
|
2612
2666
|
},
|
|
2667
|
+
"outposts" : {
|
|
2668
|
+
"endpoints" : {
|
|
2669
|
+
"ap-northeast-1" : { },
|
|
2670
|
+
"ap-northeast-2" : { },
|
|
2671
|
+
"ap-southeast-2" : { },
|
|
2672
|
+
"eu-central-1" : { },
|
|
2673
|
+
"eu-west-1" : { },
|
|
2674
|
+
"us-east-1" : { },
|
|
2675
|
+
"us-east-2" : { },
|
|
2676
|
+
"us-west-1" : { },
|
|
2677
|
+
"us-west-2" : { }
|
|
2678
|
+
}
|
|
2679
|
+
},
|
|
2613
2680
|
"pinpoint" : {
|
|
2614
2681
|
"defaults" : {
|
|
2615
2682
|
"credentialScope" : {
|
|
@@ -2751,6 +2818,7 @@
|
|
|
2751
2818
|
},
|
|
2752
2819
|
"ram" : {
|
|
2753
2820
|
"endpoints" : {
|
|
2821
|
+
"ap-east-1" : { },
|
|
2754
2822
|
"ap-northeast-1" : { },
|
|
2755
2823
|
"ap-northeast-2" : { },
|
|
2756
2824
|
"ap-south-1" : { },
|
|
@@ -2762,6 +2830,7 @@
|
|
|
2762
2830
|
"eu-west-1" : { },
|
|
2763
2831
|
"eu-west-2" : { },
|
|
2764
2832
|
"eu-west-3" : { },
|
|
2833
|
+
"me-south-1" : { },
|
|
2765
2834
|
"sa-east-1" : { },
|
|
2766
2835
|
"us-east-1" : { },
|
|
2767
2836
|
"us-east-2" : { },
|
|
@@ -2917,6 +2986,7 @@
|
|
|
2917
2986
|
"ap-southeast-2" : { },
|
|
2918
2987
|
"ca-central-1" : { },
|
|
2919
2988
|
"eu-central-1" : { },
|
|
2989
|
+
"eu-north-1" : { },
|
|
2920
2990
|
"eu-west-1" : { },
|
|
2921
2991
|
"eu-west-2" : { },
|
|
2922
2992
|
"eu-west-3" : { },
|
|
@@ -3006,6 +3076,13 @@
|
|
|
3006
3076
|
"hostname" : "s3.ap-southeast-2.amazonaws.com",
|
|
3007
3077
|
"signatureVersions" : [ "s3", "s3v4" ]
|
|
3008
3078
|
},
|
|
3079
|
+
"aws-global" : {
|
|
3080
|
+
"credentialScope" : {
|
|
3081
|
+
"region" : "us-east-1"
|
|
3082
|
+
},
|
|
3083
|
+
"hostname" : "s3.amazonaws.com",
|
|
3084
|
+
"signatureVersions" : [ "s3", "s3v4" ]
|
|
3085
|
+
},
|
|
3009
3086
|
"ca-central-1" : { },
|
|
3010
3087
|
"eu-central-1" : { },
|
|
3011
3088
|
"eu-north-1" : { },
|
|
@@ -3028,7 +3105,7 @@
|
|
|
3028
3105
|
"signatureVersions" : [ "s3", "s3v4" ]
|
|
3029
3106
|
},
|
|
3030
3107
|
"us-east-1" : {
|
|
3031
|
-
"hostname" : "s3.amazonaws.com",
|
|
3108
|
+
"hostname" : "s3.us-east-1.amazonaws.com",
|
|
3032
3109
|
"signatureVersions" : [ "s3", "s3v4" ]
|
|
3033
3110
|
},
|
|
3034
3111
|
"us-east-2" : { },
|
|
@@ -3042,7 +3119,7 @@
|
|
|
3042
3119
|
}
|
|
3043
3120
|
},
|
|
3044
3121
|
"isRegionalized" : true,
|
|
3045
|
-
"partitionEndpoint" : "
|
|
3122
|
+
"partitionEndpoint" : "aws-global"
|
|
3046
3123
|
},
|
|
3047
3124
|
"s3-control" : {
|
|
3048
3125
|
"defaults" : {
|
|
@@ -4238,6 +4315,12 @@
|
|
|
4238
4315
|
},
|
|
4239
4316
|
"isRegionalized" : true
|
|
4240
4317
|
},
|
|
4318
|
+
"health" : {
|
|
4319
|
+
"endpoints" : {
|
|
4320
|
+
"cn-north-1" : { },
|
|
4321
|
+
"cn-northwest-1" : { }
|
|
4322
|
+
}
|
|
4323
|
+
},
|
|
4241
4324
|
"iam" : {
|
|
4242
4325
|
"endpoints" : {
|
|
4243
4326
|
"aws-cn-global" : {
|
|
@@ -4476,6 +4559,12 @@
|
|
|
4476
4559
|
"endpoints" : {
|
|
4477
4560
|
"cn-northwest-1" : { }
|
|
4478
4561
|
}
|
|
4562
|
+
},
|
|
4563
|
+
"xray" : {
|
|
4564
|
+
"endpoints" : {
|
|
4565
|
+
"cn-north-1" : { },
|
|
4566
|
+
"cn-northwest-1" : { }
|
|
4567
|
+
}
|
|
4479
4568
|
}
|
|
4480
4569
|
}
|
|
4481
4570
|
}, {
|
|
@@ -5267,7 +5356,6 @@
|
|
|
5267
5356
|
},
|
|
5268
5357
|
"application-autoscaling" : {
|
|
5269
5358
|
"defaults" : {
|
|
5270
|
-
"hostname" : "autoscaling.us-iso-east-1.c2s.ic.gov",
|
|
5271
5359
|
"protocols" : [ "http", "https" ]
|
|
5272
5360
|
},
|
|
5273
5361
|
"endpoints" : {
|
|
@@ -5537,7 +5625,6 @@
|
|
|
5537
5625
|
"services" : {
|
|
5538
5626
|
"application-autoscaling" : {
|
|
5539
5627
|
"defaults" : {
|
|
5540
|
-
"hostname" : "autoscaling.us-isob-east-1.sc2s.sgov.gov",
|
|
5541
5628
|
"protocols" : [ "http", "https" ]
|
|
5542
5629
|
},
|
|
5543
5630
|
"endpoints" : {
|
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.262.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: 2020-01-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Provides interfaces to enumerate AWS partitions, regions, and services.
|
|
14
14
|
email:
|