@aws-sdk/client-swf 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 +728 -457
- package/dist-cjs/runtimeConfig.shared.js +7 -6
- package/dist-es/commands/CountClosedWorkflowExecutionsCommand.js +2 -2
- package/dist-es/commands/CountOpenWorkflowExecutionsCommand.js +2 -2
- package/dist-es/commands/CountPendingActivityTasksCommand.js +2 -2
- package/dist-es/commands/CountPendingDecisionTasksCommand.js +2 -2
- package/dist-es/commands/DeleteActivityTypeCommand.js +2 -2
- package/dist-es/commands/DeleteWorkflowTypeCommand.js +2 -2
- package/dist-es/commands/DeprecateActivityTypeCommand.js +2 -2
- package/dist-es/commands/DeprecateDomainCommand.js +2 -2
- package/dist-es/commands/DeprecateWorkflowTypeCommand.js +2 -2
- package/dist-es/commands/DescribeActivityTypeCommand.js +2 -2
- package/dist-es/commands/DescribeDomainCommand.js +2 -2
- package/dist-es/commands/DescribeWorkflowExecutionCommand.js +2 -2
- package/dist-es/commands/DescribeWorkflowTypeCommand.js +2 -2
- package/dist-es/commands/GetWorkflowExecutionHistoryCommand.js +2 -2
- package/dist-es/commands/ListActivityTypesCommand.js +2 -2
- package/dist-es/commands/ListClosedWorkflowExecutionsCommand.js +2 -2
- package/dist-es/commands/ListDomainsCommand.js +2 -2
- package/dist-es/commands/ListOpenWorkflowExecutionsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListWorkflowTypesCommand.js +2 -2
- package/dist-es/commands/PollForActivityTaskCommand.js +2 -2
- package/dist-es/commands/PollForDecisionTaskCommand.js +2 -2
- package/dist-es/commands/RecordActivityTaskHeartbeatCommand.js +2 -2
- package/dist-es/commands/RegisterActivityTypeCommand.js +2 -2
- package/dist-es/commands/RegisterDomainCommand.js +2 -2
- package/dist-es/commands/RegisterWorkflowTypeCommand.js +2 -2
- package/dist-es/commands/RequestCancelWorkflowExecutionCommand.js +2 -2
- package/dist-es/commands/RespondActivityTaskCanceledCommand.js +2 -2
- package/dist-es/commands/RespondActivityTaskCompletedCommand.js +2 -2
- package/dist-es/commands/RespondActivityTaskFailedCommand.js +2 -2
- package/dist-es/commands/RespondDecisionTaskCompletedCommand.js +2 -2
- package/dist-es/commands/SignalWorkflowExecutionCommand.js +2 -2
- package/dist-es/commands/StartWorkflowExecutionCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/TerminateWorkflowExecutionCommand.js +2 -2
- package/dist-es/commands/UndeprecateActivityTypeCommand.js +2 -2
- package/dist-es/commands/UndeprecateDomainCommand.js +2 -2
- package/dist-es/commands/UndeprecateWorkflowTypeCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +7 -6
- package/dist-es/schemas/schemas_0.js +465 -388
- package/dist-types/SWFClient.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 +195 -205
- package/dist-types/ts3.4/SWFClient.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 +194 -205
- package/package.json +34 -34
|
@@ -26,12 +26,13 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_0Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.swf",
|
|
32
|
+
xmlNamespace: "http://swf.amazonaws.com/doc/2012-01-25",
|
|
33
|
+
version: "2012-01-25",
|
|
34
|
+
serviceTarget: "SimpleWorkflowService",
|
|
35
|
+
},
|
|
35
36
|
serviceId: config?.serviceId ?? "SWF",
|
|
36
37
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
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 { CountClosedWorkflowExecutions } from "../schemas/schemas_0";
|
|
4
|
+
import { CountClosedWorkflowExecutions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CountClosedWorkflowExecutionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CountClosedWorkflowExecutionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "CountClosedWorkflowExecutions", {})
|
|
13
13
|
.n("SWFClient", "CountClosedWorkflowExecutionsCommand")
|
|
14
|
-
.sc(CountClosedWorkflowExecutions)
|
|
14
|
+
.sc(CountClosedWorkflowExecutions$)
|
|
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 { CountOpenWorkflowExecutions } from "../schemas/schemas_0";
|
|
4
|
+
import { CountOpenWorkflowExecutions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CountOpenWorkflowExecutionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CountOpenWorkflowExecutionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "CountOpenWorkflowExecutions", {})
|
|
13
13
|
.n("SWFClient", "CountOpenWorkflowExecutionsCommand")
|
|
14
|
-
.sc(CountOpenWorkflowExecutions)
|
|
14
|
+
.sc(CountOpenWorkflowExecutions$)
|
|
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 { CountPendingActivityTasks } from "../schemas/schemas_0";
|
|
4
|
+
import { CountPendingActivityTasks$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CountPendingActivityTasksCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CountPendingActivityTasksCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "CountPendingActivityTasks", {})
|
|
13
13
|
.n("SWFClient", "CountPendingActivityTasksCommand")
|
|
14
|
-
.sc(CountPendingActivityTasks)
|
|
14
|
+
.sc(CountPendingActivityTasks$)
|
|
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 { CountPendingDecisionTasks } from "../schemas/schemas_0";
|
|
4
|
+
import { CountPendingDecisionTasks$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CountPendingDecisionTasksCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CountPendingDecisionTasksCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "CountPendingDecisionTasks", {})
|
|
13
13
|
.n("SWFClient", "CountPendingDecisionTasksCommand")
|
|
14
|
-
.sc(CountPendingDecisionTasks)
|
|
14
|
+
.sc(CountPendingDecisionTasks$)
|
|
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 { DeleteActivityType } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteActivityType$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteActivityTypeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteActivityTypeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "DeleteActivityType", {})
|
|
13
13
|
.n("SWFClient", "DeleteActivityTypeCommand")
|
|
14
|
-
.sc(DeleteActivityType)
|
|
14
|
+
.sc(DeleteActivityType$)
|
|
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 { DeleteWorkflowType } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteWorkflowType$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteWorkflowTypeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteWorkflowTypeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "DeleteWorkflowType", {})
|
|
13
13
|
.n("SWFClient", "DeleteWorkflowTypeCommand")
|
|
14
|
-
.sc(DeleteWorkflowType)
|
|
14
|
+
.sc(DeleteWorkflowType$)
|
|
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 { DeprecateActivityType } from "../schemas/schemas_0";
|
|
4
|
+
import { DeprecateActivityType$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeprecateActivityTypeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeprecateActivityTypeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "DeprecateActivityType", {})
|
|
13
13
|
.n("SWFClient", "DeprecateActivityTypeCommand")
|
|
14
|
-
.sc(DeprecateActivityType)
|
|
14
|
+
.sc(DeprecateActivityType$)
|
|
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 { DeprecateDomain } from "../schemas/schemas_0";
|
|
4
|
+
import { DeprecateDomain$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeprecateDomainCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeprecateDomainCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "DeprecateDomain", {})
|
|
13
13
|
.n("SWFClient", "DeprecateDomainCommand")
|
|
14
|
-
.sc(DeprecateDomain)
|
|
14
|
+
.sc(DeprecateDomain$)
|
|
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 { DeprecateWorkflowType } from "../schemas/schemas_0";
|
|
4
|
+
import { DeprecateWorkflowType$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeprecateWorkflowTypeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeprecateWorkflowTypeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "DeprecateWorkflowType", {})
|
|
13
13
|
.n("SWFClient", "DeprecateWorkflowTypeCommand")
|
|
14
|
-
.sc(DeprecateWorkflowType)
|
|
14
|
+
.sc(DeprecateWorkflowType$)
|
|
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 { DescribeActivityType } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeActivityType$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeActivityTypeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeActivityTypeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "DescribeActivityType", {})
|
|
13
13
|
.n("SWFClient", "DescribeActivityTypeCommand")
|
|
14
|
-
.sc(DescribeActivityType)
|
|
14
|
+
.sc(DescribeActivityType$)
|
|
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 { DescribeDomain } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeDomain$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeDomainCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeDomainCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "DescribeDomain", {})
|
|
13
13
|
.n("SWFClient", "DescribeDomainCommand")
|
|
14
|
-
.sc(DescribeDomain)
|
|
14
|
+
.sc(DescribeDomain$)
|
|
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 { DescribeWorkflowExecution } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeWorkflowExecution$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeWorkflowExecutionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeWorkflowExecutionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "DescribeWorkflowExecution", {})
|
|
13
13
|
.n("SWFClient", "DescribeWorkflowExecutionCommand")
|
|
14
|
-
.sc(DescribeWorkflowExecution)
|
|
14
|
+
.sc(DescribeWorkflowExecution$)
|
|
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 { DescribeWorkflowType } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeWorkflowType$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeWorkflowTypeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeWorkflowTypeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "DescribeWorkflowType", {})
|
|
13
13
|
.n("SWFClient", "DescribeWorkflowTypeCommand")
|
|
14
|
-
.sc(DescribeWorkflowType)
|
|
14
|
+
.sc(DescribeWorkflowType$)
|
|
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 { GetWorkflowExecutionHistory } from "../schemas/schemas_0";
|
|
4
|
+
import { GetWorkflowExecutionHistory$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetWorkflowExecutionHistoryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetWorkflowExecutionHistoryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "GetWorkflowExecutionHistory", {})
|
|
13
13
|
.n("SWFClient", "GetWorkflowExecutionHistoryCommand")
|
|
14
|
-
.sc(GetWorkflowExecutionHistory)
|
|
14
|
+
.sc(GetWorkflowExecutionHistory$)
|
|
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 { ListActivityTypes } from "../schemas/schemas_0";
|
|
4
|
+
import { ListActivityTypes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListActivityTypesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListActivityTypesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "ListActivityTypes", {})
|
|
13
13
|
.n("SWFClient", "ListActivityTypesCommand")
|
|
14
|
-
.sc(ListActivityTypes)
|
|
14
|
+
.sc(ListActivityTypes$)
|
|
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 { ListClosedWorkflowExecutions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListClosedWorkflowExecutions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListClosedWorkflowExecutionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListClosedWorkflowExecutionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "ListClosedWorkflowExecutions", {})
|
|
13
13
|
.n("SWFClient", "ListClosedWorkflowExecutionsCommand")
|
|
14
|
-
.sc(ListClosedWorkflowExecutions)
|
|
14
|
+
.sc(ListClosedWorkflowExecutions$)
|
|
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 { ListDomains } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDomains$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDomainsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDomainsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "ListDomains", {})
|
|
13
13
|
.n("SWFClient", "ListDomainsCommand")
|
|
14
|
-
.sc(ListDomains)
|
|
14
|
+
.sc(ListDomains$)
|
|
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 { ListOpenWorkflowExecutions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListOpenWorkflowExecutions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListOpenWorkflowExecutionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListOpenWorkflowExecutionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "ListOpenWorkflowExecutions", {})
|
|
13
13
|
.n("SWFClient", "ListOpenWorkflowExecutionsCommand")
|
|
14
|
-
.sc(ListOpenWorkflowExecutions)
|
|
14
|
+
.sc(ListOpenWorkflowExecutions$)
|
|
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("SimpleWorkflowService", "ListTagsForResource", {})
|
|
13
13
|
.n("SWFClient", "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 { ListWorkflowTypes } from "../schemas/schemas_0";
|
|
4
|
+
import { ListWorkflowTypes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListWorkflowTypesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListWorkflowTypesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "ListWorkflowTypes", {})
|
|
13
13
|
.n("SWFClient", "ListWorkflowTypesCommand")
|
|
14
|
-
.sc(ListWorkflowTypes)
|
|
14
|
+
.sc(ListWorkflowTypes$)
|
|
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 { PollForActivityTask } from "../schemas/schemas_0";
|
|
4
|
+
import { PollForActivityTask$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PollForActivityTaskCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PollForActivityTaskCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "PollForActivityTask", {})
|
|
13
13
|
.n("SWFClient", "PollForActivityTaskCommand")
|
|
14
|
-
.sc(PollForActivityTask)
|
|
14
|
+
.sc(PollForActivityTask$)
|
|
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 { PollForDecisionTask } from "../schemas/schemas_0";
|
|
4
|
+
import { PollForDecisionTask$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PollForDecisionTaskCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PollForDecisionTaskCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "PollForDecisionTask", {})
|
|
13
13
|
.n("SWFClient", "PollForDecisionTaskCommand")
|
|
14
|
-
.sc(PollForDecisionTask)
|
|
14
|
+
.sc(PollForDecisionTask$)
|
|
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 { RecordActivityTaskHeartbeat } from "../schemas/schemas_0";
|
|
4
|
+
import { RecordActivityTaskHeartbeat$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RecordActivityTaskHeartbeatCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RecordActivityTaskHeartbeatCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "RecordActivityTaskHeartbeat", {})
|
|
13
13
|
.n("SWFClient", "RecordActivityTaskHeartbeatCommand")
|
|
14
|
-
.sc(RecordActivityTaskHeartbeat)
|
|
14
|
+
.sc(RecordActivityTaskHeartbeat$)
|
|
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 { RegisterActivityType } from "../schemas/schemas_0";
|
|
4
|
+
import { RegisterActivityType$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RegisterActivityTypeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RegisterActivityTypeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "RegisterActivityType", {})
|
|
13
13
|
.n("SWFClient", "RegisterActivityTypeCommand")
|
|
14
|
-
.sc(RegisterActivityType)
|
|
14
|
+
.sc(RegisterActivityType$)
|
|
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 { RegisterDomain } from "../schemas/schemas_0";
|
|
4
|
+
import { RegisterDomain$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RegisterDomainCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RegisterDomainCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "RegisterDomain", {})
|
|
13
13
|
.n("SWFClient", "RegisterDomainCommand")
|
|
14
|
-
.sc(RegisterDomain)
|
|
14
|
+
.sc(RegisterDomain$)
|
|
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 { RegisterWorkflowType } from "../schemas/schemas_0";
|
|
4
|
+
import { RegisterWorkflowType$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RegisterWorkflowTypeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RegisterWorkflowTypeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "RegisterWorkflowType", {})
|
|
13
13
|
.n("SWFClient", "RegisterWorkflowTypeCommand")
|
|
14
|
-
.sc(RegisterWorkflowType)
|
|
14
|
+
.sc(RegisterWorkflowType$)
|
|
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 { RequestCancelWorkflowExecution } from "../schemas/schemas_0";
|
|
4
|
+
import { RequestCancelWorkflowExecution$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RequestCancelWorkflowExecutionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RequestCancelWorkflowExecutionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "RequestCancelWorkflowExecution", {})
|
|
13
13
|
.n("SWFClient", "RequestCancelWorkflowExecutionCommand")
|
|
14
|
-
.sc(RequestCancelWorkflowExecution)
|
|
14
|
+
.sc(RequestCancelWorkflowExecution$)
|
|
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 { RespondActivityTaskCanceled } from "../schemas/schemas_0";
|
|
4
|
+
import { RespondActivityTaskCanceled$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RespondActivityTaskCanceledCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RespondActivityTaskCanceledCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "RespondActivityTaskCanceled", {})
|
|
13
13
|
.n("SWFClient", "RespondActivityTaskCanceledCommand")
|
|
14
|
-
.sc(RespondActivityTaskCanceled)
|
|
14
|
+
.sc(RespondActivityTaskCanceled$)
|
|
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 { RespondActivityTaskCompleted } from "../schemas/schemas_0";
|
|
4
|
+
import { RespondActivityTaskCompleted$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RespondActivityTaskCompletedCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RespondActivityTaskCompletedCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "RespondActivityTaskCompleted", {})
|
|
13
13
|
.n("SWFClient", "RespondActivityTaskCompletedCommand")
|
|
14
|
-
.sc(RespondActivityTaskCompleted)
|
|
14
|
+
.sc(RespondActivityTaskCompleted$)
|
|
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 { RespondActivityTaskFailed } from "../schemas/schemas_0";
|
|
4
|
+
import { RespondActivityTaskFailed$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RespondActivityTaskFailedCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RespondActivityTaskFailedCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "RespondActivityTaskFailed", {})
|
|
13
13
|
.n("SWFClient", "RespondActivityTaskFailedCommand")
|
|
14
|
-
.sc(RespondActivityTaskFailed)
|
|
14
|
+
.sc(RespondActivityTaskFailed$)
|
|
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 { RespondDecisionTaskCompleted } from "../schemas/schemas_0";
|
|
4
|
+
import { RespondDecisionTaskCompleted$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RespondDecisionTaskCompletedCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RespondDecisionTaskCompletedCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "RespondDecisionTaskCompleted", {})
|
|
13
13
|
.n("SWFClient", "RespondDecisionTaskCompletedCommand")
|
|
14
|
-
.sc(RespondDecisionTaskCompleted)
|
|
14
|
+
.sc(RespondDecisionTaskCompleted$)
|
|
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 { SignalWorkflowExecution } from "../schemas/schemas_0";
|
|
4
|
+
import { SignalWorkflowExecution$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SignalWorkflowExecutionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SignalWorkflowExecutionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "SignalWorkflowExecution", {})
|
|
13
13
|
.n("SWFClient", "SignalWorkflowExecutionCommand")
|
|
14
|
-
.sc(SignalWorkflowExecution)
|
|
14
|
+
.sc(SignalWorkflowExecution$)
|
|
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 { StartWorkflowExecution } from "../schemas/schemas_0";
|
|
4
|
+
import { StartWorkflowExecution$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartWorkflowExecutionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartWorkflowExecutionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "StartWorkflowExecution", {})
|
|
13
13
|
.n("SWFClient", "StartWorkflowExecutionCommand")
|
|
14
|
-
.sc(StartWorkflowExecution)
|
|
14
|
+
.sc(StartWorkflowExecution$)
|
|
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("SimpleWorkflowService", "TagResource", {})
|
|
13
13
|
.n("SWFClient", "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 { TerminateWorkflowExecution } from "../schemas/schemas_0";
|
|
4
|
+
import { TerminateWorkflowExecution$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TerminateWorkflowExecutionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TerminateWorkflowExecutionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SimpleWorkflowService", "TerminateWorkflowExecution", {})
|
|
13
13
|
.n("SWFClient", "TerminateWorkflowExecutionCommand")
|
|
14
|
-
.sc(TerminateWorkflowExecution)
|
|
14
|
+
.sc(TerminateWorkflowExecution$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|