Skip to content

Commit

Permalink
feat(clients): update client endpoints as of 2022-09-27
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Sep 27, 2022
1 parent df2b1a5 commit 28c0b1d
Show file tree
Hide file tree
Showing 3 changed files with 172 additions and 0 deletions.
45 changes: 45 additions & 0 deletions clients/client-app-mesh/src/endpoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,14 @@ const regionHash: RegionHash = {
},
"ca-central-1": {
variants: [
{
hostname: "appmesh-fips.ca-central-1.amazonaws.com",
tags: ["fips"],
},
{
hostname: "appmesh-fips.ca-central-1.api.aws",
tags: ["dualstack", "fips"],
},
{
hostname: "appmesh.ca-central-1.api.aws",
tags: ["dualstack"],
Expand Down Expand Up @@ -165,6 +173,14 @@ const regionHash: RegionHash = {
},
"us-east-1": {
variants: [
{
hostname: "appmesh-fips.us-east-1.amazonaws.com",
tags: ["fips"],
},
{
hostname: "appmesh-fips.us-east-1.api.aws",
tags: ["dualstack", "fips"],
},
{
hostname: "appmesh.us-east-1.api.aws",
tags: ["dualstack"],
Expand All @@ -173,6 +189,14 @@ const regionHash: RegionHash = {
},
"us-east-2": {
variants: [
{
hostname: "appmesh-fips.us-east-2.amazonaws.com",
tags: ["fips"],
},
{
hostname: "appmesh-fips.us-east-2.api.aws",
tags: ["dualstack", "fips"],
},
{
hostname: "appmesh.us-east-2.api.aws",
tags: ["dualstack"],
Expand All @@ -181,6 +205,14 @@ const regionHash: RegionHash = {
},
"us-west-1": {
variants: [
{
hostname: "appmesh-fips.us-west-1.amazonaws.com",
tags: ["fips"],
},
{
hostname: "appmesh-fips.us-west-1.api.aws",
tags: ["dualstack", "fips"],
},
{
hostname: "appmesh.us-west-1.api.aws",
tags: ["dualstack"],
Expand All @@ -189,6 +221,14 @@ const regionHash: RegionHash = {
},
"us-west-2": {
variants: [
{
hostname: "appmesh-fips.us-west-2.amazonaws.com",
tags: ["fips"],
},
{
hostname: "appmesh-fips.us-west-2.api.aws",
tags: ["dualstack", "fips"],
},
{
hostname: "appmesh.us-west-2.api.aws",
tags: ["dualstack"],
Expand All @@ -210,6 +250,7 @@ const partitionHash: PartitionHash = {
"ap-southeast-2",
"ap-southeast-3",
"ca-central-1",
"ca-central-1-fips",
"eu-central-1",
"eu-north-1",
"eu-south-1",
Expand All @@ -220,9 +261,13 @@ const partitionHash: PartitionHash = {
"me-south-1",
"sa-east-1",
"us-east-1",
"us-east-1-fips",
"us-east-2",
"us-east-2-fips",
"us-west-1",
"us-west-1-fips",
"us-west-2",
"us-west-2-fips",
],
regionRegex: "^(us|eu|ap|sa|ca|me|af)\\-\\w+\\-\\d+$",
variants: [
Expand Down
18 changes: 18 additions & 0 deletions clients/client-emr-serverless/src/endpoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ import { getRegionInfo, PartitionHash, RegionHash } from "@aws-sdk/config-resolv
import { RegionInfoProvider, RegionInfoProviderOptions } from "@aws-sdk/types";

const regionHash: RegionHash = {
"ca-central-1": {
variants: [
{
hostname: "emr-serverless-fips.ca-central-1.amazonaws.com",
tags: ["fips"],
},
],
},
"us-east-1": {
variants: [
{
Expand All @@ -19,6 +27,14 @@ const regionHash: RegionHash = {
},
],
},
"us-west-1": {
variants: [
{
hostname: "emr-serverless-fips.us-west-1.amazonaws.com",
tags: ["fips"],
},
],
},
"us-west-2": {
variants: [
{
Expand Down Expand Up @@ -48,8 +64,10 @@ const partitionHash: PartitionHash = {
"eu-west-1",
"eu-west-2",
"eu-west-3",
"fips-ca-central-1",
"fips-us-east-1",
"fips-us-east-2",
"fips-us-west-1",
"fips-us-west-2",
"me-central-1",
"me-south-1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1537,12 +1537,27 @@
},
"ca-central-1": {
"variants": [
{
"hostname": "appmesh-fips.ca-central-1.amazonaws.com",
"tags": ["fips"]
},
{
"hostname": "appmesh-fips.ca-central-1.api.aws",
"tags": ["dualstack", "fips"]
},
{
"hostname": "appmesh.ca-central-1.api.aws",
"tags": ["dualstack"]
}
]
},
"ca-central-1-fips": {
"credentialScope": {
"region": "ca-central-1"
},
"deprecated": true,
"hostname": "appmesh-fips.ca-central-1.amazonaws.com"
},
"eu-central-1": {
"variants": [
{
Expand Down Expand Up @@ -1609,35 +1624,95 @@
},
"us-east-1": {
"variants": [
{
"hostname": "appmesh-fips.us-east-1.amazonaws.com",
"tags": ["fips"]
},
{
"hostname": "appmesh-fips.us-east-1.api.aws",
"tags": ["dualstack", "fips"]
},
{
"hostname": "appmesh.us-east-1.api.aws",
"tags": ["dualstack"]
}
]
},
"us-east-1-fips": {
"credentialScope": {
"region": "us-east-1"
},
"deprecated": true,
"hostname": "appmesh-fips.us-east-1.amazonaws.com"
},
"us-east-2": {
"variants": [
{
"hostname": "appmesh-fips.us-east-2.amazonaws.com",
"tags": ["fips"]
},
{
"hostname": "appmesh-fips.us-east-2.api.aws",
"tags": ["dualstack", "fips"]
},
{
"hostname": "appmesh.us-east-2.api.aws",
"tags": ["dualstack"]
}
]
},
"us-east-2-fips": {
"credentialScope": {
"region": "us-east-2"
},
"deprecated": true,
"hostname": "appmesh-fips.us-east-2.amazonaws.com"
},
"us-west-1": {
"variants": [
{
"hostname": "appmesh-fips.us-west-1.amazonaws.com",
"tags": ["fips"]
},
{
"hostname": "appmesh-fips.us-west-1.api.aws",
"tags": ["dualstack", "fips"]
},
{
"hostname": "appmesh.us-west-1.api.aws",
"tags": ["dualstack"]
}
]
},
"us-west-1-fips": {
"credentialScope": {
"region": "us-west-1"
},
"deprecated": true,
"hostname": "appmesh-fips.us-west-1.amazonaws.com"
},
"us-west-2": {
"variants": [
{
"hostname": "appmesh-fips.us-west-2.amazonaws.com",
"tags": ["fips"]
},
{
"hostname": "appmesh-fips.us-west-2.api.aws",
"tags": ["dualstack", "fips"]
},
{
"hostname": "appmesh.us-west-2.api.aws",
"tags": ["dualstack"]
}
]
},
"us-west-2-fips": {
"credentialScope": {
"region": "us-west-2"
},
"deprecated": true,
"hostname": "appmesh-fips.us-west-2.amazonaws.com"
}
}
},
Expand Down Expand Up @@ -6020,8 +6095,27 @@
"ap-northeast-2": {},
"ap-south-1": {},
"ap-southeast-1": {},
"ap-southeast-2": {},
"ca-central-1": {
"variants": [
{
"hostname": "emr-serverless-fips.ca-central-1.amazonaws.com",
"tags": ["fips"]
}
]
},
"eu-central-1": {},
"eu-north-1": {},
"eu-west-1": {},
"eu-west-2": {},
"eu-west-3": {},
"fips-ca-central-1": {
"credentialScope": {
"region": "ca-central-1"
},
"deprecated": true,
"hostname": "emr-serverless-fips.ca-central-1.amazonaws.com"
},
"fips-us-east-1": {
"credentialScope": {
"region": "us-east-1"
Expand All @@ -6036,6 +6130,13 @@
"deprecated": true,
"hostname": "emr-serverless-fips.us-east-2.amazonaws.com"
},
"fips-us-west-1": {
"credentialScope": {
"region": "us-west-1"
},
"deprecated": true,
"hostname": "emr-serverless-fips.us-west-1.amazonaws.com"
},
"fips-us-west-2": {
"credentialScope": {
"region": "us-west-2"
Expand All @@ -6060,6 +6161,14 @@
}
]
},
"us-west-1": {
"variants": [
{
"hostname": "emr-serverless-fips.us-west-1.amazonaws.com",
"tags": ["fips"]
}
]
},
"us-west-2": {
"variants": [
{
Expand Down

0 comments on commit 28c0b1d

Please sign in to comment.