@aws-sdk/client-account 3.1087.0 → 3.1088.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/Account.d.ts +47 -50
  3. package/dist-types/ts3.4/AccountClient.d.ts +16 -29
  4. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
  5. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
  6. package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
  7. package/dist-types/ts3.4/commands/AcceptPrimaryEmailUpdateCommand.d.ts +4 -6
  8. package/dist-types/ts3.4/commands/DeleteAlternateContactCommand.d.ts +3 -4
  9. package/dist-types/ts3.4/commands/DisableRegionCommand.d.ts +2 -2
  10. package/dist-types/ts3.4/commands/EnableRegionCommand.d.ts +2 -2
  11. package/dist-types/ts3.4/commands/GetAccountInformationCommand.d.ts +4 -9
  12. package/dist-types/ts3.4/commands/GetAlternateContactCommand.d.ts +5 -10
  13. package/dist-types/ts3.4/commands/GetContactInformationCommand.d.ts +4 -9
  14. package/dist-types/ts3.4/commands/GetGovCloudAccountInformationCommand.d.ts +3 -5
  15. package/dist-types/ts3.4/commands/GetPrimaryEmailCommand.d.ts +4 -9
  16. package/dist-types/ts3.4/commands/GetRegionOptStatusCommand.d.ts +5 -10
  17. package/dist-types/ts3.4/commands/ListRegionsCommand.d.ts +2 -4
  18. package/dist-types/ts3.4/commands/PutAccountNameCommand.d.ts +2 -2
  19. package/dist-types/ts3.4/commands/PutAlternateContactCommand.d.ts +3 -4
  20. package/dist-types/ts3.4/commands/PutContactInformationCommand.d.ts +3 -4
  21. package/dist-types/ts3.4/commands/StartPrimaryEmailUpdateCommand.d.ts +4 -6
  22. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  23. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  24. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  25. package/dist-types/ts3.4/models/enums.d.ts +3 -6
  26. package/dist-types/ts3.4/models/errors.d.ts +6 -18
  27. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  28. package/dist-types/ts3.4/pagination/ListRegionsPaginator.d.ts +1 -4
  29. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  33. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  34. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
  35. package/package.json +38 -38
package/dist-cjs/index.js CHANGED
@@ -69,7 +69,7 @@ const commonParams = {
69
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
70
70
  };
71
71
 
72
- var version = "3.1086.0";
72
+ var version = "3.1087.0";
73
73
  var packageInfo = {
74
74
  version: version};
75
75
 
@@ -44,10 +44,7 @@ import {
44
44
  GetRegionOptStatusCommandInput,
45
45
  GetRegionOptStatusCommandOutput,
46
46
  } from "./commands/GetRegionOptStatusCommand";
47
- import {
48
- ListRegionsCommandInput,
49
- ListRegionsCommandOutput,
50
- } from "./commands/ListRegionsCommand";
47
+ import { ListRegionsCommandInput, ListRegionsCommandOutput } from "./commands/ListRegionsCommand";
51
48
  import {
52
49
  PutAccountNameCommandInput,
53
50
  PutAccountNameCommandOutput,
@@ -67,209 +64,209 @@ import {
67
64
  export interface Account {
68
65
  acceptPrimaryEmailUpdate(
69
66
  args: AcceptPrimaryEmailUpdateCommandInput,
70
- options?: __HttpHandlerOptions
67
+ options?: __HttpHandlerOptions,
71
68
  ): Promise<AcceptPrimaryEmailUpdateCommandOutput>;
72
69
  acceptPrimaryEmailUpdate(
73
70
  args: AcceptPrimaryEmailUpdateCommandInput,
74
- cb: (err: any, data?: AcceptPrimaryEmailUpdateCommandOutput) => void
71
+ cb: (err: any, data?: AcceptPrimaryEmailUpdateCommandOutput) => void,
75
72
  ): void;
76
73
  acceptPrimaryEmailUpdate(
77
74
  args: AcceptPrimaryEmailUpdateCommandInput,
78
75
  options: __HttpHandlerOptions,
79
- cb: (err: any, data?: AcceptPrimaryEmailUpdateCommandOutput) => void
76
+ cb: (err: any, data?: AcceptPrimaryEmailUpdateCommandOutput) => void,
80
77
  ): void;
81
78
  deleteAlternateContact(
82
79
  args: DeleteAlternateContactCommandInput,
83
- options?: __HttpHandlerOptions
80
+ options?: __HttpHandlerOptions,
84
81
  ): Promise<DeleteAlternateContactCommandOutput>;
85
82
  deleteAlternateContact(
86
83
  args: DeleteAlternateContactCommandInput,
87
- cb: (err: any, data?: DeleteAlternateContactCommandOutput) => void
84
+ cb: (err: any, data?: DeleteAlternateContactCommandOutput) => void,
88
85
  ): void;
89
86
  deleteAlternateContact(
90
87
  args: DeleteAlternateContactCommandInput,
91
88
  options: __HttpHandlerOptions,
92
- cb: (err: any, data?: DeleteAlternateContactCommandOutput) => void
89
+ cb: (err: any, data?: DeleteAlternateContactCommandOutput) => void,
93
90
  ): void;
94
91
  disableRegion(
95
92
  args: DisableRegionCommandInput,
96
- options?: __HttpHandlerOptions
93
+ options?: __HttpHandlerOptions,
97
94
  ): Promise<DisableRegionCommandOutput>;
98
95
  disableRegion(
99
96
  args: DisableRegionCommandInput,
100
- cb: (err: any, data?: DisableRegionCommandOutput) => void
97
+ cb: (err: any, data?: DisableRegionCommandOutput) => void,
101
98
  ): void;
102
99
  disableRegion(
103
100
  args: DisableRegionCommandInput,
104
101
  options: __HttpHandlerOptions,
105
- cb: (err: any, data?: DisableRegionCommandOutput) => void
102
+ cb: (err: any, data?: DisableRegionCommandOutput) => void,
106
103
  ): void;
107
104
  enableRegion(
108
105
  args: EnableRegionCommandInput,
109
- options?: __HttpHandlerOptions
106
+ options?: __HttpHandlerOptions,
110
107
  ): Promise<EnableRegionCommandOutput>;
111
108
  enableRegion(
112
109
  args: EnableRegionCommandInput,
113
- cb: (err: any, data?: EnableRegionCommandOutput) => void
110
+ cb: (err: any, data?: EnableRegionCommandOutput) => void,
114
111
  ): void;
115
112
  enableRegion(
116
113
  args: EnableRegionCommandInput,
117
114
  options: __HttpHandlerOptions,
118
- cb: (err: any, data?: EnableRegionCommandOutput) => void
115
+ cb: (err: any, data?: EnableRegionCommandOutput) => void,
119
116
  ): void;
120
117
  getAccountInformation(): Promise<GetAccountInformationCommandOutput>;
121
118
  getAccountInformation(
122
119
  args: GetAccountInformationCommandInput,
123
- options?: __HttpHandlerOptions
120
+ options?: __HttpHandlerOptions,
124
121
  ): Promise<GetAccountInformationCommandOutput>;
125
122
  getAccountInformation(
126
123
  args: GetAccountInformationCommandInput,
127
- cb: (err: any, data?: GetAccountInformationCommandOutput) => void
124
+ cb: (err: any, data?: GetAccountInformationCommandOutput) => void,
128
125
  ): void;
129
126
  getAccountInformation(
130
127
  args: GetAccountInformationCommandInput,
131
128
  options: __HttpHandlerOptions,
132
- cb: (err: any, data?: GetAccountInformationCommandOutput) => void
129
+ cb: (err: any, data?: GetAccountInformationCommandOutput) => void,
133
130
  ): void;
134
131
  getAlternateContact(
135
132
  args: GetAlternateContactCommandInput,
136
- options?: __HttpHandlerOptions
133
+ options?: __HttpHandlerOptions,
137
134
  ): Promise<GetAlternateContactCommandOutput>;
138
135
  getAlternateContact(
139
136
  args: GetAlternateContactCommandInput,
140
- cb: (err: any, data?: GetAlternateContactCommandOutput) => void
137
+ cb: (err: any, data?: GetAlternateContactCommandOutput) => void,
141
138
  ): void;
142
139
  getAlternateContact(
143
140
  args: GetAlternateContactCommandInput,
144
141
  options: __HttpHandlerOptions,
145
- cb: (err: any, data?: GetAlternateContactCommandOutput) => void
142
+ cb: (err: any, data?: GetAlternateContactCommandOutput) => void,
146
143
  ): void;
147
144
  getContactInformation(): Promise<GetContactInformationCommandOutput>;
148
145
  getContactInformation(
149
146
  args: GetContactInformationCommandInput,
150
- options?: __HttpHandlerOptions
147
+ options?: __HttpHandlerOptions,
151
148
  ): Promise<GetContactInformationCommandOutput>;
152
149
  getContactInformation(
153
150
  args: GetContactInformationCommandInput,
154
- cb: (err: any, data?: GetContactInformationCommandOutput) => void
151
+ cb: (err: any, data?: GetContactInformationCommandOutput) => void,
155
152
  ): void;
156
153
  getContactInformation(
157
154
  args: GetContactInformationCommandInput,
158
155
  options: __HttpHandlerOptions,
159
- cb: (err: any, data?: GetContactInformationCommandOutput) => void
156
+ cb: (err: any, data?: GetContactInformationCommandOutput) => void,
160
157
  ): void;
161
158
  getGovCloudAccountInformation(): Promise<GetGovCloudAccountInformationCommandOutput>;
162
159
  getGovCloudAccountInformation(
163
160
  args: GetGovCloudAccountInformationCommandInput,
164
- options?: __HttpHandlerOptions
161
+ options?: __HttpHandlerOptions,
165
162
  ): Promise<GetGovCloudAccountInformationCommandOutput>;
166
163
  getGovCloudAccountInformation(
167
164
  args: GetGovCloudAccountInformationCommandInput,
168
- cb: (err: any, data?: GetGovCloudAccountInformationCommandOutput) => void
165
+ cb: (err: any, data?: GetGovCloudAccountInformationCommandOutput) => void,
169
166
  ): void;
170
167
  getGovCloudAccountInformation(
171
168
  args: GetGovCloudAccountInformationCommandInput,
172
169
  options: __HttpHandlerOptions,
173
- cb: (err: any, data?: GetGovCloudAccountInformationCommandOutput) => void
170
+ cb: (err: any, data?: GetGovCloudAccountInformationCommandOutput) => void,
174
171
  ): void;
175
172
  getPrimaryEmail(
176
173
  args: GetPrimaryEmailCommandInput,
177
- options?: __HttpHandlerOptions
174
+ options?: __HttpHandlerOptions,
178
175
  ): Promise<GetPrimaryEmailCommandOutput>;
179
176
  getPrimaryEmail(
180
177
  args: GetPrimaryEmailCommandInput,
181
- cb: (err: any, data?: GetPrimaryEmailCommandOutput) => void
178
+ cb: (err: any, data?: GetPrimaryEmailCommandOutput) => void,
182
179
  ): void;
183
180
  getPrimaryEmail(
184
181
  args: GetPrimaryEmailCommandInput,
185
182
  options: __HttpHandlerOptions,
186
- cb: (err: any, data?: GetPrimaryEmailCommandOutput) => void
183
+ cb: (err: any, data?: GetPrimaryEmailCommandOutput) => void,
187
184
  ): void;
188
185
  getRegionOptStatus(
189
186
  args: GetRegionOptStatusCommandInput,
190
- options?: __HttpHandlerOptions
187
+ options?: __HttpHandlerOptions,
191
188
  ): Promise<GetRegionOptStatusCommandOutput>;
192
189
  getRegionOptStatus(
193
190
  args: GetRegionOptStatusCommandInput,
194
- cb: (err: any, data?: GetRegionOptStatusCommandOutput) => void
191
+ cb: (err: any, data?: GetRegionOptStatusCommandOutput) => void,
195
192
  ): void;
196
193
  getRegionOptStatus(
197
194
  args: GetRegionOptStatusCommandInput,
198
195
  options: __HttpHandlerOptions,
199
- cb: (err: any, data?: GetRegionOptStatusCommandOutput) => void
196
+ cb: (err: any, data?: GetRegionOptStatusCommandOutput) => void,
200
197
  ): void;
201
198
  listRegions(): Promise<ListRegionsCommandOutput>;
202
199
  listRegions(
203
200
  args: ListRegionsCommandInput,
204
- options?: __HttpHandlerOptions
201
+ options?: __HttpHandlerOptions,
205
202
  ): Promise<ListRegionsCommandOutput>;
206
203
  listRegions(
207
204
  args: ListRegionsCommandInput,
208
- cb: (err: any, data?: ListRegionsCommandOutput) => void
205
+ cb: (err: any, data?: ListRegionsCommandOutput) => void,
209
206
  ): void;
210
207
  listRegions(
211
208
  args: ListRegionsCommandInput,
212
209
  options: __HttpHandlerOptions,
213
- cb: (err: any, data?: ListRegionsCommandOutput) => void
210
+ cb: (err: any, data?: ListRegionsCommandOutput) => void,
214
211
  ): void;
215
212
  putAccountName(
216
213
  args: PutAccountNameCommandInput,
217
- options?: __HttpHandlerOptions
214
+ options?: __HttpHandlerOptions,
218
215
  ): Promise<PutAccountNameCommandOutput>;
219
216
  putAccountName(
220
217
  args: PutAccountNameCommandInput,
221
- cb: (err: any, data?: PutAccountNameCommandOutput) => void
218
+ cb: (err: any, data?: PutAccountNameCommandOutput) => void,
222
219
  ): void;
223
220
  putAccountName(
224
221
  args: PutAccountNameCommandInput,
225
222
  options: __HttpHandlerOptions,
226
- cb: (err: any, data?: PutAccountNameCommandOutput) => void
223
+ cb: (err: any, data?: PutAccountNameCommandOutput) => void,
227
224
  ): void;
228
225
  putAlternateContact(
229
226
  args: PutAlternateContactCommandInput,
230
- options?: __HttpHandlerOptions
227
+ options?: __HttpHandlerOptions,
231
228
  ): Promise<PutAlternateContactCommandOutput>;
232
229
  putAlternateContact(
233
230
  args: PutAlternateContactCommandInput,
234
- cb: (err: any, data?: PutAlternateContactCommandOutput) => void
231
+ cb: (err: any, data?: PutAlternateContactCommandOutput) => void,
235
232
  ): void;
236
233
  putAlternateContact(
237
234
  args: PutAlternateContactCommandInput,
238
235
  options: __HttpHandlerOptions,
239
- cb: (err: any, data?: PutAlternateContactCommandOutput) => void
236
+ cb: (err: any, data?: PutAlternateContactCommandOutput) => void,
240
237
  ): void;
241
238
  putContactInformation(
242
239
  args: PutContactInformationCommandInput,
243
- options?: __HttpHandlerOptions
240
+ options?: __HttpHandlerOptions,
244
241
  ): Promise<PutContactInformationCommandOutput>;
245
242
  putContactInformation(
246
243
  args: PutContactInformationCommandInput,
247
- cb: (err: any, data?: PutContactInformationCommandOutput) => void
244
+ cb: (err: any, data?: PutContactInformationCommandOutput) => void,
248
245
  ): void;
249
246
  putContactInformation(
250
247
  args: PutContactInformationCommandInput,
251
248
  options: __HttpHandlerOptions,
252
- cb: (err: any, data?: PutContactInformationCommandOutput) => void
249
+ cb: (err: any, data?: PutContactInformationCommandOutput) => void,
253
250
  ): void;
254
251
  startPrimaryEmailUpdate(
255
252
  args: StartPrimaryEmailUpdateCommandInput,
256
- options?: __HttpHandlerOptions
253
+ options?: __HttpHandlerOptions,
257
254
  ): Promise<StartPrimaryEmailUpdateCommandOutput>;
258
255
  startPrimaryEmailUpdate(
259
256
  args: StartPrimaryEmailUpdateCommandInput,
260
- cb: (err: any, data?: StartPrimaryEmailUpdateCommandOutput) => void
257
+ cb: (err: any, data?: StartPrimaryEmailUpdateCommandOutput) => void,
261
258
  ): void;
262
259
  startPrimaryEmailUpdate(
263
260
  args: StartPrimaryEmailUpdateCommandInput,
264
261
  options: __HttpHandlerOptions,
265
- cb: (err: any, data?: StartPrimaryEmailUpdateCommandOutput) => void
262
+ cb: (err: any, data?: StartPrimaryEmailUpdateCommandOutput) => void,
266
263
  ): void;
267
264
  paginateListRegions(
268
265
  args?: ListRegionsCommandInput,
269
266
  paginationConfig?: Pick<
270
267
  PaginationConfiguration,
271
268
  Exclude<keyof PaginationConfiguration, "client">
272
- >
269
+ >,
273
270
  ): Paginator<ListRegionsCommandOutput>;
274
271
  }
275
272
  export declare class Account extends AccountClient implements Account {}
@@ -11,10 +11,7 @@ import {
11
11
  Client as __Client,
12
12
  } from "@smithy/core/client";
13
13
  import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
14
- import {
15
- EndpointInputConfig,
16
- EndpointResolvedConfig,
17
- } from "@smithy/core/endpoints";
14
+ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
18
15
  import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
19
16
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
20
17
  import {
@@ -76,10 +73,7 @@ import {
76
73
  GetRegionOptStatusCommandInput,
77
74
  GetRegionOptStatusCommandOutput,
78
75
  } from "./commands/GetRegionOptStatusCommand";
79
- import {
80
- ListRegionsCommandInput,
81
- ListRegionsCommandOutput,
82
- } from "./commands/ListRegionsCommand";
76
+ import { ListRegionsCommandInput, ListRegionsCommandOutput } from "./commands/ListRegionsCommand";
83
77
  import {
84
78
  PutAccountNameCommandInput,
85
79
  PutAccountNameCommandOutput,
@@ -135,8 +129,7 @@ export type ServiceOutputTypes =
135
129
  | PutAlternateContactCommandOutput
136
130
  | PutContactInformationCommandOutput
137
131
  | StartPrimaryEmailUpdateCommandOutput;
138
- export interface ClientDefaults
139
- extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
132
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
140
133
  requestHandler?: __HttpHandlerUserInput;
141
134
  sha256?: __ChecksumConstructor | __HashConstructor;
142
135
  urlParser?: __UrlParser;
@@ -161,9 +154,7 @@ export interface ClientDefaults
161
154
  extensions?: RuntimeExtension[];
162
155
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
163
156
  }
164
- export type AccountClientConfigType = Partial<
165
- __SmithyConfiguration<__HttpHandlerOptions>
166
- > &
157
+ export type AccountClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
167
158
  ClientDefaults &
168
159
  UserAgentInputConfig &
169
160
  RetryInputConfig &
@@ -173,19 +164,17 @@ export type AccountClientConfigType = Partial<
173
164
  HttpAuthSchemeInputConfig &
174
165
  ClientInputEndpointParameters;
175
166
  export interface AccountClientConfig extends AccountClientConfigType {}
176
- export type AccountClientResolvedConfigType =
177
- __SmithyResolvedConfiguration<__HttpHandlerOptions> &
178
- Required<ClientDefaults> &
179
- RuntimeExtensionsConfig &
180
- UserAgentResolvedConfig &
181
- RetryResolvedConfig &
182
- RegionResolvedConfig &
183
- HostHeaderResolvedConfig &
184
- EndpointResolvedConfig<EndpointParameters> &
185
- HttpAuthSchemeResolvedConfig &
186
- ClientResolvedEndpointParameters;
187
- export interface AccountClientResolvedConfig
188
- extends AccountClientResolvedConfigType {}
167
+ export type AccountClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> &
168
+ Required<ClientDefaults> &
169
+ RuntimeExtensionsConfig &
170
+ UserAgentResolvedConfig &
171
+ RetryResolvedConfig &
172
+ RegionResolvedConfig &
173
+ HostHeaderResolvedConfig &
174
+ EndpointResolvedConfig<EndpointParameters> &
175
+ HttpAuthSchemeResolvedConfig &
176
+ ClientResolvedEndpointParameters;
177
+ export interface AccountClientResolvedConfig extends AccountClientResolvedConfigType {}
189
178
  export declare class AccountClient extends __Client<
190
179
  __HttpHandlerOptions,
191
180
  ServiceInputTypes,
@@ -193,8 +182,6 @@ export declare class AccountClient extends __Client<
193
182
  AccountClientResolvedConfig
194
183
  > {
195
184
  readonly config: AccountClientResolvedConfig;
196
- constructor(
197
- ...[configuration]: __CheckOptionalClientConfig<AccountClientConfig>
198
- );
185
+ constructor(...[configuration]: __CheckOptionalClientConfig<AccountClientConfig>);
199
186
  destroy(): void;
200
187
  }
@@ -7,17 +7,10 @@ import { AccountHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
7
  export interface HttpAuthExtensionConfiguration {
8
8
  setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
9
  httpAuthSchemes(): HttpAuthScheme[];
10
- setHttpAuthSchemeProvider(
11
- httpAuthSchemeProvider: AccountHttpAuthSchemeProvider
12
- ): void;
10
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: AccountHttpAuthSchemeProvider): void;
13
11
  httpAuthSchemeProvider(): AccountHttpAuthSchemeProvider;
14
- setCredentials(
15
- credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
- ): void;
17
- credentials():
18
- | AwsCredentialIdentity
19
- | AwsCredentialIdentityProvider
20
- | undefined;
12
+ setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
13
+ credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
21
14
  }
22
15
  export type HttpAuthRuntimeConfig = Partial<{
23
16
  httpAuthSchemes: HttpAuthScheme[];
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
25
18
  credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
19
  }>;
27
20
  export declare const getHttpAuthExtensionConfiguration: (
28
- runtimeConfig: HttpAuthRuntimeConfig
21
+ runtimeConfig: HttpAuthRuntimeConfig,
29
22
  ) => HttpAuthExtensionConfiguration;
30
23
  export declare const resolveHttpAuthRuntimeConfig: (
31
- config: HttpAuthExtensionConfiguration
24
+ config: HttpAuthExtensionConfiguration,
32
25
  ) => HttpAuthRuntimeConfig;
@@ -12,36 +12,32 @@ import {
12
12
  Provider,
13
13
  } from "@smithy/types";
14
14
  import { AccountClientResolvedConfig } from "../AccountClient";
15
- export interface AccountHttpAuthSchemeParameters
16
- extends HttpAuthSchemeParameters {
15
+ export interface AccountHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
17
16
  region?: string;
18
17
  }
19
- export interface AccountHttpAuthSchemeParametersProvider
20
- extends HttpAuthSchemeParametersProvider<
21
- AccountClientResolvedConfig,
22
- HandlerExecutionContext,
23
- AccountHttpAuthSchemeParameters,
24
- object
25
- > {}
18
+ export interface AccountHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
19
+ AccountClientResolvedConfig,
20
+ HandlerExecutionContext,
21
+ AccountHttpAuthSchemeParameters,
22
+ object
23
+ > {}
26
24
  export declare const defaultAccountHttpAuthSchemeParametersProvider: (
27
25
  config: AccountClientResolvedConfig,
28
26
  context: HandlerExecutionContext,
29
- input: object
27
+ input: object,
30
28
  ) => Promise<AccountHttpAuthSchemeParameters>;
31
- export interface AccountHttpAuthSchemeProvider
32
- extends HttpAuthSchemeProvider<AccountHttpAuthSchemeParameters> {}
29
+ export interface AccountHttpAuthSchemeProvider extends HttpAuthSchemeProvider<AccountHttpAuthSchemeParameters> {}
33
30
  export declare const defaultAccountHttpAuthSchemeProvider: AccountHttpAuthSchemeProvider;
34
31
  export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
35
32
  authSchemePreference?: string[] | Provider<string[]>;
36
33
  httpAuthSchemes?: HttpAuthScheme[];
37
34
  httpAuthSchemeProvider?: AccountHttpAuthSchemeProvider;
38
35
  }
39
- export interface HttpAuthSchemeResolvedConfig
40
- extends AwsSdkSigV4AuthResolvedConfig {
36
+ export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
41
37
  readonly authSchemePreference: Provider<string[]>;
42
38
  readonly httpAuthSchemes: HttpAuthScheme[];
43
39
  readonly httpAuthSchemeProvider: AccountHttpAuthSchemeProvider;
44
40
  }
45
41
  export declare const resolveHttpAuthSchemeConfig: <T>(
46
- config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
42
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
47
43
  ) => T & HttpAuthSchemeResolvedConfig;
@@ -4,22 +4,21 @@ import {
4
4
  ServiceInputTypes,
5
5
  ServiceOutputTypes,
6
6
  } from "./AccountClient";
7
- export declare const command: <
8
- I extends ServiceInputTypes,
9
- O extends ServiceOutputTypes
10
- >(
7
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
11
8
  added: EndpointParameterInstructions,
12
9
  plugins: (
13
10
  CommandCtor: any,
14
11
  clientStack: any,
15
12
  config: any,
16
- options: any
13
+ options: any,
17
14
  ) => import("@smithy/types").Pluggable<any, any>[],
18
15
  op: string,
19
16
  $: import("@smithy/types").StaticOperationSchema,
20
- smithyContext?: Record<string, unknown>
17
+ smithyContext?: Record<string, unknown>,
21
18
  ) => {
22
- new (input: I): import("@smithy/core/client").CommandImpl<
19
+ new (
20
+ input: I,
21
+ ): import("@smithy/core/client").CommandImpl<
23
22
  I,
24
23
  O,
25
24
  AccountClientResolvedConfig,
@@ -38,9 +37,4 @@ export declare const command: <
38
37
  getEndpointParameterInstructions(): EndpointParameterInstructions;
39
38
  };
40
39
  export declare const _ep0: EndpointParameterInstructions;
41
- export declare const _mw0: (
42
- Command: any,
43
- cs: any,
44
- config: any,
45
- o: any
46
- ) => never[];
40
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -4,14 +4,12 @@ import {
4
4
  AcceptPrimaryEmailUpdateResponse,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface AcceptPrimaryEmailUpdateCommandInput
8
- extends AcceptPrimaryEmailUpdateRequest {}
7
+ export interface AcceptPrimaryEmailUpdateCommandInput extends AcceptPrimaryEmailUpdateRequest {}
9
8
  export interface AcceptPrimaryEmailUpdateCommandOutput
10
- extends AcceptPrimaryEmailUpdateResponse,
11
- __MetadataBearer {}
9
+ extends AcceptPrimaryEmailUpdateResponse, __MetadataBearer {}
12
10
  declare const AcceptPrimaryEmailUpdateCommand_base: {
13
11
  new (
14
- input: AcceptPrimaryEmailUpdateCommandInput
12
+ input: AcceptPrimaryEmailUpdateCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  AcceptPrimaryEmailUpdateCommandInput,
17
15
  AcceptPrimaryEmailUpdateCommandOutput,
@@ -20,7 +18,7 @@ declare const AcceptPrimaryEmailUpdateCommand_base: {
20
18
  import("..").ServiceOutputTypes
21
19
  >;
22
20
  new (
23
- input: AcceptPrimaryEmailUpdateCommandInput
21
+ input: AcceptPrimaryEmailUpdateCommandInput,
24
22
  ): import("@smithy/core/client").CommandImpl<
25
23
  AcceptPrimaryEmailUpdateCommandInput,
26
24
  AcceptPrimaryEmailUpdateCommandOutput,
@@ -1,12 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { DeleteAlternateContactRequest } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
- export interface DeleteAlternateContactCommandInput
5
- extends DeleteAlternateContactRequest {}
4
+ export interface DeleteAlternateContactCommandInput extends DeleteAlternateContactRequest {}
6
5
  export interface DeleteAlternateContactCommandOutput extends __MetadataBearer {}
7
6
  declare const DeleteAlternateContactCommand_base: {
8
7
  new (
9
- input: DeleteAlternateContactCommandInput
8
+ input: DeleteAlternateContactCommandInput,
10
9
  ): import("@smithy/core/client").CommandImpl<
11
10
  DeleteAlternateContactCommandInput,
12
11
  DeleteAlternateContactCommandOutput,
@@ -15,7 +14,7 @@ declare const DeleteAlternateContactCommand_base: {
15
14
  import("..").ServiceOutputTypes
16
15
  >;
17
16
  new (
18
- input: DeleteAlternateContactCommandInput
17
+ input: DeleteAlternateContactCommandInput,
19
18
  ): import("@smithy/core/client").CommandImpl<
20
19
  DeleteAlternateContactCommandInput,
21
20
  DeleteAlternateContactCommandOutput,
@@ -5,7 +5,7 @@ export interface DisableRegionCommandInput extends DisableRegionRequest {}
5
5
  export interface DisableRegionCommandOutput extends __MetadataBearer {}
6
6
  declare const DisableRegionCommand_base: {
7
7
  new (
8
- input: DisableRegionCommandInput
8
+ input: DisableRegionCommandInput,
9
9
  ): import("@smithy/core/client").CommandImpl<
10
10
  DisableRegionCommandInput,
11
11
  DisableRegionCommandOutput,
@@ -14,7 +14,7 @@ declare const DisableRegionCommand_base: {
14
14
  import("..").ServiceOutputTypes
15
15
  >;
16
16
  new (
17
- input: DisableRegionCommandInput
17
+ input: DisableRegionCommandInput,
18
18
  ): import("@smithy/core/client").CommandImpl<
19
19
  DisableRegionCommandInput,
20
20
  DisableRegionCommandOutput,
@@ -5,7 +5,7 @@ export interface EnableRegionCommandInput extends EnableRegionRequest {}
5
5
  export interface EnableRegionCommandOutput extends __MetadataBearer {}
6
6
  declare const EnableRegionCommand_base: {
7
7
  new (
8
- input: EnableRegionCommandInput
8
+ input: EnableRegionCommandInput,
9
9
  ): import("@smithy/core/client").CommandImpl<
10
10
  EnableRegionCommandInput,
11
11
  EnableRegionCommandOutput,
@@ -14,7 +14,7 @@ declare const EnableRegionCommand_base: {
14
14
  import("..").ServiceOutputTypes
15
15
  >;
16
16
  new (
17
- input: EnableRegionCommandInput
17
+ input: EnableRegionCommandInput,
18
18
  ): import("@smithy/core/client").CommandImpl<
19
19
  EnableRegionCommandInput,
20
20
  EnableRegionCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- GetAccountInformationRequest,
4
- GetAccountInformationResponse,
5
- } from "../models/models_0";
2
+ import { GetAccountInformationRequest, GetAccountInformationResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface GetAccountInformationCommandInput
8
- extends GetAccountInformationRequest {}
4
+ export interface GetAccountInformationCommandInput extends GetAccountInformationRequest {}
9
5
  export interface GetAccountInformationCommandOutput
10
- extends GetAccountInformationResponse,
11
- __MetadataBearer {}
6
+ extends GetAccountInformationResponse, __MetadataBearer {}
12
7
  declare const GetAccountInformationCommand_base: {
13
8
  new (
14
- input: GetAccountInformationCommandInput
9
+ input: GetAccountInformationCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  GetAccountInformationCommandInput,
17
12
  GetAccountInformationCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- GetAlternateContactRequest,
4
- GetAlternateContactResponse,
5
- } from "../models/models_0";
2
+ import { GetAlternateContactRequest, GetAlternateContactResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface GetAlternateContactCommandInput
8
- extends GetAlternateContactRequest {}
4
+ export interface GetAlternateContactCommandInput extends GetAlternateContactRequest {}
9
5
  export interface GetAlternateContactCommandOutput
10
- extends GetAlternateContactResponse,
11
- __MetadataBearer {}
6
+ extends GetAlternateContactResponse, __MetadataBearer {}
12
7
  declare const GetAlternateContactCommand_base: {
13
8
  new (
14
- input: GetAlternateContactCommandInput
9
+ input: GetAlternateContactCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  GetAlternateContactCommandInput,
17
12
  GetAlternateContactCommandOutput,
@@ -20,7 +15,7 @@ declare const GetAlternateContactCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: GetAlternateContactCommandInput
18
+ input: GetAlternateContactCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  GetAlternateContactCommandInput,
26
21
  GetAlternateContactCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- GetContactInformationRequest,
4
- GetContactInformationResponse,
5
- } from "../models/models_0";
2
+ import { GetContactInformationRequest, GetContactInformationResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface GetContactInformationCommandInput
8
- extends GetContactInformationRequest {}
4
+ export interface GetContactInformationCommandInput extends GetContactInformationRequest {}
9
5
  export interface GetContactInformationCommandOutput
10
- extends GetContactInformationResponse,
11
- __MetadataBearer {}
6
+ extends GetContactInformationResponse, __MetadataBearer {}
12
7
  declare const GetContactInformationCommand_base: {
13
8
  new (
14
- input: GetContactInformationCommandInput
9
+ input: GetContactInformationCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  GetContactInformationCommandInput,
17
12
  GetContactInformationCommandOutput,