@aws-sdk/client-data-pipeline 3.296.0 → 3.297.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 (28) hide show
  1. package/dist-types/DataPipeline.d.ts +284 -264
  2. package/dist-types/DataPipelineClient.d.ts +24 -4
  3. package/dist-types/commands/ActivatePipelineCommand.d.ts +18 -2
  4. package/dist-types/commands/AddTagsCommand.d.ts +16 -0
  5. package/dist-types/commands/CreatePipelineCommand.d.ts +19 -3
  6. package/dist-types/commands/DeactivatePipelineCommand.d.ts +16 -0
  7. package/dist-types/commands/DeletePipelineCommand.d.ts +17 -1
  8. package/dist-types/commands/DescribeObjectsCommand.d.ts +40 -24
  9. package/dist-types/commands/DescribePipelinesCommand.d.ts +42 -26
  10. package/dist-types/commands/EvaluateExpressionCommand.d.ts +19 -3
  11. package/dist-types/commands/GetPipelineDefinitionCommand.d.ts +43 -27
  12. package/dist-types/commands/ListPipelinesCommand.d.ts +23 -7
  13. package/dist-types/commands/PollForTaskCommand.d.ts +56 -40
  14. package/dist-types/commands/PutPipelineDefinitionCommand.d.ts +71 -55
  15. package/dist-types/commands/QueryObjectsCommand.d.ts +22 -6
  16. package/dist-types/commands/RemoveTagsCommand.d.ts +16 -0
  17. package/dist-types/commands/ReportTaskProgressCommand.d.ts +21 -5
  18. package/dist-types/commands/ReportTaskRunnerHeartbeatCommand.d.ts +19 -3
  19. package/dist-types/commands/SetStatusCommand.d.ts +18 -2
  20. package/dist-types/commands/SetTaskStatusCommand.d.ts +19 -3
  21. package/dist-types/commands/ValidatePipelineDefinitionCommand.d.ts +73 -57
  22. package/dist-types/models/DataPipelineServiceException.d.ts +2 -0
  23. package/dist-types/models/models_0.d.ts +62 -0
  24. package/dist-types/pagination/DescribeObjectsPaginator.d.ts +3 -0
  25. package/dist-types/pagination/Interfaces.d.ts +3 -0
  26. package/dist-types/pagination/ListPipelinesPaginator.d.ts +3 -0
  27. package/dist-types/pagination/QueryObjectsPaginator.d.ts +3 -0
  28. package/package.json +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
5
5
  import { QueryObjectsInput, QueryObjectsOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link QueryObjectsCommand}.
8
10
  */
9
11
  export interface QueryObjectsCommandInput extends QueryObjectsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link QueryObjectsCommand}.
13
17
  */
14
18
  export interface QueryObjectsCommandOutput extends QueryObjectsOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Queries the specified pipeline for the names of objects that match the specified set of conditions.</p>
18
23
  *
19
24
  * <examples>
@@ -27,15 +32,15 @@ export interface QueryObjectsCommandOutput extends QueryObjectsOutput, __Metadat
27
32
  * X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT
28
33
  * Authorization: AuthParams
29
34
  *
30
- * {"pipelineId": "df-06372391ZG65EXAMPLE",
35
+ * \{"pipelineId": "df-06372391ZG65EXAMPLE",
31
36
  * "query":
32
- * {"selectors":
37
+ * \{"selectors":
33
38
  * [
34
39
  * ]
35
- * },
40
+ * \},
36
41
  * "sphere": "INSTANCE",
37
42
  * "marker": "",
38
- * "limit": 10}
43
+ * "limit": 10\}
39
44
  *
40
45
  * </request>
41
46
  *
@@ -47,10 +52,10 @@ export interface QueryObjectsCommandOutput extends QueryObjectsOutput, __Metadat
47
52
  * Content-Length: 72
48
53
  * Date: Mon, 12 Nov 2012 17:50:53 GMT
49
54
  *
50
- * {"hasMoreResults": false,
55
+ * \{"hasMoreResults": false,
51
56
  * "ids":
52
57
  * ["@SayHello_1_2012-09-25T17:00:00"]
53
- * }
58
+ * \}
54
59
  * </response>
55
60
  * </examples>
56
61
  * @example
@@ -63,6 +68,8 @@ export interface QueryObjectsCommandOutput extends QueryObjectsOutput, __Metadat
63
68
  * const response = await client.send(command);
64
69
  * ```
65
70
  *
71
+ * @param QueryObjectsCommandInput - {@link QueryObjectsCommandInput}
72
+ * @returns {@link QueryObjectsCommandOutput}
66
73
  * @see {@link QueryObjectsCommandInput} for command's `input` shape.
67
74
  * @see {@link QueryObjectsCommandOutput} for command's `response` shape.
68
75
  * @see {@link DataPipelineClientResolvedConfig | config} for DataPipelineClient's `config` shape.
@@ -84,11 +91,20 @@ export interface QueryObjectsCommandOutput extends QueryObjectsOutput, __Metadat
84
91
  export declare class QueryObjectsCommand extends $Command<QueryObjectsCommandInput, QueryObjectsCommandOutput, DataPipelineClientResolvedConfig> {
85
92
  readonly input: QueryObjectsCommandInput;
86
93
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
94
+ /**
95
+ * @public
96
+ */
87
97
  constructor(input: QueryObjectsCommandInput);
88
98
  /**
89
99
  * @internal
90
100
  */
91
101
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataPipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<QueryObjectsCommandInput, QueryObjectsCommandOutput>;
102
+ /**
103
+ * @internal
104
+ */
92
105
  private serialize;
106
+ /**
107
+ * @internal
108
+ */
93
109
  private deserialize;
94
110
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
5
5
  import { RemoveTagsInput, RemoveTagsOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link RemoveTagsCommand}.
8
10
  */
9
11
  export interface RemoveTagsCommandInput extends RemoveTagsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link RemoveTagsCommand}.
13
17
  */
14
18
  export interface RemoveTagsCommandOutput extends RemoveTagsOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Removes existing tags from the specified pipeline.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface RemoveTagsCommandOutput extends RemoveTagsOutput, __MetadataBea
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param RemoveTagsCommandInput - {@link RemoveTagsCommandInput}
34
+ * @returns {@link RemoveTagsCommandOutput}
28
35
  * @see {@link RemoveTagsCommandInput} for command's `input` shape.
29
36
  * @see {@link RemoveTagsCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataPipelineClientResolvedConfig | config} for DataPipelineClient's `config` shape.
@@ -46,11 +53,20 @@ export interface RemoveTagsCommandOutput extends RemoveTagsOutput, __MetadataBea
46
53
  export declare class RemoveTagsCommand extends $Command<RemoveTagsCommandInput, RemoveTagsCommandOutput, DataPipelineClientResolvedConfig> {
47
54
  readonly input: RemoveTagsCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: RemoveTagsCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataPipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveTagsCommandInput, RemoveTagsCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
5
5
  import { ReportTaskProgressInput, ReportTaskProgressOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ReportTaskProgressCommand}.
8
10
  */
9
11
  export interface ReportTaskProgressCommandInput extends ReportTaskProgressInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ReportTaskProgressCommand}.
13
17
  */
14
18
  export interface ReportTaskProgressCommandOutput extends ReportTaskProgressOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Task runners call <code>ReportTaskProgress</code> when assigned a task to acknowledge that it has the task. If the web service does not
18
23
  * receive this acknowledgement within 2 minutes, it assigns the task in a subsequent <a>PollForTask</a> call. After this initial acknowledgement,
19
24
  * the task runner only needs to report progress every 15 minutes to maintain its ownership of the task. You can change this reporting time
@@ -31,13 +36,13 @@ export interface ReportTaskProgressCommandOutput extends ReportTaskProgressOutpu
31
36
  * X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT
32
37
  * Authorization: AuthParams
33
38
  *
34
- * {"taskId": "aaGgHT4LuH0T0Y0oLrJRjas5qH0d8cDPADxqq3tn+zCWGELkCdV2JprLreXm1oxeP5EFZHFLJ69kjSsLYE0iYHYBYVGBrB+E/pYq7ANEEeGJFnSBMRiXZVA+8UJ3OzcInvXeinqBmBaKwii7hnnKb/AXjXiNTXyxgydX1KAyg1AxkwBYG4cfPYMZbuEbQJFJvv5C/2+GVXz1w94nKYTeUeepwUOFOuRLS6JVtZoYwpF56E+Yfk1IcGpFOvCZ01B4Bkuu7x3J+MD/j6kJgZLAgbCJQtI3eiW3kdGmX0p0I2BdY1ZsX6b4UiSvM3OMj6NEHJCJL4E0ZfitnhCoe24Kvjo6C2hFbZq+ei/HPgSXBQMSagkr4vS9c0ChzxH2+LNYvec6bY4kymkaZI1dvOzmpa0FcnGf5AjSK4GpsViZ/ujz6zxFv81qBXzjF0/4M1775rjV1VUdyKaixiA/sJiACNezqZqETidp8d24BDPRhGsj6pBCrnelqGFrk/gXEXUsJ+xwMifRC8UVwiKekpAvHUywVk7Ku4jH/n3i2VoLRP6FXwpUbelu34iiZ9czpXyLtyPKwxa87dlrnRVURwkcVjOt2Mcrcaqe+cbWHvNRhyrPkkdfSF3ac8/wfgVbXvLEB2k9mKc67aD9rvdc1PKX09Tk8BKklsMTpZ3TRCd4NzQlJKigMe8Jat9+1tKj4Ole5ZzW6uyTu2s2iFjEV8KXu4MaiRJyNKCdKeGhhZWY37Qk4NBK4Ppgu+C6Y41dpfOh288SLDEVx0/UySlqOEdhba7c6BiPp5r3hKj3mk9lFy5OYp1aoGLeeFmjXveTnPdf2gkWqXXg7AUbJ7jEs1F0lKZQg4szep2gcKyAJXgvXLfJJHcha8Lfb/Ee7wYmyOcAaRpDBoFNSbtoVXar46teIrpho+ZDvynUXvU0grHWGOk=:wn3SgymHZM99bEXAMPLE",
39
+ * \{"taskId": "aaGgHT4LuH0T0Y0oLrJRjas5qH0d8cDPADxqq3tn+zCWGELkCdV2JprLreXm1oxeP5EFZHFLJ69kjSsLYE0iYHYBYVGBrB+E/pYq7ANEEeGJFnSBMRiXZVA+8UJ3OzcInvXeinqBmBaKwii7hnnKb/AXjXiNTXyxgydX1KAyg1AxkwBYG4cfPYMZbuEbQJFJvv5C/2+GVXz1w94nKYTeUeepwUOFOuRLS6JVtZoYwpF56E+Yfk1IcGpFOvCZ01B4Bkuu7x3J+MD/j6kJgZLAgbCJQtI3eiW3kdGmX0p0I2BdY1ZsX6b4UiSvM3OMj6NEHJCJL4E0ZfitnhCoe24Kvjo6C2hFbZq+ei/HPgSXBQMSagkr4vS9c0ChzxH2+LNYvec6bY4kymkaZI1dvOzmpa0FcnGf5AjSK4GpsViZ/ujz6zxFv81qBXzjF0/4M1775rjV1VUdyKaixiA/sJiACNezqZqETidp8d24BDPRhGsj6pBCrnelqGFrk/gXEXUsJ+xwMifRC8UVwiKekpAvHUywVk7Ku4jH/n3i2VoLRP6FXwpUbelu34iiZ9czpXyLtyPKwxa87dlrnRVURwkcVjOt2Mcrcaqe+cbWHvNRhyrPkkdfSF3ac8/wfgVbXvLEB2k9mKc67aD9rvdc1PKX09Tk8BKklsMTpZ3TRCd4NzQlJKigMe8Jat9+1tKj4Ole5ZzW6uyTu2s2iFjEV8KXu4MaiRJyNKCdKeGhhZWY37Qk4NBK4Ppgu+C6Y41dpfOh288SLDEVx0/UySlqOEdhba7c6BiPp5r3hKj3mk9lFy5OYp1aoGLeeFmjXveTnPdf2gkWqXXg7AUbJ7jEs1F0lKZQg4szep2gcKyAJXgvXLfJJHcha8Lfb/Ee7wYmyOcAaRpDBoFNSbtoVXar46teIrpho+ZDvynUXvU0grHWGOk=:wn3SgymHZM99bEXAMPLE",
35
40
  * "fields":
36
41
  * [
37
- * {"key": "percentComplete",
38
- * "stringValue": "50"}
42
+ * \{"key": "percentComplete",
43
+ * "stringValue": "50"\}
39
44
  * ]
40
- * }
45
+ * \}
41
46
  *
42
47
  * </request>
43
48
  *
@@ -48,7 +53,7 @@ export interface ReportTaskProgressCommandOutput extends ReportTaskProgressOutpu
48
53
  * Content-Length: 18
49
54
  * Date: Mon, 12 Nov 2012 17:50:53 GMT
50
55
  *
51
- * {"canceled": false}
56
+ * \{"canceled": false\}
52
57
  *
53
58
  * </response>
54
59
  * </examples>
@@ -62,6 +67,8 @@ export interface ReportTaskProgressCommandOutput extends ReportTaskProgressOutpu
62
67
  * const response = await client.send(command);
63
68
  * ```
64
69
  *
70
+ * @param ReportTaskProgressCommandInput - {@link ReportTaskProgressCommandInput}
71
+ * @returns {@link ReportTaskProgressCommandOutput}
65
72
  * @see {@link ReportTaskProgressCommandInput} for command's `input` shape.
66
73
  * @see {@link ReportTaskProgressCommandOutput} for command's `response` shape.
67
74
  * @see {@link DataPipelineClientResolvedConfig | config} for DataPipelineClient's `config` shape.
@@ -86,11 +93,20 @@ export interface ReportTaskProgressCommandOutput extends ReportTaskProgressOutpu
86
93
  export declare class ReportTaskProgressCommand extends $Command<ReportTaskProgressCommandInput, ReportTaskProgressCommandOutput, DataPipelineClientResolvedConfig> {
87
94
  readonly input: ReportTaskProgressCommandInput;
88
95
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
96
+ /**
97
+ * @public
98
+ */
89
99
  constructor(input: ReportTaskProgressCommandInput);
90
100
  /**
91
101
  * @internal
92
102
  */
93
103
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataPipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ReportTaskProgressCommandInput, ReportTaskProgressCommandOutput>;
104
+ /**
105
+ * @internal
106
+ */
94
107
  private serialize;
108
+ /**
109
+ * @internal
110
+ */
95
111
  private deserialize;
96
112
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
5
5
  import { ReportTaskRunnerHeartbeatInput, ReportTaskRunnerHeartbeatOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ReportTaskRunnerHeartbeatCommand}.
8
10
  */
9
11
  export interface ReportTaskRunnerHeartbeatCommandInput extends ReportTaskRunnerHeartbeatInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ReportTaskRunnerHeartbeatCommand}.
13
17
  */
14
18
  export interface ReportTaskRunnerHeartbeatCommandOutput extends ReportTaskRunnerHeartbeatOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Task runners call <code>ReportTaskRunnerHeartbeat</code> every 15 minutes to indicate that they are operational.
18
23
  * If the AWS Data Pipeline Task Runner is launched on a resource managed by AWS Data Pipeline, the web service can use
19
24
  * this call to detect when the task runner application has failed and restart a new instance.</p>
@@ -29,9 +34,9 @@ export interface ReportTaskRunnerHeartbeatCommandOutput extends ReportTaskRunner
29
34
  * X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT
30
35
  * Authorization: AuthParams
31
36
  *
32
- * {"taskrunnerId": "1234567890",
37
+ * \{"taskrunnerId": "1234567890",
33
38
  * "workerGroup": "wg-12345",
34
- * "hostname": "example.com"}
39
+ * "hostname": "example.com"\}
35
40
  *
36
41
  * </request>
37
42
  *
@@ -43,7 +48,7 @@ export interface ReportTaskRunnerHeartbeatCommandOutput extends ReportTaskRunner
43
48
  * Content-Length: 20
44
49
  * Date: Mon, 12 Nov 2012 17:50:53 GMT
45
50
  *
46
- * {"terminate": false}
51
+ * \{"terminate": false\}
47
52
  *
48
53
  * </response>
49
54
  * </examples>
@@ -57,6 +62,8 @@ export interface ReportTaskRunnerHeartbeatCommandOutput extends ReportTaskRunner
57
62
  * const response = await client.send(command);
58
63
  * ```
59
64
  *
65
+ * @param ReportTaskRunnerHeartbeatCommandInput - {@link ReportTaskRunnerHeartbeatCommandInput}
66
+ * @returns {@link ReportTaskRunnerHeartbeatCommandOutput}
60
67
  * @see {@link ReportTaskRunnerHeartbeatCommandInput} for command's `input` shape.
61
68
  * @see {@link ReportTaskRunnerHeartbeatCommandOutput} for command's `response` shape.
62
69
  * @see {@link DataPipelineClientResolvedConfig | config} for DataPipelineClient's `config` shape.
@@ -72,11 +79,20 @@ export interface ReportTaskRunnerHeartbeatCommandOutput extends ReportTaskRunner
72
79
  export declare class ReportTaskRunnerHeartbeatCommand extends $Command<ReportTaskRunnerHeartbeatCommandInput, ReportTaskRunnerHeartbeatCommandOutput, DataPipelineClientResolvedConfig> {
73
80
  readonly input: ReportTaskRunnerHeartbeatCommandInput;
74
81
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
82
+ /**
83
+ * @public
84
+ */
75
85
  constructor(input: ReportTaskRunnerHeartbeatCommandInput);
76
86
  /**
77
87
  * @internal
78
88
  */
79
89
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataPipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ReportTaskRunnerHeartbeatCommandInput, ReportTaskRunnerHeartbeatCommandOutput>;
90
+ /**
91
+ * @internal
92
+ */
80
93
  private serialize;
94
+ /**
95
+ * @internal
96
+ */
81
97
  private deserialize;
82
98
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
5
5
  import { SetStatusInput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link SetStatusCommand}.
8
10
  */
9
11
  export interface SetStatusCommandInput extends SetStatusInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link SetStatusCommand}.
13
17
  */
14
18
  export interface SetStatusCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Requests that the status of the specified physical or logical pipeline objects be updated in the specified pipeline.
18
23
  * This update might not occur immediately, but is eventually consistent. The status that can be set depends on the type of object (for example, DataNode or Activity).
19
24
  * You cannot perform this operation on <code>FINISHED</code> pipelines and attempting to do so returns <code>InvalidRequestException</code>.</p>
@@ -29,10 +34,10 @@ export interface SetStatusCommandOutput extends __MetadataBearer {
29
34
  * X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT
30
35
  * Authorization: AuthParams
31
36
  *
32
- * {"pipelineId": "df-0634701J7KEXAMPLE",
37
+ * \{"pipelineId": "df-0634701J7KEXAMPLE",
33
38
  * "objectIds":
34
39
  * ["o-08600941GHJWMBR9E2"],
35
- * "status": "pause"}
40
+ * "status": "pause"\}
36
41
  *
37
42
  * </request>
38
43
  *
@@ -57,6 +62,8 @@ export interface SetStatusCommandOutput extends __MetadataBearer {
57
62
  * const response = await client.send(command);
58
63
  * ```
59
64
  *
65
+ * @param SetStatusCommandInput - {@link SetStatusCommandInput}
66
+ * @returns {@link SetStatusCommandOutput}
60
67
  * @see {@link SetStatusCommandInput} for command's `input` shape.
61
68
  * @see {@link SetStatusCommandOutput} for command's `response` shape.
62
69
  * @see {@link DataPipelineClientResolvedConfig | config} for DataPipelineClient's `config` shape.
@@ -78,11 +85,20 @@ export interface SetStatusCommandOutput extends __MetadataBearer {
78
85
  export declare class SetStatusCommand extends $Command<SetStatusCommandInput, SetStatusCommandOutput, DataPipelineClientResolvedConfig> {
79
86
  readonly input: SetStatusCommandInput;
80
87
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
88
+ /**
89
+ * @public
90
+ */
81
91
  constructor(input: SetStatusCommandInput);
82
92
  /**
83
93
  * @internal
84
94
  */
85
95
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataPipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SetStatusCommandInput, SetStatusCommandOutput>;
96
+ /**
97
+ * @internal
98
+ */
86
99
  private serialize;
100
+ /**
101
+ * @internal
102
+ */
87
103
  private deserialize;
88
104
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
5
5
  import { SetTaskStatusInput, SetTaskStatusOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link SetTaskStatusCommand}.
8
10
  */
9
11
  export interface SetTaskStatusCommandInput extends SetTaskStatusInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link SetTaskStatusCommand}.
13
17
  */
14
18
  export interface SetTaskStatusCommandOutput extends SetTaskStatusOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Task runners call <code>SetTaskStatus</code> to notify AWS Data Pipeline that a task is completed and provide information about the final status.
18
23
  * A task runner makes this call regardless of whether the task was sucessful. A task runner does not need to call <code>SetTaskStatus</code> for
19
24
  * tasks that are canceled by the web service during a call to <a>ReportTaskProgress</a>.</p>
@@ -29,8 +34,8 @@ export interface SetTaskStatusCommandOutput extends SetTaskStatusOutput, __Metad
29
34
  * X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT
30
35
  * Authorization: AuthParams
31
36
  *
32
- * {"taskId": "aaGgHT4LuH0T0Y0oLrJRjas5qH0d8cDPADxqq3tn+zCWGELkCdV2JprLreXm1oxeP5EFZHFLJ69kjSsLYE0iYHYBYVGBrB+E/pYq7ANEEeGJFnSBMRiXZVA+8UJ3OzcInvXeinqBmBaKwii7hnnKb/AXjXiNTXyxgydX1KAyg1AxkwBYG4cfPYMZbuEbQJFJvv5C/2+GVXz1w94nKYTeUeepwUOFOuRLS6JVtZoYwpF56E+Yfk1IcGpFOvCZ01B4Bkuu7x3J+MD/j6kJgZLAgbCJQtI3eiW3kdGmX0p0I2BdY1ZsX6b4UiSvM3OMj6NEHJCJL4E0ZfitnhCoe24Kvjo6C2hFbZq+ei/HPgSXBQMSagkr4vS9c0ChzxH2+LNYvec6bY4kymkaZI1dvOzmpa0FcnGf5AjSK4GpsViZ/ujz6zxFv81qBXzjF0/4M1775rjV1VUdyKaixiA/sJiACNezqZqETidp8d24BDPRhGsj6pBCrnelqGFrk/gXEXUsJ+xwMifRC8UVwiKekpAvHUywVk7Ku4jH/n3i2VoLRP6FXwpUbelu34iiZ9czpXyLtyPKwxa87dlrnRVURwkcVjOt2Mcrcaqe+cbWHvNRhyrPkkdfSF3ac8/wfgVbXvLEB2k9mKc67aD9rvdc1PKX09Tk8BKklsMTpZ3TRCd4NzQlJKigMe8Jat9+1tKj4Ole5ZzW6uyTu2s2iFjEV8KXu4MaiRJyNKCdKeGhhZWY37Qk4NBK4Ppgu+C6Y41dpfOh288SLDEVx0/UySlqOEdhba7c6BiPp5r3hKj3mk9lFy5OYp1aoGLeeFmjXveTnPdf2gkWqXXg7AUbJ7jEs1F0lKZQg4szep2gcKyAJXgvXLfJJHcha8Lfb/Ee7wYmyOcAaRpDBoFNSbtoVXar46teIrpho+ZDvynUXvU0grHWGOk=:wn3SgymHZM99bEXAMPLE",
33
- * "taskStatus": "FINISHED"}
37
+ * \{"taskId": "aaGgHT4LuH0T0Y0oLrJRjas5qH0d8cDPADxqq3tn+zCWGELkCdV2JprLreXm1oxeP5EFZHFLJ69kjSsLYE0iYHYBYVGBrB+E/pYq7ANEEeGJFnSBMRiXZVA+8UJ3OzcInvXeinqBmBaKwii7hnnKb/AXjXiNTXyxgydX1KAyg1AxkwBYG4cfPYMZbuEbQJFJvv5C/2+GVXz1w94nKYTeUeepwUOFOuRLS6JVtZoYwpF56E+Yfk1IcGpFOvCZ01B4Bkuu7x3J+MD/j6kJgZLAgbCJQtI3eiW3kdGmX0p0I2BdY1ZsX6b4UiSvM3OMj6NEHJCJL4E0ZfitnhCoe24Kvjo6C2hFbZq+ei/HPgSXBQMSagkr4vS9c0ChzxH2+LNYvec6bY4kymkaZI1dvOzmpa0FcnGf5AjSK4GpsViZ/ujz6zxFv81qBXzjF0/4M1775rjV1VUdyKaixiA/sJiACNezqZqETidp8d24BDPRhGsj6pBCrnelqGFrk/gXEXUsJ+xwMifRC8UVwiKekpAvHUywVk7Ku4jH/n3i2VoLRP6FXwpUbelu34iiZ9czpXyLtyPKwxa87dlrnRVURwkcVjOt2Mcrcaqe+cbWHvNRhyrPkkdfSF3ac8/wfgVbXvLEB2k9mKc67aD9rvdc1PKX09Tk8BKklsMTpZ3TRCd4NzQlJKigMe8Jat9+1tKj4Ole5ZzW6uyTu2s2iFjEV8KXu4MaiRJyNKCdKeGhhZWY37Qk4NBK4Ppgu+C6Y41dpfOh288SLDEVx0/UySlqOEdhba7c6BiPp5r3hKj3mk9lFy5OYp1aoGLeeFmjXveTnPdf2gkWqXXg7AUbJ7jEs1F0lKZQg4szep2gcKyAJXgvXLfJJHcha8Lfb/Ee7wYmyOcAaRpDBoFNSbtoVXar46teIrpho+ZDvynUXvU0grHWGOk=:wn3SgymHZM99bEXAMPLE",
38
+ * "taskStatus": "FINISHED"\}
34
39
  *
35
40
  * </request>
36
41
  *
@@ -41,7 +46,7 @@ export interface SetTaskStatusCommandOutput extends SetTaskStatusOutput, __Metad
41
46
  * Content-Length: 0
42
47
  * Date: Mon, 12 Nov 2012 17:50:53 GMT
43
48
  *
44
- * {}
49
+ * \{\}
45
50
  *
46
51
  * </response>
47
52
  * </examples>
@@ -55,6 +60,8 @@ export interface SetTaskStatusCommandOutput extends SetTaskStatusOutput, __Metad
55
60
  * const response = await client.send(command);
56
61
  * ```
57
62
  *
63
+ * @param SetTaskStatusCommandInput - {@link SetTaskStatusCommandInput}
64
+ * @returns {@link SetTaskStatusCommandOutput}
58
65
  * @see {@link SetTaskStatusCommandInput} for command's `input` shape.
59
66
  * @see {@link SetTaskStatusCommandOutput} for command's `response` shape.
60
67
  * @see {@link DataPipelineClientResolvedConfig | config} for DataPipelineClient's `config` shape.
@@ -79,11 +86,20 @@ export interface SetTaskStatusCommandOutput extends SetTaskStatusOutput, __Metad
79
86
  export declare class SetTaskStatusCommand extends $Command<SetTaskStatusCommandInput, SetTaskStatusCommandOutput, DataPipelineClientResolvedConfig> {
80
87
  readonly input: SetTaskStatusCommandInput;
81
88
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
89
+ /**
90
+ * @public
91
+ */
82
92
  constructor(input: SetTaskStatusCommandInput);
83
93
  /**
84
94
  * @internal
85
95
  */
86
96
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataPipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SetTaskStatusCommandInput, SetTaskStatusCommandOutput>;
97
+ /**
98
+ * @internal
99
+ */
87
100
  private serialize;
101
+ /**
102
+ * @internal
103
+ */
88
104
  private deserialize;
89
105
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
5
5
  import { ValidatePipelineDefinitionInput, ValidatePipelineDefinitionOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ValidatePipelineDefinitionCommand}.
8
10
  */
9
11
  export interface ValidatePipelineDefinitionCommandInput extends ValidatePipelineDefinitionInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ValidatePipelineDefinitionCommand}.
13
17
  */
14
18
  export interface ValidatePipelineDefinitionCommandOutput extends ValidatePipelineDefinitionOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Validates the specified pipeline definition to ensure that it is well formed and can be run without error.</p>
18
23
  *
19
24
  * <examples>
@@ -32,48 +37,48 @@ export interface ValidatePipelineDefinitionCommandOutput extends ValidatePipelin
32
37
  * X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT
33
38
  * Authorization: AuthParams
34
39
  *
35
- * {"pipelineId": "df-06372391ZG65EXAMPLE",
40
+ * \{"pipelineId": "df-06372391ZG65EXAMPLE",
36
41
  * "pipelineObjects":
37
42
  * [
38
- * {"id": "Default",
43
+ * \{"id": "Default",
39
44
  * "name": "Default",
40
45
  * "fields":
41
46
  * [
42
- * {"key": "workerGroup",
43
- * "stringValue": "MyworkerGroup"}
47
+ * \{"key": "workerGroup",
48
+ * "stringValue": "MyworkerGroup"\}
44
49
  * ]
45
- * },
46
- * {"id": "Schedule",
50
+ * \},
51
+ * \{"id": "Schedule",
47
52
  * "name": "Schedule",
48
53
  * "fields":
49
54
  * [
50
- * {"key": "startDateTime",
51
- * "stringValue": "2012-09-25T17:00:00"},
52
- * {"key": "type",
53
- * "stringValue": "Schedule"},
54
- * {"key": "period",
55
- * "stringValue": "1 hour"},
56
- * {"key": "endDateTime",
57
- * "stringValue": "2012-09-25T18:00:00"}
55
+ * \{"key": "startDateTime",
56
+ * "stringValue": "2012-09-25T17:00:00"\},
57
+ * \{"key": "type",
58
+ * "stringValue": "Schedule"\},
59
+ * \{"key": "period",
60
+ * "stringValue": "1 hour"\},
61
+ * \{"key": "endDateTime",
62
+ * "stringValue": "2012-09-25T18:00:00"\}
58
63
  * ]
59
- * },
60
- * {"id": "SayHello",
64
+ * \},
65
+ * \{"id": "SayHello",
61
66
  * "name": "SayHello",
62
67
  * "fields":
63
68
  * [
64
- * {"key": "type",
65
- * "stringValue": "ShellCommandActivity"},
66
- * {"key": "command",
67
- * "stringValue": "echo hello"},
68
- * {"key": "parent",
69
- * "refValue": "Default"},
70
- * {"key": "schedule",
71
- * "refValue": "Schedule"}
69
+ * \{"key": "type",
70
+ * "stringValue": "ShellCommandActivity"\},
71
+ * \{"key": "command",
72
+ * "stringValue": "echo hello"\},
73
+ * \{"key": "parent",
74
+ * "refValue": "Default"\},
75
+ * \{"key": "schedule",
76
+ * "refValue": "Schedule"\}
72
77
  *
73
78
  * ]
74
- * }
79
+ * \}
75
80
  * ]
76
- * }
81
+ * \}
77
82
  *
78
83
  * </request>
79
84
  * <response>
@@ -83,7 +88,7 @@ export interface ValidatePipelineDefinitionCommandOutput extends ValidatePipelin
83
88
  * Content-Length: 18
84
89
  * Date: Mon, 12 Nov 2012 17:50:53 GMT
85
90
  *
86
- * {"errored": false}
91
+ * \{"errored": false\}
87
92
  *
88
93
  * </response>
89
94
  * </example>
@@ -103,48 +108,48 @@ export interface ValidatePipelineDefinitionCommandOutput extends ValidatePipelin
103
108
  * X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT
104
109
  * Authorization: AuthParams
105
110
  *
106
- * {"pipelineId": "df-06372391ZG65EXAMPLE",
111
+ * \{"pipelineId": "df-06372391ZG65EXAMPLE",
107
112
  * "pipelineObjects":
108
113
  * [
109
- * {"id": "Default",
114
+ * \{"id": "Default",
110
115
  * "name": "Default",
111
116
  * "fields":
112
117
  * [
113
- * {"key": "workerGroup",
114
- * "stringValue": "MyworkerGroup"}
118
+ * \{"key": "workerGroup",
119
+ * "stringValue": "MyworkerGroup"\}
115
120
  * ]
116
- * },
117
- * {"id": "Schedule",
121
+ * \},
122
+ * \{"id": "Schedule",
118
123
  * "name": "Schedule",
119
124
  * "fields":
120
125
  * [
121
- * {"key": "startDateTime",
122
- * "stringValue": "bad-time"},
123
- * {"key": "type",
124
- * "stringValue": "Schedule"},
125
- * {"key": "period",
126
- * "stringValue": "1 hour"},
127
- * {"key": "endDateTime",
128
- * "stringValue": "2012-09-25T18:00:00"}
126
+ * \{"key": "startDateTime",
127
+ * "stringValue": "bad-time"\},
128
+ * \{"key": "type",
129
+ * "stringValue": "Schedule"\},
130
+ * \{"key": "period",
131
+ * "stringValue": "1 hour"\},
132
+ * \{"key": "endDateTime",
133
+ * "stringValue": "2012-09-25T18:00:00"\}
129
134
  * ]
130
- * },
131
- * {"id": "SayHello",
135
+ * \},
136
+ * \{"id": "SayHello",
132
137
  * "name": "SayHello",
133
138
  * "fields":
134
139
  * [
135
- * {"key": "type",
136
- * "stringValue": "ShellCommandActivity"},
137
- * {"key": "command",
138
- * "stringValue": "echo hello"},
139
- * {"key": "parent",
140
- * "refValue": "Default"},
141
- * {"key": "schedule",
142
- * "refValue": "Schedule"}
140
+ * \{"key": "type",
141
+ * "stringValue": "ShellCommandActivity"\},
142
+ * \{"key": "command",
143
+ * "stringValue": "echo hello"\},
144
+ * \{"key": "parent",
145
+ * "refValue": "Default"\},
146
+ * \{"key": "schedule",
147
+ * "refValue": "Schedule"\}
143
148
  *
144
149
  * ]
145
- * }
150
+ * \}
146
151
  * ]
147
- * }
152
+ * \}
148
153
  *
149
154
  * </request>
150
155
  * <response>
@@ -154,14 +159,14 @@ export interface ValidatePipelineDefinitionCommandOutput extends ValidatePipelin
154
159
  * Content-Length: 278
155
160
  * Date: Mon, 12 Nov 2012 17:50:53 GMT
156
161
  *
157
- * {"errored": true,
162
+ * \{"errored": true,
158
163
  * "validationErrors":
159
164
  * [
160
- * {"errors":
165
+ * \{"errors":
161
166
  * ["INVALID_FIELD_VALUE: 'startDateTime' value must be a literal datetime value."],
162
- * "id": "Schedule"}
167
+ * "id": "Schedule"\}
163
168
  * ]
164
- * }
169
+ * \}
165
170
  *
166
171
  * </response>
167
172
  * </example>
@@ -176,6 +181,8 @@ export interface ValidatePipelineDefinitionCommandOutput extends ValidatePipelin
176
181
  * const response = await client.send(command);
177
182
  * ```
178
183
  *
184
+ * @param ValidatePipelineDefinitionCommandInput - {@link ValidatePipelineDefinitionCommandInput}
185
+ * @returns {@link ValidatePipelineDefinitionCommandOutput}
179
186
  * @see {@link ValidatePipelineDefinitionCommandInput} for command's `input` shape.
180
187
  * @see {@link ValidatePipelineDefinitionCommandOutput} for command's `response` shape.
181
188
  * @see {@link DataPipelineClientResolvedConfig | config} for DataPipelineClient's `config` shape.
@@ -197,11 +204,20 @@ export interface ValidatePipelineDefinitionCommandOutput extends ValidatePipelin
197
204
  export declare class ValidatePipelineDefinitionCommand extends $Command<ValidatePipelineDefinitionCommandInput, ValidatePipelineDefinitionCommandOutput, DataPipelineClientResolvedConfig> {
198
205
  readonly input: ValidatePipelineDefinitionCommandInput;
199
206
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
207
+ /**
208
+ * @public
209
+ */
200
210
  constructor(input: ValidatePipelineDefinitionCommandInput);
201
211
  /**
202
212
  * @internal
203
213
  */
204
214
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataPipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ValidatePipelineDefinitionCommandInput, ValidatePipelineDefinitionCommandOutput>;
215
+ /**
216
+ * @internal
217
+ */
205
218
  private serialize;
219
+ /**
220
+ * @internal
221
+ */
206
222
  private deserialize;
207
223
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from DataPipeline service.
4
6
  */
5
7
  export declare class DataPipelineServiceException extends __ServiceException {