Skip to content

Commit 42d15d6

Browse files
committed
chore(clients): populate default hostname and variant
1 parent 5fffa7b commit 42d15d6

File tree

290 files changed

+12843
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

290 files changed

+12843
-0
lines changed

clients/client-accessanalyzer/src/endpoints.ts

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,71 +3,138 @@ import { RegionInfoProvider, RegionInfoProviderOptions } from "@aws-sdk/types";
33

44
const regionHash: RegionHash = {
55
"ca-central-1": {
6+
hostname: "access-analyzer.ca-central-1.amazonaws.com",
67
variants: [
78
{
89
hostname: "access-analyzer-fips.ca-central-1.amazonaws.com",
910
tags: ["fips"],
1011
},
12+
{
13+
hostname: "access-analyzer.ca-central-1.amazonaws.com",
14+
tags: [],
15+
},
1116
],
1217
},
1318
"fips-ca-central-1": {
1419
hostname: "access-analyzer-fips.ca-central-1.amazonaws.com",
20+
variants: [
21+
{
22+
hostname: "access-analyzer-fips.ca-central-1.amazonaws.com",
23+
tags: [],
24+
},
25+
],
1526
signingRegion: "ca-central-1",
1627
},
1728
"fips-us-east-1": {
1829
hostname: "access-analyzer-fips.us-east-1.amazonaws.com",
30+
variants: [
31+
{
32+
hostname: "access-analyzer-fips.us-east-1.amazonaws.com",
33+
tags: [],
34+
},
35+
],
1936
signingRegion: "us-east-1",
2037
},
2138
"fips-us-east-2": {
2239
hostname: "access-analyzer-fips.us-east-2.amazonaws.com",
40+
variants: [
41+
{
42+
hostname: "access-analyzer-fips.us-east-2.amazonaws.com",
43+
tags: [],
44+
},
45+
],
2346
signingRegion: "us-east-2",
2447
},
2548
"fips-us-west-1": {
2649
hostname: "access-analyzer-fips.us-west-1.amazonaws.com",
50+
variants: [
51+
{
52+
hostname: "access-analyzer-fips.us-west-1.amazonaws.com",
53+
tags: [],
54+
},
55+
],
2756
signingRegion: "us-west-1",
2857
},
2958
"fips-us-west-2": {
3059
hostname: "access-analyzer-fips.us-west-2.amazonaws.com",
60+
variants: [
61+
{
62+
hostname: "access-analyzer-fips.us-west-2.amazonaws.com",
63+
tags: [],
64+
},
65+
],
3166
signingRegion: "us-west-2",
3267
},
3368
"us-east-1": {
69+
hostname: "access-analyzer.us-east-1.amazonaws.com",
3470
variants: [
3571
{
3672
hostname: "access-analyzer-fips.us-east-1.amazonaws.com",
3773
tags: ["fips"],
3874
},
75+
{
76+
hostname: "access-analyzer.us-east-1.amazonaws.com",
77+
tags: [],
78+
},
3979
],
4080
},
4181
"us-east-2": {
82+
hostname: "access-analyzer.us-east-2.amazonaws.com",
4283
variants: [
4384
{
4485
hostname: "access-analyzer-fips.us-east-2.amazonaws.com",
4586
tags: ["fips"],
4687
},
88+
{
89+
hostname: "access-analyzer.us-east-2.amazonaws.com",
90+
tags: [],
91+
},
4792
],
4893
},
4994
"us-gov-east-1": {
5095
hostname: "access-analyzer.us-gov-east-1.amazonaws.com",
96+
variants: [
97+
{
98+
hostname: "access-analyzer.us-gov-east-1.amazonaws.com",
99+
tags: [],
100+
},
101+
],
51102
signingRegion: "us-gov-east-1",
52103
},
53104
"us-gov-west-1": {
54105
hostname: "access-analyzer.us-gov-west-1.amazonaws.com",
106+
variants: [
107+
{
108+
hostname: "access-analyzer.us-gov-west-1.amazonaws.com",
109+
tags: [],
110+
},
111+
],
55112
signingRegion: "us-gov-west-1",
56113
},
57114
"us-west-1": {
115+
hostname: "access-analyzer.us-west-1.amazonaws.com",
58116
variants: [
59117
{
60118
hostname: "access-analyzer-fips.us-west-1.amazonaws.com",
61119
tags: ["fips"],
62120
},
121+
{
122+
hostname: "access-analyzer.us-west-1.amazonaws.com",
123+
tags: [],
124+
},
63125
],
64126
},
65127
"us-west-2": {
128+
hostname: "access-analyzer.us-west-2.amazonaws.com",
66129
variants: [
67130
{
68131
hostname: "access-analyzer-fips.us-west-2.amazonaws.com",
69132
tags: ["fips"],
70133
},
134+
{
135+
hostname: "access-analyzer.us-west-2.amazonaws.com",
136+
tags: [],
137+
},
71138
],
72139
},
73140
};
@@ -117,6 +184,10 @@ const partitionHash: PartitionHash = {
117184
hostname: "access-analyzer.{region}.api.aws",
118185
tags: ["dualstack"],
119186
},
187+
{
188+
hostname: "access-analyzer.{region}.amazonaws.com",
189+
tags: [],
190+
},
120191
],
121192
},
122193
"aws-cn": {
@@ -136,6 +207,10 @@ const partitionHash: PartitionHash = {
136207
hostname: "access-analyzer.{region}.api.amazonwebservices.com.cn",
137208
tags: ["dualstack"],
138209
},
210+
{
211+
hostname: "access-analyzer.{region}.amazonaws.com.cn",
212+
tags: [],
213+
},
139214
],
140215
},
141216
"aws-iso": {
@@ -165,6 +240,10 @@ const partitionHash: PartitionHash = {
165240
hostname: "access-analyzer.{region}.api.aws",
166241
tags: ["dualstack"],
167242
},
243+
{
244+
hostname: "access-analyzer.{region}.amazonaws.com",
245+
tags: [],
246+
},
168247
],
169248
},
170249
};

clients/client-account/src/endpoints.ts

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,22 @@ import { RegionInfoProvider, RegionInfoProviderOptions } from "@aws-sdk/types";
44
const regionHash: RegionHash = {
55
"aws-cn-global": {
66
hostname: "account.cn-northwest-1.amazonaws.com.cn",
7+
variants: [
8+
{
9+
hostname: "account.cn-northwest-1.amazonaws.com.cn",
10+
tags: [],
11+
},
12+
],
713
signingRegion: "cn-northwest-1",
814
},
915
"aws-global": {
1016
hostname: "account.us-east-1.amazonaws.com",
17+
variants: [
18+
{
19+
hostname: "account.us-east-1.amazonaws.com",
20+
tags: [],
21+
},
22+
],
1123
signingRegion: "us-east-1",
1224
},
1325
};
@@ -53,6 +65,10 @@ const partitionHash: PartitionHash = {
5365
hostname: "account.{region}.api.aws",
5466
tags: ["dualstack"],
5567
},
68+
{
69+
hostname: "account.{region}.amazonaws.com",
70+
tags: [],
71+
},
5672
],
5773
},
5874
"aws-cn": {
@@ -72,6 +88,10 @@ const partitionHash: PartitionHash = {
7288
hostname: "account.{region}.api.amazonwebservices.com.cn",
7389
tags: ["dualstack"],
7490
},
91+
{
92+
hostname: "account.{region}.amazonaws.com.cn",
93+
tags: [],
94+
},
7595
],
7696
},
7797
"aws-iso": {
@@ -101,6 +121,10 @@ const partitionHash: PartitionHash = {
101121
hostname: "account.{region}.api.aws",
102122
tags: ["dualstack"],
103123
},
124+
{
125+
hostname: "account.{region}.amazonaws.com",
126+
tags: [],
127+
},
104128
],
105129
},
106130
};

0 commit comments

Comments
 (0)