@aws-sdk/client-kafkaconnect 3.515.0 → 3.522.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 (49) hide show
  1. package/README.md +32 -0
  2. package/dist-cjs/commands/DeleteWorkerConfigurationCommand.js +1 -0
  3. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -0
  4. package/dist-cjs/commands/TagResourceCommand.js +1 -0
  5. package/dist-cjs/commands/UntagResourceCommand.js +1 -0
  6. package/dist-cjs/index.js +201 -7
  7. package/dist-cjs/runtimeConfig.browser.js +1 -1
  8. package/dist-cjs/runtimeConfig.js +1 -1
  9. package/dist-es/KafkaConnect.js +8 -0
  10. package/dist-es/commands/DeleteWorkerConfigurationCommand.js +24 -0
  11. package/dist-es/commands/ListTagsForResourceCommand.js +24 -0
  12. package/dist-es/commands/TagResourceCommand.js +24 -0
  13. package/dist-es/commands/UntagResourceCommand.js +24 -0
  14. package/dist-es/commands/index.js +4 -0
  15. package/dist-es/models/models_0.js +4 -0
  16. package/dist-es/protocols/Aws_restJson1.js +106 -0
  17. package/dist-es/runtimeConfig.browser.js +1 -1
  18. package/dist-es/runtimeConfig.js +1 -1
  19. package/dist-types/KafkaConnect.d.ts +28 -0
  20. package/dist-types/KafkaConnectClient.d.ts +10 -6
  21. package/dist-types/commands/CreateConnectorCommand.d.ts +4 -1
  22. package/dist-types/commands/CreateCustomPluginCommand.d.ts +3 -0
  23. package/dist-types/commands/CreateWorkerConfigurationCommand.d.ts +4 -0
  24. package/dist-types/commands/DeleteWorkerConfigurationCommand.d.ts +86 -0
  25. package/dist-types/commands/DescribeWorkerConfigurationCommand.d.ts +1 -0
  26. package/dist-types/commands/ListCustomPluginsCommand.d.ts +1 -0
  27. package/dist-types/commands/ListTagsForResourceCommand.d.ts +87 -0
  28. package/dist-types/commands/ListWorkerConfigurationsCommand.d.ts +2 -0
  29. package/dist-types/commands/TagResourceCommand.d.ts +90 -0
  30. package/dist-types/commands/UntagResourceCommand.d.ts +86 -0
  31. package/dist-types/commands/index.d.ts +4 -0
  32. package/dist-types/models/models_0.d.ts +143 -5
  33. package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
  34. package/dist-types/runtimeConfig.browser.d.ts +1 -4
  35. package/dist-types/runtimeConfig.d.ts +1 -4
  36. package/dist-types/runtimeConfig.native.d.ts +1 -4
  37. package/dist-types/ts3.4/KafkaConnect.d.ts +68 -0
  38. package/dist-types/ts3.4/KafkaConnectClient.d.ts +27 -3
  39. package/dist-types/ts3.4/commands/DeleteWorkerConfigurationCommand.d.ts +30 -0
  40. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +30 -0
  41. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +26 -0
  42. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +29 -0
  43. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  44. package/dist-types/ts3.4/models/models_0.d.ts +37 -0
  45. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
  46. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -13
  47. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -14
  48. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -13
  49. package/package.json +34 -34
@@ -18,7 +18,7 @@ import {
18
18
  RetryInputConfig,
19
19
  RetryResolvedConfig,
20
20
  } from "@smithy/middleware-retry";
21
- import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
21
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
22
22
  import {
23
23
  Client as __Client,
24
24
  DefaultsMode as __DefaultsMode,
@@ -65,6 +65,10 @@ import {
65
65
  DeleteCustomPluginCommandInput,
66
66
  DeleteCustomPluginCommandOutput,
67
67
  } from "./commands/DeleteCustomPluginCommand";
68
+ import {
69
+ DeleteWorkerConfigurationCommandInput,
70
+ DeleteWorkerConfigurationCommandOutput,
71
+ } from "./commands/DeleteWorkerConfigurationCommand";
68
72
  import {
69
73
  DescribeConnectorCommandInput,
70
74
  DescribeConnectorCommandOutput,
@@ -85,10 +89,22 @@ import {
85
89
  ListCustomPluginsCommandInput,
86
90
  ListCustomPluginsCommandOutput,
87
91
  } from "./commands/ListCustomPluginsCommand";
92
+ import {
93
+ ListTagsForResourceCommandInput,
94
+ ListTagsForResourceCommandOutput,
95
+ } from "./commands/ListTagsForResourceCommand";
88
96
  import {
89
97
  ListWorkerConfigurationsCommandInput,
90
98
  ListWorkerConfigurationsCommandOutput,
91
99
  } from "./commands/ListWorkerConfigurationsCommand";
100
+ import {
101
+ TagResourceCommandInput,
102
+ TagResourceCommandOutput,
103
+ } from "./commands/TagResourceCommand";
104
+ import {
105
+ UntagResourceCommandInput,
106
+ UntagResourceCommandOutput,
107
+ } from "./commands/UntagResourceCommand";
92
108
  import {
93
109
  UpdateConnectorCommandInput,
94
110
  UpdateConnectorCommandOutput,
@@ -106,12 +122,16 @@ export type ServiceInputTypes =
106
122
  | CreateWorkerConfigurationCommandInput
107
123
  | DeleteConnectorCommandInput
108
124
  | DeleteCustomPluginCommandInput
125
+ | DeleteWorkerConfigurationCommandInput
109
126
  | DescribeConnectorCommandInput
110
127
  | DescribeCustomPluginCommandInput
111
128
  | DescribeWorkerConfigurationCommandInput
112
129
  | ListConnectorsCommandInput
113
130
  | ListCustomPluginsCommandInput
131
+ | ListTagsForResourceCommandInput
114
132
  | ListWorkerConfigurationsCommandInput
133
+ | TagResourceCommandInput
134
+ | UntagResourceCommandInput
115
135
  | UpdateConnectorCommandInput;
116
136
  export type ServiceOutputTypes =
117
137
  | CreateConnectorCommandOutput
@@ -119,16 +139,20 @@ export type ServiceOutputTypes =
119
139
  | CreateWorkerConfigurationCommandOutput
120
140
  | DeleteConnectorCommandOutput
121
141
  | DeleteCustomPluginCommandOutput
142
+ | DeleteWorkerConfigurationCommandOutput
122
143
  | DescribeConnectorCommandOutput
123
144
  | DescribeCustomPluginCommandOutput
124
145
  | DescribeWorkerConfigurationCommandOutput
125
146
  | ListConnectorsCommandOutput
126
147
  | ListCustomPluginsCommandOutput
148
+ | ListTagsForResourceCommandOutput
127
149
  | ListWorkerConfigurationsCommandOutput
150
+ | TagResourceCommandOutput
151
+ | UntagResourceCommandOutput
128
152
  | UpdateConnectorCommandOutput;
129
153
  export interface ClientDefaults
130
- extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
131
- requestHandler?: __HttpHandler;
154
+ extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
155
+ requestHandler?: __HttpHandlerUserInput;
132
156
  sha256?: __ChecksumConstructor | __HashConstructor;
133
157
  urlParser?: __UrlParser;
134
158
  bodyLengthChecker?: __BodyLengthCalculator;
@@ -0,0 +1,30 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ KafkaConnectClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../KafkaConnectClient";
8
+ import {
9
+ DeleteWorkerConfigurationRequest,
10
+ DeleteWorkerConfigurationResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface DeleteWorkerConfigurationCommandInput
14
+ extends DeleteWorkerConfigurationRequest {}
15
+ export interface DeleteWorkerConfigurationCommandOutput
16
+ extends DeleteWorkerConfigurationResponse,
17
+ __MetadataBearer {}
18
+ declare const DeleteWorkerConfigurationCommand_base: {
19
+ new (
20
+ input: DeleteWorkerConfigurationCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DeleteWorkerConfigurationCommandInput,
23
+ DeleteWorkerConfigurationCommandOutput,
24
+ KafkaConnectClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class DeleteWorkerConfigurationCommand extends DeleteWorkerConfigurationCommand_base {}
@@ -0,0 +1,30 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ KafkaConnectClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../KafkaConnectClient";
8
+ import {
9
+ ListTagsForResourceRequest,
10
+ ListTagsForResourceResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface ListTagsForResourceCommandInput
14
+ extends ListTagsForResourceRequest {}
15
+ export interface ListTagsForResourceCommandOutput
16
+ extends ListTagsForResourceResponse,
17
+ __MetadataBearer {}
18
+ declare const ListTagsForResourceCommand_base: {
19
+ new (
20
+ input: ListTagsForResourceCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListTagsForResourceCommandInput,
23
+ ListTagsForResourceCommandOutput,
24
+ KafkaConnectClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}
@@ -0,0 +1,26 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ KafkaConnectClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../KafkaConnectClient";
8
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
9
+ export { __MetadataBearer, $Command };
10
+ export interface TagResourceCommandInput extends TagResourceRequest {}
11
+ export interface TagResourceCommandOutput
12
+ extends TagResourceResponse,
13
+ __MetadataBearer {}
14
+ declare const TagResourceCommand_base: {
15
+ new (
16
+ input: TagResourceCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ TagResourceCommandInput,
19
+ TagResourceCommandOutput,
20
+ KafkaConnectClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class TagResourceCommand extends TagResourceCommand_base {}
@@ -0,0 +1,29 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ KafkaConnectClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../KafkaConnectClient";
8
+ import {
9
+ UntagResourceRequest,
10
+ UntagResourceResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
14
+ export interface UntagResourceCommandOutput
15
+ extends UntagResourceResponse,
16
+ __MetadataBearer {}
17
+ declare const UntagResourceCommand_base: {
18
+ new (
19
+ input: UntagResourceCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ UntagResourceCommandInput,
22
+ UntagResourceCommandOutput,
23
+ KafkaConnectClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {}
@@ -3,10 +3,14 @@ export * from "./CreateCustomPluginCommand";
3
3
  export * from "./CreateWorkerConfigurationCommand";
4
4
  export * from "./DeleteConnectorCommand";
5
5
  export * from "./DeleteCustomPluginCommand";
6
+ export * from "./DeleteWorkerConfigurationCommand";
6
7
  export * from "./DescribeConnectorCommand";
7
8
  export * from "./DescribeCustomPluginCommand";
8
9
  export * from "./DescribeWorkerConfigurationCommand";
9
10
  export * from "./ListConnectorsCommand";
10
11
  export * from "./ListCustomPluginsCommand";
12
+ export * from "./ListTagsForResourceCommand";
11
13
  export * from "./ListWorkerConfigurationsCommand";
14
+ export * from "./TagResourceCommand";
15
+ export * from "./UntagResourceCommand";
12
16
  export * from "./UpdateConnectorCommand";
@@ -164,12 +164,19 @@ export interface WorkerConfigurationRevisionSummary {
164
164
  description?: string;
165
165
  revision?: number;
166
166
  }
167
+ export declare const WorkerConfigurationState: {
168
+ readonly ACTIVE: "ACTIVE";
169
+ readonly DELETING: "DELETING";
170
+ };
171
+ export type WorkerConfigurationState =
172
+ (typeof WorkerConfigurationState)[keyof typeof WorkerConfigurationState];
167
173
  export interface WorkerConfigurationSummary {
168
174
  creationTime?: Date;
169
175
  description?: string;
170
176
  latestRevision?: WorkerConfigurationRevisionSummary;
171
177
  name?: string;
172
178
  workerConfigurationArn?: string;
179
+ workerConfigurationState?: WorkerConfigurationState;
173
180
  }
174
181
  export interface Vpc {
175
182
  securityGroups?: string[];
@@ -282,6 +289,7 @@ export interface CreateConnectorRequest {
282
289
  plugins: Plugin[] | undefined;
283
290
  serviceExecutionRoleArn: string | undefined;
284
291
  workerConfiguration?: WorkerConfiguration;
292
+ tags?: Record<string, string>;
285
293
  }
286
294
  export interface CreateConnectorResponse {
287
295
  connectorArn?: string;
@@ -339,6 +347,7 @@ export interface CreateCustomPluginRequest {
339
347
  description?: string;
340
348
  location: CustomPluginLocation | undefined;
341
349
  name: string | undefined;
350
+ tags?: Record<string, string>;
342
351
  }
343
352
  export interface CreateCustomPluginResponse {
344
353
  customPluginArn?: string;
@@ -350,12 +359,14 @@ export interface CreateWorkerConfigurationRequest {
350
359
  description?: string;
351
360
  name: string | undefined;
352
361
  propertiesFileContent: string | undefined;
362
+ tags?: Record<string, string>;
353
363
  }
354
364
  export interface CreateWorkerConfigurationResponse {
355
365
  creationTime?: Date;
356
366
  latestRevision?: WorkerConfigurationRevisionSummary;
357
367
  name?: string;
358
368
  workerConfigurationArn?: string;
369
+ workerConfigurationState?: WorkerConfigurationState;
359
370
  }
360
371
  export interface DeleteConnectorRequest {
361
372
  connectorArn: string | undefined;
@@ -372,6 +383,13 @@ export interface DeleteCustomPluginResponse {
372
383
  customPluginArn?: string;
373
384
  customPluginState?: CustomPluginState;
374
385
  }
386
+ export interface DeleteWorkerConfigurationRequest {
387
+ workerConfigurationArn: string | undefined;
388
+ }
389
+ export interface DeleteWorkerConfigurationResponse {
390
+ workerConfigurationArn?: string;
391
+ workerConfigurationState?: WorkerConfigurationState;
392
+ }
375
393
  export interface DescribeConnectorRequest {
376
394
  connectorArn: string | undefined;
377
395
  }
@@ -425,6 +443,7 @@ export interface DescribeWorkerConfigurationResponse {
425
443
  latestRevision?: WorkerConfigurationRevisionDescription;
426
444
  name?: string;
427
445
  workerConfigurationArn?: string;
446
+ workerConfigurationState?: WorkerConfigurationState;
428
447
  }
429
448
  export interface ListConnectorsRequest {
430
449
  connectorNamePrefix?: string;
@@ -438,19 +457,37 @@ export interface ListConnectorsResponse {
438
457
  export interface ListCustomPluginsRequest {
439
458
  maxResults?: number;
440
459
  nextToken?: string;
460
+ namePrefix?: string;
441
461
  }
442
462
  export interface ListCustomPluginsResponse {
443
463
  customPlugins?: CustomPluginSummary[];
444
464
  nextToken?: string;
445
465
  }
466
+ export interface ListTagsForResourceRequest {
467
+ resourceArn: string | undefined;
468
+ }
469
+ export interface ListTagsForResourceResponse {
470
+ tags?: Record<string, string>;
471
+ }
446
472
  export interface ListWorkerConfigurationsRequest {
447
473
  maxResults?: number;
448
474
  nextToken?: string;
475
+ namePrefix?: string;
449
476
  }
450
477
  export interface ListWorkerConfigurationsResponse {
451
478
  nextToken?: string;
452
479
  workerConfigurations?: WorkerConfigurationSummary[];
453
480
  }
481
+ export interface TagResourceRequest {
482
+ resourceArn: string | undefined;
483
+ tags: Record<string, string> | undefined;
484
+ }
485
+ export interface TagResourceResponse {}
486
+ export interface UntagResourceRequest {
487
+ resourceArn: string | undefined;
488
+ tagKeys: string[] | undefined;
489
+ }
490
+ export interface UntagResourceResponse {}
454
491
  export interface UpdateConnectorRequest {
455
492
  capacity: CapacityUpdate | undefined;
456
493
  connectorArn: string | undefined;
@@ -23,6 +23,10 @@ import {
23
23
  DeleteCustomPluginCommandInput,
24
24
  DeleteCustomPluginCommandOutput,
25
25
  } from "../commands/DeleteCustomPluginCommand";
26
+ import {
27
+ DeleteWorkerConfigurationCommandInput,
28
+ DeleteWorkerConfigurationCommandOutput,
29
+ } from "../commands/DeleteWorkerConfigurationCommand";
26
30
  import {
27
31
  DescribeConnectorCommandInput,
28
32
  DescribeConnectorCommandOutput,
@@ -43,10 +47,22 @@ import {
43
47
  ListCustomPluginsCommandInput,
44
48
  ListCustomPluginsCommandOutput,
45
49
  } from "../commands/ListCustomPluginsCommand";
50
+ import {
51
+ ListTagsForResourceCommandInput,
52
+ ListTagsForResourceCommandOutput,
53
+ } from "../commands/ListTagsForResourceCommand";
46
54
  import {
47
55
  ListWorkerConfigurationsCommandInput,
48
56
  ListWorkerConfigurationsCommandOutput,
49
57
  } from "../commands/ListWorkerConfigurationsCommand";
58
+ import {
59
+ TagResourceCommandInput,
60
+ TagResourceCommandOutput,
61
+ } from "../commands/TagResourceCommand";
62
+ import {
63
+ UntagResourceCommandInput,
64
+ UntagResourceCommandOutput,
65
+ } from "../commands/UntagResourceCommand";
50
66
  import {
51
67
  UpdateConnectorCommandInput,
52
68
  UpdateConnectorCommandOutput,
@@ -71,6 +87,10 @@ export declare const se_DeleteCustomPluginCommand: (
71
87
  input: DeleteCustomPluginCommandInput,
72
88
  context: __SerdeContext
73
89
  ) => Promise<__HttpRequest>;
90
+ export declare const se_DeleteWorkerConfigurationCommand: (
91
+ input: DeleteWorkerConfigurationCommandInput,
92
+ context: __SerdeContext
93
+ ) => Promise<__HttpRequest>;
74
94
  export declare const se_DescribeConnectorCommand: (
75
95
  input: DescribeConnectorCommandInput,
76
96
  context: __SerdeContext
@@ -91,10 +111,22 @@ export declare const se_ListCustomPluginsCommand: (
91
111
  input: ListCustomPluginsCommandInput,
92
112
  context: __SerdeContext
93
113
  ) => Promise<__HttpRequest>;
114
+ export declare const se_ListTagsForResourceCommand: (
115
+ input: ListTagsForResourceCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
94
118
  export declare const se_ListWorkerConfigurationsCommand: (
95
119
  input: ListWorkerConfigurationsCommandInput,
96
120
  context: __SerdeContext
97
121
  ) => Promise<__HttpRequest>;
122
+ export declare const se_TagResourceCommand: (
123
+ input: TagResourceCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const se_UntagResourceCommand: (
127
+ input: UntagResourceCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
98
130
  export declare const se_UpdateConnectorCommand: (
99
131
  input: UpdateConnectorCommandInput,
100
132
  context: __SerdeContext
@@ -119,6 +151,10 @@ export declare const de_DeleteCustomPluginCommand: (
119
151
  output: __HttpResponse,
120
152
  context: __SerdeContext
121
153
  ) => Promise<DeleteCustomPluginCommandOutput>;
154
+ export declare const de_DeleteWorkerConfigurationCommand: (
155
+ output: __HttpResponse,
156
+ context: __SerdeContext
157
+ ) => Promise<DeleteWorkerConfigurationCommandOutput>;
122
158
  export declare const de_DescribeConnectorCommand: (
123
159
  output: __HttpResponse,
124
160
  context: __SerdeContext
@@ -139,10 +175,22 @@ export declare const de_ListCustomPluginsCommand: (
139
175
  output: __HttpResponse,
140
176
  context: __SerdeContext
141
177
  ) => Promise<ListCustomPluginsCommandOutput>;
178
+ export declare const de_ListTagsForResourceCommand: (
179
+ output: __HttpResponse,
180
+ context: __SerdeContext
181
+ ) => Promise<ListTagsForResourceCommandOutput>;
142
182
  export declare const de_ListWorkerConfigurationsCommand: (
143
183
  output: __HttpResponse,
144
184
  context: __SerdeContext
145
185
  ) => Promise<ListWorkerConfigurationsCommandOutput>;
186
+ export declare const de_TagResourceCommand: (
187
+ output: __HttpResponse,
188
+ context: __SerdeContext
189
+ ) => Promise<TagResourceCommandOutput>;
190
+ export declare const de_UntagResourceCommand: (
191
+ output: __HttpResponse,
192
+ context: __SerdeContext
193
+ ) => Promise<UntagResourceCommandOutput>;
146
194
  export declare const de_UpdateConnectorCommand: (
147
195
  output: __HttpResponse,
148
196
  context: __SerdeContext
@@ -15,19 +15,7 @@ export declare const getRuntimeConfig: (config: KafkaConnectClientConfig) => {
15
15
  maxAttempts: number | import("@smithy/types").Provider<number>;
16
16
  region: string | import("@smithy/types").Provider<any>;
17
17
  requestHandler:
18
- | (import("@smithy/types").RequestHandler<
19
- any,
20
- any,
21
- import("@smithy/types").HttpHandlerOptions
22
- > &
23
- import("@smithy/types").RequestHandler<
24
- import("@smithy/protocol-http").HttpRequest,
25
- import("@smithy/protocol-http").HttpResponse,
26
- import("@smithy/types").HttpHandlerOptions
27
- > & {
28
- updateHttpClientConfig(key: never, value: never): void;
29
- httpHandlerConfigs(): {};
30
- })
18
+ | import("@smithy/protocol-http").HttpHandler<any>
31
19
  | RequestHandler;
32
20
  retryMode: string | import("@smithy/types").Provider<string>;
33
21
  sha256: import("@smithy/types").HashConstructor;
@@ -19,20 +19,8 @@ export declare const getRuntimeConfig: (config: KafkaConnectClientConfig) => {
19
19
  maxAttempts: number | import("@smithy/types").Provider<number>;
20
20
  region: string | import("@smithy/types").Provider<string>;
21
21
  requestHandler:
22
- | (import("@smithy/types").RequestHandler<
23
- any,
24
- any,
25
- import("@smithy/types").HttpHandlerOptions
26
- > &
27
- import("@smithy/types").RequestHandler<
28
- import("@smithy/protocol-http").HttpRequest,
29
- import("@smithy/protocol-http").HttpResponse,
30
- import("@smithy/types").HttpHandlerOptions
31
- > & {
32
- updateHttpClientConfig(key: never, value: never): void;
33
- httpHandlerConfigs(): {};
34
- })
35
- | RequestHandler;
22
+ | RequestHandler
23
+ | import("@smithy/protocol-http").HttpHandler<any>;
36
24
  retryMode: string | import("@smithy/types").Provider<string>;
37
25
  sha256: import("@smithy/types").HashConstructor;
38
26
  streamCollector: import("@smithy/types").StreamCollector;
@@ -3,19 +3,10 @@ export declare const getRuntimeConfig: (config: KafkaConnectClientConfig) => {
3
3
  runtime: string;
4
4
  sha256: import("@smithy/types").HashConstructor;
5
5
  requestHandler:
6
- | (import("@smithy/types").RequestHandler<
7
- any,
8
- any,
9
- import("@smithy/types").HttpHandlerOptions
10
- > &
11
- import("@smithy/types").RequestHandler<
12
- import("@smithy/protocol-http").HttpRequest,
13
- import("@smithy/protocol-http").HttpResponse,
14
- import("@smithy/types").HttpHandlerOptions
15
- > & {
16
- updateHttpClientConfig(key: never, value: never): void;
17
- httpHandlerConfigs(): {};
18
- })
6
+ | import("@smithy/types").NodeHttpHandlerOptions
7
+ | import("@smithy/types").FetchHttpHandlerOptions
8
+ | Record<string, unknown>
9
+ | import("@smithy/protocol-http").HttpHandler<any>
19
10
  | import("@smithy/fetch-http-handler").FetchHttpHandler;
20
11
  apiVersion: string;
21
12
  urlParser: import("@smithy/types").UrlParser;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-kafkaconnect",
3
3
  "description": "AWS SDK for JavaScript Kafkaconnect Client for Node.js, Browser and React Native",
4
- "version": "3.515.0",
4
+ "version": "3.522.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-kafkaconnect",
@@ -20,42 +20,42 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.515.0",
24
- "@aws-sdk/core": "3.513.0",
25
- "@aws-sdk/credential-provider-node": "3.515.0",
26
- "@aws-sdk/middleware-host-header": "3.515.0",
27
- "@aws-sdk/middleware-logger": "3.515.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.515.0",
29
- "@aws-sdk/middleware-user-agent": "3.515.0",
30
- "@aws-sdk/region-config-resolver": "3.515.0",
31
- "@aws-sdk/types": "3.515.0",
32
- "@aws-sdk/util-endpoints": "3.515.0",
33
- "@aws-sdk/util-user-agent-browser": "3.515.0",
34
- "@aws-sdk/util-user-agent-node": "3.515.0",
35
- "@smithy/config-resolver": "^2.1.1",
36
- "@smithy/core": "^1.3.2",
37
- "@smithy/fetch-http-handler": "^2.4.1",
38
- "@smithy/hash-node": "^2.1.1",
39
- "@smithy/invalid-dependency": "^2.1.1",
40
- "@smithy/middleware-content-length": "^2.1.1",
41
- "@smithy/middleware-endpoint": "^2.4.1",
42
- "@smithy/middleware-retry": "^2.1.1",
43
- "@smithy/middleware-serde": "^2.1.1",
44
- "@smithy/middleware-stack": "^2.1.1",
45
- "@smithy/node-config-provider": "^2.2.1",
46
- "@smithy/node-http-handler": "^2.3.1",
47
- "@smithy/protocol-http": "^3.1.1",
48
- "@smithy/smithy-client": "^2.3.1",
49
- "@smithy/types": "^2.9.1",
50
- "@smithy/url-parser": "^2.1.1",
23
+ "@aws-sdk/client-sts": "3.521.0",
24
+ "@aws-sdk/core": "3.521.0",
25
+ "@aws-sdk/credential-provider-node": "3.521.0",
26
+ "@aws-sdk/middleware-host-header": "3.521.0",
27
+ "@aws-sdk/middleware-logger": "3.521.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.521.0",
29
+ "@aws-sdk/middleware-user-agent": "3.521.0",
30
+ "@aws-sdk/region-config-resolver": "3.521.0",
31
+ "@aws-sdk/types": "3.521.0",
32
+ "@aws-sdk/util-endpoints": "3.521.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.521.0",
34
+ "@aws-sdk/util-user-agent-node": "3.521.0",
35
+ "@smithy/config-resolver": "^2.1.2",
36
+ "@smithy/core": "^1.3.3",
37
+ "@smithy/fetch-http-handler": "^2.4.2",
38
+ "@smithy/hash-node": "^2.1.2",
39
+ "@smithy/invalid-dependency": "^2.1.2",
40
+ "@smithy/middleware-content-length": "^2.1.2",
41
+ "@smithy/middleware-endpoint": "^2.4.2",
42
+ "@smithy/middleware-retry": "^2.1.2",
43
+ "@smithy/middleware-serde": "^2.1.2",
44
+ "@smithy/middleware-stack": "^2.1.2",
45
+ "@smithy/node-config-provider": "^2.2.2",
46
+ "@smithy/node-http-handler": "^2.4.0",
47
+ "@smithy/protocol-http": "^3.2.0",
48
+ "@smithy/smithy-client": "^2.4.0",
49
+ "@smithy/types": "^2.10.0",
50
+ "@smithy/url-parser": "^2.1.2",
51
51
  "@smithy/util-base64": "^2.1.1",
52
52
  "@smithy/util-body-length-browser": "^2.1.1",
53
53
  "@smithy/util-body-length-node": "^2.2.1",
54
- "@smithy/util-defaults-mode-browser": "^2.1.1",
55
- "@smithy/util-defaults-mode-node": "^2.2.0",
56
- "@smithy/util-endpoints": "^1.1.1",
57
- "@smithy/util-middleware": "^2.1.1",
58
- "@smithy/util-retry": "^2.1.1",
54
+ "@smithy/util-defaults-mode-browser": "^2.1.2",
55
+ "@smithy/util-defaults-mode-node": "^2.2.1",
56
+ "@smithy/util-endpoints": "^1.1.2",
57
+ "@smithy/util-middleware": "^2.1.2",
58
+ "@smithy/util-retry": "^2.1.2",
59
59
  "@smithy/util-utf8": "^2.1.1",
60
60
  "tslib": "^2.5.0"
61
61
  },