Skip to content

Commit 824b4a3

Browse files
author
awstools
committed
feat(clients): update client endpoints as of 2022-08-29
1 parent 2f4c785 commit 824b4a3

File tree

2 files changed

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

2 files changed

+110
-1
lines changed

clients/client-keyspaces/src/endpoints.ts

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,42 @@
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-east-1": {
7+
variants: [
8+
{
9+
hostname: "cassandra-fips.us-east-1.amazonaws.com",
10+
tags: ["fips"],
11+
},
12+
],
13+
},
14+
"us-gov-east-1": {
15+
variants: [
16+
{
17+
hostname: "cassandra.us-gov-east-1.amazonaws.com",
18+
tags: [],
19+
},
20+
],
21+
signingRegion: "us-gov-east-1",
22+
},
23+
"us-gov-west-1": {
24+
variants: [
25+
{
26+
hostname: "cassandra.us-gov-west-1.amazonaws.com",
27+
tags: [],
28+
},
29+
],
30+
signingRegion: "us-gov-west-1",
31+
},
32+
"us-west-2": {
33+
variants: [
34+
{
35+
hostname: "cassandra-fips.us-west-2.amazonaws.com",
36+
tags: ["fips"],
37+
},
38+
],
39+
},
40+
};
641

742
const partitionHash: PartitionHash = {
843
aws: {
@@ -23,6 +58,8 @@ const partitionHash: PartitionHash = {
2358
"eu-west-1",
2459
"eu-west-2",
2560
"eu-west-3",
61+
"fips-us-east-1",
62+
"fips-us-west-2",
2663
"me-south-1",
2764
"sa-east-1",
2865
"us-east-1",

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

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2041,6 +2041,56 @@
20412041
"isRegionalized": false,
20422042
"partitionEndpoint": "aws-global"
20432043
},
2044+
"cassandra": {
2045+
"endpoints": {
2046+
"ap-east-1": {},
2047+
"ap-northeast-1": {},
2048+
"ap-northeast-2": {},
2049+
"ap-south-1": {},
2050+
"ap-southeast-1": {},
2051+
"ap-southeast-2": {},
2052+
"ca-central-1": {},
2053+
"eu-central-1": {},
2054+
"eu-north-1": {},
2055+
"eu-west-1": {},
2056+
"eu-west-2": {},
2057+
"eu-west-3": {},
2058+
"fips-us-east-1": {
2059+
"credentialScope": {
2060+
"region": "us-east-1"
2061+
},
2062+
"deprecated": true,
2063+
"hostname": "cassandra-fips.us-east-1.amazonaws.com"
2064+
},
2065+
"fips-us-west-2": {
2066+
"credentialScope": {
2067+
"region": "us-west-2"
2068+
},
2069+
"deprecated": true,
2070+
"hostname": "cassandra-fips.us-west-2.amazonaws.com"
2071+
},
2072+
"me-south-1": {},
2073+
"sa-east-1": {},
2074+
"us-east-1": {
2075+
"variants": [
2076+
{
2077+
"hostname": "cassandra-fips.us-east-1.amazonaws.com",
2078+
"tags": ["fips"]
2079+
}
2080+
]
2081+
},
2082+
"us-east-2": {},
2083+
"us-west-1": {},
2084+
"us-west-2": {
2085+
"variants": [
2086+
{
2087+
"hostname": "cassandra-fips.us-west-2.amazonaws.com",
2088+
"tags": ["fips"]
2089+
}
2090+
]
2091+
}
2092+
}
2093+
},
20442094
"catalog.marketplace": {
20452095
"endpoints": {
20462096
"us-east-1": {}
@@ -16176,6 +16226,12 @@
1617616226
"isRegionalized": false,
1617716227
"partitionEndpoint": "aws-cn-global"
1617816228
},
16229+
"cassandra": {
16230+
"endpoints": {
16231+
"cn-north-1": {},
16232+
"cn-northwest-1": {}
16233+
}
16234+
},
1617916235
"ce": {
1618016236
"endpoints": {
1618116237
"aws-cn-global": {
@@ -17724,6 +17780,22 @@
1772417780
}
1772517781
}
1772617782
},
17783+
"cassandra": {
17784+
"endpoints": {
17785+
"us-gov-east-1": {
17786+
"credentialScope": {
17787+
"region": "us-gov-east-1"
17788+
},
17789+
"hostname": "cassandra.us-gov-east-1.amazonaws.com"
17790+
},
17791+
"us-gov-west-1": {
17792+
"credentialScope": {
17793+
"region": "us-gov-west-1"
17794+
},
17795+
"hostname": "cassandra.us-gov-west-1.amazonaws.com"
17796+
}
17797+
}
17798+
},
1772717799
"cloudcontrolapi": {
1772817800
"endpoints": {
1772917801
"fips-us-gov-east-1": {

0 commit comments

Comments
 (0)