@aws-sdk/client-pipes 3.478.0 → 3.484.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 (45) hide show
  1. package/dist-cjs/commands/CreatePipeCommand.js +18 -41
  2. package/dist-cjs/commands/DeletePipeCommand.js +18 -41
  3. package/dist-cjs/commands/DescribePipeCommand.js +18 -41
  4. package/dist-cjs/commands/ListPipesCommand.js +18 -41
  5. package/dist-cjs/commands/ListTagsForResourceCommand.js +18 -41
  6. package/dist-cjs/commands/StartPipeCommand.js +18 -41
  7. package/dist-cjs/commands/StopPipeCommand.js +18 -41
  8. package/dist-cjs/commands/TagResourceCommand.js +18 -41
  9. package/dist-cjs/commands/UntagResourceCommand.js +18 -41
  10. package/dist-cjs/commands/UpdatePipeCommand.js +18 -41
  11. package/dist-cjs/endpoint/EndpointParameters.js +7 -1
  12. package/dist-es/commands/CreatePipeCommand.js +18 -41
  13. package/dist-es/commands/DeletePipeCommand.js +18 -41
  14. package/dist-es/commands/DescribePipeCommand.js +18 -41
  15. package/dist-es/commands/ListPipesCommand.js +18 -41
  16. package/dist-es/commands/ListTagsForResourceCommand.js +18 -41
  17. package/dist-es/commands/StartPipeCommand.js +18 -41
  18. package/dist-es/commands/StopPipeCommand.js +18 -41
  19. package/dist-es/commands/TagResourceCommand.js +18 -41
  20. package/dist-es/commands/UntagResourceCommand.js +18 -41
  21. package/dist-es/commands/UpdatePipeCommand.js +18 -41
  22. package/dist-es/endpoint/EndpointParameters.js +6 -0
  23. package/dist-types/commands/CreatePipeCommand.d.ts +6 -21
  24. package/dist-types/commands/DeletePipeCommand.d.ts +6 -21
  25. package/dist-types/commands/DescribePipeCommand.d.ts +6 -21
  26. package/dist-types/commands/ListPipesCommand.d.ts +6 -21
  27. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -21
  28. package/dist-types/commands/StartPipeCommand.d.ts +6 -21
  29. package/dist-types/commands/StopPipeCommand.d.ts +6 -21
  30. package/dist-types/commands/TagResourceCommand.d.ts +6 -21
  31. package/dist-types/commands/UntagResourceCommand.d.ts +6 -21
  32. package/dist-types/commands/UpdatePipeCommand.d.ts +6 -21
  33. package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
  34. package/dist-types/ts3.4/commands/CreatePipeCommand.d.ts +14 -23
  35. package/dist-types/ts3.4/commands/DeletePipeCommand.d.ts +14 -23
  36. package/dist-types/ts3.4/commands/DescribePipeCommand.d.ts +14 -23
  37. package/dist-types/ts3.4/commands/ListPipesCommand.d.ts +14 -23
  38. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +14 -23
  39. package/dist-types/ts3.4/commands/StartPipeCommand.d.ts +14 -23
  40. package/dist-types/ts3.4/commands/StopPipeCommand.d.ts +14 -23
  41. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +14 -23
  42. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +14 -23
  43. package/dist-types/ts3.4/commands/UpdatePipeCommand.d.ts +14 -23
  44. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
  45. package/package.json +11 -11
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/Aws_restJson1";
6
6
  export { $Command };
7
- export class UntagResourceCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, UntagResourceCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "PipesClient";
26
- const commandName = "UntagResourceCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "Pipes",
35
- operation: "UntagResource",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_UntagResourceCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_UntagResourceCommand(output, context);
46
- }
7
+ export class UntagResourceCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("Pipes", "UntagResource", {})
19
+ .n("PipesClient", "UntagResourceCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_UntagResourceCommand)
22
+ .de(de_UntagResourceCommand)
23
+ .build() {
47
24
  }
@@ -1,48 +1,25 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { UpdatePipeRequestFilterSensitiveLog } from "../models/models_0";
6
6
  import { de_UpdatePipeCommand, se_UpdatePipeCommand } from "../protocols/Aws_restJson1";
7
7
  export { $Command };
8
- export class UpdatePipeCommand extends $Command {
9
- static getEndpointParameterInstructions() {
10
- return {
11
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
12
- Endpoint: { type: "builtInParams", name: "endpoint" },
13
- Region: { type: "builtInParams", name: "region" },
14
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
15
- };
16
- }
17
- constructor(input) {
18
- super();
19
- this.input = input;
20
- }
21
- resolveMiddleware(clientStack, configuration, options) {
22
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
23
- this.middlewareStack.use(getEndpointPlugin(configuration, UpdatePipeCommand.getEndpointParameterInstructions()));
24
- const stack = clientStack.concat(this.middlewareStack);
25
- const { logger } = configuration;
26
- const clientName = "PipesClient";
27
- const commandName = "UpdatePipeCommand";
28
- const handlerExecutionContext = {
29
- logger,
30
- clientName,
31
- commandName,
32
- inputFilterSensitiveLog: UpdatePipeRequestFilterSensitiveLog,
33
- outputFilterSensitiveLog: (_) => _,
34
- [SMITHY_CONTEXT_KEY]: {
35
- service: "Pipes",
36
- operation: "UpdatePipe",
37
- },
38
- };
39
- const { requestHandler } = configuration;
40
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
41
- }
42
- serialize(input, context) {
43
- return se_UpdatePipeCommand(input, context);
44
- }
45
- deserialize(output, context) {
46
- return de_UpdatePipeCommand(output, context);
47
- }
8
+ export class UpdatePipeCommand extends $Command
9
+ .classBuilder()
10
+ .ep({
11
+ ...commonParams,
12
+ })
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ getSerdePlugin(config, this.serialize, this.deserialize),
16
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("Pipes", "UpdatePipe", {})
20
+ .n("PipesClient", "UpdatePipeCommand")
21
+ .f(UpdatePipeRequestFilterSensitiveLog, void 0)
22
+ .ser(se_UpdatePipeCommand)
23
+ .de(de_UpdatePipeCommand)
24
+ .build() {
48
25
  }
@@ -6,3 +6,9 @@ export const resolveClientEndpointParameters = (options) => {
6
6
  defaultSigningName: "pipes",
7
7
  };
8
8
  };
9
+ export const commonParams = {
10
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
+ Endpoint: { type: "builtInParams", name: "endpoint" },
12
+ Region: { type: "builtInParams", name: "region" },
13
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
+ };
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { CreatePipeRequest, CreatePipeResponse } from "../models/models_0";
5
4
  import { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface CreatePipeCommandInput extends CreatePipeRequest {
21
20
  */
22
21
  export interface CreatePipeCommandOutput extends CreatePipeResponse, __MetadataBearer {
23
22
  }
23
+ declare const CreatePipeCommand_base: {
24
+ new (input: CreatePipeCommandInput): import("@smithy/smithy-client").CommandImpl<CreatePipeCommandInput, CreatePipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Create a pipe. Amazon EventBridge Pipes connect event sources to targets and reduces the need for specialized knowledge and integration code.</p>
@@ -392,23 +395,5 @@ export interface CreatePipeCommandOutput extends CreatePipeResponse, __MetadataB
392
395
  * <p>Base exception class for all service exceptions from Pipes service.</p>
393
396
  *
394
397
  */
395
- export declare class CreatePipeCommand extends $Command<CreatePipeCommandInput, CreatePipeCommandOutput, PipesClientResolvedConfig> {
396
- readonly input: CreatePipeCommandInput;
397
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
398
- /**
399
- * @public
400
- */
401
- constructor(input: CreatePipeCommandInput);
402
- /**
403
- * @internal
404
- */
405
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PipesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreatePipeCommandInput, CreatePipeCommandOutput>;
406
- /**
407
- * @internal
408
- */
409
- private serialize;
410
- /**
411
- * @internal
412
- */
413
- private deserialize;
398
+ export declare class CreatePipeCommand extends CreatePipeCommand_base {
414
399
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { DeletePipeRequest, DeletePipeResponse } from "../models/models_0";
5
4
  import { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface DeletePipeCommandInput extends DeletePipeRequest {
21
20
  */
22
21
  export interface DeletePipeCommandOutput extends DeletePipeResponse, __MetadataBearer {
23
22
  }
23
+ declare const DeletePipeCommand_base: {
24
+ new (input: DeletePipeCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePipeCommandInput, DeletePipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <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>
@@ -71,23 +74,5 @@ export interface DeletePipeCommandOutput extends DeletePipeResponse, __MetadataB
71
74
  * <p>Base exception class for all service exceptions from Pipes service.</p>
72
75
  *
73
76
  */
74
- export declare class DeletePipeCommand extends $Command<DeletePipeCommandInput, DeletePipeCommandOutput, PipesClientResolvedConfig> {
75
- readonly input: DeletePipeCommandInput;
76
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
77
- /**
78
- * @public
79
- */
80
- constructor(input: DeletePipeCommandInput);
81
- /**
82
- * @internal
83
- */
84
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PipesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePipeCommandInput, DeletePipeCommandOutput>;
85
- /**
86
- * @internal
87
- */
88
- private serialize;
89
- /**
90
- * @internal
91
- */
92
- private deserialize;
77
+ export declare class DeletePipeCommand extends DeletePipeCommand_base {
93
78
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { DescribePipeRequest, DescribePipeResponse } from "../models/models_0";
5
4
  import { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface DescribePipeCommandInput extends DescribePipeRequest {
21
20
  */
22
21
  export interface DescribePipeCommandOutput extends DescribePipeResponse, __MetadataBearer {
23
22
  }
23
+ declare const DescribePipeCommand_base: {
24
+ new (input: DescribePipeCommandInput): import("@smithy/smithy-client").CommandImpl<DescribePipeCommandInput, DescribePipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <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>
@@ -386,23 +389,5 @@ export interface DescribePipeCommandOutput extends DescribePipeResponse, __Metad
386
389
  * <p>Base exception class for all service exceptions from Pipes service.</p>
387
390
  *
388
391
  */
389
- export declare class DescribePipeCommand extends $Command<DescribePipeCommandInput, DescribePipeCommandOutput, PipesClientResolvedConfig> {
390
- readonly input: DescribePipeCommandInput;
391
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
392
- /**
393
- * @public
394
- */
395
- constructor(input: DescribePipeCommandInput);
396
- /**
397
- * @internal
398
- */
399
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PipesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribePipeCommandInput, DescribePipeCommandOutput>;
400
- /**
401
- * @internal
402
- */
403
- private serialize;
404
- /**
405
- * @internal
406
- */
407
- private deserialize;
392
+ export declare class DescribePipeCommand extends DescribePipeCommand_base {
408
393
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ListPipesRequest, ListPipesResponse } from "../models/models_0";
5
4
  import { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListPipesCommandInput extends ListPipesRequest {
21
20
  */
22
21
  export interface ListPipesCommandOutput extends ListPipesResponse, __MetadataBearer {
23
22
  }
23
+ declare const ListPipesCommand_base: {
24
+ new (input: ListPipesCommandInput): import("@smithy/smithy-client").CommandImpl<ListPipesCommandInput, ListPipesCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <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>
@@ -80,23 +83,5 @@ export interface ListPipesCommandOutput extends ListPipesResponse, __MetadataBea
80
83
  * <p>Base exception class for all service exceptions from Pipes service.</p>
81
84
  *
82
85
  */
83
- export declare class ListPipesCommand extends $Command<ListPipesCommandInput, ListPipesCommandOutput, PipesClientResolvedConfig> {
84
- readonly input: ListPipesCommandInput;
85
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
86
- /**
87
- * @public
88
- */
89
- constructor(input: ListPipesCommandInput);
90
- /**
91
- * @internal
92
- */
93
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PipesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPipesCommandInput, ListPipesCommandOutput>;
94
- /**
95
- * @internal
96
- */
97
- private serialize;
98
- /**
99
- * @internal
100
- */
101
- private deserialize;
86
+ export declare class ListPipesCommand extends ListPipesCommand_base {
102
87
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
4
  import { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequ
21
20
  */
22
21
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
23
22
  }
23
+ declare const ListTagsForResourceCommand_base: {
24
+ new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Displays the tags associated with a pipe.</p>
@@ -62,23 +65,5 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
62
65
  * <p>Base exception class for all service exceptions from Pipes service.</p>
63
66
  *
64
67
  */
65
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, PipesClientResolvedConfig> {
66
- readonly input: ListTagsForResourceCommandInput;
67
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
68
- /**
69
- * @public
70
- */
71
- constructor(input: ListTagsForResourceCommandInput);
72
- /**
73
- * @internal
74
- */
75
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PipesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
76
- /**
77
- * @internal
78
- */
79
- private serialize;
80
- /**
81
- * @internal
82
- */
83
- private deserialize;
68
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
84
69
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { StartPipeRequest, StartPipeResponse } from "../models/models_0";
5
4
  import { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface StartPipeCommandInput extends StartPipeRequest {
21
20
  */
22
21
  export interface StartPipeCommandOutput extends StartPipeResponse, __MetadataBearer {
23
22
  }
23
+ declare const StartPipeCommand_base: {
24
+ new (input: StartPipeCommandInput): import("@smithy/smithy-client").CommandImpl<StartPipeCommandInput, StartPipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Start an existing pipe.</p>
@@ -71,23 +74,5 @@ export interface StartPipeCommandOutput extends StartPipeResponse, __MetadataBea
71
74
  * <p>Base exception class for all service exceptions from Pipes service.</p>
72
75
  *
73
76
  */
74
- export declare class StartPipeCommand extends $Command<StartPipeCommandInput, StartPipeCommandOutput, PipesClientResolvedConfig> {
75
- readonly input: StartPipeCommandInput;
76
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
77
- /**
78
- * @public
79
- */
80
- constructor(input: StartPipeCommandInput);
81
- /**
82
- * @internal
83
- */
84
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PipesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartPipeCommandInput, StartPipeCommandOutput>;
85
- /**
86
- * @internal
87
- */
88
- private serialize;
89
- /**
90
- * @internal
91
- */
92
- private deserialize;
77
+ export declare class StartPipeCommand extends StartPipeCommand_base {
93
78
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { StopPipeRequest, StopPipeResponse } from "../models/models_0";
5
4
  import { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface StopPipeCommandInput extends StopPipeRequest {
21
20
  */
22
21
  export interface StopPipeCommandOutput extends StopPipeResponse, __MetadataBearer {
23
22
  }
23
+ declare const StopPipeCommand_base: {
24
+ new (input: StopPipeCommandInput): import("@smithy/smithy-client").CommandImpl<StopPipeCommandInput, StopPipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Stop an existing pipe.</p>
@@ -71,23 +74,5 @@ export interface StopPipeCommandOutput extends StopPipeResponse, __MetadataBeare
71
74
  * <p>Base exception class for all service exceptions from Pipes service.</p>
72
75
  *
73
76
  */
74
- export declare class StopPipeCommand extends $Command<StopPipeCommandInput, StopPipeCommandOutput, PipesClientResolvedConfig> {
75
- readonly input: StopPipeCommandInput;
76
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
77
- /**
78
- * @public
79
- */
80
- constructor(input: StopPipeCommandInput);
81
- /**
82
- * @internal
83
- */
84
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PipesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopPipeCommandInput, StopPipeCommandOutput>;
85
- /**
86
- * @internal
87
- */
88
- private serialize;
89
- /**
90
- * @internal
91
- */
92
- private deserialize;
77
+ export declare class StopPipeCommand extends StopPipeCommand_base {
93
78
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
4
  import { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface TagResourceCommandInput extends TagResourceRequest {
21
20
  */
22
21
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
23
22
  }
23
+ declare const TagResourceCommand_base: {
24
+ new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Assigns one or more tags (key-value pairs) to the specified pipe. Tags can
@@ -71,23 +74,5 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
71
74
  * <p>Base exception class for all service exceptions from Pipes service.</p>
72
75
  *
73
76
  */
74
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, PipesClientResolvedConfig> {
75
- readonly input: TagResourceCommandInput;
76
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
77
- /**
78
- * @public
79
- */
80
- constructor(input: TagResourceCommandInput);
81
- /**
82
- * @internal
83
- */
84
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PipesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
85
- /**
86
- * @internal
87
- */
88
- private serialize;
89
- /**
90
- * @internal
91
- */
92
- private deserialize;
77
+ export declare class TagResourceCommand extends TagResourceCommand_base {
93
78
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
4
  import { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {
21
20
  */
22
21
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
23
22
  }
23
+ declare const UntagResourceCommand_base: {
24
+ new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Removes one or more tags from the specified pipes.</p>
@@ -61,23 +64,5 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
61
64
  * <p>Base exception class for all service exceptions from Pipes service.</p>
62
65
  *
63
66
  */
64
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, PipesClientResolvedConfig> {
65
- readonly input: UntagResourceCommandInput;
66
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
67
- /**
68
- * @public
69
- */
70
- constructor(input: UntagResourceCommandInput);
71
- /**
72
- * @internal
73
- */
74
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PipesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
75
- /**
76
- * @internal
77
- */
78
- private serialize;
79
- /**
80
- * @internal
81
- */
82
- private deserialize;
67
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {
83
68
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { UpdatePipeRequest, UpdatePipeResponse } from "../models/models_0";
5
4
  import { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface UpdatePipeCommandInput extends UpdatePipeRequest {
21
20
  */
22
21
  export interface UpdatePipeCommandOutput extends UpdatePipeResponse, __MetadataBearer {
23
22
  }
23
+ declare const UpdatePipeCommand_base: {
24
+ new (input: UpdatePipeCommandInput): import("@smithy/smithy-client").CommandImpl<UpdatePipeCommandInput, UpdatePipeCommandOutput, PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Update an existing pipe. When you call <code>UpdatePipe</code>, EventBridge only the updates fields you have specified in the request; the rest remain unchanged.
@@ -376,23 +379,5 @@ export interface UpdatePipeCommandOutput extends UpdatePipeResponse, __MetadataB
376
379
  * <p>Base exception class for all service exceptions from Pipes service.</p>
377
380
  *
378
381
  */
379
- export declare class UpdatePipeCommand extends $Command<UpdatePipeCommandInput, UpdatePipeCommandOutput, PipesClientResolvedConfig> {
380
- readonly input: UpdatePipeCommandInput;
381
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
382
- /**
383
- * @public
384
- */
385
- constructor(input: UpdatePipeCommandInput);
386
- /**
387
- * @internal
388
- */
389
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PipesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdatePipeCommandInput, UpdatePipeCommandOutput>;
390
- /**
391
- * @internal
392
- */
393
- private serialize;
394
- /**
395
- * @internal
396
- */
397
- private deserialize;
382
+ export declare class UpdatePipeCommand extends UpdatePipeCommand_base {
398
383
  }
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
14
14
  export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
15
15
  defaultSigningName: string;
16
16
  };
17
+ export declare const commonParams: {
18
+ readonly UseFIPS: {
19
+ readonly type: "builtInParams";
20
+ readonly name: "useFipsEndpoint";
21
+ };
22
+ readonly Endpoint: {
23
+ readonly type: "builtInParams";
24
+ readonly name: "endpoint";
25
+ };
26
+ readonly Region: {
27
+ readonly type: "builtInParams";
28
+ readonly name: "region";
29
+ };
30
+ readonly UseDualStack: {
31
+ readonly type: "builtInParams";
32
+ readonly name: "useDualstackEndpoint";
33
+ };
34
+ };
17
35
  export interface EndpointParameters extends __EndpointParameters {
18
36
  Region?: string;
19
37
  UseDualStack?: boolean;