Skip to content

Commit c615b20

Browse files
committed
feat(clients): add DescribeEndpointsCommand in resolve function params
1 parent a595e77 commit c615b20

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

clients/client-dynamodb/DynamoDBClient.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
359359
defaultUserAgentProvider?: Provider<__UserAgent>;
360360

361361
/**
362-
* The provider which populates default for endpointDisvoveryEnabled configuration, if it's
362+
* The provider which populates default for endpointDiscoveryEnabled configuration, if it's
363363
* not passed during client creation.
364364
* @internal
365365
*/
@@ -437,7 +437,7 @@ export class DynamoDBClient extends __Client<
437437
let _config_4 = resolveHostHeaderConfig(_config_3);
438438
let _config_5 = resolveAwsAuthConfig(_config_4);
439439
let _config_6 = resolveUserAgentConfig(_config_5);
440-
let _config_7 = resolveEndpointDiscoveryConfig(_config_6);
440+
let _config_7 = resolveEndpointDiscoveryConfig(_config_6, DescribeEndpointsCommand);
441441
super(_config_7);
442442
this.config = _config_7;
443443
this.middlewareStack.use(getRetryPlugin(this.config));

clients/client-timestream-query/TimestreamQueryClient.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
161161
defaultUserAgentProvider?: Provider<__UserAgent>;
162162

163163
/**
164-
* The provider which populates default for endpointDisvoveryEnabled configuration, if it's
164+
* The provider which populates default for endpointDiscoveryEnabled configuration, if it's
165165
* not passed during client creation.
166166
* @internal
167167
*/
@@ -223,7 +223,7 @@ export class TimestreamQueryClient extends __Client<
223223
let _config_4 = resolveHostHeaderConfig(_config_3);
224224
let _config_5 = resolveAwsAuthConfig(_config_4);
225225
let _config_6 = resolveUserAgentConfig(_config_5);
226-
let _config_7 = resolveEndpointDiscoveryConfig(_config_6);
226+
let _config_7 = resolveEndpointDiscoveryConfig(_config_6, DescribeEndpointsCommand);
227227
super(_config_7);
228228
this.config = _config_7;
229229
this.middlewareStack.use(getRetryPlugin(this.config));

clients/client-timestream-write/TimestreamWriteClient.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
206206
defaultUserAgentProvider?: Provider<__UserAgent>;
207207

208208
/**
209-
* The provider which populates default for endpointDisvoveryEnabled configuration, if it's
209+
* The provider which populates default for endpointDiscoveryEnabled configuration, if it's
210210
* not passed during client creation.
211211
* @internal
212212
*/
@@ -266,7 +266,7 @@ export class TimestreamWriteClient extends __Client<
266266
let _config_4 = resolveHostHeaderConfig(_config_3);
267267
let _config_5 = resolveAwsAuthConfig(_config_4);
268268
let _config_6 = resolveUserAgentConfig(_config_5);
269-
let _config_7 = resolveEndpointDiscoveryConfig(_config_6);
269+
let _config_7 = resolveEndpointDiscoveryConfig(_config_6, DescribeEndpointsCommand);
270270
super(_config_7);
271271
this.config = _config_7;
272272
this.middlewareStack.use(getRetryPlugin(this.config));

0 commit comments

Comments
 (0)