Skip to content

Commit 523b0fd

Browse files
author
awstools
committed
feat(clients): update client endpoints to latest
1 parent 8419c39 commit 523b0fd

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed

clients/client-billingconductor/src/endpoints.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
11
import { getRegionInfo, PartitionHash, RegionHash } from "@aws-sdk/config-resolver";
22
import { RegionInfoProvider, RegionInfoProviderOptions } from "@aws-sdk/types";
33

4-
const regionHash: RegionHash = {};
4+
const regionHash: RegionHash = {
5+
"aws-global": {
6+
variants: [
7+
{
8+
hostname: "billingconductor.us-east-1.amazonaws.com",
9+
tags: [],
10+
},
11+
],
12+
signingRegion: "us-east-1",
13+
},
14+
};
515

616
const partitionHash: PartitionHash = {
717
aws: {
@@ -15,6 +25,7 @@ const partitionHash: PartitionHash = {
1525
"ap-southeast-1",
1626
"ap-southeast-2",
1727
"ap-southeast-3",
28+
"aws-global",
1829
"ca-central-1",
1930
"eu-central-1",
2031
"eu-north-1",
@@ -48,6 +59,7 @@ const partitionHash: PartitionHash = {
4859
tags: ["dualstack"],
4960
},
5061
],
62+
endpoint: "aws-global",
5163
},
5264
"aws-cn": {
5365
regions: ["cn-north-1", "cn-northwest-1"],

clients/client-chime-sdk-meetings/src/endpoints.ts

+17-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,22 @@ const regionHash: RegionHash = {
1010
},
1111
],
1212
},
13+
"us-gov-east-1": {
14+
variants: [
15+
{
16+
hostname: "meetings-chime-fips.us-gov-east-1.amazonaws.com",
17+
tags: ["fips"],
18+
},
19+
],
20+
},
21+
"us-gov-west-1": {
22+
variants: [
23+
{
24+
hostname: "meetings-chime-fips.us-gov-west-1.amazonaws.com",
25+
tags: ["fips"],
26+
},
27+
],
28+
},
1329
"us-west-2": {
1430
variants: [
1531
{
@@ -119,7 +135,7 @@ const partitionHash: PartitionHash = {
119135
],
120136
},
121137
"aws-us-gov": {
122-
regions: ["us-gov-east-1", "us-gov-west-1"],
138+
regions: ["us-gov-east-1", "us-gov-east-1-fips", "us-gov-west-1", "us-gov-west-1-fips"],
123139
regionRegex: "^us\\-gov\\-\\w+\\-\\d+$",
124140
variants: [
125141
{

0 commit comments

Comments
 (0)