Skip to content

Commit

Permalink
feat(clients): update client endpoints as of 2022-07-15
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Jul 15, 2022
1 parent 41cc348 commit 145ed3a
Show file tree
Hide file tree
Showing 2 changed files with 87 additions and 1 deletion.
30 changes: 29 additions & 1 deletion clients/client-devops-guru/src/endpoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,32 @@
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: "devops-guru-fips.us-east-1.amazonaws.com",
tags: ["fips"],
},
],
},
"us-east-2": {
variants: [
{
hostname: "devops-guru-fips.us-east-2.amazonaws.com",
tags: ["fips"],
},
],
},
"us-west-2": {
variants: [
{
hostname: "devops-guru-fips.us-west-2.amazonaws.com",
tags: ["fips"],
},
],
},
};

const partitionHash: PartitionHash = {
aws: {
Expand All @@ -23,6 +48,9 @@ const partitionHash: PartitionHash = {
"eu-west-1",
"eu-west-2",
"eu-west-3",
"fips-us-east-1",
"fips-us-east-2",
"fips-us-west-2",
"me-south-1",
"sa-east-1",
"us-east-1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3791,6 +3791,64 @@
"us-west-2": {}
}
},
"devops-guru": {
"defaults": {
"protocols": ["https"]
},
"endpoints": {
"ap-northeast-1": {},
"ap-southeast-1": {},
"ap-southeast-2": {},
"eu-central-1": {},
"eu-north-1": {},
"eu-west-1": {},
"fips-us-east-1": {
"credentialScope": {
"region": "us-east-1"
},
"deprecated": true,
"hostname": "devops-guru-fips.us-east-1.amazonaws.com"
},
"fips-us-east-2": {
"credentialScope": {
"region": "us-east-2"
},
"deprecated": true,
"hostname": "devops-guru-fips.us-east-2.amazonaws.com"
},
"fips-us-west-2": {
"credentialScope": {
"region": "us-west-2"
},
"deprecated": true,
"hostname": "devops-guru-fips.us-west-2.amazonaws.com"
},
"us-east-1": {
"variants": [
{
"hostname": "devops-guru-fips.us-east-1.amazonaws.com",
"tags": ["fips"]
}
]
},
"us-east-2": {
"variants": [
{
"hostname": "devops-guru-fips.us-east-2.amazonaws.com",
"tags": ["fips"]
}
]
},
"us-west-2": {
"variants": [
{
"hostname": "devops-guru-fips.us-west-2.amazonaws.com",
"tags": ["fips"]
}
]
}
}
},
"directconnect": {
"endpoints": {
"af-south-1": {},
Expand Down

0 comments on commit 145ed3a

Please sign in to comment.