Skip to content

Commit e270ac2

Browse files
author
awstools
committed
feat(clients): update client endpoints as of 2022-08-04
1 parent 1d537f3 commit e270ac2

File tree

2 files changed

+75
-0
lines changed
  • clients/client-compute-optimizer/src
  • codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen

2 files changed

+75
-0
lines changed

clients/client-compute-optimizer/src/endpoints.ts

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

55
const regionHash: RegionHash = {
6+
"af-south-1": {
7+
variants: [
8+
{
9+
hostname: "compute-optimizer.af-south-1.amazonaws.com",
10+
tags: [],
11+
},
12+
],
13+
signingRegion: "af-south-1",
14+
},
15+
"ap-east-1": {
16+
variants: [
17+
{
18+
hostname: "compute-optimizer.ap-east-1.amazonaws.com",
19+
tags: [],
20+
},
21+
],
22+
signingRegion: "ap-east-1",
23+
},
624
"ap-northeast-1": {
725
variants: [
826
{
@@ -21,6 +39,15 @@ const regionHash: RegionHash = {
2139
],
2240
signingRegion: "ap-northeast-2",
2341
},
42+
"ap-northeast-3": {
43+
variants: [
44+
{
45+
hostname: "compute-optimizer.ap-northeast-3.amazonaws.com",
46+
tags: [],
47+
},
48+
],
49+
signingRegion: "ap-northeast-3",
50+
},
2451
"ap-south-1": {
2552
variants: [
2653
{
@@ -93,6 +120,15 @@ const regionHash: RegionHash = {
93120
],
94121
signingRegion: "eu-north-1",
95122
},
123+
"eu-south-1": {
124+
variants: [
125+
{
126+
hostname: "compute-optimizer.eu-south-1.amazonaws.com",
127+
tags: [],
128+
},
129+
],
130+
signingRegion: "eu-south-1",
131+
},
96132
"eu-west-1": {
97133
variants: [
98134
{
@@ -120,6 +156,15 @@ const regionHash: RegionHash = {
120156
],
121157
signingRegion: "eu-west-3",
122158
},
159+
"me-south-1": {
160+
variants: [
161+
{
162+
hostname: "compute-optimizer.me-south-1.amazonaws.com",
163+
tags: [],
164+
},
165+
],
166+
signingRegion: "me-south-1",
167+
},
123168
"sa-east-1": {
124169
variants: [
125170
{

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3106,6 +3106,18 @@
31063106
},
31073107
"compute-optimizer": {
31083108
"endpoints": {
3109+
"af-south-1": {
3110+
"credentialScope": {
3111+
"region": "af-south-1"
3112+
},
3113+
"hostname": "compute-optimizer.af-south-1.amazonaws.com"
3114+
},
3115+
"ap-east-1": {
3116+
"credentialScope": {
3117+
"region": "ap-east-1"
3118+
},
3119+
"hostname": "compute-optimizer.ap-east-1.amazonaws.com"
3120+
},
31093121
"ap-northeast-1": {
31103122
"credentialScope": {
31113123
"region": "ap-northeast-1"
@@ -3118,6 +3130,12 @@
31183130
},
31193131
"hostname": "compute-optimizer.ap-northeast-2.amazonaws.com"
31203132
},
3133+
"ap-northeast-3": {
3134+
"credentialScope": {
3135+
"region": "ap-northeast-3"
3136+
},
3137+
"hostname": "compute-optimizer.ap-northeast-3.amazonaws.com"
3138+
},
31213139
"ap-south-1": {
31223140
"credentialScope": {
31233141
"region": "ap-south-1"
@@ -3154,6 +3172,12 @@
31543172
},
31553173
"hostname": "compute-optimizer.eu-north-1.amazonaws.com"
31563174
},
3175+
"eu-south-1": {
3176+
"credentialScope": {
3177+
"region": "eu-south-1"
3178+
},
3179+
"hostname": "compute-optimizer.eu-south-1.amazonaws.com"
3180+
},
31573181
"eu-west-1": {
31583182
"credentialScope": {
31593183
"region": "eu-west-1"
@@ -3172,6 +3196,12 @@
31723196
},
31733197
"hostname": "compute-optimizer.eu-west-3.amazonaws.com"
31743198
},
3199+
"me-south-1": {
3200+
"credentialScope": {
3201+
"region": "me-south-1"
3202+
},
3203+
"hostname": "compute-optimizer.me-south-1.amazonaws.com"
3204+
},
31753205
"sa-east-1": {
31763206
"credentialScope": {
31773207
"region": "sa-east-1"

0 commit comments

Comments
 (0)