@aws-sdk/client-swf 3.54.1 → 3.58.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/CHANGELOG.md +24 -0
- package/dist-cjs/SWFClient.js +13 -13
- package/dist-cjs/commands/CountClosedWorkflowExecutionsCommand.js +3 -3
- package/dist-cjs/commands/CountOpenWorkflowExecutionsCommand.js +3 -3
- package/dist-cjs/commands/CountPendingActivityTasksCommand.js +3 -3
- package/dist-cjs/commands/CountPendingDecisionTasksCommand.js +3 -3
- package/dist-cjs/commands/DeprecateActivityTypeCommand.js +3 -3
- package/dist-cjs/commands/DeprecateDomainCommand.js +3 -3
- package/dist-cjs/commands/DeprecateWorkflowTypeCommand.js +3 -3
- package/dist-cjs/commands/DescribeActivityTypeCommand.js +3 -3
- package/dist-cjs/commands/DescribeDomainCommand.js +3 -3
- package/dist-cjs/commands/DescribeWorkflowExecutionCommand.js +3 -3
- package/dist-cjs/commands/DescribeWorkflowTypeCommand.js +3 -3
- package/dist-cjs/commands/GetWorkflowExecutionHistoryCommand.js +3 -3
- package/dist-cjs/commands/ListActivityTypesCommand.js +3 -3
- package/dist-cjs/commands/ListClosedWorkflowExecutionsCommand.js +3 -3
- package/dist-cjs/commands/ListDomainsCommand.js +3 -3
- package/dist-cjs/commands/ListOpenWorkflowExecutionsCommand.js +3 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-cjs/commands/ListWorkflowTypesCommand.js +3 -3
- package/dist-cjs/commands/PollForActivityTaskCommand.js +3 -3
- package/dist-cjs/commands/PollForDecisionTaskCommand.js +3 -3
- package/dist-cjs/commands/RecordActivityTaskHeartbeatCommand.js +3 -3
- package/dist-cjs/commands/RegisterActivityTypeCommand.js +3 -3
- package/dist-cjs/commands/RegisterDomainCommand.js +3 -3
- package/dist-cjs/commands/RegisterWorkflowTypeCommand.js +3 -3
- package/dist-cjs/commands/RequestCancelWorkflowExecutionCommand.js +3 -3
- package/dist-cjs/commands/RespondActivityTaskCanceledCommand.js +3 -3
- package/dist-cjs/commands/RespondActivityTaskCompletedCommand.js +3 -3
- package/dist-cjs/commands/RespondActivityTaskFailedCommand.js +3 -3
- package/dist-cjs/commands/RespondDecisionTaskCompletedCommand.js +3 -3
- package/dist-cjs/commands/SignalWorkflowExecutionCommand.js +3 -3
- package/dist-cjs/commands/StartWorkflowExecutionCommand.js +3 -3
- package/dist-cjs/commands/TagResourceCommand.js +3 -3
- package/dist-cjs/commands/TerminateWorkflowExecutionCommand.js +3 -3
- package/dist-cjs/commands/UndeprecateActivityTypeCommand.js +3 -3
- package/dist-cjs/commands/UndeprecateDomainCommand.js +3 -3
- package/dist-cjs/commands/UndeprecateWorkflowTypeCommand.js +3 -3
- package/dist-cjs/commands/UntagResourceCommand.js +3 -3
- package/dist-cjs/endpoints.js +1 -1
- package/dist-cjs/protocols/Aws_json1_0.js +314 -314
- package/dist-cjs/runtimeConfig.browser.js +4 -4
- package/dist-cjs/runtimeConfig.js +9 -9
- package/dist-cjs/runtimeConfig.native.js +1 -1
- package/dist-es/SWF.js +37 -37
- package/dist-es/pagination/GetWorkflowExecutionHistoryPaginator.js +4 -4
- package/dist-es/pagination/ListActivityTypesPaginator.js +4 -4
- package/dist-es/pagination/ListClosedWorkflowExecutionsPaginator.js +4 -4
- package/dist-es/pagination/ListDomainsPaginator.js +4 -4
- package/dist-es/pagination/ListOpenWorkflowExecutionsPaginator.js +4 -4
- package/dist-es/pagination/ListWorkflowTypesPaginator.js +4 -4
- package/dist-es/pagination/PollForDecisionTaskPaginator.js +4 -4
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
- package/package.json +34 -34
|
@@ -11,7 +11,7 @@ class RequestCancelWorkflowExecutionCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "SWFClient";
|
|
@@ -27,10 +27,10 @@ class RequestCancelWorkflowExecutionCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_json1_0_1.serializeAws_json1_0RequestCancelWorkflowExecutionCommand(input, context);
|
|
30
|
+
return (0, Aws_json1_0_1.serializeAws_json1_0RequestCancelWorkflowExecutionCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_json1_0_1.deserializeAws_json1_0RequestCancelWorkflowExecutionCommand(output, context);
|
|
33
|
+
return (0, Aws_json1_0_1.deserializeAws_json1_0RequestCancelWorkflowExecutionCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.RequestCancelWorkflowExecutionCommand = RequestCancelWorkflowExecutionCommand;
|
|
@@ -11,7 +11,7 @@ class RespondActivityTaskCanceledCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "SWFClient";
|
|
@@ -27,10 +27,10 @@ class RespondActivityTaskCanceledCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_json1_0_1.serializeAws_json1_0RespondActivityTaskCanceledCommand(input, context);
|
|
30
|
+
return (0, Aws_json1_0_1.serializeAws_json1_0RespondActivityTaskCanceledCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_json1_0_1.deserializeAws_json1_0RespondActivityTaskCanceledCommand(output, context);
|
|
33
|
+
return (0, Aws_json1_0_1.deserializeAws_json1_0RespondActivityTaskCanceledCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.RespondActivityTaskCanceledCommand = RespondActivityTaskCanceledCommand;
|
|
@@ -11,7 +11,7 @@ class RespondActivityTaskCompletedCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "SWFClient";
|
|
@@ -27,10 +27,10 @@ class RespondActivityTaskCompletedCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_json1_0_1.serializeAws_json1_0RespondActivityTaskCompletedCommand(input, context);
|
|
30
|
+
return (0, Aws_json1_0_1.serializeAws_json1_0RespondActivityTaskCompletedCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_json1_0_1.deserializeAws_json1_0RespondActivityTaskCompletedCommand(output, context);
|
|
33
|
+
return (0, Aws_json1_0_1.deserializeAws_json1_0RespondActivityTaskCompletedCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.RespondActivityTaskCompletedCommand = RespondActivityTaskCompletedCommand;
|
|
@@ -11,7 +11,7 @@ class RespondActivityTaskFailedCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "SWFClient";
|
|
@@ -27,10 +27,10 @@ class RespondActivityTaskFailedCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_json1_0_1.serializeAws_json1_0RespondActivityTaskFailedCommand(input, context);
|
|
30
|
+
return (0, Aws_json1_0_1.serializeAws_json1_0RespondActivityTaskFailedCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_json1_0_1.deserializeAws_json1_0RespondActivityTaskFailedCommand(output, context);
|
|
33
|
+
return (0, Aws_json1_0_1.deserializeAws_json1_0RespondActivityTaskFailedCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.RespondActivityTaskFailedCommand = RespondActivityTaskFailedCommand;
|
|
@@ -11,7 +11,7 @@ class RespondDecisionTaskCompletedCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "SWFClient";
|
|
@@ -27,10 +27,10 @@ class RespondDecisionTaskCompletedCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_json1_0_1.serializeAws_json1_0RespondDecisionTaskCompletedCommand(input, context);
|
|
30
|
+
return (0, Aws_json1_0_1.serializeAws_json1_0RespondDecisionTaskCompletedCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_json1_0_1.deserializeAws_json1_0RespondDecisionTaskCompletedCommand(output, context);
|
|
33
|
+
return (0, Aws_json1_0_1.deserializeAws_json1_0RespondDecisionTaskCompletedCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.RespondDecisionTaskCompletedCommand = RespondDecisionTaskCompletedCommand;
|
|
@@ -11,7 +11,7 @@ class SignalWorkflowExecutionCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "SWFClient";
|
|
@@ -27,10 +27,10 @@ class SignalWorkflowExecutionCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_json1_0_1.serializeAws_json1_0SignalWorkflowExecutionCommand(input, context);
|
|
30
|
+
return (0, Aws_json1_0_1.serializeAws_json1_0SignalWorkflowExecutionCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_json1_0_1.deserializeAws_json1_0SignalWorkflowExecutionCommand(output, context);
|
|
33
|
+
return (0, Aws_json1_0_1.deserializeAws_json1_0SignalWorkflowExecutionCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.SignalWorkflowExecutionCommand = SignalWorkflowExecutionCommand;
|
|
@@ -11,7 +11,7 @@ class StartWorkflowExecutionCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "SWFClient";
|
|
@@ -27,10 +27,10 @@ class StartWorkflowExecutionCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_json1_0_1.serializeAws_json1_0StartWorkflowExecutionCommand(input, context);
|
|
30
|
+
return (0, Aws_json1_0_1.serializeAws_json1_0StartWorkflowExecutionCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_json1_0_1.deserializeAws_json1_0StartWorkflowExecutionCommand(output, context);
|
|
33
|
+
return (0, Aws_json1_0_1.deserializeAws_json1_0StartWorkflowExecutionCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.StartWorkflowExecutionCommand = StartWorkflowExecutionCommand;
|
|
@@ -11,7 +11,7 @@ class TagResourceCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "SWFClient";
|
|
@@ -27,10 +27,10 @@ class TagResourceCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_json1_0_1.serializeAws_json1_0TagResourceCommand(input, context);
|
|
30
|
+
return (0, Aws_json1_0_1.serializeAws_json1_0TagResourceCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_json1_0_1.deserializeAws_json1_0TagResourceCommand(output, context);
|
|
33
|
+
return (0, Aws_json1_0_1.deserializeAws_json1_0TagResourceCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.TagResourceCommand = TagResourceCommand;
|
|
@@ -11,7 +11,7 @@ class TerminateWorkflowExecutionCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "SWFClient";
|
|
@@ -27,10 +27,10 @@ class TerminateWorkflowExecutionCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_json1_0_1.serializeAws_json1_0TerminateWorkflowExecutionCommand(input, context);
|
|
30
|
+
return (0, Aws_json1_0_1.serializeAws_json1_0TerminateWorkflowExecutionCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_json1_0_1.deserializeAws_json1_0TerminateWorkflowExecutionCommand(output, context);
|
|
33
|
+
return (0, Aws_json1_0_1.deserializeAws_json1_0TerminateWorkflowExecutionCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.TerminateWorkflowExecutionCommand = TerminateWorkflowExecutionCommand;
|
|
@@ -11,7 +11,7 @@ class UndeprecateActivityTypeCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "SWFClient";
|
|
@@ -27,10 +27,10 @@ class UndeprecateActivityTypeCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_json1_0_1.serializeAws_json1_0UndeprecateActivityTypeCommand(input, context);
|
|
30
|
+
return (0, Aws_json1_0_1.serializeAws_json1_0UndeprecateActivityTypeCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_json1_0_1.deserializeAws_json1_0UndeprecateActivityTypeCommand(output, context);
|
|
33
|
+
return (0, Aws_json1_0_1.deserializeAws_json1_0UndeprecateActivityTypeCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.UndeprecateActivityTypeCommand = UndeprecateActivityTypeCommand;
|
|
@@ -11,7 +11,7 @@ class UndeprecateDomainCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "SWFClient";
|
|
@@ -27,10 +27,10 @@ class UndeprecateDomainCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_json1_0_1.serializeAws_json1_0UndeprecateDomainCommand(input, context);
|
|
30
|
+
return (0, Aws_json1_0_1.serializeAws_json1_0UndeprecateDomainCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_json1_0_1.deserializeAws_json1_0UndeprecateDomainCommand(output, context);
|
|
33
|
+
return (0, Aws_json1_0_1.deserializeAws_json1_0UndeprecateDomainCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.UndeprecateDomainCommand = UndeprecateDomainCommand;
|
|
@@ -11,7 +11,7 @@ class UndeprecateWorkflowTypeCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "SWFClient";
|
|
@@ -27,10 +27,10 @@ class UndeprecateWorkflowTypeCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_json1_0_1.serializeAws_json1_0UndeprecateWorkflowTypeCommand(input, context);
|
|
30
|
+
return (0, Aws_json1_0_1.serializeAws_json1_0UndeprecateWorkflowTypeCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_json1_0_1.deserializeAws_json1_0UndeprecateWorkflowTypeCommand(output, context);
|
|
33
|
+
return (0, Aws_json1_0_1.deserializeAws_json1_0UndeprecateWorkflowTypeCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.UndeprecateWorkflowTypeCommand = UndeprecateWorkflowTypeCommand;
|
|
@@ -11,7 +11,7 @@ class UntagResourceCommand extends smithy_client_1.Command {
|
|
|
11
11
|
this.input = input;
|
|
12
12
|
}
|
|
13
13
|
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
-
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
15
|
const stack = clientStack.concat(this.middlewareStack);
|
|
16
16
|
const { logger } = configuration;
|
|
17
17
|
const clientName = "SWFClient";
|
|
@@ -27,10 +27,10 @@ class UntagResourceCommand extends smithy_client_1.Command {
|
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
28
|
}
|
|
29
29
|
serialize(input, context) {
|
|
30
|
-
return Aws_json1_0_1.serializeAws_json1_0UntagResourceCommand(input, context);
|
|
30
|
+
return (0, Aws_json1_0_1.serializeAws_json1_0UntagResourceCommand)(input, context);
|
|
31
31
|
}
|
|
32
32
|
deserialize(output, context) {
|
|
33
|
-
return Aws_json1_0_1.deserializeAws_json1_0UntagResourceCommand(output, context);
|
|
33
|
+
return (0, Aws_json1_0_1.deserializeAws_json1_0UntagResourceCommand)(output, context);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
exports.UntagResourceCommand = UntagResourceCommand;
|
package/dist-cjs/endpoints.js
CHANGED
|
@@ -177,7 +177,7 @@ const partitionHash = {
|
|
|
177
177
|
],
|
|
178
178
|
},
|
|
179
179
|
};
|
|
180
|
-
const defaultRegionInfoProvider = async (region, options) => config_resolver_1.getRegionInfo(region, {
|
|
180
|
+
const defaultRegionInfoProvider = async (region, options) => (0, config_resolver_1.getRegionInfo)(region, {
|
|
181
181
|
...options,
|
|
182
182
|
signingService: "swf",
|
|
183
183
|
regionHash,
|