Skip to content

Commit 93c74f4

Browse files
author
awstools
committed
feat(clients): update client endpoints as of 2022-07-14
1 parent bae6c59 commit 93c74f4

File tree

2 files changed

+59
-1
lines changed
  • clients/client-sso-admin/src
  • codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen

2 files changed

+59
-1
lines changed

clients/client-sso-admin/src/endpoints.ts

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,26 @@
22
import { getRegionInfo, PartitionHash, RegionHash } from "@aws-sdk/config-resolver";
33
import { RegionInfoProvider, RegionInfoProviderOptions } from "@aws-sdk/types";
44

5-
const regionHash: RegionHash = {};
5+
const regionHash: RegionHash = {
6+
"us-gov-east-1": {
7+
variants: [
8+
{
9+
hostname: "sso.us-gov-east-1.amazonaws.com",
10+
tags: [],
11+
},
12+
],
13+
signingRegion: "us-gov-east-1",
14+
},
15+
"us-gov-west-1": {
16+
variants: [
17+
{
18+
hostname: "sso.us-gov-west-1.amazonaws.com",
19+
tags: [],
20+
},
21+
],
22+
signingRegion: "us-gov-west-1",
23+
},
24+
};
625

726
const partitionHash: PartitionHash = {
827
aws: {

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

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13448,6 +13448,29 @@
1344813448
"us-west-2": {}
1344913449
}
1345013450
},
13451+
"sso": {
13452+
"endpoints": {
13453+
"ap-east-1": {},
13454+
"ap-northeast-1": {},
13455+
"ap-northeast-2": {},
13456+
"ap-northeast-3": {},
13457+
"ap-south-1": {},
13458+
"ap-southeast-1": {},
13459+
"ap-southeast-2": {},
13460+
"ca-central-1": {},
13461+
"eu-central-1": {},
13462+
"eu-north-1": {},
13463+
"eu-south-1": {},
13464+
"eu-west-1": {},
13465+
"eu-west-2": {},
13466+
"eu-west-3": {},
13467+
"me-south-1": {},
13468+
"sa-east-1": {},
13469+
"us-east-1": {},
13470+
"us-east-2": {},
13471+
"us-west-2": {}
13472+
}
13473+
},
1345113474
"states": {
1345213475
"endpoints": {
1345313476
"af-south-1": {},
@@ -20235,6 +20258,22 @@
2023520258
}
2023620259
}
2023720260
},
20261+
"sso": {
20262+
"endpoints": {
20263+
"us-gov-east-1": {
20264+
"credentialScope": {
20265+
"region": "us-gov-east-1"
20266+
},
20267+
"hostname": "sso.us-gov-east-1.amazonaws.com"
20268+
},
20269+
"us-gov-west-1": {
20270+
"credentialScope": {
20271+
"region": "us-gov-west-1"
20272+
},
20273+
"hostname": "sso.us-gov-west-1.amazonaws.com"
20274+
}
20275+
}
20276+
},
2023820277
"states": {
2023920278
"endpoints": {
2024020279
"fips-us-gov-east-1": {

0 commit comments

Comments
 (0)