Skip to content

Commit 404a25b

Browse files
author
Steven Yuan
committed
chore(codegen): update clients except remaining identity and auth release
1 parent 336213e commit 404a25b

File tree

835 files changed

+8489
-5950
lines changed

Some content is hidden

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

835 files changed

+8489
-5950
lines changed

clients/client-accessanalyzer/src/AccessAnalyzerClient.ts

+11-11
Original file line numberDiff line numberDiff line change
@@ -352,11 +352,11 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
352352
*/
353353
export type AccessAnalyzerClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
354354
ClientDefaults &
355-
RegionInputConfig &
356-
EndpointInputConfig<EndpointParameters> &
355+
UserAgentInputConfig &
357356
RetryInputConfig &
357+
RegionInputConfig &
358358
HostHeaderInputConfig &
359-
UserAgentInputConfig &
359+
EndpointInputConfig<EndpointParameters> &
360360
HttpAuthSchemeInputConfig &
361361
ClientInputEndpointParameters;
362362
/**
@@ -372,11 +372,11 @@ export interface AccessAnalyzerClientConfig extends AccessAnalyzerClientConfigTy
372372
export type AccessAnalyzerClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> &
373373
Required<ClientDefaults> &
374374
RuntimeExtensionsConfig &
375-
RegionResolvedConfig &
376-
EndpointResolvedConfig<EndpointParameters> &
375+
UserAgentResolvedConfig &
377376
RetryResolvedConfig &
377+
RegionResolvedConfig &
378378
HostHeaderResolvedConfig &
379-
UserAgentResolvedConfig &
379+
EndpointResolvedConfig<EndpointParameters> &
380380
HttpAuthSchemeResolvedConfig &
381381
ClientResolvedEndpointParameters;
382382
/**
@@ -427,21 +427,21 @@ export class AccessAnalyzerClient extends __Client<
427427
constructor(...[configuration]: __CheckOptionalClientConfig<AccessAnalyzerClientConfig>) {
428428
const _config_0 = __getRuntimeConfig(configuration || {});
429429
const _config_1 = resolveClientEndpointParameters(_config_0);
430-
const _config_2 = resolveRegionConfig(_config_1);
431-
const _config_3 = resolveEndpointConfig(_config_2);
432-
const _config_4 = resolveRetryConfig(_config_3);
430+
const _config_2 = resolveUserAgentConfig(_config_1);
431+
const _config_3 = resolveRetryConfig(_config_2);
432+
const _config_4 = resolveRegionConfig(_config_3);
433433
const _config_5 = resolveHostHeaderConfig(_config_4);
434-
const _config_6 = resolveUserAgentConfig(_config_5);
434+
const _config_6 = resolveEndpointConfig(_config_5);
435435
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
436436
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
437437
super(_config_8);
438438
this.config = _config_8;
439+
this.middlewareStack.use(getUserAgentPlugin(this.config));
439440
this.middlewareStack.use(getRetryPlugin(this.config));
440441
this.middlewareStack.use(getContentLengthPlugin(this.config));
441442
this.middlewareStack.use(getHostHeaderPlugin(this.config));
442443
this.middlewareStack.use(getLoggerPlugin(this.config));
443444
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
444-
this.middlewareStack.use(getUserAgentPlugin(this.config));
445445
this.middlewareStack.use(
446446
getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
447447
httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),

clients/client-accessanalyzer/src/auth/httpAuthSchemeProvider.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -96,13 +96,13 @@ export const defaultAccessAnalyzerHttpAuthSchemeProvider: AccessAnalyzerHttpAuth
9696
*/
9797
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
9898
/**
99-
* experimentalIdentityAndAuth: Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
99+
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
100100
* @internal
101101
*/
102102
httpAuthSchemes?: HttpAuthScheme[];
103103

104104
/**
105-
* experimentalIdentityAndAuth: Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
105+
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
106106
* @internal
107107
*/
108108
httpAuthSchemeProvider?: AccessAnalyzerHttpAuthSchemeProvider;
@@ -113,13 +113,13 @@ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
113113
*/
114114
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
115115
/**
116-
* experimentalIdentityAndAuth: Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
116+
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
117117
* @internal
118118
*/
119119
readonly httpAuthSchemes: HttpAuthScheme[];
120120

121121
/**
122-
* experimentalIdentityAndAuth: Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
122+
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
123123
* @internal
124124
*/
125125
readonly httpAuthSchemeProvider: AccessAnalyzerHttpAuthSchemeProvider;

clients/client-account/src/AccountClient.ts

+11-11
Original file line numberDiff line numberDiff line change
@@ -268,11 +268,11 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
268268
*/
269269
export type AccountClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
270270
ClientDefaults &
271-
RegionInputConfig &
272-
EndpointInputConfig<EndpointParameters> &
271+
UserAgentInputConfig &
273272
RetryInputConfig &
273+
RegionInputConfig &
274274
HostHeaderInputConfig &
275-
UserAgentInputConfig &
275+
EndpointInputConfig<EndpointParameters> &
276276
HttpAuthSchemeInputConfig &
277277
ClientInputEndpointParameters;
278278
/**
@@ -288,11 +288,11 @@ export interface AccountClientConfig extends AccountClientConfigType {}
288288
export type AccountClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> &
289289
Required<ClientDefaults> &
290290
RuntimeExtensionsConfig &
291-
RegionResolvedConfig &
292-
EndpointResolvedConfig<EndpointParameters> &
291+
UserAgentResolvedConfig &
293292
RetryResolvedConfig &
293+
RegionResolvedConfig &
294294
HostHeaderResolvedConfig &
295-
UserAgentResolvedConfig &
295+
EndpointResolvedConfig<EndpointParameters> &
296296
HttpAuthSchemeResolvedConfig &
297297
ClientResolvedEndpointParameters;
298298
/**
@@ -320,21 +320,21 @@ export class AccountClient extends __Client<
320320
constructor(...[configuration]: __CheckOptionalClientConfig<AccountClientConfig>) {
321321
const _config_0 = __getRuntimeConfig(configuration || {});
322322
const _config_1 = resolveClientEndpointParameters(_config_0);
323-
const _config_2 = resolveRegionConfig(_config_1);
324-
const _config_3 = resolveEndpointConfig(_config_2);
325-
const _config_4 = resolveRetryConfig(_config_3);
323+
const _config_2 = resolveUserAgentConfig(_config_1);
324+
const _config_3 = resolveRetryConfig(_config_2);
325+
const _config_4 = resolveRegionConfig(_config_3);
326326
const _config_5 = resolveHostHeaderConfig(_config_4);
327-
const _config_6 = resolveUserAgentConfig(_config_5);
327+
const _config_6 = resolveEndpointConfig(_config_5);
328328
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
329329
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
330330
super(_config_8);
331331
this.config = _config_8;
332+
this.middlewareStack.use(getUserAgentPlugin(this.config));
332333
this.middlewareStack.use(getRetryPlugin(this.config));
333334
this.middlewareStack.use(getContentLengthPlugin(this.config));
334335
this.middlewareStack.use(getHostHeaderPlugin(this.config));
335336
this.middlewareStack.use(getLoggerPlugin(this.config));
336337
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
337-
this.middlewareStack.use(getUserAgentPlugin(this.config));
338338
this.middlewareStack.use(
339339
getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
340340
httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),

clients/client-account/src/auth/httpAuthSchemeProvider.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,13 @@ export const defaultAccountHttpAuthSchemeProvider: AccountHttpAuthSchemeProvider
9595
*/
9696
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
9797
/**
98-
* experimentalIdentityAndAuth: Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
98+
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
9999
* @internal
100100
*/
101101
httpAuthSchemes?: HttpAuthScheme[];
102102

103103
/**
104-
* experimentalIdentityAndAuth: Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
104+
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
105105
* @internal
106106
*/
107107
httpAuthSchemeProvider?: AccountHttpAuthSchemeProvider;
@@ -112,13 +112,13 @@ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
112112
*/
113113
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
114114
/**
115-
* experimentalIdentityAndAuth: Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
115+
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
116116
* @internal
117117
*/
118118
readonly httpAuthSchemes: HttpAuthScheme[];
119119

120120
/**
121-
* experimentalIdentityAndAuth: Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
121+
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
122122
* @internal
123123
*/
124124
readonly httpAuthSchemeProvider: AccountHttpAuthSchemeProvider;

clients/client-acm-pca/src/ACMPCAClient.ts

+11-11
Original file line numberDiff line numberDiff line change
@@ -319,11 +319,11 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
319319
*/
320320
export type ACMPCAClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
321321
ClientDefaults &
322-
RegionInputConfig &
323-
EndpointInputConfig<EndpointParameters> &
322+
UserAgentInputConfig &
324323
RetryInputConfig &
324+
RegionInputConfig &
325325
HostHeaderInputConfig &
326-
UserAgentInputConfig &
326+
EndpointInputConfig<EndpointParameters> &
327327
HttpAuthSchemeInputConfig &
328328
ClientInputEndpointParameters;
329329
/**
@@ -339,11 +339,11 @@ export interface ACMPCAClientConfig extends ACMPCAClientConfigType {}
339339
export type ACMPCAClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> &
340340
Required<ClientDefaults> &
341341
RuntimeExtensionsConfig &
342-
RegionResolvedConfig &
343-
EndpointResolvedConfig<EndpointParameters> &
342+
UserAgentResolvedConfig &
344343
RetryResolvedConfig &
344+
RegionResolvedConfig &
345345
HostHeaderResolvedConfig &
346-
UserAgentResolvedConfig &
346+
EndpointResolvedConfig<EndpointParameters> &
347347
HttpAuthSchemeResolvedConfig &
348348
ClientResolvedEndpointParameters;
349349
/**
@@ -386,21 +386,21 @@ export class ACMPCAClient extends __Client<
386386
constructor(...[configuration]: __CheckOptionalClientConfig<ACMPCAClientConfig>) {
387387
const _config_0 = __getRuntimeConfig(configuration || {});
388388
const _config_1 = resolveClientEndpointParameters(_config_0);
389-
const _config_2 = resolveRegionConfig(_config_1);
390-
const _config_3 = resolveEndpointConfig(_config_2);
391-
const _config_4 = resolveRetryConfig(_config_3);
389+
const _config_2 = resolveUserAgentConfig(_config_1);
390+
const _config_3 = resolveRetryConfig(_config_2);
391+
const _config_4 = resolveRegionConfig(_config_3);
392392
const _config_5 = resolveHostHeaderConfig(_config_4);
393-
const _config_6 = resolveUserAgentConfig(_config_5);
393+
const _config_6 = resolveEndpointConfig(_config_5);
394394
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
395395
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
396396
super(_config_8);
397397
this.config = _config_8;
398+
this.middlewareStack.use(getUserAgentPlugin(this.config));
398399
this.middlewareStack.use(getRetryPlugin(this.config));
399400
this.middlewareStack.use(getContentLengthPlugin(this.config));
400401
this.middlewareStack.use(getHostHeaderPlugin(this.config));
401402
this.middlewareStack.use(getLoggerPlugin(this.config));
402403
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
403-
this.middlewareStack.use(getUserAgentPlugin(this.config));
404404
this.middlewareStack.use(
405405
getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
406406
httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),

clients/client-acm-pca/src/auth/httpAuthSchemeProvider.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,13 @@ export const defaultACMPCAHttpAuthSchemeProvider: ACMPCAHttpAuthSchemeProvider =
9595
*/
9696
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
9797
/**
98-
* experimentalIdentityAndAuth: Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
98+
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
9999
* @internal
100100
*/
101101
httpAuthSchemes?: HttpAuthScheme[];
102102

103103
/**
104-
* experimentalIdentityAndAuth: Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
104+
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
105105
* @internal
106106
*/
107107
httpAuthSchemeProvider?: ACMPCAHttpAuthSchemeProvider;
@@ -112,13 +112,13 @@ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
112112
*/
113113
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
114114
/**
115-
* experimentalIdentityAndAuth: Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
115+
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
116116
* @internal
117117
*/
118118
readonly httpAuthSchemes: HttpAuthScheme[];
119119

120120
/**
121-
* experimentalIdentityAndAuth: Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
121+
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
122122
* @internal
123123
*/
124124
readonly httpAuthSchemeProvider: ACMPCAHttpAuthSchemeProvider;

clients/client-acm/src/ACMClient.ts

+11-11
Original file line numberDiff line numberDiff line change
@@ -280,11 +280,11 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
280280
*/
281281
export type ACMClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
282282
ClientDefaults &
283-
RegionInputConfig &
284-
EndpointInputConfig<EndpointParameters> &
283+
UserAgentInputConfig &
285284
RetryInputConfig &
285+
RegionInputConfig &
286286
HostHeaderInputConfig &
287-
UserAgentInputConfig &
287+
EndpointInputConfig<EndpointParameters> &
288288
HttpAuthSchemeInputConfig &
289289
ClientInputEndpointParameters;
290290
/**
@@ -300,11 +300,11 @@ export interface ACMClientConfig extends ACMClientConfigType {}
300300
export type ACMClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> &
301301
Required<ClientDefaults> &
302302
RuntimeExtensionsConfig &
303-
RegionResolvedConfig &
304-
EndpointResolvedConfig<EndpointParameters> &
303+
UserAgentResolvedConfig &
305304
RetryResolvedConfig &
305+
RegionResolvedConfig &
306306
HostHeaderResolvedConfig &
307-
UserAgentResolvedConfig &
307+
EndpointResolvedConfig<EndpointParameters> &
308308
HttpAuthSchemeResolvedConfig &
309309
ClientResolvedEndpointParameters;
310310
/**
@@ -334,21 +334,21 @@ export class ACMClient extends __Client<
334334
constructor(...[configuration]: __CheckOptionalClientConfig<ACMClientConfig>) {
335335
const _config_0 = __getRuntimeConfig(configuration || {});
336336
const _config_1 = resolveClientEndpointParameters(_config_0);
337-
const _config_2 = resolveRegionConfig(_config_1);
338-
const _config_3 = resolveEndpointConfig(_config_2);
339-
const _config_4 = resolveRetryConfig(_config_3);
337+
const _config_2 = resolveUserAgentConfig(_config_1);
338+
const _config_3 = resolveRetryConfig(_config_2);
339+
const _config_4 = resolveRegionConfig(_config_3);
340340
const _config_5 = resolveHostHeaderConfig(_config_4);
341-
const _config_6 = resolveUserAgentConfig(_config_5);
341+
const _config_6 = resolveEndpointConfig(_config_5);
342342
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
343343
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
344344
super(_config_8);
345345
this.config = _config_8;
346+
this.middlewareStack.use(getUserAgentPlugin(this.config));
346347
this.middlewareStack.use(getRetryPlugin(this.config));
347348
this.middlewareStack.use(getContentLengthPlugin(this.config));
348349
this.middlewareStack.use(getHostHeaderPlugin(this.config));
349350
this.middlewareStack.use(getLoggerPlugin(this.config));
350351
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
351-
this.middlewareStack.use(getUserAgentPlugin(this.config));
352352
this.middlewareStack.use(
353353
getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
354354
httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),

clients/client-acm/src/auth/httpAuthSchemeProvider.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,13 @@ export const defaultACMHttpAuthSchemeProvider: ACMHttpAuthSchemeProvider = (auth
9595
*/
9696
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
9797
/**
98-
* experimentalIdentityAndAuth: Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
98+
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
9999
* @internal
100100
*/
101101
httpAuthSchemes?: HttpAuthScheme[];
102102

103103
/**
104-
* experimentalIdentityAndAuth: Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
104+
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
105105
* @internal
106106
*/
107107
httpAuthSchemeProvider?: ACMHttpAuthSchemeProvider;
@@ -112,13 +112,13 @@ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
112112
*/
113113
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
114114
/**
115-
* experimentalIdentityAndAuth: Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
115+
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
116116
* @internal
117117
*/
118118
readonly httpAuthSchemes: HttpAuthScheme[];
119119

120120
/**
121-
* experimentalIdentityAndAuth: Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
121+
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
122122
* @internal
123123
*/
124124
readonly httpAuthSchemeProvider: ACMHttpAuthSchemeProvider;

0 commit comments

Comments
 (0)