@aws-sdk/client-partnercentral-channel 3.1087.0 → 3.1089.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 (36) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/PartnerCentralChannel.d.ts +55 -58
  3. package/dist-types/ts3.4/PartnerCentralChannelClient.d.ts +6 -19
  4. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
  5. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +12 -18
  6. package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
  7. package/dist-types/ts3.4/commands/AcceptChannelHandshakeCommand.d.ts +5 -10
  8. package/dist-types/ts3.4/commands/CancelChannelHandshakeCommand.d.ts +5 -10
  9. package/dist-types/ts3.4/commands/CreateChannelHandshakeCommand.d.ts +5 -10
  10. package/dist-types/ts3.4/commands/CreateProgramManagementAccountCommand.d.ts +4 -6
  11. package/dist-types/ts3.4/commands/CreateRelationshipCommand.d.ts +5 -10
  12. package/dist-types/ts3.4/commands/DeleteProgramManagementAccountCommand.d.ts +4 -6
  13. package/dist-types/ts3.4/commands/DeleteRelationshipCommand.d.ts +5 -10
  14. package/dist-types/ts3.4/commands/GetRelationshipCommand.d.ts +4 -9
  15. package/dist-types/ts3.4/commands/ListChannelHandshakesCommand.d.ts +5 -10
  16. package/dist-types/ts3.4/commands/ListProgramManagementAccountsCommand.d.ts +4 -6
  17. package/dist-types/ts3.4/commands/ListRelationshipsCommand.d.ts +5 -10
  18. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
  19. package/dist-types/ts3.4/commands/RejectChannelHandshakeCommand.d.ts +5 -10
  20. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
  21. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
  22. package/dist-types/ts3.4/commands/UpdateProgramManagementAccountCommand.d.ts +4 -6
  23. package/dist-types/ts3.4/commands/UpdateRelationshipCommand.d.ts +5 -10
  24. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  25. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  26. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  27. package/dist-types/ts3.4/models/enums.d.ts +5 -10
  28. package/dist-types/ts3.4/models/errors.d.ts +6 -18
  29. package/dist-types/ts3.4/models/models_0.d.ts +8 -24
  30. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  31. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
  32. package/dist-types/ts3.4/runtimeConfig.d.ts +10 -22
  33. package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
  34. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -5
  35. package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
  36. package/package.json +39 -39
package/dist-cjs/index.js CHANGED
@@ -194,7 +194,7 @@ const commonParams = {
194
194
  Region: { type: "builtInParams", name: "region" },
195
195
  };
196
196
 
197
- var version = "3.1086.0";
197
+ var version = "3.1088.0";
198
198
  var packageInfo = {
199
199
  version: version};
200
200
 
@@ -55,10 +55,7 @@ import {
55
55
  RejectChannelHandshakeCommandInput,
56
56
  RejectChannelHandshakeCommandOutput,
57
57
  } from "./commands/RejectChannelHandshakeCommand";
58
- import {
59
- TagResourceCommandInput,
60
- TagResourceCommandOutput,
61
- } from "./commands/TagResourceCommand";
58
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
62
59
  import {
63
60
  UntagResourceCommandInput,
64
61
  UntagResourceCommandOutput,
@@ -75,245 +72,245 @@ import { PartnerCentralChannelClient } from "./PartnerCentralChannelClient";
75
72
  export interface PartnerCentralChannel {
76
73
  acceptChannelHandshake(
77
74
  args: AcceptChannelHandshakeCommandInput,
78
- options?: __HttpHandlerOptions
75
+ options?: __HttpHandlerOptions,
79
76
  ): Promise<AcceptChannelHandshakeCommandOutput>;
80
77
  acceptChannelHandshake(
81
78
  args: AcceptChannelHandshakeCommandInput,
82
- cb: (err: any, data?: AcceptChannelHandshakeCommandOutput) => void
79
+ cb: (err: any, data?: AcceptChannelHandshakeCommandOutput) => void,
83
80
  ): void;
84
81
  acceptChannelHandshake(
85
82
  args: AcceptChannelHandshakeCommandInput,
86
83
  options: __HttpHandlerOptions,
87
- cb: (err: any, data?: AcceptChannelHandshakeCommandOutput) => void
84
+ cb: (err: any, data?: AcceptChannelHandshakeCommandOutput) => void,
88
85
  ): void;
89
86
  cancelChannelHandshake(
90
87
  args: CancelChannelHandshakeCommandInput,
91
- options?: __HttpHandlerOptions
88
+ options?: __HttpHandlerOptions,
92
89
  ): Promise<CancelChannelHandshakeCommandOutput>;
93
90
  cancelChannelHandshake(
94
91
  args: CancelChannelHandshakeCommandInput,
95
- cb: (err: any, data?: CancelChannelHandshakeCommandOutput) => void
92
+ cb: (err: any, data?: CancelChannelHandshakeCommandOutput) => void,
96
93
  ): void;
97
94
  cancelChannelHandshake(
98
95
  args: CancelChannelHandshakeCommandInput,
99
96
  options: __HttpHandlerOptions,
100
- cb: (err: any, data?: CancelChannelHandshakeCommandOutput) => void
97
+ cb: (err: any, data?: CancelChannelHandshakeCommandOutput) => void,
101
98
  ): void;
102
99
  createChannelHandshake(
103
100
  args: CreateChannelHandshakeCommandInput,
104
- options?: __HttpHandlerOptions
101
+ options?: __HttpHandlerOptions,
105
102
  ): Promise<CreateChannelHandshakeCommandOutput>;
106
103
  createChannelHandshake(
107
104
  args: CreateChannelHandshakeCommandInput,
108
- cb: (err: any, data?: CreateChannelHandshakeCommandOutput) => void
105
+ cb: (err: any, data?: CreateChannelHandshakeCommandOutput) => void,
109
106
  ): void;
110
107
  createChannelHandshake(
111
108
  args: CreateChannelHandshakeCommandInput,
112
109
  options: __HttpHandlerOptions,
113
- cb: (err: any, data?: CreateChannelHandshakeCommandOutput) => void
110
+ cb: (err: any, data?: CreateChannelHandshakeCommandOutput) => void,
114
111
  ): void;
115
112
  createProgramManagementAccount(
116
113
  args: CreateProgramManagementAccountCommandInput,
117
- options?: __HttpHandlerOptions
114
+ options?: __HttpHandlerOptions,
118
115
  ): Promise<CreateProgramManagementAccountCommandOutput>;
119
116
  createProgramManagementAccount(
120
117
  args: CreateProgramManagementAccountCommandInput,
121
- cb: (err: any, data?: CreateProgramManagementAccountCommandOutput) => void
118
+ cb: (err: any, data?: CreateProgramManagementAccountCommandOutput) => void,
122
119
  ): void;
123
120
  createProgramManagementAccount(
124
121
  args: CreateProgramManagementAccountCommandInput,
125
122
  options: __HttpHandlerOptions,
126
- cb: (err: any, data?: CreateProgramManagementAccountCommandOutput) => void
123
+ cb: (err: any, data?: CreateProgramManagementAccountCommandOutput) => void,
127
124
  ): void;
128
125
  createRelationship(
129
126
  args: CreateRelationshipCommandInput,
130
- options?: __HttpHandlerOptions
127
+ options?: __HttpHandlerOptions,
131
128
  ): Promise<CreateRelationshipCommandOutput>;
132
129
  createRelationship(
133
130
  args: CreateRelationshipCommandInput,
134
- cb: (err: any, data?: CreateRelationshipCommandOutput) => void
131
+ cb: (err: any, data?: CreateRelationshipCommandOutput) => void,
135
132
  ): void;
136
133
  createRelationship(
137
134
  args: CreateRelationshipCommandInput,
138
135
  options: __HttpHandlerOptions,
139
- cb: (err: any, data?: CreateRelationshipCommandOutput) => void
136
+ cb: (err: any, data?: CreateRelationshipCommandOutput) => void,
140
137
  ): void;
141
138
  deleteProgramManagementAccount(
142
139
  args: DeleteProgramManagementAccountCommandInput,
143
- options?: __HttpHandlerOptions
140
+ options?: __HttpHandlerOptions,
144
141
  ): Promise<DeleteProgramManagementAccountCommandOutput>;
145
142
  deleteProgramManagementAccount(
146
143
  args: DeleteProgramManagementAccountCommandInput,
147
- cb: (err: any, data?: DeleteProgramManagementAccountCommandOutput) => void
144
+ cb: (err: any, data?: DeleteProgramManagementAccountCommandOutput) => void,
148
145
  ): void;
149
146
  deleteProgramManagementAccount(
150
147
  args: DeleteProgramManagementAccountCommandInput,
151
148
  options: __HttpHandlerOptions,
152
- cb: (err: any, data?: DeleteProgramManagementAccountCommandOutput) => void
149
+ cb: (err: any, data?: DeleteProgramManagementAccountCommandOutput) => void,
153
150
  ): void;
154
151
  deleteRelationship(
155
152
  args: DeleteRelationshipCommandInput,
156
- options?: __HttpHandlerOptions
153
+ options?: __HttpHandlerOptions,
157
154
  ): Promise<DeleteRelationshipCommandOutput>;
158
155
  deleteRelationship(
159
156
  args: DeleteRelationshipCommandInput,
160
- cb: (err: any, data?: DeleteRelationshipCommandOutput) => void
157
+ cb: (err: any, data?: DeleteRelationshipCommandOutput) => void,
161
158
  ): void;
162
159
  deleteRelationship(
163
160
  args: DeleteRelationshipCommandInput,
164
161
  options: __HttpHandlerOptions,
165
- cb: (err: any, data?: DeleteRelationshipCommandOutput) => void
162
+ cb: (err: any, data?: DeleteRelationshipCommandOutput) => void,
166
163
  ): void;
167
164
  getRelationship(
168
165
  args: GetRelationshipCommandInput,
169
- options?: __HttpHandlerOptions
166
+ options?: __HttpHandlerOptions,
170
167
  ): Promise<GetRelationshipCommandOutput>;
171
168
  getRelationship(
172
169
  args: GetRelationshipCommandInput,
173
- cb: (err: any, data?: GetRelationshipCommandOutput) => void
170
+ cb: (err: any, data?: GetRelationshipCommandOutput) => void,
174
171
  ): void;
175
172
  getRelationship(
176
173
  args: GetRelationshipCommandInput,
177
174
  options: __HttpHandlerOptions,
178
- cb: (err: any, data?: GetRelationshipCommandOutput) => void
175
+ cb: (err: any, data?: GetRelationshipCommandOutput) => void,
179
176
  ): void;
180
177
  listChannelHandshakes(
181
178
  args: ListChannelHandshakesCommandInput,
182
- options?: __HttpHandlerOptions
179
+ options?: __HttpHandlerOptions,
183
180
  ): Promise<ListChannelHandshakesCommandOutput>;
184
181
  listChannelHandshakes(
185
182
  args: ListChannelHandshakesCommandInput,
186
- cb: (err: any, data?: ListChannelHandshakesCommandOutput) => void
183
+ cb: (err: any, data?: ListChannelHandshakesCommandOutput) => void,
187
184
  ): void;
188
185
  listChannelHandshakes(
189
186
  args: ListChannelHandshakesCommandInput,
190
187
  options: __HttpHandlerOptions,
191
- cb: (err: any, data?: ListChannelHandshakesCommandOutput) => void
188
+ cb: (err: any, data?: ListChannelHandshakesCommandOutput) => void,
192
189
  ): void;
193
190
  listProgramManagementAccounts(
194
191
  args: ListProgramManagementAccountsCommandInput,
195
- options?: __HttpHandlerOptions
192
+ options?: __HttpHandlerOptions,
196
193
  ): Promise<ListProgramManagementAccountsCommandOutput>;
197
194
  listProgramManagementAccounts(
198
195
  args: ListProgramManagementAccountsCommandInput,
199
- cb: (err: any, data?: ListProgramManagementAccountsCommandOutput) => void
196
+ cb: (err: any, data?: ListProgramManagementAccountsCommandOutput) => void,
200
197
  ): void;
201
198
  listProgramManagementAccounts(
202
199
  args: ListProgramManagementAccountsCommandInput,
203
200
  options: __HttpHandlerOptions,
204
- cb: (err: any, data?: ListProgramManagementAccountsCommandOutput) => void
201
+ cb: (err: any, data?: ListProgramManagementAccountsCommandOutput) => void,
205
202
  ): void;
206
203
  listRelationships(
207
204
  args: ListRelationshipsCommandInput,
208
- options?: __HttpHandlerOptions
205
+ options?: __HttpHandlerOptions,
209
206
  ): Promise<ListRelationshipsCommandOutput>;
210
207
  listRelationships(
211
208
  args: ListRelationshipsCommandInput,
212
- cb: (err: any, data?: ListRelationshipsCommandOutput) => void
209
+ cb: (err: any, data?: ListRelationshipsCommandOutput) => void,
213
210
  ): void;
214
211
  listRelationships(
215
212
  args: ListRelationshipsCommandInput,
216
213
  options: __HttpHandlerOptions,
217
- cb: (err: any, data?: ListRelationshipsCommandOutput) => void
214
+ cb: (err: any, data?: ListRelationshipsCommandOutput) => void,
218
215
  ): void;
219
216
  listTagsForResource(
220
217
  args: ListTagsForResourceCommandInput,
221
- options?: __HttpHandlerOptions
218
+ options?: __HttpHandlerOptions,
222
219
  ): Promise<ListTagsForResourceCommandOutput>;
223
220
  listTagsForResource(
224
221
  args: ListTagsForResourceCommandInput,
225
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
222
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
226
223
  ): void;
227
224
  listTagsForResource(
228
225
  args: ListTagsForResourceCommandInput,
229
226
  options: __HttpHandlerOptions,
230
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
227
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
231
228
  ): void;
232
229
  rejectChannelHandshake(
233
230
  args: RejectChannelHandshakeCommandInput,
234
- options?: __HttpHandlerOptions
231
+ options?: __HttpHandlerOptions,
235
232
  ): Promise<RejectChannelHandshakeCommandOutput>;
236
233
  rejectChannelHandshake(
237
234
  args: RejectChannelHandshakeCommandInput,
238
- cb: (err: any, data?: RejectChannelHandshakeCommandOutput) => void
235
+ cb: (err: any, data?: RejectChannelHandshakeCommandOutput) => void,
239
236
  ): void;
240
237
  rejectChannelHandshake(
241
238
  args: RejectChannelHandshakeCommandInput,
242
239
  options: __HttpHandlerOptions,
243
- cb: (err: any, data?: RejectChannelHandshakeCommandOutput) => void
240
+ cb: (err: any, data?: RejectChannelHandshakeCommandOutput) => void,
244
241
  ): void;
245
242
  tagResource(
246
243
  args: TagResourceCommandInput,
247
- options?: __HttpHandlerOptions
244
+ options?: __HttpHandlerOptions,
248
245
  ): Promise<TagResourceCommandOutput>;
249
246
  tagResource(
250
247
  args: TagResourceCommandInput,
251
- cb: (err: any, data?: TagResourceCommandOutput) => void
248
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
252
249
  ): void;
253
250
  tagResource(
254
251
  args: TagResourceCommandInput,
255
252
  options: __HttpHandlerOptions,
256
- cb: (err: any, data?: TagResourceCommandOutput) => void
253
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
257
254
  ): void;
258
255
  untagResource(
259
256
  args: UntagResourceCommandInput,
260
- options?: __HttpHandlerOptions
257
+ options?: __HttpHandlerOptions,
261
258
  ): Promise<UntagResourceCommandOutput>;
262
259
  untagResource(
263
260
  args: UntagResourceCommandInput,
264
- cb: (err: any, data?: UntagResourceCommandOutput) => void
261
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
265
262
  ): void;
266
263
  untagResource(
267
264
  args: UntagResourceCommandInput,
268
265
  options: __HttpHandlerOptions,
269
- cb: (err: any, data?: UntagResourceCommandOutput) => void
266
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
270
267
  ): void;
271
268
  updateProgramManagementAccount(
272
269
  args: UpdateProgramManagementAccountCommandInput,
273
- options?: __HttpHandlerOptions
270
+ options?: __HttpHandlerOptions,
274
271
  ): Promise<UpdateProgramManagementAccountCommandOutput>;
275
272
  updateProgramManagementAccount(
276
273
  args: UpdateProgramManagementAccountCommandInput,
277
- cb: (err: any, data?: UpdateProgramManagementAccountCommandOutput) => void
274
+ cb: (err: any, data?: UpdateProgramManagementAccountCommandOutput) => void,
278
275
  ): void;
279
276
  updateProgramManagementAccount(
280
277
  args: UpdateProgramManagementAccountCommandInput,
281
278
  options: __HttpHandlerOptions,
282
- cb: (err: any, data?: UpdateProgramManagementAccountCommandOutput) => void
279
+ cb: (err: any, data?: UpdateProgramManagementAccountCommandOutput) => void,
283
280
  ): void;
284
281
  updateRelationship(
285
282
  args: UpdateRelationshipCommandInput,
286
- options?: __HttpHandlerOptions
283
+ options?: __HttpHandlerOptions,
287
284
  ): Promise<UpdateRelationshipCommandOutput>;
288
285
  updateRelationship(
289
286
  args: UpdateRelationshipCommandInput,
290
- cb: (err: any, data?: UpdateRelationshipCommandOutput) => void
287
+ cb: (err: any, data?: UpdateRelationshipCommandOutput) => void,
291
288
  ): void;
292
289
  updateRelationship(
293
290
  args: UpdateRelationshipCommandInput,
294
291
  options: __HttpHandlerOptions,
295
- cb: (err: any, data?: UpdateRelationshipCommandOutput) => void
292
+ cb: (err: any, data?: UpdateRelationshipCommandOutput) => void,
296
293
  ): void;
297
294
  paginateListChannelHandshakes(
298
295
  args: ListChannelHandshakesCommandInput,
299
296
  paginationConfig?: Pick<
300
297
  PaginationConfiguration,
301
298
  Exclude<keyof PaginationConfiguration, "client">
302
- >
299
+ >,
303
300
  ): Paginator<ListChannelHandshakesCommandOutput>;
304
301
  paginateListProgramManagementAccounts(
305
302
  args: ListProgramManagementAccountsCommandInput,
306
303
  paginationConfig?: Pick<
307
304
  PaginationConfiguration,
308
305
  Exclude<keyof PaginationConfiguration, "client">
309
- >
306
+ >,
310
307
  ): Paginator<ListProgramManagementAccountsCommandOutput>;
311
308
  paginateListRelationships(
312
309
  args: ListRelationshipsCommandInput,
313
310
  paginationConfig?: Pick<
314
311
  PaginationConfiguration,
315
312
  Exclude<keyof PaginationConfiguration, "client">
316
- >
313
+ >,
317
314
  ): Paginator<ListRelationshipsCommandOutput>;
318
315
  }
319
316
  export declare class PartnerCentralChannel
@@ -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 {
@@ -88,10 +85,7 @@ import {
88
85
  RejectChannelHandshakeCommandInput,
89
86
  RejectChannelHandshakeCommandOutput,
90
87
  } from "./commands/RejectChannelHandshakeCommand";
91
- import {
92
- TagResourceCommandInput,
93
- TagResourceCommandOutput,
94
- } from "./commands/TagResourceCommand";
88
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
95
89
  import {
96
90
  UntagResourceCommandInput,
97
91
  UntagResourceCommandOutput,
@@ -147,8 +141,7 @@ export type ServiceOutputTypes =
147
141
  | UntagResourceCommandOutput
148
142
  | UpdateProgramManagementAccountCommandOutput
149
143
  | UpdateRelationshipCommandOutput;
150
- export interface ClientDefaults
151
- extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
144
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
152
145
  requestHandler?: __HttpHandlerUserInput;
153
146
  sha256?: __ChecksumConstructor | __HashConstructor;
154
147
  urlParser?: __UrlParser;
@@ -184,8 +177,7 @@ export type PartnerCentralChannelClientConfigType = Partial<
184
177
  EndpointInputConfig<EndpointParameters> &
185
178
  HttpAuthSchemeInputConfig &
186
179
  ClientInputEndpointParameters;
187
- export interface PartnerCentralChannelClientConfig
188
- extends PartnerCentralChannelClientConfigType {}
180
+ export interface PartnerCentralChannelClientConfig extends PartnerCentralChannelClientConfigType {}
189
181
  export type PartnerCentralChannelClientResolvedConfigType =
190
182
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
191
183
  Required<ClientDefaults> &
@@ -197,8 +189,7 @@ export type PartnerCentralChannelClientResolvedConfigType =
197
189
  EndpointResolvedConfig<EndpointParameters> &
198
190
  HttpAuthSchemeResolvedConfig &
199
191
  ClientResolvedEndpointParameters;
200
- export interface PartnerCentralChannelClientResolvedConfig
201
- extends PartnerCentralChannelClientResolvedConfigType {}
192
+ export interface PartnerCentralChannelClientResolvedConfig extends PartnerCentralChannelClientResolvedConfigType {}
202
193
  export declare class PartnerCentralChannelClient extends __Client<
203
194
  __HttpHandlerOptions,
204
195
  ServiceInputTypes,
@@ -206,10 +197,6 @@ export declare class PartnerCentralChannelClient extends __Client<
206
197
  PartnerCentralChannelClientResolvedConfig
207
198
  > {
208
199
  readonly config: PartnerCentralChannelClientResolvedConfig;
209
- constructor(
210
- ...[
211
- configuration,
212
- ]: __CheckOptionalClientConfig<PartnerCentralChannelClientConfig>
213
- );
200
+ constructor(...[configuration]: __CheckOptionalClientConfig<PartnerCentralChannelClientConfig>);
214
201
  destroy(): void;
215
202
  }
@@ -8,16 +8,11 @@ export interface HttpAuthExtensionConfiguration {
8
8
  setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
9
  httpAuthSchemes(): HttpAuthScheme[];
10
10
  setHttpAuthSchemeProvider(
11
- httpAuthSchemeProvider: PartnerCentralChannelHttpAuthSchemeProvider
11
+ httpAuthSchemeProvider: PartnerCentralChannelHttpAuthSchemeProvider,
12
12
  ): void;
13
13
  httpAuthSchemeProvider(): PartnerCentralChannelHttpAuthSchemeProvider;
14
- setCredentials(
15
- credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
- ): void;
17
- credentials():
18
- | AwsCredentialIdentity
19
- | AwsCredentialIdentityProvider
20
- | undefined;
14
+ setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
15
+ credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
21
16
  }
22
17
  export type HttpAuthRuntimeConfig = Partial<{
23
18
  httpAuthSchemes: HttpAuthScheme[];
@@ -25,8 +20,8 @@ export type HttpAuthRuntimeConfig = Partial<{
25
20
  credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
21
  }>;
27
22
  export declare const getHttpAuthExtensionConfiguration: (
28
- runtimeConfig: HttpAuthRuntimeConfig
23
+ runtimeConfig: HttpAuthRuntimeConfig,
29
24
  ) => HttpAuthExtensionConfiguration;
30
25
  export declare const resolveHttpAuthRuntimeConfig: (
31
- config: HttpAuthExtensionConfiguration
26
+ config: HttpAuthExtensionConfiguration,
32
27
  ) => HttpAuthRuntimeConfig;
@@ -16,36 +16,30 @@ import {
16
16
  } from "@smithy/types";
17
17
  import { EndpointParameters } from "../endpoint/EndpointParameters";
18
18
  import { PartnerCentralChannelClientResolvedConfig } from "../PartnerCentralChannelClient";
19
- interface _PartnerCentralChannelHttpAuthSchemeParameters
20
- extends HttpAuthSchemeParameters {
19
+ interface _PartnerCentralChannelHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
21
20
  region?: string;
22
21
  }
23
22
  export interface PartnerCentralChannelHttpAuthSchemeParameters
24
- extends _PartnerCentralChannelHttpAuthSchemeParameters,
25
- EndpointParameters {
23
+ extends _PartnerCentralChannelHttpAuthSchemeParameters, EndpointParameters {
26
24
  region?: string;
27
25
  }
28
- export interface PartnerCentralChannelHttpAuthSchemeParametersProvider
29
- extends HttpAuthSchemeParametersProvider<
30
- PartnerCentralChannelClientResolvedConfig,
31
- HandlerExecutionContext,
32
- PartnerCentralChannelHttpAuthSchemeParameters,
33
- object
34
- > {}
26
+ export interface PartnerCentralChannelHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
27
+ PartnerCentralChannelClientResolvedConfig,
28
+ HandlerExecutionContext,
29
+ PartnerCentralChannelHttpAuthSchemeParameters,
30
+ object
31
+ > {}
35
32
  export declare const defaultPartnerCentralChannelHttpAuthSchemeParametersProvider: PartnerCentralChannelHttpAuthSchemeParametersProvider;
36
- export interface PartnerCentralChannelHttpAuthSchemeProvider
37
- extends HttpAuthSchemeProvider<PartnerCentralChannelHttpAuthSchemeParameters> {}
33
+ export interface PartnerCentralChannelHttpAuthSchemeProvider extends HttpAuthSchemeProvider<PartnerCentralChannelHttpAuthSchemeParameters> {}
38
34
  export declare const defaultPartnerCentralChannelHttpAuthSchemeProvider: PartnerCentralChannelHttpAuthSchemeProvider;
39
35
  export interface HttpAuthSchemeInputConfig
40
- extends AwsSdkSigV4AuthInputConfig,
41
- AwsSdkSigV4AAuthInputConfig {
36
+ extends AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AAuthInputConfig {
42
37
  authSchemePreference?: string[] | Provider<string[]>;
43
38
  httpAuthSchemes?: HttpAuthScheme[];
44
39
  httpAuthSchemeProvider?: PartnerCentralChannelHttpAuthSchemeProvider;
45
40
  }
46
41
  export interface HttpAuthSchemeResolvedConfig
47
- extends AwsSdkSigV4AuthResolvedConfig,
48
- AwsSdkSigV4AAuthResolvedConfig {
42
+ extends AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4AAuthResolvedConfig {
49
43
  readonly authSchemePreference: Provider<string[]>;
50
44
  readonly httpAuthSchemes: HttpAuthScheme[];
51
45
  readonly httpAuthSchemeProvider: PartnerCentralChannelHttpAuthSchemeProvider;
@@ -54,6 +48,6 @@ export declare const resolveHttpAuthSchemeConfig: <T>(
54
48
  config: T &
55
49
  HttpAuthSchemeInputConfig &
56
50
  AwsSdkSigV4PreviouslyResolved &
57
- AwsSdkSigV4APreviouslyResolved
51
+ AwsSdkSigV4APreviouslyResolved,
58
52
  ) => T & HttpAuthSchemeResolvedConfig;
59
53
  export {};
@@ -4,22 +4,21 @@ import {
4
4
  ServiceInputTypes,
5
5
  ServiceOutputTypes,
6
6
  } from "./PartnerCentralChannelClient";
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
  PartnerCentralChannelClientResolvedConfig,
@@ -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[];
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- AcceptChannelHandshakeRequest,
4
- AcceptChannelHandshakeResponse,
5
- } from "../models/models_0";
2
+ import { AcceptChannelHandshakeRequest, AcceptChannelHandshakeResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface AcceptChannelHandshakeCommandInput
8
- extends AcceptChannelHandshakeRequest {}
4
+ export interface AcceptChannelHandshakeCommandInput extends AcceptChannelHandshakeRequest {}
9
5
  export interface AcceptChannelHandshakeCommandOutput
10
- extends AcceptChannelHandshakeResponse,
11
- __MetadataBearer {}
6
+ extends AcceptChannelHandshakeResponse, __MetadataBearer {}
12
7
  declare const AcceptChannelHandshakeCommand_base: {
13
8
  new (
14
- input: AcceptChannelHandshakeCommandInput
9
+ input: AcceptChannelHandshakeCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  AcceptChannelHandshakeCommandInput,
17
12
  AcceptChannelHandshakeCommandOutput,
@@ -20,7 +15,7 @@ declare const AcceptChannelHandshakeCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: AcceptChannelHandshakeCommandInput
18
+ input: AcceptChannelHandshakeCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  AcceptChannelHandshakeCommandInput,
26
21
  AcceptChannelHandshakeCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- CancelChannelHandshakeRequest,
4
- CancelChannelHandshakeResponse,
5
- } from "../models/models_0";
2
+ import { CancelChannelHandshakeRequest, CancelChannelHandshakeResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface CancelChannelHandshakeCommandInput
8
- extends CancelChannelHandshakeRequest {}
4
+ export interface CancelChannelHandshakeCommandInput extends CancelChannelHandshakeRequest {}
9
5
  export interface CancelChannelHandshakeCommandOutput
10
- extends CancelChannelHandshakeResponse,
11
- __MetadataBearer {}
6
+ extends CancelChannelHandshakeResponse, __MetadataBearer {}
12
7
  declare const CancelChannelHandshakeCommand_base: {
13
8
  new (
14
- input: CancelChannelHandshakeCommandInput
9
+ input: CancelChannelHandshakeCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  CancelChannelHandshakeCommandInput,
17
12
  CancelChannelHandshakeCommandOutput,
@@ -20,7 +15,7 @@ declare const CancelChannelHandshakeCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: CancelChannelHandshakeCommandInput
18
+ input: CancelChannelHandshakeCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  CancelChannelHandshakeCommandInput,
26
21
  CancelChannelHandshakeCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- CreateChannelHandshakeRequest,
4
- CreateChannelHandshakeResponse,
5
- } from "../models/models_0";
2
+ import { CreateChannelHandshakeRequest, CreateChannelHandshakeResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface CreateChannelHandshakeCommandInput
8
- extends CreateChannelHandshakeRequest {}
4
+ export interface CreateChannelHandshakeCommandInput extends CreateChannelHandshakeRequest {}
9
5
  export interface CreateChannelHandshakeCommandOutput
10
- extends CreateChannelHandshakeResponse,
11
- __MetadataBearer {}
6
+ extends CreateChannelHandshakeResponse, __MetadataBearer {}
12
7
  declare const CreateChannelHandshakeCommand_base: {
13
8
  new (
14
- input: CreateChannelHandshakeCommandInput
9
+ input: CreateChannelHandshakeCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  CreateChannelHandshakeCommandInput,
17
12
  CreateChannelHandshakeCommandOutput,
@@ -20,7 +15,7 @@ declare const CreateChannelHandshakeCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: CreateChannelHandshakeCommandInput
18
+ input: CreateChannelHandshakeCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  CreateChannelHandshakeCommandInput,
26
21
  CreateChannelHandshakeCommandOutput,
@@ -4,14 +4,12 @@ import {
4
4
  CreateProgramManagementAccountResponse,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface CreateProgramManagementAccountCommandInput
8
- extends CreateProgramManagementAccountRequest {}
7
+ export interface CreateProgramManagementAccountCommandInput extends CreateProgramManagementAccountRequest {}
9
8
  export interface CreateProgramManagementAccountCommandOutput
10
- extends CreateProgramManagementAccountResponse,
11
- __MetadataBearer {}
9
+ extends CreateProgramManagementAccountResponse, __MetadataBearer {}
12
10
  declare const CreateProgramManagementAccountCommand_base: {
13
11
  new (
14
- input: CreateProgramManagementAccountCommandInput
12
+ input: CreateProgramManagementAccountCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  CreateProgramManagementAccountCommandInput,
17
15
  CreateProgramManagementAccountCommandOutput,
@@ -20,7 +18,7 @@ declare const CreateProgramManagementAccountCommand_base: {
20
18
  import("..").ServiceOutputTypes
21
19
  >;
22
20
  new (
23
- input: CreateProgramManagementAccountCommandInput
21
+ input: CreateProgramManagementAccountCommandInput,
24
22
  ): import("@smithy/core/client").CommandImpl<
25
23
  CreateProgramManagementAccountCommandInput,
26
24
  CreateProgramManagementAccountCommandOutput,