Skip to content

Commit 28c0b1d

Browse files
author
awstools
committed
feat(clients): update client endpoints as of 2022-09-27
1 parent df2b1a5 commit 28c0b1d

File tree

3 files changed

+172
-0
lines changed
  • clients
  • codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen

3 files changed

+172
-0
lines changed

clients/client-app-mesh/src/endpoints.ts

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,14 @@ const regionHash: RegionHash = {
7777
},
7878
"ca-central-1": {
7979
variants: [
80+
{
81+
hostname: "appmesh-fips.ca-central-1.amazonaws.com",
82+
tags: ["fips"],
83+
},
84+
{
85+
hostname: "appmesh-fips.ca-central-1.api.aws",
86+
tags: ["dualstack", "fips"],
87+
},
8088
{
8189
hostname: "appmesh.ca-central-1.api.aws",
8290
tags: ["dualstack"],
@@ -165,6 +173,14 @@ const regionHash: RegionHash = {
165173
},
166174
"us-east-1": {
167175
variants: [
176+
{
177+
hostname: "appmesh-fips.us-east-1.amazonaws.com",
178+
tags: ["fips"],
179+
},
180+
{
181+
hostname: "appmesh-fips.us-east-1.api.aws",
182+
tags: ["dualstack", "fips"],
183+
},
168184
{
169185
hostname: "appmesh.us-east-1.api.aws",
170186
tags: ["dualstack"],
@@ -173,6 +189,14 @@ const regionHash: RegionHash = {
173189
},
174190
"us-east-2": {
175191
variants: [
192+
{
193+
hostname: "appmesh-fips.us-east-2.amazonaws.com",
194+
tags: ["fips"],
195+
},
196+
{
197+
hostname: "appmesh-fips.us-east-2.api.aws",
198+
tags: ["dualstack", "fips"],
199+
},
176200
{
177201
hostname: "appmesh.us-east-2.api.aws",
178202
tags: ["dualstack"],
@@ -181,6 +205,14 @@ const regionHash: RegionHash = {
181205
},
182206
"us-west-1": {
183207
variants: [
208+
{
209+
hostname: "appmesh-fips.us-west-1.amazonaws.com",
210+
tags: ["fips"],
211+
},
212+
{
213+
hostname: "appmesh-fips.us-west-1.api.aws",
214+
tags: ["dualstack", "fips"],
215+
},
184216
{
185217
hostname: "appmesh.us-west-1.api.aws",
186218
tags: ["dualstack"],
@@ -189,6 +221,14 @@ const regionHash: RegionHash = {
189221
},
190222
"us-west-2": {
191223
variants: [
224+
{
225+
hostname: "appmesh-fips.us-west-2.amazonaws.com",
226+
tags: ["fips"],
227+
},
228+
{
229+
hostname: "appmesh-fips.us-west-2.api.aws",
230+
tags: ["dualstack", "fips"],
231+
},
192232
{
193233
hostname: "appmesh.us-west-2.api.aws",
194234
tags: ["dualstack"],
@@ -210,6 +250,7 @@ const partitionHash: PartitionHash = {
210250
"ap-southeast-2",
211251
"ap-southeast-3",
212252
"ca-central-1",
253+
"ca-central-1-fips",
213254
"eu-central-1",
214255
"eu-north-1",
215256
"eu-south-1",
@@ -220,9 +261,13 @@ const partitionHash: PartitionHash = {
220261
"me-south-1",
221262
"sa-east-1",
222263
"us-east-1",
264+
"us-east-1-fips",
223265
"us-east-2",
266+
"us-east-2-fips",
224267
"us-west-1",
268+
"us-west-1-fips",
225269
"us-west-2",
270+
"us-west-2-fips",
226271
],
227272
regionRegex: "^(us|eu|ap|sa|ca|me|af)\\-\\w+\\-\\d+$",
228273
variants: [

clients/client-emr-serverless/src/endpoints.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ import { getRegionInfo, PartitionHash, RegionHash } from "@aws-sdk/config-resolv
33
import { RegionInfoProvider, RegionInfoProviderOptions } from "@aws-sdk/types";
44

55
const regionHash: RegionHash = {
6+
"ca-central-1": {
7+
variants: [
8+
{
9+
hostname: "emr-serverless-fips.ca-central-1.amazonaws.com",
10+
tags: ["fips"],
11+
},
12+
],
13+
},
614
"us-east-1": {
715
variants: [
816
{
@@ -19,6 +27,14 @@ const regionHash: RegionHash = {
1927
},
2028
],
2129
},
30+
"us-west-1": {
31+
variants: [
32+
{
33+
hostname: "emr-serverless-fips.us-west-1.amazonaws.com",
34+
tags: ["fips"],
35+
},
36+
],
37+
},
2238
"us-west-2": {
2339
variants: [
2440
{
@@ -48,8 +64,10 @@ const partitionHash: PartitionHash = {
4864
"eu-west-1",
4965
"eu-west-2",
5066
"eu-west-3",
67+
"fips-ca-central-1",
5168
"fips-us-east-1",
5269
"fips-us-east-2",
70+
"fips-us-west-1",
5371
"fips-us-west-2",
5472
"me-central-1",
5573
"me-south-1",

codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/endpoints.json

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1537,12 +1537,27 @@
15371537
},
15381538
"ca-central-1": {
15391539
"variants": [
1540+
{
1541+
"hostname": "appmesh-fips.ca-central-1.amazonaws.com",
1542+
"tags": ["fips"]
1543+
},
1544+
{
1545+
"hostname": "appmesh-fips.ca-central-1.api.aws",
1546+
"tags": ["dualstack", "fips"]
1547+
},
15401548
{
15411549
"hostname": "appmesh.ca-central-1.api.aws",
15421550
"tags": ["dualstack"]
15431551
}
15441552
]
15451553
},
1554+
"ca-central-1-fips": {
1555+
"credentialScope": {
1556+
"region": "ca-central-1"
1557+
},
1558+
"deprecated": true,
1559+
"hostname": "appmesh-fips.ca-central-1.amazonaws.com"
1560+
},
15461561
"eu-central-1": {
15471562
"variants": [
15481563
{
@@ -1609,35 +1624,95 @@
16091624
},
16101625
"us-east-1": {
16111626
"variants": [
1627+
{
1628+
"hostname": "appmesh-fips.us-east-1.amazonaws.com",
1629+
"tags": ["fips"]
1630+
},
1631+
{
1632+
"hostname": "appmesh-fips.us-east-1.api.aws",
1633+
"tags": ["dualstack", "fips"]
1634+
},
16121635
{
16131636
"hostname": "appmesh.us-east-1.api.aws",
16141637
"tags": ["dualstack"]
16151638
}
16161639
]
16171640
},
1641+
"us-east-1-fips": {
1642+
"credentialScope": {
1643+
"region": "us-east-1"
1644+
},
1645+
"deprecated": true,
1646+
"hostname": "appmesh-fips.us-east-1.amazonaws.com"
1647+
},
16181648
"us-east-2": {
16191649
"variants": [
1650+
{
1651+
"hostname": "appmesh-fips.us-east-2.amazonaws.com",
1652+
"tags": ["fips"]
1653+
},
1654+
{
1655+
"hostname": "appmesh-fips.us-east-2.api.aws",
1656+
"tags": ["dualstack", "fips"]
1657+
},
16201658
{
16211659
"hostname": "appmesh.us-east-2.api.aws",
16221660
"tags": ["dualstack"]
16231661
}
16241662
]
16251663
},
1664+
"us-east-2-fips": {
1665+
"credentialScope": {
1666+
"region": "us-east-2"
1667+
},
1668+
"deprecated": true,
1669+
"hostname": "appmesh-fips.us-east-2.amazonaws.com"
1670+
},
16261671
"us-west-1": {
16271672
"variants": [
1673+
{
1674+
"hostname": "appmesh-fips.us-west-1.amazonaws.com",
1675+
"tags": ["fips"]
1676+
},
1677+
{
1678+
"hostname": "appmesh-fips.us-west-1.api.aws",
1679+
"tags": ["dualstack", "fips"]
1680+
},
16281681
{
16291682
"hostname": "appmesh.us-west-1.api.aws",
16301683
"tags": ["dualstack"]
16311684
}
16321685
]
16331686
},
1687+
"us-west-1-fips": {
1688+
"credentialScope": {
1689+
"region": "us-west-1"
1690+
},
1691+
"deprecated": true,
1692+
"hostname": "appmesh-fips.us-west-1.amazonaws.com"
1693+
},
16341694
"us-west-2": {
16351695
"variants": [
1696+
{
1697+
"hostname": "appmesh-fips.us-west-2.amazonaws.com",
1698+
"tags": ["fips"]
1699+
},
1700+
{
1701+
"hostname": "appmesh-fips.us-west-2.api.aws",
1702+
"tags": ["dualstack", "fips"]
1703+
},
16361704
{
16371705
"hostname": "appmesh.us-west-2.api.aws",
16381706
"tags": ["dualstack"]
16391707
}
16401708
]
1709+
},
1710+
"us-west-2-fips": {
1711+
"credentialScope": {
1712+
"region": "us-west-2"
1713+
},
1714+
"deprecated": true,
1715+
"hostname": "appmesh-fips.us-west-2.amazonaws.com"
16411716
}
16421717
}
16431718
},
@@ -6020,8 +6095,27 @@
60206095
"ap-northeast-2": {},
60216096
"ap-south-1": {},
60226097
"ap-southeast-1": {},
6098+
"ap-southeast-2": {},
6099+
"ca-central-1": {
6100+
"variants": [
6101+
{
6102+
"hostname": "emr-serverless-fips.ca-central-1.amazonaws.com",
6103+
"tags": ["fips"]
6104+
}
6105+
]
6106+
},
60236107
"eu-central-1": {},
6108+
"eu-north-1": {},
60246109
"eu-west-1": {},
6110+
"eu-west-2": {},
6111+
"eu-west-3": {},
6112+
"fips-ca-central-1": {
6113+
"credentialScope": {
6114+
"region": "ca-central-1"
6115+
},
6116+
"deprecated": true,
6117+
"hostname": "emr-serverless-fips.ca-central-1.amazonaws.com"
6118+
},
60256119
"fips-us-east-1": {
60266120
"credentialScope": {
60276121
"region": "us-east-1"
@@ -6036,6 +6130,13 @@
60366130
"deprecated": true,
60376131
"hostname": "emr-serverless-fips.us-east-2.amazonaws.com"
60386132
},
6133+
"fips-us-west-1": {
6134+
"credentialScope": {
6135+
"region": "us-west-1"
6136+
},
6137+
"deprecated": true,
6138+
"hostname": "emr-serverless-fips.us-west-1.amazonaws.com"
6139+
},
60396140
"fips-us-west-2": {
60406141
"credentialScope": {
60416142
"region": "us-west-2"
@@ -6060,6 +6161,14 @@
60606161
}
60616162
]
60626163
},
6164+
"us-west-1": {
6165+
"variants": [
6166+
{
6167+
"hostname": "emr-serverless-fips.us-west-1.amazonaws.com",
6168+
"tags": ["fips"]
6169+
}
6170+
]
6171+
},
60636172
"us-west-2": {
60646173
"variants": [
60656174
{

0 commit comments

Comments
 (0)