@aws-sdk/client-pipes 3.222.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 (115) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +207 -0
  3. package/dist-cjs/Pipes.js +157 -0
  4. package/dist-cjs/PipesClient.js +40 -0
  5. package/dist-cjs/commands/CreatePipeCommand.js +46 -0
  6. package/dist-cjs/commands/DeletePipeCommand.js +46 -0
  7. package/dist-cjs/commands/DescribePipeCommand.js +46 -0
  8. package/dist-cjs/commands/ListPipesCommand.js +46 -0
  9. package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
  10. package/dist-cjs/commands/StartPipeCommand.js +46 -0
  11. package/dist-cjs/commands/StopPipeCommand.js +46 -0
  12. package/dist-cjs/commands/TagResourceCommand.js +46 -0
  13. package/dist-cjs/commands/UntagResourceCommand.js +46 -0
  14. package/dist-cjs/commands/UpdatePipeCommand.js +46 -0
  15. package/dist-cjs/commands/index.js +13 -0
  16. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  17. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  18. package/dist-cjs/endpoint/ruleset.js +312 -0
  19. package/dist-cjs/index.js +11 -0
  20. package/dist-cjs/models/PipesServiceException.js +11 -0
  21. package/dist-cjs/models/index.js +4 -0
  22. package/dist-cjs/models/models_0.js +704 -0
  23. package/dist-cjs/pagination/Interfaces.js +2 -0
  24. package/dist-cjs/pagination/ListPipesPaginator.js +36 -0
  25. package/dist-cjs/pagination/index.js +5 -0
  26. package/dist-cjs/protocols/Aws_restJson1.js +2591 -0
  27. package/dist-cjs/runtimeConfig.browser.js +42 -0
  28. package/dist-cjs/runtimeConfig.js +50 -0
  29. package/dist-cjs/runtimeConfig.native.js +15 -0
  30. package/dist-cjs/runtimeConfig.shared.js +18 -0
  31. package/dist-es/Pipes.js +153 -0
  32. package/dist-es/PipesClient.js +36 -0
  33. package/dist-es/commands/CreatePipeCommand.js +42 -0
  34. package/dist-es/commands/DeletePipeCommand.js +42 -0
  35. package/dist-es/commands/DescribePipeCommand.js +42 -0
  36. package/dist-es/commands/ListPipesCommand.js +42 -0
  37. package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
  38. package/dist-es/commands/StartPipeCommand.js +42 -0
  39. package/dist-es/commands/StopPipeCommand.js +42 -0
  40. package/dist-es/commands/TagResourceCommand.js +42 -0
  41. package/dist-es/commands/UntagResourceCommand.js +42 -0
  42. package/dist-es/commands/UpdatePipeCommand.js +42 -0
  43. package/dist-es/commands/index.js +10 -0
  44. package/dist-es/endpoint/EndpointParameters.js +8 -0
  45. package/dist-es/endpoint/endpointResolver.js +8 -0
  46. package/dist-es/endpoint/ruleset.js +309 -0
  47. package/dist-es/index.js +6 -0
  48. package/dist-es/models/PipesServiceException.js +7 -0
  49. package/dist-es/models/index.js +1 -0
  50. package/dist-es/models/models_0.js +614 -0
  51. package/dist-es/pagination/Interfaces.js +1 -0
  52. package/dist-es/pagination/ListPipesPaginator.js +32 -0
  53. package/dist-es/pagination/index.js +2 -0
  54. package/dist-es/protocols/Aws_restJson1.js +2568 -0
  55. package/dist-es/runtimeConfig.browser.js +37 -0
  56. package/dist-es/runtimeConfig.js +45 -0
  57. package/dist-es/runtimeConfig.native.js +11 -0
  58. package/dist-es/runtimeConfig.shared.js +14 -0
  59. package/dist-types/Pipes.d.ts +95 -0
  60. package/dist-types/PipesClient.d.ts +153 -0
  61. package/dist-types/commands/CreatePipeCommand.d.ts +37 -0
  62. package/dist-types/commands/DeletePipeCommand.d.ts +37 -0
  63. package/dist-types/commands/DescribePipeCommand.d.ts +37 -0
  64. package/dist-types/commands/ListPipesCommand.d.ts +37 -0
  65. package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
  66. package/dist-types/commands/StartPipeCommand.d.ts +37 -0
  67. package/dist-types/commands/StopPipeCommand.d.ts +37 -0
  68. package/dist-types/commands/TagResourceCommand.d.ts +47 -0
  69. package/dist-types/commands/UntagResourceCommand.d.ts +37 -0
  70. package/dist-types/commands/UpdatePipeCommand.d.ts +43 -0
  71. package/dist-types/commands/index.d.ts +10 -0
  72. package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
  73. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  74. package/dist-types/endpoint/ruleset.d.ts +2 -0
  75. package/dist-types/index.d.ts +6 -0
  76. package/dist-types/models/PipesServiceException.d.ts +10 -0
  77. package/dist-types/models/index.d.ts +1 -0
  78. package/dist-types/models/models_0.d.ts +2541 -0
  79. package/dist-types/pagination/Interfaces.d.ts +6 -0
  80. package/dist-types/pagination/ListPipesPaginator.d.ts +4 -0
  81. package/dist-types/pagination/index.d.ts +2 -0
  82. package/dist-types/protocols/Aws_restJson1.d.ts +32 -0
  83. package/dist-types/runtimeConfig.browser.d.ts +42 -0
  84. package/dist-types/runtimeConfig.d.ts +42 -0
  85. package/dist-types/runtimeConfig.native.d.ts +41 -0
  86. package/dist-types/runtimeConfig.shared.d.ts +16 -0
  87. package/dist-types/ts3.4/Pipes.d.ts +174 -0
  88. package/dist-types/ts3.4/PipesClient.d.ts +171 -0
  89. package/dist-types/ts3.4/commands/CreatePipeCommand.d.ts +34 -0
  90. package/dist-types/ts3.4/commands/DeletePipeCommand.d.ts +34 -0
  91. package/dist-types/ts3.4/commands/DescribePipeCommand.d.ts +34 -0
  92. package/dist-types/ts3.4/commands/ListPipesCommand.d.ts +34 -0
  93. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
  94. package/dist-types/ts3.4/commands/StartPipeCommand.d.ts +34 -0
  95. package/dist-types/ts3.4/commands/StopPipeCommand.d.ts +34 -0
  96. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
  97. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -0
  98. package/dist-types/ts3.4/commands/UpdatePipeCommand.d.ts +34 -0
  99. package/dist-types/ts3.4/commands/index.d.ts +10 -0
  100. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
  101. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  102. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  103. package/dist-types/ts3.4/index.d.ts +6 -0
  104. package/dist-types/ts3.4/models/PipesServiceException.d.ts +7 -0
  105. package/dist-types/ts3.4/models/index.d.ts +1 -0
  106. package/dist-types/ts3.4/models/models_0.d.ts +915 -0
  107. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  108. package/dist-types/ts3.4/pagination/ListPipesPaginator.d.ts +11 -0
  109. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  110. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +125 -0
  111. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +88 -0
  112. package/dist-types/ts3.4/runtimeConfig.d.ts +88 -0
  113. package/dist-types/ts3.4/runtimeConfig.native.d.ts +77 -0
  114. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +16 -0
  115. package/package.json +102 -0
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { Pipes } from "../Pipes";
3
+ import { PipesClient } from "../PipesClient";
4
+ export interface PipesPaginationConfiguration extends PaginationConfiguration {
5
+ client: Pipes | PipesClient;
6
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListPipesCommandInput, ListPipesCommandOutput } from "../commands/ListPipesCommand";
3
+ import { PipesPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListPipes(config: PipesPaginationConfiguration, input: ListPipesCommandInput, ...additionalArguments: any): Paginator<ListPipesCommandOutput>;
@@ -0,0 +1,2 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListPipesPaginator";
@@ -0,0 +1,32 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { CreatePipeCommandInput, CreatePipeCommandOutput } from "../commands/CreatePipeCommand";
4
+ import { DeletePipeCommandInput, DeletePipeCommandOutput } from "../commands/DeletePipeCommand";
5
+ import { DescribePipeCommandInput, DescribePipeCommandOutput } from "../commands/DescribePipeCommand";
6
+ import { ListPipesCommandInput, ListPipesCommandOutput } from "../commands/ListPipesCommand";
7
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
8
+ import { StartPipeCommandInput, StartPipeCommandOutput } from "../commands/StartPipeCommand";
9
+ import { StopPipeCommandInput, StopPipeCommandOutput } from "../commands/StopPipeCommand";
10
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
11
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
12
+ import { UpdatePipeCommandInput, UpdatePipeCommandOutput } from "../commands/UpdatePipeCommand";
13
+ export declare const serializeAws_restJson1CreatePipeCommand: (input: CreatePipeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
14
+ export declare const serializeAws_restJson1DeletePipeCommand: (input: DeletePipeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
15
+ export declare const serializeAws_restJson1DescribePipeCommand: (input: DescribePipeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
16
+ export declare const serializeAws_restJson1ListPipesCommand: (input: ListPipesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
+ export declare const serializeAws_restJson1StartPipeCommand: (input: StartPipeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
+ export declare const serializeAws_restJson1StopPipeCommand: (input: StopPipeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
+ export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
+ export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
+ export declare const serializeAws_restJson1UpdatePipeCommand: (input: UpdatePipeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
+ export declare const deserializeAws_restJson1CreatePipeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePipeCommandOutput>;
24
+ export declare const deserializeAws_restJson1DeletePipeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePipeCommandOutput>;
25
+ export declare const deserializeAws_restJson1DescribePipeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribePipeCommandOutput>;
26
+ export declare const deserializeAws_restJson1ListPipesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPipesCommandOutput>;
27
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
28
+ export declare const deserializeAws_restJson1StartPipeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartPipeCommandOutput>;
29
+ export declare const deserializeAws_restJson1StopPipeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopPipeCommandOutput>;
30
+ export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
31
+ export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
32
+ export declare const deserializeAws_restJson1UpdatePipeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdatePipeCommandOutput>;
@@ -0,0 +1,42 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { PipesClientConfig } from "./PipesClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: PipesClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<any>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ base64Decoder: import("@aws-sdk/types").Decoder;
25
+ base64Encoder: import("@aws-sdk/types").Encoder;
26
+ disableHostPrefix: boolean;
27
+ logger: import("@aws-sdk/types").Logger;
28
+ serviceId: string;
29
+ endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
30
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
31
+ logger?: import("@aws-sdk/types").Logger | undefined;
32
+ }) => import("@aws-sdk/types").EndpointV2;
33
+ tls?: boolean | undefined;
34
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
35
+ credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
36
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
37
+ signingEscapePath?: boolean | undefined;
38
+ systemClockOffset?: number | undefined;
39
+ signingRegion?: string | undefined;
40
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
41
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
42
+ };
@@ -0,0 +1,42 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { PipesClientConfig } from "./PipesClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: PipesClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<string>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ base64Decoder: import("@aws-sdk/types").Decoder;
25
+ base64Encoder: import("@aws-sdk/types").Encoder;
26
+ disableHostPrefix: boolean;
27
+ logger: import("@aws-sdk/types").Logger;
28
+ serviceId: string;
29
+ endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
30
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
31
+ logger?: import("@aws-sdk/types").Logger | undefined;
32
+ }) => import("@aws-sdk/types").EndpointV2;
33
+ tls?: boolean | undefined;
34
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
35
+ credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
36
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
37
+ signingEscapePath?: boolean | undefined;
38
+ systemClockOffset?: number | undefined;
39
+ signingRegion?: string | undefined;
40
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
41
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
42
+ };
@@ -0,0 +1,41 @@
1
+ import { PipesClientConfig } from "./PipesClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: PipesClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@aws-sdk/types").HashConstructor;
8
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
9
+ apiVersion: string;
10
+ urlParser: import("@aws-sdk/types").UrlParser;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
+ streamCollector: import("@aws-sdk/types").StreamCollector;
13
+ base64Decoder: import("@aws-sdk/types").Decoder;
14
+ base64Encoder: import("@aws-sdk/types").Encoder;
15
+ utf8Decoder: import("@aws-sdk/types").Decoder;
16
+ utf8Encoder: import("@aws-sdk/types").Encoder;
17
+ disableHostPrefix: boolean;
18
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
19
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
20
+ logger: import("@aws-sdk/types").Logger;
21
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
22
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
23
+ serviceId: string;
24
+ region: string | import("@aws-sdk/types").Provider<any>;
25
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
26
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
27
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> | undefined;
29
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
30
+ logger?: import("@aws-sdk/types").Logger | undefined;
31
+ }) => import("@aws-sdk/types").EndpointV2;
32
+ tls?: boolean | undefined;
33
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
34
+ credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
35
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
36
+ signingEscapePath?: boolean | undefined;
37
+ systemClockOffset?: number | undefined;
38
+ signingRegion?: string | undefined;
39
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
40
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
41
+ };
@@ -0,0 +1,16 @@
1
+ import { PipesClientConfig } from "./PipesClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: PipesClientConfig) => {
6
+ apiVersion: string;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ disableHostPrefix: boolean;
10
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
+ logger?: import("@aws-sdk/types").Logger | undefined;
12
+ }) => import("@aws-sdk/types").EndpointV2;
13
+ logger: import("@aws-sdk/types").Logger;
14
+ serviceId: string;
15
+ urlParser: import("@aws-sdk/types").UrlParser;
16
+ };
@@ -0,0 +1,174 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ CreatePipeCommandInput,
4
+ CreatePipeCommandOutput,
5
+ } from "./commands/CreatePipeCommand";
6
+ import {
7
+ DeletePipeCommandInput,
8
+ DeletePipeCommandOutput,
9
+ } from "./commands/DeletePipeCommand";
10
+ import {
11
+ DescribePipeCommandInput,
12
+ DescribePipeCommandOutput,
13
+ } from "./commands/DescribePipeCommand";
14
+ import {
15
+ ListPipesCommandInput,
16
+ ListPipesCommandOutput,
17
+ } from "./commands/ListPipesCommand";
18
+ import {
19
+ ListTagsForResourceCommandInput,
20
+ ListTagsForResourceCommandOutput,
21
+ } from "./commands/ListTagsForResourceCommand";
22
+ import {
23
+ StartPipeCommandInput,
24
+ StartPipeCommandOutput,
25
+ } from "./commands/StartPipeCommand";
26
+ import {
27
+ StopPipeCommandInput,
28
+ StopPipeCommandOutput,
29
+ } from "./commands/StopPipeCommand";
30
+ import {
31
+ TagResourceCommandInput,
32
+ TagResourceCommandOutput,
33
+ } from "./commands/TagResourceCommand";
34
+ import {
35
+ UntagResourceCommandInput,
36
+ UntagResourceCommandOutput,
37
+ } from "./commands/UntagResourceCommand";
38
+ import {
39
+ UpdatePipeCommandInput,
40
+ UpdatePipeCommandOutput,
41
+ } from "./commands/UpdatePipeCommand";
42
+ import { PipesClient } from "./PipesClient";
43
+ export declare class Pipes extends PipesClient {
44
+ createPipe(
45
+ args: CreatePipeCommandInput,
46
+ options?: __HttpHandlerOptions
47
+ ): Promise<CreatePipeCommandOutput>;
48
+ createPipe(
49
+ args: CreatePipeCommandInput,
50
+ cb: (err: any, data?: CreatePipeCommandOutput) => void
51
+ ): void;
52
+ createPipe(
53
+ args: CreatePipeCommandInput,
54
+ options: __HttpHandlerOptions,
55
+ cb: (err: any, data?: CreatePipeCommandOutput) => void
56
+ ): void;
57
+ deletePipe(
58
+ args: DeletePipeCommandInput,
59
+ options?: __HttpHandlerOptions
60
+ ): Promise<DeletePipeCommandOutput>;
61
+ deletePipe(
62
+ args: DeletePipeCommandInput,
63
+ cb: (err: any, data?: DeletePipeCommandOutput) => void
64
+ ): void;
65
+ deletePipe(
66
+ args: DeletePipeCommandInput,
67
+ options: __HttpHandlerOptions,
68
+ cb: (err: any, data?: DeletePipeCommandOutput) => void
69
+ ): void;
70
+ describePipe(
71
+ args: DescribePipeCommandInput,
72
+ options?: __HttpHandlerOptions
73
+ ): Promise<DescribePipeCommandOutput>;
74
+ describePipe(
75
+ args: DescribePipeCommandInput,
76
+ cb: (err: any, data?: DescribePipeCommandOutput) => void
77
+ ): void;
78
+ describePipe(
79
+ args: DescribePipeCommandInput,
80
+ options: __HttpHandlerOptions,
81
+ cb: (err: any, data?: DescribePipeCommandOutput) => void
82
+ ): void;
83
+ listPipes(
84
+ args: ListPipesCommandInput,
85
+ options?: __HttpHandlerOptions
86
+ ): Promise<ListPipesCommandOutput>;
87
+ listPipes(
88
+ args: ListPipesCommandInput,
89
+ cb: (err: any, data?: ListPipesCommandOutput) => void
90
+ ): void;
91
+ listPipes(
92
+ args: ListPipesCommandInput,
93
+ options: __HttpHandlerOptions,
94
+ cb: (err: any, data?: ListPipesCommandOutput) => void
95
+ ): void;
96
+ listTagsForResource(
97
+ args: ListTagsForResourceCommandInput,
98
+ options?: __HttpHandlerOptions
99
+ ): Promise<ListTagsForResourceCommandOutput>;
100
+ listTagsForResource(
101
+ args: ListTagsForResourceCommandInput,
102
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
103
+ ): void;
104
+ listTagsForResource(
105
+ args: ListTagsForResourceCommandInput,
106
+ options: __HttpHandlerOptions,
107
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
108
+ ): void;
109
+ startPipe(
110
+ args: StartPipeCommandInput,
111
+ options?: __HttpHandlerOptions
112
+ ): Promise<StartPipeCommandOutput>;
113
+ startPipe(
114
+ args: StartPipeCommandInput,
115
+ cb: (err: any, data?: StartPipeCommandOutput) => void
116
+ ): void;
117
+ startPipe(
118
+ args: StartPipeCommandInput,
119
+ options: __HttpHandlerOptions,
120
+ cb: (err: any, data?: StartPipeCommandOutput) => void
121
+ ): void;
122
+ stopPipe(
123
+ args: StopPipeCommandInput,
124
+ options?: __HttpHandlerOptions
125
+ ): Promise<StopPipeCommandOutput>;
126
+ stopPipe(
127
+ args: StopPipeCommandInput,
128
+ cb: (err: any, data?: StopPipeCommandOutput) => void
129
+ ): void;
130
+ stopPipe(
131
+ args: StopPipeCommandInput,
132
+ options: __HttpHandlerOptions,
133
+ cb: (err: any, data?: StopPipeCommandOutput) => void
134
+ ): void;
135
+ tagResource(
136
+ args: TagResourceCommandInput,
137
+ options?: __HttpHandlerOptions
138
+ ): Promise<TagResourceCommandOutput>;
139
+ tagResource(
140
+ args: TagResourceCommandInput,
141
+ cb: (err: any, data?: TagResourceCommandOutput) => void
142
+ ): void;
143
+ tagResource(
144
+ args: TagResourceCommandInput,
145
+ options: __HttpHandlerOptions,
146
+ cb: (err: any, data?: TagResourceCommandOutput) => void
147
+ ): void;
148
+ untagResource(
149
+ args: UntagResourceCommandInput,
150
+ options?: __HttpHandlerOptions
151
+ ): Promise<UntagResourceCommandOutput>;
152
+ untagResource(
153
+ args: UntagResourceCommandInput,
154
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
155
+ ): void;
156
+ untagResource(
157
+ args: UntagResourceCommandInput,
158
+ options: __HttpHandlerOptions,
159
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
160
+ ): void;
161
+ updatePipe(
162
+ args: UpdatePipeCommandInput,
163
+ options?: __HttpHandlerOptions
164
+ ): Promise<UpdatePipeCommandOutput>;
165
+ updatePipe(
166
+ args: UpdatePipeCommandInput,
167
+ cb: (err: any, data?: UpdatePipeCommandOutput) => void
168
+ ): void;
169
+ updatePipe(
170
+ args: UpdatePipeCommandInput,
171
+ options: __HttpHandlerOptions,
172
+ cb: (err: any, data?: UpdatePipeCommandOutput) => void
173
+ ): void;
174
+ }
@@ -0,0 +1,171 @@
1
+ import {
2
+ RegionInputConfig,
3
+ RegionResolvedConfig,
4
+ } from "@aws-sdk/config-resolver";
5
+ import {
6
+ EndpointInputConfig,
7
+ EndpointResolvedConfig,
8
+ } from "@aws-sdk/middleware-endpoint";
9
+ import {
10
+ HostHeaderInputConfig,
11
+ HostHeaderResolvedConfig,
12
+ } from "@aws-sdk/middleware-host-header";
13
+ import {
14
+ RetryInputConfig,
15
+ RetryResolvedConfig,
16
+ } from "@aws-sdk/middleware-retry";
17
+ import {
18
+ AwsAuthInputConfig,
19
+ AwsAuthResolvedConfig,
20
+ } from "@aws-sdk/middleware-signing";
21
+ import {
22
+ UserAgentInputConfig,
23
+ UserAgentResolvedConfig,
24
+ } from "@aws-sdk/middleware-user-agent";
25
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
26
+ import {
27
+ Client as __Client,
28
+ DefaultsMode,
29
+ SmithyConfiguration as __SmithyConfiguration,
30
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
31
+ } from "@aws-sdk/smithy-client";
32
+ import {
33
+ BodyLengthCalculator as __BodyLengthCalculator,
34
+ Credentials as __Credentials,
35
+ Decoder as __Decoder,
36
+ Encoder as __Encoder,
37
+ HashConstructor as __HashConstructor,
38
+ HttpHandlerOptions as __HttpHandlerOptions,
39
+ Logger as __Logger,
40
+ Provider as __Provider,
41
+ Provider,
42
+ StreamCollector as __StreamCollector,
43
+ UrlParser as __UrlParser,
44
+ UserAgent as __UserAgent,
45
+ } from "@aws-sdk/types";
46
+ import {
47
+ CreatePipeCommandInput,
48
+ CreatePipeCommandOutput,
49
+ } from "./commands/CreatePipeCommand";
50
+ import {
51
+ DeletePipeCommandInput,
52
+ DeletePipeCommandOutput,
53
+ } from "./commands/DeletePipeCommand";
54
+ import {
55
+ DescribePipeCommandInput,
56
+ DescribePipeCommandOutput,
57
+ } from "./commands/DescribePipeCommand";
58
+ import {
59
+ ListPipesCommandInput,
60
+ ListPipesCommandOutput,
61
+ } from "./commands/ListPipesCommand";
62
+ import {
63
+ ListTagsForResourceCommandInput,
64
+ ListTagsForResourceCommandOutput,
65
+ } from "./commands/ListTagsForResourceCommand";
66
+ import {
67
+ StartPipeCommandInput,
68
+ StartPipeCommandOutput,
69
+ } from "./commands/StartPipeCommand";
70
+ import {
71
+ StopPipeCommandInput,
72
+ StopPipeCommandOutput,
73
+ } from "./commands/StopPipeCommand";
74
+ import {
75
+ TagResourceCommandInput,
76
+ TagResourceCommandOutput,
77
+ } from "./commands/TagResourceCommand";
78
+ import {
79
+ UntagResourceCommandInput,
80
+ UntagResourceCommandOutput,
81
+ } from "./commands/UntagResourceCommand";
82
+ import {
83
+ UpdatePipeCommandInput,
84
+ UpdatePipeCommandOutput,
85
+ } from "./commands/UpdatePipeCommand";
86
+ import {
87
+ ClientInputEndpointParameters,
88
+ ClientResolvedEndpointParameters,
89
+ EndpointParameters,
90
+ } from "./endpoint/EndpointParameters";
91
+ export declare type ServiceInputTypes =
92
+ | CreatePipeCommandInput
93
+ | DeletePipeCommandInput
94
+ | DescribePipeCommandInput
95
+ | ListPipesCommandInput
96
+ | ListTagsForResourceCommandInput
97
+ | StartPipeCommandInput
98
+ | StopPipeCommandInput
99
+ | TagResourceCommandInput
100
+ | UntagResourceCommandInput
101
+ | UpdatePipeCommandInput;
102
+ export declare type ServiceOutputTypes =
103
+ | CreatePipeCommandOutput
104
+ | DeletePipeCommandOutput
105
+ | DescribePipeCommandOutput
106
+ | ListPipesCommandOutput
107
+ | ListTagsForResourceCommandOutput
108
+ | StartPipeCommandOutput
109
+ | StopPipeCommandOutput
110
+ | TagResourceCommandOutput
111
+ | UntagResourceCommandOutput
112
+ | UpdatePipeCommandOutput;
113
+ export interface ClientDefaults
114
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
115
+ requestHandler?: __HttpHandler;
116
+ sha256?: __HashConstructor;
117
+ urlParser?: __UrlParser;
118
+ bodyLengthChecker?: __BodyLengthCalculator;
119
+ streamCollector?: __StreamCollector;
120
+ base64Decoder?: __Decoder;
121
+ base64Encoder?: __Encoder;
122
+ utf8Decoder?: __Decoder;
123
+ utf8Encoder?: __Encoder;
124
+ runtime?: string;
125
+ disableHostPrefix?: boolean;
126
+ maxAttempts?: number | __Provider<number>;
127
+ retryMode?: string | __Provider<string>;
128
+ logger?: __Logger;
129
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
130
+ useFipsEndpoint?: boolean | __Provider<boolean>;
131
+ serviceId?: string;
132
+ region?: string | __Provider<string>;
133
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
134
+ defaultUserAgentProvider?: Provider<__UserAgent>;
135
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
136
+ }
137
+ declare type PipesClientConfigType = Partial<
138
+ __SmithyConfiguration<__HttpHandlerOptions>
139
+ > &
140
+ ClientDefaults &
141
+ RegionInputConfig &
142
+ EndpointInputConfig<EndpointParameters> &
143
+ RetryInputConfig &
144
+ HostHeaderInputConfig &
145
+ AwsAuthInputConfig &
146
+ UserAgentInputConfig &
147
+ ClientInputEndpointParameters;
148
+ export interface PipesClientConfig extends PipesClientConfigType {}
149
+ declare type PipesClientResolvedConfigType =
150
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
151
+ Required<ClientDefaults> &
152
+ RegionResolvedConfig &
153
+ EndpointResolvedConfig<EndpointParameters> &
154
+ RetryResolvedConfig &
155
+ HostHeaderResolvedConfig &
156
+ AwsAuthResolvedConfig &
157
+ UserAgentResolvedConfig &
158
+ ClientResolvedEndpointParameters;
159
+ export interface PipesClientResolvedConfig
160
+ extends PipesClientResolvedConfigType {}
161
+ export declare class PipesClient extends __Client<
162
+ __HttpHandlerOptions,
163
+ ServiceInputTypes,
164
+ ServiceOutputTypes,
165
+ PipesClientResolvedConfig
166
+ > {
167
+ readonly config: PipesClientResolvedConfig;
168
+ constructor(configuration: PipesClientConfig);
169
+ destroy(): void;
170
+ }
171
+ export {};
@@ -0,0 +1,34 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import { CreatePipeRequest, CreatePipeResponse } from "../models/models_0";
10
+ import {
11
+ PipesClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../PipesClient";
15
+ export interface CreatePipeCommandInput extends CreatePipeRequest {}
16
+ export interface CreatePipeCommandOutput
17
+ extends CreatePipeResponse,
18
+ __MetadataBearer {}
19
+ export declare class CreatePipeCommand extends $Command<
20
+ CreatePipeCommandInput,
21
+ CreatePipeCommandOutput,
22
+ PipesClientResolvedConfig
23
+ > {
24
+ readonly input: CreatePipeCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
26
+ constructor(input: CreatePipeCommandInput);
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: PipesClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<CreatePipeCommandInput, CreatePipeCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -0,0 +1,34 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import { DeletePipeRequest, DeletePipeResponse } from "../models/models_0";
10
+ import {
11
+ PipesClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../PipesClient";
15
+ export interface DeletePipeCommandInput extends DeletePipeRequest {}
16
+ export interface DeletePipeCommandOutput
17
+ extends DeletePipeResponse,
18
+ __MetadataBearer {}
19
+ export declare class DeletePipeCommand extends $Command<
20
+ DeletePipeCommandInput,
21
+ DeletePipeCommandOutput,
22
+ PipesClientResolvedConfig
23
+ > {
24
+ readonly input: DeletePipeCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
26
+ constructor(input: DeletePipeCommandInput);
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: PipesClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<DeletePipeCommandInput, DeletePipeCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -0,0 +1,34 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import { DescribePipeRequest, DescribePipeResponse } from "../models/models_0";
10
+ import {
11
+ PipesClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../PipesClient";
15
+ export interface DescribePipeCommandInput extends DescribePipeRequest {}
16
+ export interface DescribePipeCommandOutput
17
+ extends DescribePipeResponse,
18
+ __MetadataBearer {}
19
+ export declare class DescribePipeCommand extends $Command<
20
+ DescribePipeCommandInput,
21
+ DescribePipeCommandOutput,
22
+ PipesClientResolvedConfig
23
+ > {
24
+ readonly input: DescribePipeCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
26
+ constructor(input: DescribePipeCommandInput);
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: PipesClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<DescribePipeCommandInput, DescribePipeCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }