Skip to content

Commit

Permalink
feat(clients): update client endpoints as of 2022-07-14
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Jul 14, 2022
1 parent bae6c59 commit 93c74f4
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 1 deletion.
21 changes: 20 additions & 1 deletion clients/client-sso-admin/src/endpoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,26 @@
import { getRegionInfo, PartitionHash, RegionHash } from "@aws-sdk/config-resolver";
import { RegionInfoProvider, RegionInfoProviderOptions } from "@aws-sdk/types";

const regionHash: RegionHash = {};
const regionHash: RegionHash = {
"us-gov-east-1": {
variants: [
{
hostname: "sso.us-gov-east-1.amazonaws.com",
tags: [],
},
],
signingRegion: "us-gov-east-1",
},
"us-gov-west-1": {
variants: [
{
hostname: "sso.us-gov-west-1.amazonaws.com",
tags: [],
},
],
signingRegion: "us-gov-west-1",
},
};

const partitionHash: PartitionHash = {
aws: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13448,6 +13448,29 @@
"us-west-2": {}
}
},
"sso": {
"endpoints": {
"ap-east-1": {},
"ap-northeast-1": {},
"ap-northeast-2": {},
"ap-northeast-3": {},
"ap-south-1": {},
"ap-southeast-1": {},
"ap-southeast-2": {},
"ca-central-1": {},
"eu-central-1": {},
"eu-north-1": {},
"eu-south-1": {},
"eu-west-1": {},
"eu-west-2": {},
"eu-west-3": {},
"me-south-1": {},
"sa-east-1": {},
"us-east-1": {},
"us-east-2": {},
"us-west-2": {}
}
},
"states": {
"endpoints": {
"af-south-1": {},
Expand Down Expand Up @@ -20235,6 +20258,22 @@
}
}
},
"sso": {
"endpoints": {
"us-gov-east-1": {
"credentialScope": {
"region": "us-gov-east-1"
},
"hostname": "sso.us-gov-east-1.amazonaws.com"
},
"us-gov-west-1": {
"credentialScope": {
"region": "us-gov-west-1"
},
"hostname": "sso.us-gov-west-1.amazonaws.com"
}
}
},
"states": {
"endpoints": {
"fips-us-gov-east-1": {
Expand Down

0 comments on commit 93c74f4

Please sign in to comment.