Skip to content

Commit eb1fa11

Browse files
author
awstools
committed
feat(clients): update client endpoints as of 2022-04-19
1 parent d1aebb8 commit eb1fa11

File tree

2 files changed

+34
-1
lines changed
  • clients/client-qldb/src
  • codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen

2 files changed

+34
-1
lines changed

clients/client-qldb/src/endpoints.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@ import { getRegionInfo, PartitionHash, RegionHash } from "@aws-sdk/config-resolv
22
import { RegionInfoProvider, RegionInfoProviderOptions } from "@aws-sdk/types";
33

44
const regionHash: RegionHash = {
5+
"ca-central-1": {
6+
variants: [
7+
{
8+
hostname: "qldb-fips.ca-central-1.amazonaws.com",
9+
tags: ["fips"],
10+
},
11+
],
12+
},
513
"us-east-1": {
614
variants: [
715
{
@@ -47,6 +55,7 @@ const partitionHash: PartitionHash = {
4755
"eu-west-1",
4856
"eu-west-2",
4957
"eu-west-3",
58+
"fips-ca-central-1",
5059
"fips-us-east-1",
5160
"fips-us-east-2",
5261
"fips-us-west-2",

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

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7178,6 +7178,16 @@
71787178
"us-west-2": {}
71797179
}
71807180
},
7181+
"iottwinmaker": {
7182+
"endpoints": {
7183+
"ap-southeast-1": {},
7184+
"ap-southeast-2": {},
7185+
"eu-central-1": {},
7186+
"eu-west-1": {},
7187+
"us-east-1": {},
7188+
"us-west-2": {}
7189+
}
7190+
},
71817191
"iotwireless": {
71827192
"endpoints": {
71837193
"ap-northeast-1": {
@@ -9809,10 +9819,24 @@
98099819
"ap-northeast-2": {},
98109820
"ap-southeast-1": {},
98119821
"ap-southeast-2": {},
9812-
"ca-central-1": {},
9822+
"ca-central-1": {
9823+
"variants": [
9824+
{
9825+
"hostname": "qldb-fips.ca-central-1.amazonaws.com",
9826+
"tags": ["fips"]
9827+
}
9828+
]
9829+
},
98139830
"eu-central-1": {},
98149831
"eu-west-1": {},
98159832
"eu-west-2": {},
9833+
"fips-ca-central-1": {
9834+
"credentialScope": {
9835+
"region": "ca-central-1"
9836+
},
9837+
"deprecated": true,
9838+
"hostname": "qldb-fips.ca-central-1.amazonaws.com"
9839+
},
98169840
"fips-us-east-1": {
98179841
"credentialScope": {
98189842
"region": "us-east-1"

0 commit comments

Comments
 (0)