Skip to content

Commit

Permalink
feat(clients): update client endpoints as of 2022-08-04
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Aug 4, 2022
1 parent 1d537f3 commit e270ac2
Show file tree
Hide file tree
Showing 2 changed files with 75 additions and 0 deletions.
45 changes: 45 additions & 0 deletions clients/client-compute-optimizer/src/endpoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@ import { getRegionInfo, PartitionHash, RegionHash } from "@aws-sdk/config-resolv
import { RegionInfoProvider, RegionInfoProviderOptions } from "@aws-sdk/types";

const regionHash: RegionHash = {
"af-south-1": {
variants: [
{
hostname: "compute-optimizer.af-south-1.amazonaws.com",
tags: [],
},
],
signingRegion: "af-south-1",
},
"ap-east-1": {
variants: [
{
hostname: "compute-optimizer.ap-east-1.amazonaws.com",
tags: [],
},
],
signingRegion: "ap-east-1",
},
"ap-northeast-1": {
variants: [
{
Expand All @@ -21,6 +39,15 @@ const regionHash: RegionHash = {
],
signingRegion: "ap-northeast-2",
},
"ap-northeast-3": {
variants: [
{
hostname: "compute-optimizer.ap-northeast-3.amazonaws.com",
tags: [],
},
],
signingRegion: "ap-northeast-3",
},
"ap-south-1": {
variants: [
{
Expand Down Expand Up @@ -93,6 +120,15 @@ const regionHash: RegionHash = {
],
signingRegion: "eu-north-1",
},
"eu-south-1": {
variants: [
{
hostname: "compute-optimizer.eu-south-1.amazonaws.com",
tags: [],
},
],
signingRegion: "eu-south-1",
},
"eu-west-1": {
variants: [
{
Expand Down Expand Up @@ -120,6 +156,15 @@ const regionHash: RegionHash = {
],
signingRegion: "eu-west-3",
},
"me-south-1": {
variants: [
{
hostname: "compute-optimizer.me-south-1.amazonaws.com",
tags: [],
},
],
signingRegion: "me-south-1",
},
"sa-east-1": {
variants: [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3106,6 +3106,18 @@
},
"compute-optimizer": {
"endpoints": {
"af-south-1": {
"credentialScope": {
"region": "af-south-1"
},
"hostname": "compute-optimizer.af-south-1.amazonaws.com"
},
"ap-east-1": {
"credentialScope": {
"region": "ap-east-1"
},
"hostname": "compute-optimizer.ap-east-1.amazonaws.com"
},
"ap-northeast-1": {
"credentialScope": {
"region": "ap-northeast-1"
Expand All @@ -3118,6 +3130,12 @@
},
"hostname": "compute-optimizer.ap-northeast-2.amazonaws.com"
},
"ap-northeast-3": {
"credentialScope": {
"region": "ap-northeast-3"
},
"hostname": "compute-optimizer.ap-northeast-3.amazonaws.com"
},
"ap-south-1": {
"credentialScope": {
"region": "ap-south-1"
Expand Down Expand Up @@ -3154,6 +3172,12 @@
},
"hostname": "compute-optimizer.eu-north-1.amazonaws.com"
},
"eu-south-1": {
"credentialScope": {
"region": "eu-south-1"
},
"hostname": "compute-optimizer.eu-south-1.amazonaws.com"
},
"eu-west-1": {
"credentialScope": {
"region": "eu-west-1"
Expand All @@ -3172,6 +3196,12 @@
},
"hostname": "compute-optimizer.eu-west-3.amazonaws.com"
},
"me-south-1": {
"credentialScope": {
"region": "me-south-1"
},
"hostname": "compute-optimizer.me-south-1.amazonaws.com"
},
"sa-east-1": {
"credentialScope": {
"region": "sa-east-1"
Expand Down

0 comments on commit e270ac2

Please sign in to comment.