@aws-sdk/client-pipes 3.1077.0 → 3.1078.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 (38) hide show
  1. package/dist-cjs/index.js +18 -103
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/CreatePipeCommand.js +2 -14
  4. package/dist-es/commands/DeletePipeCommand.js +2 -14
  5. package/dist-es/commands/DescribePipeCommand.js +2 -14
  6. package/dist-es/commands/ListPipesCommand.js +2 -14
  7. package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
  8. package/dist-es/commands/StartPipeCommand.js +2 -14
  9. package/dist-es/commands/StopPipeCommand.js +2 -14
  10. package/dist-es/commands/TagResourceCommand.js +2 -14
  11. package/dist-es/commands/UntagResourceCommand.js +2 -14
  12. package/dist-es/commands/UpdatePipeCommand.js +2 -14
  13. package/dist-es/index.js +1 -0
  14. package/dist-types/commandBuilder.d.ts +18 -0
  15. package/dist-types/commands/CreatePipeCommand.d.ts +3 -8
  16. package/dist-types/commands/DeletePipeCommand.d.ts +3 -8
  17. package/dist-types/commands/DescribePipeCommand.d.ts +3 -8
  18. package/dist-types/commands/ListPipesCommand.d.ts +3 -8
  19. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
  20. package/dist-types/commands/StartPipeCommand.d.ts +3 -8
  21. package/dist-types/commands/StopPipeCommand.d.ts +3 -8
  22. package/dist-types/commands/TagResourceCommand.d.ts +3 -8
  23. package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
  24. package/dist-types/commands/UpdatePipeCommand.d.ts +3 -8
  25. package/dist-types/index.d.ts +1 -0
  26. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  27. package/dist-types/ts3.4/commands/CreatePipeCommand.d.ts +7 -16
  28. package/dist-types/ts3.4/commands/DeletePipeCommand.d.ts +7 -16
  29. package/dist-types/ts3.4/commands/DescribePipeCommand.d.ts +7 -16
  30. package/dist-types/ts3.4/commands/ListPipesCommand.d.ts +7 -16
  31. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
  32. package/dist-types/ts3.4/commands/StartPipeCommand.d.ts +7 -16
  33. package/dist-types/ts3.4/commands/StopPipeCommand.d.ts +7 -16
  34. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
  35. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
  36. package/dist-types/ts3.4/commands/UpdatePipeCommand.d.ts +7 -16
  37. package/dist-types/ts3.4/index.d.ts +1 -0
  38. package/package.json +8 -8
package/dist-cjs/index.js CHANGED
@@ -1,7 +1,8 @@
1
1
  const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
2
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
3
- const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
4
- exports.$Command = Command;
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
4
+ const { Command: $Command } = require("@smithy/core/client");
5
+ exports.$Command = $Command;
5
6
  exports.__Client = Client;
6
7
  const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
8
  const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
@@ -68,7 +69,7 @@ const commonParams = {
68
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
69
70
  };
70
71
 
71
- var version = "3.1076.0";
72
+ var version = "3.1077.0";
72
73
  var packageInfo = {
73
74
  version: version};
74
75
 
@@ -1392,124 +1393,38 @@ class PipesClient extends Client {
1392
1393
  }
1393
1394
  }
1394
1395
 
1395
- class CreatePipeCommand extends Command
1396
- .classBuilder()
1397
- .ep(commonParams)
1398
- .m(function (Command, cs, config, o) {
1399
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1400
- })
1401
- .s("Pipes", "CreatePipe", {})
1402
- .n("PipesClient", "CreatePipeCommand")
1403
- .sc(CreatePipe$)
1404
- .build() {
1396
+ const command = makeBuilder(commonParams, "Pipes", "PipesClient", getEndpointPlugin);
1397
+ const _ep0 = {};
1398
+ const _mw0 = (Command, cs, config, o) => [];
1399
+
1400
+ class CreatePipeCommand extends command(_ep0, _mw0, "CreatePipe", CreatePipe$) {
1405
1401
  }
1406
1402
 
1407
- class DeletePipeCommand extends Command
1408
- .classBuilder()
1409
- .ep(commonParams)
1410
- .m(function (Command, cs, config, o) {
1411
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1412
- })
1413
- .s("Pipes", "DeletePipe", {})
1414
- .n("PipesClient", "DeletePipeCommand")
1415
- .sc(DeletePipe$)
1416
- .build() {
1403
+ class DeletePipeCommand extends command(_ep0, _mw0, "DeletePipe", DeletePipe$) {
1417
1404
  }
1418
1405
 
1419
- class DescribePipeCommand extends Command
1420
- .classBuilder()
1421
- .ep(commonParams)
1422
- .m(function (Command, cs, config, o) {
1423
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1424
- })
1425
- .s("Pipes", "DescribePipe", {})
1426
- .n("PipesClient", "DescribePipeCommand")
1427
- .sc(DescribePipe$)
1428
- .build() {
1406
+ class DescribePipeCommand extends command(_ep0, _mw0, "DescribePipe", DescribePipe$) {
1429
1407
  }
1430
1408
 
1431
- class ListPipesCommand extends Command
1432
- .classBuilder()
1433
- .ep(commonParams)
1434
- .m(function (Command, cs, config, o) {
1435
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1436
- })
1437
- .s("Pipes", "ListPipes", {})
1438
- .n("PipesClient", "ListPipesCommand")
1439
- .sc(ListPipes$)
1440
- .build() {
1409
+ class ListPipesCommand extends command(_ep0, _mw0, "ListPipes", ListPipes$) {
1441
1410
  }
1442
1411
 
1443
- class ListTagsForResourceCommand extends Command
1444
- .classBuilder()
1445
- .ep(commonParams)
1446
- .m(function (Command, cs, config, o) {
1447
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1448
- })
1449
- .s("Pipes", "ListTagsForResource", {})
1450
- .n("PipesClient", "ListTagsForResourceCommand")
1451
- .sc(ListTagsForResource$)
1452
- .build() {
1412
+ class ListTagsForResourceCommand extends command(_ep0, _mw0, "ListTagsForResource", ListTagsForResource$) {
1453
1413
  }
1454
1414
 
1455
- class StartPipeCommand extends Command
1456
- .classBuilder()
1457
- .ep(commonParams)
1458
- .m(function (Command, cs, config, o) {
1459
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1460
- })
1461
- .s("Pipes", "StartPipe", {})
1462
- .n("PipesClient", "StartPipeCommand")
1463
- .sc(StartPipe$)
1464
- .build() {
1415
+ class StartPipeCommand extends command(_ep0, _mw0, "StartPipe", StartPipe$) {
1465
1416
  }
1466
1417
 
1467
- class StopPipeCommand extends Command
1468
- .classBuilder()
1469
- .ep(commonParams)
1470
- .m(function (Command, cs, config, o) {
1471
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1472
- })
1473
- .s("Pipes", "StopPipe", {})
1474
- .n("PipesClient", "StopPipeCommand")
1475
- .sc(StopPipe$)
1476
- .build() {
1418
+ class StopPipeCommand extends command(_ep0, _mw0, "StopPipe", StopPipe$) {
1477
1419
  }
1478
1420
 
1479
- class TagResourceCommand extends Command
1480
- .classBuilder()
1481
- .ep(commonParams)
1482
- .m(function (Command, cs, config, o) {
1483
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1484
- })
1485
- .s("Pipes", "TagResource", {})
1486
- .n("PipesClient", "TagResourceCommand")
1487
- .sc(TagResource$)
1488
- .build() {
1421
+ class TagResourceCommand extends command(_ep0, _mw0, "TagResource", TagResource$) {
1489
1422
  }
1490
1423
 
1491
- class UntagResourceCommand extends Command
1492
- .classBuilder()
1493
- .ep(commonParams)
1494
- .m(function (Command, cs, config, o) {
1495
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1496
- })
1497
- .s("Pipes", "UntagResource", {})
1498
- .n("PipesClient", "UntagResourceCommand")
1499
- .sc(UntagResource$)
1500
- .build() {
1424
+ class UntagResourceCommand extends command(_ep0, _mw0, "UntagResource", UntagResource$) {
1501
1425
  }
1502
1426
 
1503
- class UpdatePipeCommand extends Command
1504
- .classBuilder()
1505
- .ep(commonParams)
1506
- .m(function (Command, cs, config, o) {
1507
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1508
- })
1509
- .s("Pipes", "UpdatePipe", {})
1510
- .n("PipesClient", "UpdatePipeCommand")
1511
- .sc(UpdatePipe$)
1512
- .build() {
1427
+ class UpdatePipeCommand extends command(_ep0, _mw0, "UpdatePipe", UpdatePipe$) {
1513
1428
  }
1514
1429
 
1515
1430
  const paginateListPipes = createPaginator(PipesClient, ListPipesCommand, "NextToken", "NextToken", "Limit");
@@ -0,0 +1,6 @@
1
+ import { makeBuilder } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "./endpoint/EndpointParameters";
4
+ export const command = makeBuilder(commonParams, "Pipes", "PipesClient", getEndpointPlugin);
5
+ export const _ep0 = {};
6
+ export const _mw0 = (Command, cs, config, o) => [];
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { CreatePipe$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class CreatePipeCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("Pipes", "CreatePipe", {})
13
- .n("PipesClient", "CreatePipeCommand")
14
- .sc(CreatePipe$)
15
- .build() {
3
+ export class CreatePipeCommand extends command(_ep0, _mw0, "CreatePipe", CreatePipe$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { DeletePipe$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class DeletePipeCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("Pipes", "DeletePipe", {})
13
- .n("PipesClient", "DeletePipeCommand")
14
- .sc(DeletePipe$)
15
- .build() {
3
+ export class DeletePipeCommand extends command(_ep0, _mw0, "DeletePipe", DeletePipe$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { DescribePipe$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class DescribePipeCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("Pipes", "DescribePipe", {})
13
- .n("PipesClient", "DescribePipeCommand")
14
- .sc(DescribePipe$)
15
- .build() {
3
+ export class DescribePipeCommand extends command(_ep0, _mw0, "DescribePipe", DescribePipe$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ListPipes$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListPipesCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("Pipes", "ListPipes", {})
13
- .n("PipesClient", "ListPipesCommand")
14
- .sc(ListPipes$)
15
- .build() {
3
+ export class ListPipesCommand extends command(_ep0, _mw0, "ListPipes", ListPipes$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ListTagsForResource$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListTagsForResourceCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("Pipes", "ListTagsForResource", {})
13
- .n("PipesClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource$)
15
- .build() {
3
+ export class ListTagsForResourceCommand extends command(_ep0, _mw0, "ListTagsForResource", ListTagsForResource$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { StartPipe$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class StartPipeCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("Pipes", "StartPipe", {})
13
- .n("PipesClient", "StartPipeCommand")
14
- .sc(StartPipe$)
15
- .build() {
3
+ export class StartPipeCommand extends command(_ep0, _mw0, "StartPipe", StartPipe$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { StopPipe$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class StopPipeCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("Pipes", "StopPipe", {})
13
- .n("PipesClient", "StopPipeCommand")
14
- .sc(StopPipe$)
15
- .build() {
3
+ export class StopPipeCommand extends command(_ep0, _mw0, "StopPipe", StopPipe$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { TagResource$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class TagResourceCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("Pipes", "TagResource", {})
13
- .n("PipesClient", "TagResourceCommand")
14
- .sc(TagResource$)
15
- .build() {
3
+ export class TagResourceCommand extends command(_ep0, _mw0, "TagResource", TagResource$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { UntagResource$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class UntagResourceCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("Pipes", "UntagResource", {})
13
- .n("PipesClient", "UntagResourceCommand")
14
- .sc(UntagResource$)
15
- .build() {
3
+ export class UntagResourceCommand extends command(_ep0, _mw0, "UntagResource", UntagResource$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { UpdatePipe$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class UpdatePipeCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("Pipes", "UpdatePipe", {})
13
- .n("PipesClient", "UpdatePipeCommand")
14
- .sc(UpdatePipe$)
15
- .build() {
3
+ export class UpdatePipeCommand extends command(_ep0, _mw0, "UpdatePipe", UpdatePipe$) {
16
4
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./PipesClient";
2
2
  export * from "./Pipes";
3
3
  export * from "./commands";
4
+ export { Command as $Command } from "@smithy/core/client";
4
5
  export * from "./schemas/schemas_0";
5
6
  export * from "./pagination";
6
7
  export * from "./models/enums";
@@ -0,0 +1,18 @@
1
+ import type { EndpointParameterInstructions } from "@smithy/types";
2
+ import type { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./PipesClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
7
+ new (input: I): import("@smithy/core/client").CommandImpl<I, O, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
8
+ new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
9
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
10
+ };
11
+ /**
12
+ * @internal
13
+ */
14
+ export declare const _ep0: EndpointParameterInstructions;
15
+ /**
16
+ * @internal
17
+ */
18
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { CreatePipeRequest, CreatePipeResponse } from "../models/models_0";
4
- import type { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface CreatePipeCommandInput extends CreatePipeRequest {
22
19
  export interface CreatePipeCommandOutput extends CreatePipeResponse, __MetadataBearer {
23
20
  }
24
21
  declare const CreatePipeCommand_base: {
25
- new (input: CreatePipeCommandInput): import("@smithy/core/client").CommandImpl<CreatePipeCommandInput, CreatePipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: CreatePipeCommandInput): import("@smithy/core/client").CommandImpl<CreatePipeCommandInput, CreatePipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: CreatePipeCommandInput): import("@smithy/core/client").CommandImpl<CreatePipeCommandInput, CreatePipeCommandOutput, import("..").PipesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: CreatePipeCommandInput): import("@smithy/core/client").CommandImpl<CreatePipeCommandInput, CreatePipeCommandOutput, import("..").PipesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Create a pipe. Amazon EventBridge Pipes connect event sources to targets and reduces
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { DeletePipeRequest, DeletePipeResponse } from "../models/models_0";
4
- import type { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DeletePipeCommandInput extends DeletePipeRequest {
22
19
  export interface DeletePipeCommandOutput extends DeletePipeResponse, __MetadataBearer {
23
20
  }
24
21
  declare const DeletePipeCommand_base: {
25
- new (input: DeletePipeCommandInput): import("@smithy/core/client").CommandImpl<DeletePipeCommandInput, DeletePipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DeletePipeCommandInput): import("@smithy/core/client").CommandImpl<DeletePipeCommandInput, DeletePipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DeletePipeCommandInput): import("@smithy/core/client").CommandImpl<DeletePipeCommandInput, DeletePipeCommandOutput, import("..").PipesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DeletePipeCommandInput): import("@smithy/core/client").CommandImpl<DeletePipeCommandInput, DeletePipeCommandOutput, import("..").PipesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Delete an existing pipe. For more information about pipes, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes.html">Amazon EventBridge Pipes</a> in the Amazon EventBridge User Guide.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { DescribePipeRequest, DescribePipeResponse } from "../models/models_0";
4
- import type { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DescribePipeCommandInput extends DescribePipeRequest {
22
19
  export interface DescribePipeCommandOutput extends DescribePipeResponse, __MetadataBearer {
23
20
  }
24
21
  declare const DescribePipeCommand_base: {
25
- new (input: DescribePipeCommandInput): import("@smithy/core/client").CommandImpl<DescribePipeCommandInput, DescribePipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DescribePipeCommandInput): import("@smithy/core/client").CommandImpl<DescribePipeCommandInput, DescribePipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DescribePipeCommandInput): import("@smithy/core/client").CommandImpl<DescribePipeCommandInput, DescribePipeCommandOutput, import("..").PipesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DescribePipeCommandInput): import("@smithy/core/client").CommandImpl<DescribePipeCommandInput, DescribePipeCommandOutput, import("..").PipesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Get the information about an existing pipe. For more information about pipes, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes.html">Amazon EventBridge Pipes</a> in the Amazon EventBridge User Guide.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListPipesRequest, ListPipesResponse } from "../models/models_0";
4
- import type { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListPipesCommandInput extends ListPipesRequest {
22
19
  export interface ListPipesCommandOutput extends ListPipesResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListPipesCommand_base: {
25
- new (input: ListPipesCommandInput): import("@smithy/core/client").CommandImpl<ListPipesCommandInput, ListPipesCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListPipesCommandInput]): import("@smithy/core/client").CommandImpl<ListPipesCommandInput, ListPipesCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListPipesCommandInput): import("@smithy/core/client").CommandImpl<ListPipesCommandInput, ListPipesCommandOutput, import("..").PipesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListPipesCommandInput]): import("@smithy/core/client").CommandImpl<ListPipesCommandInput, ListPipesCommandOutput, import("..").PipesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Get the pipes associated with this account. For more information about pipes, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes.html">Amazon EventBridge Pipes</a> in the Amazon EventBridge User Guide.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
4
- import type { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequ
22
19
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListTagsForResourceCommand_base: {
25
- new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").PipesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").PipesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Displays the tags associated with a pipe.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { StartPipeRequest, StartPipeResponse } from "../models/models_0";
4
- import type { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface StartPipeCommandInput extends StartPipeRequest {
22
19
  export interface StartPipeCommandOutput extends StartPipeResponse, __MetadataBearer {
23
20
  }
24
21
  declare const StartPipeCommand_base: {
25
- new (input: StartPipeCommandInput): import("@smithy/core/client").CommandImpl<StartPipeCommandInput, StartPipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: StartPipeCommandInput): import("@smithy/core/client").CommandImpl<StartPipeCommandInput, StartPipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: StartPipeCommandInput): import("@smithy/core/client").CommandImpl<StartPipeCommandInput, StartPipeCommandOutput, import("..").PipesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: StartPipeCommandInput): import("@smithy/core/client").CommandImpl<StartPipeCommandInput, StartPipeCommandOutput, import("..").PipesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Start an existing pipe.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { StopPipeRequest, StopPipeResponse } from "../models/models_0";
4
- import type { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface StopPipeCommandInput extends StopPipeRequest {
22
19
  export interface StopPipeCommandOutput extends StopPipeResponse, __MetadataBearer {
23
20
  }
24
21
  declare const StopPipeCommand_base: {
25
- new (input: StopPipeCommandInput): import("@smithy/core/client").CommandImpl<StopPipeCommandInput, StopPipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: StopPipeCommandInput): import("@smithy/core/client").CommandImpl<StopPipeCommandInput, StopPipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: StopPipeCommandInput): import("@smithy/core/client").CommandImpl<StopPipeCommandInput, StopPipeCommandOutput, import("..").PipesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: StopPipeCommandInput): import("@smithy/core/client").CommandImpl<StopPipeCommandInput, StopPipeCommandOutput, import("..").PipesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Stop an existing pipe.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { TagResourceRequest, TagResourceResponse } from "../models/models_0";
4
- import type { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface TagResourceCommandInput extends TagResourceRequest {
22
19
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
23
20
  }
24
21
  declare const TagResourceCommand_base: {
25
- new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").PipesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").PipesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Assigns one or more tags (key-value pairs) to the specified pipe. Tags can help you
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
4
- import type { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {
22
19
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
23
20
  }
24
21
  declare const UntagResourceCommand_base: {
25
- new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").PipesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").PipesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Removes one or more tags from the specified pipes.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { UpdatePipeRequest, UpdatePipeResponse } from "../models/models_0";
4
- import type { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface UpdatePipeCommandInput extends UpdatePipeRequest {
22
19
  export interface UpdatePipeCommandOutput extends UpdatePipeResponse, __MetadataBearer {
23
20
  }
24
21
  declare const UpdatePipeCommand_base: {
25
- new (input: UpdatePipeCommandInput): import("@smithy/core/client").CommandImpl<UpdatePipeCommandInput, UpdatePipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UpdatePipeCommandInput): import("@smithy/core/client").CommandImpl<UpdatePipeCommandInput, UpdatePipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UpdatePipeCommandInput): import("@smithy/core/client").CommandImpl<UpdatePipeCommandInput, UpdatePipeCommandOutput, import("..").PipesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UpdatePipeCommandInput): import("@smithy/core/client").CommandImpl<UpdatePipeCommandInput, UpdatePipeCommandOutput, import("..").PipesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Update an existing pipe. When you call <code>UpdatePipe</code>, EventBridge only the
@@ -14,6 +14,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
14
14
  export type { RuntimeExtension } from "./runtimeExtensions";
15
15
  export type { PipesExtensionConfiguration } from "./extensionConfiguration";
16
16
  export * from "./commands";
17
+ export { Command as $Command } from "@smithy/core/client";
17
18
  export * from "./schemas/schemas_0";
18
19
  export * from "./pagination";
19
20
  export * from "./models/enums";
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ PipesClientResolvedConfig,
4
+ ServiceInputTypes,
5
+ ServiceOutputTypes,
6
+ } from "./PipesClient";
7
+ export declare const command: <
8
+ I extends ServiceInputTypes,
9
+ O extends ServiceOutputTypes
10
+ >(
11
+ added: EndpointParameterInstructions,
12
+ plugins: (
13
+ CommandCtor: any,
14
+ clientStack: any,
15
+ config: any,
16
+ options: any
17
+ ) => import("@smithy/types").Pluggable<any, any>[],
18
+ op: string,
19
+ $: import("@smithy/types").StaticOperationSchema,
20
+ smithyContext?: Record<string, unknown>
21
+ ) => {
22
+ new (input: I): import("@smithy/core/client").CommandImpl<
23
+ I,
24
+ O,
25
+ PipesClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: import("@smithy/types").OptionalParameter<I>
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ I,
33
+ O,
34
+ PipesClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
39
+ };
40
+ export declare const _ep0: EndpointParameterInstructions;
41
+ export declare const _mw0: (
42
+ Command: any,
43
+ cs: any,
44
+ config: any,
45
+ o: any
46
+ ) => never[];
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { CreatePipeRequest, CreatePipeResponse } from "../models/models_0";
4
- import {
5
- PipesClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../PipesClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface CreatePipeCommandInput extends CreatePipeRequest {}
12
5
  export interface CreatePipeCommandOutput
13
6
  extends CreatePipeResponse,
@@ -18,22 +11,20 @@ declare const CreatePipeCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  CreatePipeCommandInput,
20
13
  CreatePipeCommandOutput,
21
- PipesClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").PipesClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: CreatePipeCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  CreatePipeCommandInput,
29
22
  CreatePipeCommandOutput,
30
- PipesClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").PipesClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class CreatePipeCommand extends CreatePipeCommand_base {
39
30
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { DeletePipeRequest, DeletePipeResponse } from "../models/models_0";
4
- import {
5
- PipesClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../PipesClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface DeletePipeCommandInput extends DeletePipeRequest {}
12
5
  export interface DeletePipeCommandOutput
13
6
  extends DeletePipeResponse,
@@ -18,22 +11,20 @@ declare const DeletePipeCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  DeletePipeCommandInput,
20
13
  DeletePipeCommandOutput,
21
- PipesClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").PipesClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: DeletePipeCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  DeletePipeCommandInput,
29
22
  DeletePipeCommandOutput,
30
- PipesClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").PipesClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class DeletePipeCommand extends DeletePipeCommand_base {
39
30
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { DescribePipeRequest, DescribePipeResponse } from "../models/models_0";
4
- import {
5
- PipesClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../PipesClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface DescribePipeCommandInput extends DescribePipeRequest {}
12
5
  export interface DescribePipeCommandOutput
13
6
  extends DescribePipeResponse,
@@ -18,22 +11,20 @@ declare const DescribePipeCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  DescribePipeCommandInput,
20
13
  DescribePipeCommandOutput,
21
- PipesClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").PipesClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: DescribePipeCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  DescribePipeCommandInput,
29
22
  DescribePipeCommandOutput,
30
- PipesClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").PipesClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class DescribePipeCommand extends DescribePipeCommand_base {
39
30
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { ListPipesRequest, ListPipesResponse } from "../models/models_0";
4
- import {
5
- PipesClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../PipesClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface ListPipesCommandInput extends ListPipesRequest {}
12
5
  export interface ListPipesCommandOutput
13
6
  extends ListPipesResponse,
@@ -16,22 +9,20 @@ declare const ListPipesCommand_base: {
16
9
  new (input: ListPipesCommandInput): import("@smithy/core/client").CommandImpl<
17
10
  ListPipesCommandInput,
18
11
  ListPipesCommandOutput,
19
- PipesClientResolvedConfig,
20
- ServiceInputTypes,
21
- ServiceOutputTypes
12
+ import("..").PipesClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
22
15
  >;
23
16
  new (
24
17
  ...[input]: [] | [ListPipesCommandInput]
25
18
  ): import("@smithy/core/client").CommandImpl<
26
19
  ListPipesCommandInput,
27
20
  ListPipesCommandOutput,
28
- PipesClientResolvedConfig,
29
- ServiceInputTypes,
30
- ServiceOutputTypes
21
+ import("..").PipesClientResolvedConfig,
22
+ import("..").ServiceInputTypes,
23
+ import("..").ServiceOutputTypes
31
24
  >;
32
- getEndpointParameterInstructions(): {
33
- [x: string]: unknown;
34
- };
25
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
35
26
  };
36
27
  export declare class ListPipesCommand extends ListPipesCommand_base {
37
28
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  ListTagsForResourceRequest,
5
4
  ListTagsForResourceResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- PipesClientResolvedConfig,
9
- ServiceInputTypes,
10
- ServiceOutputTypes,
11
- } from "../PipesClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListTagsForResourceCommandInput
15
8
  extends ListTagsForResourceRequest {}
16
9
  export interface ListTagsForResourceCommandOutput
@@ -22,22 +15,20 @@ declare const ListTagsForResourceCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ListTagsForResourceCommandInput,
24
17
  ListTagsForResourceCommandOutput,
25
- PipesClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").PipesClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: ListTagsForResourceCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ListTagsForResourceCommandInput,
33
26
  ListTagsForResourceCommandOutput,
34
- PipesClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").PipesClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
43
34
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { StartPipeRequest, StartPipeResponse } from "../models/models_0";
4
- import {
5
- PipesClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../PipesClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface StartPipeCommandInput extends StartPipeRequest {}
12
5
  export interface StartPipeCommandOutput
13
6
  extends StartPipeResponse,
@@ -16,20 +9,18 @@ declare const StartPipeCommand_base: {
16
9
  new (input: StartPipeCommandInput): import("@smithy/core/client").CommandImpl<
17
10
  StartPipeCommandInput,
18
11
  StartPipeCommandOutput,
19
- PipesClientResolvedConfig,
20
- ServiceInputTypes,
21
- ServiceOutputTypes
12
+ import("..").PipesClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
22
15
  >;
23
16
  new (input: StartPipeCommandInput): import("@smithy/core/client").CommandImpl<
24
17
  StartPipeCommandInput,
25
18
  StartPipeCommandOutput,
26
- PipesClientResolvedConfig,
27
- ServiceInputTypes,
28
- ServiceOutputTypes
19
+ import("..").PipesClientResolvedConfig,
20
+ import("..").ServiceInputTypes,
21
+ import("..").ServiceOutputTypes
29
22
  >;
30
- getEndpointParameterInstructions(): {
31
- [x: string]: unknown;
32
- };
23
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
33
24
  };
34
25
  export declare class StartPipeCommand extends StartPipeCommand_base {
35
26
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { StopPipeRequest, StopPipeResponse } from "../models/models_0";
4
- import {
5
- PipesClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../PipesClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface StopPipeCommandInput extends StopPipeRequest {}
12
5
  export interface StopPipeCommandOutput
13
6
  extends StopPipeResponse,
@@ -16,20 +9,18 @@ declare const StopPipeCommand_base: {
16
9
  new (input: StopPipeCommandInput): import("@smithy/core/client").CommandImpl<
17
10
  StopPipeCommandInput,
18
11
  StopPipeCommandOutput,
19
- PipesClientResolvedConfig,
20
- ServiceInputTypes,
21
- ServiceOutputTypes
12
+ import("..").PipesClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
22
15
  >;
23
16
  new (input: StopPipeCommandInput): import("@smithy/core/client").CommandImpl<
24
17
  StopPipeCommandInput,
25
18
  StopPipeCommandOutput,
26
- PipesClientResolvedConfig,
27
- ServiceInputTypes,
28
- ServiceOutputTypes
19
+ import("..").PipesClientResolvedConfig,
20
+ import("..").ServiceInputTypes,
21
+ import("..").ServiceOutputTypes
29
22
  >;
30
- getEndpointParameterInstructions(): {
31
- [x: string]: unknown;
32
- };
23
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
33
24
  };
34
25
  export declare class StopPipeCommand extends StopPipeCommand_base {
35
26
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
4
- import {
5
- PipesClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../PipesClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface TagResourceCommandInput extends TagResourceRequest {}
12
5
  export interface TagResourceCommandOutput
13
6
  extends TagResourceResponse,
@@ -18,22 +11,20 @@ declare const TagResourceCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  TagResourceCommandInput,
20
13
  TagResourceCommandOutput,
21
- PipesClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").PipesClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: TagResourceCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  TagResourceCommandInput,
29
22
  TagResourceCommandOutput,
30
- PipesClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").PipesClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class TagResourceCommand extends TagResourceCommand_base {
39
30
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  UntagResourceRequest,
5
4
  UntagResourceResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- PipesClientResolvedConfig,
9
- ServiceInputTypes,
10
- ServiceOutputTypes,
11
- } from "../PipesClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface UntagResourceCommandInput extends UntagResourceRequest {}
15
8
  export interface UntagResourceCommandOutput
16
9
  extends UntagResourceResponse,
@@ -21,22 +14,20 @@ declare const UntagResourceCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  UntagResourceCommandInput,
23
16
  UntagResourceCommandOutput,
24
- PipesClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").PipesClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  input: UntagResourceCommandInput
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  UntagResourceCommandInput,
32
25
  UntagResourceCommandOutput,
33
- PipesClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").PipesClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
42
33
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { UpdatePipeRequest, UpdatePipeResponse } from "../models/models_0";
4
- import {
5
- PipesClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../PipesClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface UpdatePipeCommandInput extends UpdatePipeRequest {}
12
5
  export interface UpdatePipeCommandOutput
13
6
  extends UpdatePipeResponse,
@@ -18,22 +11,20 @@ declare const UpdatePipeCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  UpdatePipeCommandInput,
20
13
  UpdatePipeCommandOutput,
21
- PipesClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").PipesClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: UpdatePipeCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  UpdatePipeCommandInput,
29
22
  UpdatePipeCommandOutput,
30
- PipesClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").PipesClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class UpdatePipeCommand extends UpdatePipeCommand_base {
39
30
  protected static __types: {
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { PipesExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
+ export { Command as $Command } from "@smithy/core/client";
7
8
  export * from "./schemas/schemas_0";
8
9
  export * from "./pagination";
9
10
  export * from "./models/enums";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-pipes",
3
3
  "description": "AWS SDK for JavaScript Pipes Client for Node.js, Browser and React Native",
4
- "version": "3.1077.0",
4
+ "version": "3.1078.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline",
@@ -19,13 +19,13 @@
19
19
  "module": "./dist-es/index.js",
20
20
  "sideEffects": false,
21
21
  "dependencies": {
22
- "@aws-sdk/core": "^3.974.25",
23
- "@aws-sdk/credential-provider-node": "^3.972.60",
24
- "@aws-sdk/types": "^3.973.14",
25
- "@smithy/core": "^3.28.0",
26
- "@smithy/fetch-http-handler": "^5.6.1",
27
- "@smithy/node-http-handler": "^4.9.1",
28
- "@smithy/types": "^4.15.0",
22
+ "@aws-sdk/core": "^3.974.26",
23
+ "@aws-sdk/credential-provider-node": "^3.972.61",
24
+ "@aws-sdk/types": "^3.973.15",
25
+ "@smithy/core": "^3.29.0",
26
+ "@smithy/fetch-http-handler": "^5.6.2",
27
+ "@smithy/node-http-handler": "^4.9.2",
28
+ "@smithy/types": "^4.15.1",
29
29
  "tslib": "^2.6.2"
30
30
  },
31
31
  "devDependencies": {