Skip to content

Commit

Permalink
feat(clients): update client endpoints as of 2022-09-02
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Sep 2, 2022
1 parent 8e57ba3 commit 9cfaf1b
Show file tree
Hide file tree
Showing 3 changed files with 129 additions and 8 deletions.
39 changes: 38 additions & 1 deletion clients/client-databrew/src/endpoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,40 @@
import { getRegionInfo, PartitionHash, RegionHash } from "@aws-sdk/config-resolver";
import { RegionInfoProvider, RegionInfoProviderOptions } from "@aws-sdk/types";

const regionHash: RegionHash = {};
const regionHash: RegionHash = {
"us-east-1": {
variants: [
{
hostname: "databrew-fips.us-east-1.amazonaws.com",
tags: ["fips"],
},
],
},
"us-east-2": {
variants: [
{
hostname: "databrew-fips.us-east-2.amazonaws.com",
tags: ["fips"],
},
],
},
"us-west-1": {
variants: [
{
hostname: "databrew-fips.us-west-1.amazonaws.com",
tags: ["fips"],
},
],
},
"us-west-2": {
variants: [
{
hostname: "databrew-fips.us-west-2.amazonaws.com",
tags: ["fips"],
},
],
},
};

const partitionHash: PartitionHash = {
aws: {
Expand All @@ -23,6 +56,10 @@ const partitionHash: PartitionHash = {
"eu-west-1",
"eu-west-2",
"eu-west-3",
"fips-us-east-1",
"fips-us-east-2",
"fips-us-west-1",
"fips-us-west-2",
"me-central-1",
"me-south-1",
"sa-east-1",
Expand Down
11 changes: 10 additions & 1 deletion clients/client-voice-id/src/endpoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,14 @@
import { getRegionInfo, PartitionHash, RegionHash } from "@aws-sdk/config-resolver";
import { RegionInfoProvider, RegionInfoProviderOptions } from "@aws-sdk/types";

const regionHash: RegionHash = {};
const regionHash: RegionHash = {
"us-east-1": {
variants: [],
},
"us-west-2": {
variants: [],
},
};

const partitionHash: PartitionHash = {
aws: {
Expand All @@ -23,6 +30,8 @@ const partitionHash: PartitionHash = {
"eu-west-1",
"eu-west-2",
"eu-west-3",
"fips-us-east-1",
"fips-us-west-2",
"me-central-1",
"me-south-1",
"sa-east-1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3914,11 +3914,67 @@
"eu-west-1": {},
"eu-west-2": {},
"eu-west-3": {},
"fips-us-east-1": {
"credentialScope": {
"region": "us-east-1"
},
"deprecated": true,
"hostname": "databrew-fips.us-east-1.amazonaws.com"
},
"fips-us-east-2": {
"credentialScope": {
"region": "us-east-2"
},
"deprecated": true,
"hostname": "databrew-fips.us-east-2.amazonaws.com"
},
"fips-us-west-1": {
"credentialScope": {
"region": "us-west-1"
},
"deprecated": true,
"hostname": "databrew-fips.us-west-1.amazonaws.com"
},
"fips-us-west-2": {
"credentialScope": {
"region": "us-west-2"
},
"deprecated": true,
"hostname": "databrew-fips.us-west-2.amazonaws.com"
},
"sa-east-1": {},
"us-east-1": {},
"us-east-2": {},
"us-west-1": {},
"us-west-2": {}
"us-east-1": {
"variants": [
{
"hostname": "databrew-fips.us-east-1.amazonaws.com",
"tags": ["fips"]
}
]
},
"us-east-2": {
"variants": [
{
"hostname": "databrew-fips.us-east-2.amazonaws.com",
"tags": ["fips"]
}
]
},
"us-west-1": {
"variants": [
{
"hostname": "databrew-fips.us-west-1.amazonaws.com",
"tags": ["fips"]
}
]
},
"us-west-2": {
"variants": [
{
"hostname": "databrew-fips.us-west-2.amazonaws.com",
"tags": ["fips"]
}
]
}
}
},
"dataexchange": {
Expand Down Expand Up @@ -4466,6 +4522,7 @@
"ap-south-1": {},
"ap-southeast-1": {},
"ap-southeast-2": {},
"ap-southeast-3": {},
"ca-central-1": {
"variants": [
{
Expand Down Expand Up @@ -15198,8 +15255,26 @@
"ap-southeast-2": {},
"eu-central-1": {},
"eu-west-2": {},
"us-east-1": {},
"us-west-2": {}
"fips-us-east-1": {
"deprecated": true
},
"fips-us-west-2": {
"deprecated": true
},
"us-east-1": {
"variants": [
{
"tags": ["fips"]
}
]
},
"us-west-2": {
"variants": [
{
"tags": ["fips"]
}
]
}
}
},
"waf": {
Expand Down

0 comments on commit 9cfaf1b

Please sign in to comment.