@aws-sdk/client-pipes 3.952.0 → 3.953.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.
- package/dist-cjs/index.js +367 -257
- package/dist-cjs/runtimeConfig.shared.js +7 -1
- package/dist-es/commands/CreatePipeCommand.js +2 -2
- package/dist-es/commands/DeletePipeCommand.js +2 -2
- package/dist-es/commands/DescribePipeCommand.js +2 -2
- package/dist-es/commands/ListPipesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/StartPipeCommand.js +2 -2
- package/dist-es/commands/StopPipeCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdatePipeCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +7 -1
- package/dist-es/schemas/schemas_0.js +276 -275
- package/dist-types/PipesClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +110 -177
- package/dist-types/ts3.4/PipesClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +109 -179
- package/package.json +34 -34
|
@@ -26,7 +26,13 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.pipes",
|
|
32
|
+
xmlNamespace: "http://events.amazonaws.com/doc/2015-10-07",
|
|
33
|
+
version: "2015-10-07",
|
|
34
|
+
serviceTarget: "Pipes",
|
|
35
|
+
},
|
|
30
36
|
serviceId: config?.serviceId ?? "Pipes",
|
|
31
37
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
38
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreatePipe } from "../schemas/schemas_0";
|
|
4
|
+
import { CreatePipe$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreatePipeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreatePipeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Pipes", "CreatePipe", {})
|
|
13
13
|
.n("PipesClient", "CreatePipeCommand")
|
|
14
|
-
.sc(CreatePipe)
|
|
14
|
+
.sc(CreatePipe$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeletePipe } from "../schemas/schemas_0";
|
|
4
|
+
import { DeletePipe$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeletePipeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeletePipeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Pipes", "DeletePipe", {})
|
|
13
13
|
.n("PipesClient", "DeletePipeCommand")
|
|
14
|
-
.sc(DeletePipe)
|
|
14
|
+
.sc(DeletePipe$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribePipe } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribePipe$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribePipeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribePipeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Pipes", "DescribePipe", {})
|
|
13
13
|
.n("PipesClient", "DescribePipeCommand")
|
|
14
|
-
.sc(DescribePipe)
|
|
14
|
+
.sc(DescribePipe$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListPipes } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPipes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPipesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPipesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Pipes", "ListPipes", {})
|
|
13
13
|
.n("PipesClient", "ListPipesCommand")
|
|
14
|
-
.sc(ListPipes)
|
|
14
|
+
.sc(ListPipes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Pipes", "ListTagsForResource", {})
|
|
13
13
|
.n("PipesClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartPipe } from "../schemas/schemas_0";
|
|
4
|
+
import { StartPipe$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartPipeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartPipeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Pipes", "StartPipe", {})
|
|
13
13
|
.n("PipesClient", "StartPipeCommand")
|
|
14
|
-
.sc(StartPipe)
|
|
14
|
+
.sc(StartPipe$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StopPipe } from "../schemas/schemas_0";
|
|
4
|
+
import { StopPipe$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopPipeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopPipeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Pipes", "StopPipe", {})
|
|
13
13
|
.n("PipesClient", "StopPipeCommand")
|
|
14
|
-
.sc(StopPipe)
|
|
14
|
+
.sc(StopPipe$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Pipes", "TagResource", {})
|
|
13
13
|
.n("PipesClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Pipes", "UntagResource", {})
|
|
13
13
|
.n("PipesClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdatePipe } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdatePipe$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdatePipeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdatePipeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Pipes", "UpdatePipe", {})
|
|
13
13
|
.n("PipesClient", "UpdatePipeCommand")
|
|
14
|
-
.sc(UpdatePipe)
|
|
14
|
+
.sc(UpdatePipe$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,13 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.pipes",
|
|
29
|
+
xmlNamespace: "http://events.amazonaws.com/doc/2015-10-07",
|
|
30
|
+
version: "2015-10-07",
|
|
31
|
+
serviceTarget: "Pipes",
|
|
32
|
+
},
|
|
27
33
|
serviceId: config?.serviceId ?? "Pipes",
|
|
28
34
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
35
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|