aws-sdk-datapipeline 1.47.0 → 1.48.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datapipeline/client.rb +1 -1
- data/lib/aws-sdk-datapipeline/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-datapipeline.rb +1 -1
- data/sig/client.rbs +390 -0
- data/sig/errors.rbs +31 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +349 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d6d5800b10f4637b6ec81c377c247c6b63762690ea459e4c294d5bbd44457c5d
|
|
4
|
+
data.tar.gz: e66113e083fd2f2b48b6d3624ab2f466076d45720ebf7103d00789b93216c45a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1048e014b41ebcb887e8e6b15f0b9f330242e90cea5b858edc8cd2684a05f1e93122b3f2023c14f525ac6e0679c3a0be733f24fcfa570588fb791a406136872f
|
|
7
|
+
data.tar.gz: 1ed965168b803cec61176c2e0362bd505b6b521ac1890a62f7a0d3896b7514ff2d87f10417d133aca413c28e11e05df8167a42a55161a9d3e349b88f8e3ba41d
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.48.0
|
|
@@ -1390,7 +1390,7 @@ module Aws::DataPipeline
|
|
|
1390
1390
|
params: params,
|
|
1391
1391
|
config: config)
|
|
1392
1392
|
context[:gem_name] = 'aws-sdk-datapipeline'
|
|
1393
|
-
context[:gem_version] = '1.
|
|
1393
|
+
context[:gem_version] = '1.48.0'
|
|
1394
1394
|
Seahorse::Client::Request.new(handlers, context)
|
|
1395
1395
|
end
|
|
1396
1396
|
|
|
@@ -14,6 +14,7 @@ module Aws::DataPipeline
|
|
|
14
14
|
option(
|
|
15
15
|
:endpoint_provider,
|
|
16
16
|
doc_type: 'Aws::DataPipeline::EndpointProvider',
|
|
17
|
+
rbs_type: 'untyped',
|
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
|
19
20
|
'where `parameters` is a Struct similar to '\
|
data/lib/aws-sdk-datapipeline.rb
CHANGED
data/sig/client.rbs
ADDED
|
@@ -0,0 +1,390 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module DataPipeline
|
|
10
|
+
class Client < ::Seahorse::Client::Base
|
|
11
|
+
include ::Aws::ClientStubs
|
|
12
|
+
|
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataPipeline/Client.html#initialize-instance_method
|
|
14
|
+
def self.new: (
|
|
15
|
+
?credentials: untyped,
|
|
16
|
+
?region: String,
|
|
17
|
+
?access_key_id: String,
|
|
18
|
+
?active_endpoint_cache: bool,
|
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
|
20
|
+
?client_side_monitoring: bool,
|
|
21
|
+
?client_side_monitoring_client_id: String,
|
|
22
|
+
?client_side_monitoring_host: String,
|
|
23
|
+
?client_side_monitoring_port: Integer,
|
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
|
25
|
+
?convert_params: bool,
|
|
26
|
+
?correct_clock_skew: bool,
|
|
27
|
+
?defaults_mode: String,
|
|
28
|
+
?disable_host_prefix_injection: bool,
|
|
29
|
+
?disable_request_compression: bool,
|
|
30
|
+
?endpoint: String,
|
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
|
34
|
+
?endpoint_discovery: bool,
|
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
|
36
|
+
?log_formatter: untyped,
|
|
37
|
+
?log_level: Symbol,
|
|
38
|
+
?logger: untyped,
|
|
39
|
+
?max_attempts: Integer,
|
|
40
|
+
?profile: String,
|
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
|
42
|
+
?retry_backoff: Proc,
|
|
43
|
+
?retry_base_delay: Float,
|
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
|
45
|
+
?retry_limit: Integer,
|
|
46
|
+
?retry_max_delay: Integer,
|
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
|
48
|
+
?sdk_ua_app_id: String,
|
|
49
|
+
?secret_access_key: String,
|
|
50
|
+
?session_token: String,
|
|
51
|
+
?simple_json: bool,
|
|
52
|
+
?stub_responses: untyped,
|
|
53
|
+
?token_provider: untyped,
|
|
54
|
+
?use_dualstack_endpoint: bool,
|
|
55
|
+
?use_fips_endpoint: bool,
|
|
56
|
+
?validate_params: bool,
|
|
57
|
+
?endpoint_provider: untyped,
|
|
58
|
+
?http_proxy: String,
|
|
59
|
+
?http_open_timeout: (Float | Integer),
|
|
60
|
+
?http_read_timeout: (Float | Integer),
|
|
61
|
+
?http_idle_timeout: (Float | Integer),
|
|
62
|
+
?http_continue_timeout: (Float | Integer),
|
|
63
|
+
?ssl_timeout: (Float | Integer | nil),
|
|
64
|
+
?http_wire_trace: bool,
|
|
65
|
+
?ssl_verify_peer: bool,
|
|
66
|
+
?ssl_ca_bundle: String,
|
|
67
|
+
?ssl_ca_directory: String,
|
|
68
|
+
?ssl_ca_store: String,
|
|
69
|
+
?on_chunk_received: Proc,
|
|
70
|
+
?on_chunk_sent: Proc,
|
|
71
|
+
?raise_response_errors: bool
|
|
72
|
+
) -> instance
|
|
73
|
+
| (?Hash[Symbol, untyped]) -> instance
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
interface _ActivatePipelineResponseSuccess
|
|
77
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ActivatePipelineOutput]
|
|
78
|
+
end
|
|
79
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataPipeline/Client.html#activate_pipeline-instance_method
|
|
80
|
+
def activate_pipeline: (
|
|
81
|
+
pipeline_id: ::String,
|
|
82
|
+
?parameter_values: Array[
|
|
83
|
+
{
|
|
84
|
+
id: ::String,
|
|
85
|
+
string_value: ::String
|
|
86
|
+
},
|
|
87
|
+
],
|
|
88
|
+
?start_timestamp: ::Time
|
|
89
|
+
) -> _ActivatePipelineResponseSuccess
|
|
90
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ActivatePipelineResponseSuccess
|
|
91
|
+
|
|
92
|
+
interface _AddTagsResponseSuccess
|
|
93
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AddTagsOutput]
|
|
94
|
+
end
|
|
95
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataPipeline/Client.html#add_tags-instance_method
|
|
96
|
+
def add_tags: (
|
|
97
|
+
pipeline_id: ::String,
|
|
98
|
+
tags: Array[
|
|
99
|
+
{
|
|
100
|
+
key: ::String,
|
|
101
|
+
value: ::String
|
|
102
|
+
},
|
|
103
|
+
]
|
|
104
|
+
) -> _AddTagsResponseSuccess
|
|
105
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddTagsResponseSuccess
|
|
106
|
+
|
|
107
|
+
interface _CreatePipelineResponseSuccess
|
|
108
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreatePipelineOutput]
|
|
109
|
+
def pipeline_id: () -> ::String
|
|
110
|
+
end
|
|
111
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataPipeline/Client.html#create_pipeline-instance_method
|
|
112
|
+
def create_pipeline: (
|
|
113
|
+
name: ::String,
|
|
114
|
+
unique_id: ::String,
|
|
115
|
+
?description: ::String,
|
|
116
|
+
?tags: Array[
|
|
117
|
+
{
|
|
118
|
+
key: ::String,
|
|
119
|
+
value: ::String
|
|
120
|
+
},
|
|
121
|
+
]
|
|
122
|
+
) -> _CreatePipelineResponseSuccess
|
|
123
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePipelineResponseSuccess
|
|
124
|
+
|
|
125
|
+
interface _DeactivatePipelineResponseSuccess
|
|
126
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeactivatePipelineOutput]
|
|
127
|
+
end
|
|
128
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataPipeline/Client.html#deactivate_pipeline-instance_method
|
|
129
|
+
def deactivate_pipeline: (
|
|
130
|
+
pipeline_id: ::String,
|
|
131
|
+
?cancel_active: bool
|
|
132
|
+
) -> _DeactivatePipelineResponseSuccess
|
|
133
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeactivatePipelineResponseSuccess
|
|
134
|
+
|
|
135
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataPipeline/Client.html#delete_pipeline-instance_method
|
|
136
|
+
def delete_pipeline: (
|
|
137
|
+
pipeline_id: ::String
|
|
138
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
139
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
140
|
+
|
|
141
|
+
interface _DescribeObjectsResponseSuccess
|
|
142
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeObjectsOutput]
|
|
143
|
+
def pipeline_objects: () -> ::Array[Types::PipelineObject]
|
|
144
|
+
def marker: () -> ::String
|
|
145
|
+
def has_more_results: () -> bool
|
|
146
|
+
end
|
|
147
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataPipeline/Client.html#describe_objects-instance_method
|
|
148
|
+
def describe_objects: (
|
|
149
|
+
pipeline_id: ::String,
|
|
150
|
+
object_ids: Array[::String],
|
|
151
|
+
?evaluate_expressions: bool,
|
|
152
|
+
?marker: ::String
|
|
153
|
+
) -> _DescribeObjectsResponseSuccess
|
|
154
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeObjectsResponseSuccess
|
|
155
|
+
|
|
156
|
+
interface _DescribePipelinesResponseSuccess
|
|
157
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribePipelinesOutput]
|
|
158
|
+
def pipeline_description_list: () -> ::Array[Types::PipelineDescription]
|
|
159
|
+
end
|
|
160
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataPipeline/Client.html#describe_pipelines-instance_method
|
|
161
|
+
def describe_pipelines: (
|
|
162
|
+
pipeline_ids: Array[::String]
|
|
163
|
+
) -> _DescribePipelinesResponseSuccess
|
|
164
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribePipelinesResponseSuccess
|
|
165
|
+
|
|
166
|
+
interface _EvaluateExpressionResponseSuccess
|
|
167
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::EvaluateExpressionOutput]
|
|
168
|
+
def evaluated_expression: () -> ::String
|
|
169
|
+
end
|
|
170
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataPipeline/Client.html#evaluate_expression-instance_method
|
|
171
|
+
def evaluate_expression: (
|
|
172
|
+
pipeline_id: ::String,
|
|
173
|
+
object_id: ::String,
|
|
174
|
+
expression: ::String
|
|
175
|
+
) -> _EvaluateExpressionResponseSuccess
|
|
176
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _EvaluateExpressionResponseSuccess
|
|
177
|
+
|
|
178
|
+
interface _GetPipelineDefinitionResponseSuccess
|
|
179
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetPipelineDefinitionOutput]
|
|
180
|
+
def pipeline_objects: () -> ::Array[Types::PipelineObject]
|
|
181
|
+
def parameter_objects: () -> ::Array[Types::ParameterObject]
|
|
182
|
+
def parameter_values: () -> ::Array[Types::ParameterValue]
|
|
183
|
+
end
|
|
184
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataPipeline/Client.html#get_pipeline_definition-instance_method
|
|
185
|
+
def get_pipeline_definition: (
|
|
186
|
+
pipeline_id: ::String,
|
|
187
|
+
?version: ::String
|
|
188
|
+
) -> _GetPipelineDefinitionResponseSuccess
|
|
189
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPipelineDefinitionResponseSuccess
|
|
190
|
+
|
|
191
|
+
interface _ListPipelinesResponseSuccess
|
|
192
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListPipelinesOutput]
|
|
193
|
+
def pipeline_id_list: () -> ::Array[Types::PipelineIdName]
|
|
194
|
+
def marker: () -> ::String
|
|
195
|
+
def has_more_results: () -> bool
|
|
196
|
+
end
|
|
197
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataPipeline/Client.html#list_pipelines-instance_method
|
|
198
|
+
def list_pipelines: (
|
|
199
|
+
?marker: ::String
|
|
200
|
+
) -> _ListPipelinesResponseSuccess
|
|
201
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPipelinesResponseSuccess
|
|
202
|
+
|
|
203
|
+
interface _PollForTaskResponseSuccess
|
|
204
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PollForTaskOutput]
|
|
205
|
+
def task_object: () -> Types::TaskObject
|
|
206
|
+
end
|
|
207
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataPipeline/Client.html#poll_for_task-instance_method
|
|
208
|
+
def poll_for_task: (
|
|
209
|
+
worker_group: ::String,
|
|
210
|
+
?hostname: ::String,
|
|
211
|
+
?instance_identity: {
|
|
212
|
+
document: ::String?,
|
|
213
|
+
signature: ::String?
|
|
214
|
+
}
|
|
215
|
+
) -> _PollForTaskResponseSuccess
|
|
216
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PollForTaskResponseSuccess
|
|
217
|
+
|
|
218
|
+
interface _PutPipelineDefinitionResponseSuccess
|
|
219
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutPipelineDefinitionOutput]
|
|
220
|
+
def validation_errors: () -> ::Array[Types::ValidationError]
|
|
221
|
+
def validation_warnings: () -> ::Array[Types::ValidationWarning]
|
|
222
|
+
def errored: () -> bool
|
|
223
|
+
end
|
|
224
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataPipeline/Client.html#put_pipeline_definition-instance_method
|
|
225
|
+
def put_pipeline_definition: (
|
|
226
|
+
pipeline_id: ::String,
|
|
227
|
+
pipeline_objects: Array[
|
|
228
|
+
{
|
|
229
|
+
id: ::String,
|
|
230
|
+
name: ::String,
|
|
231
|
+
fields: Array[
|
|
232
|
+
{
|
|
233
|
+
key: ::String,
|
|
234
|
+
string_value: ::String?,
|
|
235
|
+
ref_value: ::String?
|
|
236
|
+
},
|
|
237
|
+
]
|
|
238
|
+
},
|
|
239
|
+
],
|
|
240
|
+
?parameter_objects: Array[
|
|
241
|
+
{
|
|
242
|
+
id: ::String,
|
|
243
|
+
attributes: Array[
|
|
244
|
+
{
|
|
245
|
+
key: ::String,
|
|
246
|
+
string_value: ::String
|
|
247
|
+
},
|
|
248
|
+
]
|
|
249
|
+
},
|
|
250
|
+
],
|
|
251
|
+
?parameter_values: Array[
|
|
252
|
+
{
|
|
253
|
+
id: ::String,
|
|
254
|
+
string_value: ::String
|
|
255
|
+
},
|
|
256
|
+
]
|
|
257
|
+
) -> _PutPipelineDefinitionResponseSuccess
|
|
258
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutPipelineDefinitionResponseSuccess
|
|
259
|
+
|
|
260
|
+
interface _QueryObjectsResponseSuccess
|
|
261
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::QueryObjectsOutput]
|
|
262
|
+
def ids: () -> ::Array[::String]
|
|
263
|
+
def marker: () -> ::String
|
|
264
|
+
def has_more_results: () -> bool
|
|
265
|
+
end
|
|
266
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataPipeline/Client.html#query_objects-instance_method
|
|
267
|
+
def query_objects: (
|
|
268
|
+
pipeline_id: ::String,
|
|
269
|
+
?query: {
|
|
270
|
+
selectors: Array[
|
|
271
|
+
{
|
|
272
|
+
field_name: ::String?,
|
|
273
|
+
operator: {
|
|
274
|
+
type: ("EQ" | "REF_EQ" | "LE" | "GE" | "BETWEEN")?,
|
|
275
|
+
values: Array[::String]?
|
|
276
|
+
}?
|
|
277
|
+
},
|
|
278
|
+
]?
|
|
279
|
+
},
|
|
280
|
+
sphere: ::String,
|
|
281
|
+
?marker: ::String,
|
|
282
|
+
?limit: ::Integer
|
|
283
|
+
) -> _QueryObjectsResponseSuccess
|
|
284
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _QueryObjectsResponseSuccess
|
|
285
|
+
|
|
286
|
+
interface _RemoveTagsResponseSuccess
|
|
287
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RemoveTagsOutput]
|
|
288
|
+
end
|
|
289
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataPipeline/Client.html#remove_tags-instance_method
|
|
290
|
+
def remove_tags: (
|
|
291
|
+
pipeline_id: ::String,
|
|
292
|
+
tag_keys: Array[::String]
|
|
293
|
+
) -> _RemoveTagsResponseSuccess
|
|
294
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RemoveTagsResponseSuccess
|
|
295
|
+
|
|
296
|
+
interface _ReportTaskProgressResponseSuccess
|
|
297
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ReportTaskProgressOutput]
|
|
298
|
+
def canceled: () -> bool
|
|
299
|
+
end
|
|
300
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataPipeline/Client.html#report_task_progress-instance_method
|
|
301
|
+
def report_task_progress: (
|
|
302
|
+
task_id: ::String,
|
|
303
|
+
?fields: Array[
|
|
304
|
+
{
|
|
305
|
+
key: ::String,
|
|
306
|
+
string_value: ::String?,
|
|
307
|
+
ref_value: ::String?
|
|
308
|
+
},
|
|
309
|
+
]
|
|
310
|
+
) -> _ReportTaskProgressResponseSuccess
|
|
311
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ReportTaskProgressResponseSuccess
|
|
312
|
+
|
|
313
|
+
interface _ReportTaskRunnerHeartbeatResponseSuccess
|
|
314
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ReportTaskRunnerHeartbeatOutput]
|
|
315
|
+
def terminate: () -> bool
|
|
316
|
+
end
|
|
317
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataPipeline/Client.html#report_task_runner_heartbeat-instance_method
|
|
318
|
+
def report_task_runner_heartbeat: (
|
|
319
|
+
taskrunner_id: ::String,
|
|
320
|
+
?worker_group: ::String,
|
|
321
|
+
?hostname: ::String
|
|
322
|
+
) -> _ReportTaskRunnerHeartbeatResponseSuccess
|
|
323
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ReportTaskRunnerHeartbeatResponseSuccess
|
|
324
|
+
|
|
325
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataPipeline/Client.html#set_status-instance_method
|
|
326
|
+
def set_status: (
|
|
327
|
+
pipeline_id: ::String,
|
|
328
|
+
object_ids: Array[::String],
|
|
329
|
+
status: ::String
|
|
330
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
331
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
332
|
+
|
|
333
|
+
interface _SetTaskStatusResponseSuccess
|
|
334
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SetTaskStatusOutput]
|
|
335
|
+
end
|
|
336
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataPipeline/Client.html#set_task_status-instance_method
|
|
337
|
+
def set_task_status: (
|
|
338
|
+
task_id: ::String,
|
|
339
|
+
task_status: ("FINISHED" | "FAILED" | "FALSE"),
|
|
340
|
+
?error_id: ::String,
|
|
341
|
+
?error_message: ::String,
|
|
342
|
+
?error_stack_trace: ::String
|
|
343
|
+
) -> _SetTaskStatusResponseSuccess
|
|
344
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetTaskStatusResponseSuccess
|
|
345
|
+
|
|
346
|
+
interface _ValidatePipelineDefinitionResponseSuccess
|
|
347
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ValidatePipelineDefinitionOutput]
|
|
348
|
+
def validation_errors: () -> ::Array[Types::ValidationError]
|
|
349
|
+
def validation_warnings: () -> ::Array[Types::ValidationWarning]
|
|
350
|
+
def errored: () -> bool
|
|
351
|
+
end
|
|
352
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataPipeline/Client.html#validate_pipeline_definition-instance_method
|
|
353
|
+
def validate_pipeline_definition: (
|
|
354
|
+
pipeline_id: ::String,
|
|
355
|
+
pipeline_objects: Array[
|
|
356
|
+
{
|
|
357
|
+
id: ::String,
|
|
358
|
+
name: ::String,
|
|
359
|
+
fields: Array[
|
|
360
|
+
{
|
|
361
|
+
key: ::String,
|
|
362
|
+
string_value: ::String?,
|
|
363
|
+
ref_value: ::String?
|
|
364
|
+
},
|
|
365
|
+
]
|
|
366
|
+
},
|
|
367
|
+
],
|
|
368
|
+
?parameter_objects: Array[
|
|
369
|
+
{
|
|
370
|
+
id: ::String,
|
|
371
|
+
attributes: Array[
|
|
372
|
+
{
|
|
373
|
+
key: ::String,
|
|
374
|
+
string_value: ::String
|
|
375
|
+
},
|
|
376
|
+
]
|
|
377
|
+
},
|
|
378
|
+
],
|
|
379
|
+
?parameter_values: Array[
|
|
380
|
+
{
|
|
381
|
+
id: ::String,
|
|
382
|
+
string_value: ::String
|
|
383
|
+
},
|
|
384
|
+
]
|
|
385
|
+
) -> _ValidatePipelineDefinitionResponseSuccess
|
|
386
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ValidatePipelineDefinitionResponseSuccess
|
|
387
|
+
end
|
|
388
|
+
end
|
|
389
|
+
end
|
|
390
|
+
|
data/sig/errors.rbs
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module DataPipeline
|
|
10
|
+
module Errors
|
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
class InternalServiceError < ::Aws::Errors::ServiceError
|
|
15
|
+
def message: () -> ::String
|
|
16
|
+
end
|
|
17
|
+
class InvalidRequestException < ::Aws::Errors::ServiceError
|
|
18
|
+
def message: () -> ::String
|
|
19
|
+
end
|
|
20
|
+
class PipelineDeletedException < ::Aws::Errors::ServiceError
|
|
21
|
+
def message: () -> ::String
|
|
22
|
+
end
|
|
23
|
+
class PipelineNotFoundException < ::Aws::Errors::ServiceError
|
|
24
|
+
def message: () -> ::String
|
|
25
|
+
end
|
|
26
|
+
class TaskNotFoundException < ::Aws::Errors::ServiceError
|
|
27
|
+
def message: () -> ::String
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
data/sig/resource.rbs
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module DataPipeline
|
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataPipeline/Resource.html
|
|
11
|
+
class Resource
|
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataPipeline/Resource.html#initialize-instance_method
|
|
13
|
+
def initialize: (
|
|
14
|
+
?client: Client,
|
|
15
|
+
?credentials: untyped,
|
|
16
|
+
?region: String,
|
|
17
|
+
?access_key_id: String,
|
|
18
|
+
?active_endpoint_cache: bool,
|
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
|
20
|
+
?client_side_monitoring: bool,
|
|
21
|
+
?client_side_monitoring_client_id: String,
|
|
22
|
+
?client_side_monitoring_host: String,
|
|
23
|
+
?client_side_monitoring_port: Integer,
|
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
|
25
|
+
?convert_params: bool,
|
|
26
|
+
?correct_clock_skew: bool,
|
|
27
|
+
?defaults_mode: String,
|
|
28
|
+
?disable_host_prefix_injection: bool,
|
|
29
|
+
?disable_request_compression: bool,
|
|
30
|
+
?endpoint: String,
|
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
|
34
|
+
?endpoint_discovery: bool,
|
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
|
36
|
+
?log_formatter: untyped,
|
|
37
|
+
?log_level: Symbol,
|
|
38
|
+
?logger: untyped,
|
|
39
|
+
?max_attempts: Integer,
|
|
40
|
+
?profile: String,
|
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
|
42
|
+
?retry_backoff: Proc,
|
|
43
|
+
?retry_base_delay: Float,
|
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
|
45
|
+
?retry_limit: Integer,
|
|
46
|
+
?retry_max_delay: Integer,
|
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
|
48
|
+
?sdk_ua_app_id: String,
|
|
49
|
+
?secret_access_key: String,
|
|
50
|
+
?session_token: String,
|
|
51
|
+
?simple_json: bool,
|
|
52
|
+
?stub_responses: untyped,
|
|
53
|
+
?token_provider: untyped,
|
|
54
|
+
?use_dualstack_endpoint: bool,
|
|
55
|
+
?use_fips_endpoint: bool,
|
|
56
|
+
?validate_params: bool,
|
|
57
|
+
?endpoint_provider: untyped,
|
|
58
|
+
?http_proxy: String,
|
|
59
|
+
?http_open_timeout: (Float | Integer),
|
|
60
|
+
?http_read_timeout: (Float | Integer),
|
|
61
|
+
?http_idle_timeout: (Float | Integer),
|
|
62
|
+
?http_continue_timeout: (Float | Integer),
|
|
63
|
+
?ssl_timeout: (Float | Integer | nil),
|
|
64
|
+
?http_wire_trace: bool,
|
|
65
|
+
?ssl_verify_peer: bool,
|
|
66
|
+
?ssl_ca_bundle: String,
|
|
67
|
+
?ssl_ca_directory: String,
|
|
68
|
+
?ssl_ca_store: String,
|
|
69
|
+
?on_chunk_received: Proc,
|
|
70
|
+
?on_chunk_sent: Proc,
|
|
71
|
+
?raise_response_errors: bool
|
|
72
|
+
) -> void
|
|
73
|
+
| (?Hash[Symbol, untyped]) -> void
|
|
74
|
+
|
|
75
|
+
def client: () -> Client
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
end
|
|
79
|
+
end
|
|
80
|
+
end
|
data/sig/types.rbs
ADDED
|
@@ -0,0 +1,349 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws::DataPipeline
|
|
9
|
+
module Types
|
|
10
|
+
|
|
11
|
+
class ActivatePipelineInput
|
|
12
|
+
attr_accessor pipeline_id: ::String
|
|
13
|
+
attr_accessor parameter_values: ::Array[Types::ParameterValue]
|
|
14
|
+
attr_accessor start_timestamp: ::Time
|
|
15
|
+
SENSITIVE: []
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
class ActivatePipelineOutput < Aws::EmptyStructure
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
class AddTagsInput
|
|
22
|
+
attr_accessor pipeline_id: ::String
|
|
23
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
24
|
+
SENSITIVE: []
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
class AddTagsOutput < Aws::EmptyStructure
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
class CreatePipelineInput
|
|
31
|
+
attr_accessor name: ::String
|
|
32
|
+
attr_accessor unique_id: ::String
|
|
33
|
+
attr_accessor description: ::String
|
|
34
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
35
|
+
SENSITIVE: []
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
class CreatePipelineOutput
|
|
39
|
+
attr_accessor pipeline_id: ::String
|
|
40
|
+
SENSITIVE: []
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
class DeactivatePipelineInput
|
|
44
|
+
attr_accessor pipeline_id: ::String
|
|
45
|
+
attr_accessor cancel_active: bool
|
|
46
|
+
SENSITIVE: []
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
class DeactivatePipelineOutput < Aws::EmptyStructure
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
class DeletePipelineInput
|
|
53
|
+
attr_accessor pipeline_id: ::String
|
|
54
|
+
SENSITIVE: []
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
class DescribeObjectsInput
|
|
58
|
+
attr_accessor pipeline_id: ::String
|
|
59
|
+
attr_accessor object_ids: ::Array[::String]
|
|
60
|
+
attr_accessor evaluate_expressions: bool
|
|
61
|
+
attr_accessor marker: ::String
|
|
62
|
+
SENSITIVE: []
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
class DescribeObjectsOutput
|
|
66
|
+
attr_accessor pipeline_objects: ::Array[Types::PipelineObject]
|
|
67
|
+
attr_accessor marker: ::String
|
|
68
|
+
attr_accessor has_more_results: bool
|
|
69
|
+
SENSITIVE: []
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
class DescribePipelinesInput
|
|
73
|
+
attr_accessor pipeline_ids: ::Array[::String]
|
|
74
|
+
SENSITIVE: []
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
class DescribePipelinesOutput
|
|
78
|
+
attr_accessor pipeline_description_list: ::Array[Types::PipelineDescription]
|
|
79
|
+
SENSITIVE: []
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
class EvaluateExpressionInput
|
|
83
|
+
attr_accessor pipeline_id: ::String
|
|
84
|
+
attr_accessor object_id: ::String
|
|
85
|
+
attr_accessor expression: ::String
|
|
86
|
+
SENSITIVE: []
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
class EvaluateExpressionOutput
|
|
90
|
+
attr_accessor evaluated_expression: ::String
|
|
91
|
+
SENSITIVE: []
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
class Field
|
|
95
|
+
attr_accessor key: ::String
|
|
96
|
+
attr_accessor string_value: ::String
|
|
97
|
+
attr_accessor ref_value: ::String
|
|
98
|
+
SENSITIVE: []
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
class GetPipelineDefinitionInput
|
|
102
|
+
attr_accessor pipeline_id: ::String
|
|
103
|
+
attr_accessor version: ::String
|
|
104
|
+
SENSITIVE: []
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
class GetPipelineDefinitionOutput
|
|
108
|
+
attr_accessor pipeline_objects: ::Array[Types::PipelineObject]
|
|
109
|
+
attr_accessor parameter_objects: ::Array[Types::ParameterObject]
|
|
110
|
+
attr_accessor parameter_values: ::Array[Types::ParameterValue]
|
|
111
|
+
SENSITIVE: []
|
|
112
|
+
end
|
|
113
|
+
|
|
114
|
+
class InstanceIdentity
|
|
115
|
+
attr_accessor document: ::String
|
|
116
|
+
attr_accessor signature: ::String
|
|
117
|
+
SENSITIVE: []
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
class InternalServiceError
|
|
121
|
+
attr_accessor message: ::String
|
|
122
|
+
SENSITIVE: []
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
class InvalidRequestException
|
|
126
|
+
attr_accessor message: ::String
|
|
127
|
+
SENSITIVE: []
|
|
128
|
+
end
|
|
129
|
+
|
|
130
|
+
class ListPipelinesInput
|
|
131
|
+
attr_accessor marker: ::String
|
|
132
|
+
SENSITIVE: []
|
|
133
|
+
end
|
|
134
|
+
|
|
135
|
+
class ListPipelinesOutput
|
|
136
|
+
attr_accessor pipeline_id_list: ::Array[Types::PipelineIdName]
|
|
137
|
+
attr_accessor marker: ::String
|
|
138
|
+
attr_accessor has_more_results: bool
|
|
139
|
+
SENSITIVE: []
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
class Operator
|
|
143
|
+
attr_accessor type: ("EQ" | "REF_EQ" | "LE" | "GE" | "BETWEEN")
|
|
144
|
+
attr_accessor values: ::Array[::String]
|
|
145
|
+
SENSITIVE: []
|
|
146
|
+
end
|
|
147
|
+
|
|
148
|
+
class ParameterAttribute
|
|
149
|
+
attr_accessor key: ::String
|
|
150
|
+
attr_accessor string_value: ::String
|
|
151
|
+
SENSITIVE: []
|
|
152
|
+
end
|
|
153
|
+
|
|
154
|
+
class ParameterObject
|
|
155
|
+
attr_accessor id: ::String
|
|
156
|
+
attr_accessor attributes: ::Array[Types::ParameterAttribute]
|
|
157
|
+
SENSITIVE: []
|
|
158
|
+
end
|
|
159
|
+
|
|
160
|
+
class ParameterValue
|
|
161
|
+
attr_accessor id: ::String
|
|
162
|
+
attr_accessor string_value: ::String
|
|
163
|
+
SENSITIVE: []
|
|
164
|
+
end
|
|
165
|
+
|
|
166
|
+
class PipelineDeletedException
|
|
167
|
+
attr_accessor message: ::String
|
|
168
|
+
SENSITIVE: []
|
|
169
|
+
end
|
|
170
|
+
|
|
171
|
+
class PipelineDescription
|
|
172
|
+
attr_accessor pipeline_id: ::String
|
|
173
|
+
attr_accessor name: ::String
|
|
174
|
+
attr_accessor fields: ::Array[Types::Field]
|
|
175
|
+
attr_accessor description: ::String
|
|
176
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
177
|
+
SENSITIVE: []
|
|
178
|
+
end
|
|
179
|
+
|
|
180
|
+
class PipelineIdName
|
|
181
|
+
attr_accessor id: ::String
|
|
182
|
+
attr_accessor name: ::String
|
|
183
|
+
SENSITIVE: []
|
|
184
|
+
end
|
|
185
|
+
|
|
186
|
+
class PipelineNotFoundException
|
|
187
|
+
attr_accessor message: ::String
|
|
188
|
+
SENSITIVE: []
|
|
189
|
+
end
|
|
190
|
+
|
|
191
|
+
class PipelineObject
|
|
192
|
+
attr_accessor id: ::String
|
|
193
|
+
attr_accessor name: ::String
|
|
194
|
+
attr_accessor fields: ::Array[Types::Field]
|
|
195
|
+
SENSITIVE: []
|
|
196
|
+
end
|
|
197
|
+
|
|
198
|
+
class PollForTaskInput
|
|
199
|
+
attr_accessor worker_group: ::String
|
|
200
|
+
attr_accessor hostname: ::String
|
|
201
|
+
attr_accessor instance_identity: Types::InstanceIdentity
|
|
202
|
+
SENSITIVE: []
|
|
203
|
+
end
|
|
204
|
+
|
|
205
|
+
class PollForTaskOutput
|
|
206
|
+
attr_accessor task_object: Types::TaskObject
|
|
207
|
+
SENSITIVE: []
|
|
208
|
+
end
|
|
209
|
+
|
|
210
|
+
class PutPipelineDefinitionInput
|
|
211
|
+
attr_accessor pipeline_id: ::String
|
|
212
|
+
attr_accessor pipeline_objects: ::Array[Types::PipelineObject]
|
|
213
|
+
attr_accessor parameter_objects: ::Array[Types::ParameterObject]
|
|
214
|
+
attr_accessor parameter_values: ::Array[Types::ParameterValue]
|
|
215
|
+
SENSITIVE: []
|
|
216
|
+
end
|
|
217
|
+
|
|
218
|
+
class PutPipelineDefinitionOutput
|
|
219
|
+
attr_accessor validation_errors: ::Array[Types::ValidationError]
|
|
220
|
+
attr_accessor validation_warnings: ::Array[Types::ValidationWarning]
|
|
221
|
+
attr_accessor errored: bool
|
|
222
|
+
SENSITIVE: []
|
|
223
|
+
end
|
|
224
|
+
|
|
225
|
+
class Query
|
|
226
|
+
attr_accessor selectors: ::Array[Types::Selector]
|
|
227
|
+
SENSITIVE: []
|
|
228
|
+
end
|
|
229
|
+
|
|
230
|
+
class QueryObjectsInput
|
|
231
|
+
attr_accessor pipeline_id: ::String
|
|
232
|
+
attr_accessor query: Types::Query
|
|
233
|
+
attr_accessor sphere: ::String
|
|
234
|
+
attr_accessor marker: ::String
|
|
235
|
+
attr_accessor limit: ::Integer
|
|
236
|
+
SENSITIVE: []
|
|
237
|
+
end
|
|
238
|
+
|
|
239
|
+
class QueryObjectsOutput
|
|
240
|
+
attr_accessor ids: ::Array[::String]
|
|
241
|
+
attr_accessor marker: ::String
|
|
242
|
+
attr_accessor has_more_results: bool
|
|
243
|
+
SENSITIVE: []
|
|
244
|
+
end
|
|
245
|
+
|
|
246
|
+
class RemoveTagsInput
|
|
247
|
+
attr_accessor pipeline_id: ::String
|
|
248
|
+
attr_accessor tag_keys: ::Array[::String]
|
|
249
|
+
SENSITIVE: []
|
|
250
|
+
end
|
|
251
|
+
|
|
252
|
+
class RemoveTagsOutput < Aws::EmptyStructure
|
|
253
|
+
end
|
|
254
|
+
|
|
255
|
+
class ReportTaskProgressInput
|
|
256
|
+
attr_accessor task_id: ::String
|
|
257
|
+
attr_accessor fields: ::Array[Types::Field]
|
|
258
|
+
SENSITIVE: []
|
|
259
|
+
end
|
|
260
|
+
|
|
261
|
+
class ReportTaskProgressOutput
|
|
262
|
+
attr_accessor canceled: bool
|
|
263
|
+
SENSITIVE: []
|
|
264
|
+
end
|
|
265
|
+
|
|
266
|
+
class ReportTaskRunnerHeartbeatInput
|
|
267
|
+
attr_accessor taskrunner_id: ::String
|
|
268
|
+
attr_accessor worker_group: ::String
|
|
269
|
+
attr_accessor hostname: ::String
|
|
270
|
+
SENSITIVE: []
|
|
271
|
+
end
|
|
272
|
+
|
|
273
|
+
class ReportTaskRunnerHeartbeatOutput
|
|
274
|
+
attr_accessor terminate: bool
|
|
275
|
+
SENSITIVE: []
|
|
276
|
+
end
|
|
277
|
+
|
|
278
|
+
class Selector
|
|
279
|
+
attr_accessor field_name: ::String
|
|
280
|
+
attr_accessor operator: Types::Operator
|
|
281
|
+
SENSITIVE: []
|
|
282
|
+
end
|
|
283
|
+
|
|
284
|
+
class SetStatusInput
|
|
285
|
+
attr_accessor pipeline_id: ::String
|
|
286
|
+
attr_accessor object_ids: ::Array[::String]
|
|
287
|
+
attr_accessor status: ::String
|
|
288
|
+
SENSITIVE: []
|
|
289
|
+
end
|
|
290
|
+
|
|
291
|
+
class SetTaskStatusInput
|
|
292
|
+
attr_accessor task_id: ::String
|
|
293
|
+
attr_accessor task_status: ("FINISHED" | "FAILED" | "FALSE")
|
|
294
|
+
attr_accessor error_id: ::String
|
|
295
|
+
attr_accessor error_message: ::String
|
|
296
|
+
attr_accessor error_stack_trace: ::String
|
|
297
|
+
SENSITIVE: []
|
|
298
|
+
end
|
|
299
|
+
|
|
300
|
+
class SetTaskStatusOutput < Aws::EmptyStructure
|
|
301
|
+
end
|
|
302
|
+
|
|
303
|
+
class Tag
|
|
304
|
+
attr_accessor key: ::String
|
|
305
|
+
attr_accessor value: ::String
|
|
306
|
+
SENSITIVE: []
|
|
307
|
+
end
|
|
308
|
+
|
|
309
|
+
class TaskNotFoundException
|
|
310
|
+
attr_accessor message: ::String
|
|
311
|
+
SENSITIVE: []
|
|
312
|
+
end
|
|
313
|
+
|
|
314
|
+
class TaskObject
|
|
315
|
+
attr_accessor task_id: ::String
|
|
316
|
+
attr_accessor pipeline_id: ::String
|
|
317
|
+
attr_accessor attempt_id: ::String
|
|
318
|
+
attr_accessor objects: ::Hash[::String, Types::PipelineObject]
|
|
319
|
+
SENSITIVE: []
|
|
320
|
+
end
|
|
321
|
+
|
|
322
|
+
class ValidatePipelineDefinitionInput
|
|
323
|
+
attr_accessor pipeline_id: ::String
|
|
324
|
+
attr_accessor pipeline_objects: ::Array[Types::PipelineObject]
|
|
325
|
+
attr_accessor parameter_objects: ::Array[Types::ParameterObject]
|
|
326
|
+
attr_accessor parameter_values: ::Array[Types::ParameterValue]
|
|
327
|
+
SENSITIVE: []
|
|
328
|
+
end
|
|
329
|
+
|
|
330
|
+
class ValidatePipelineDefinitionOutput
|
|
331
|
+
attr_accessor validation_errors: ::Array[Types::ValidationError]
|
|
332
|
+
attr_accessor validation_warnings: ::Array[Types::ValidationWarning]
|
|
333
|
+
attr_accessor errored: bool
|
|
334
|
+
SENSITIVE: []
|
|
335
|
+
end
|
|
336
|
+
|
|
337
|
+
class ValidationError
|
|
338
|
+
attr_accessor id: ::String
|
|
339
|
+
attr_accessor errors: ::Array[::String]
|
|
340
|
+
SENSITIVE: []
|
|
341
|
+
end
|
|
342
|
+
|
|
343
|
+
class ValidationWarning
|
|
344
|
+
attr_accessor id: ::String
|
|
345
|
+
attr_accessor warnings: ::Array[::String]
|
|
346
|
+
SENSITIVE: []
|
|
347
|
+
end
|
|
348
|
+
end
|
|
349
|
+
end
|
data/sig/waiters.rbs
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module DataPipeline
|
|
10
|
+
module Waiters
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-datapipeline
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.48.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-01-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '3'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 3.
|
|
22
|
+
version: 3.191.0
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '3'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 3.
|
|
32
|
+
version: 3.191.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -66,13 +66,18 @@ files:
|
|
|
66
66
|
- lib/aws-sdk-datapipeline/plugins/endpoints.rb
|
|
67
67
|
- lib/aws-sdk-datapipeline/resource.rb
|
|
68
68
|
- lib/aws-sdk-datapipeline/types.rb
|
|
69
|
+
- sig/client.rbs
|
|
70
|
+
- sig/errors.rbs
|
|
71
|
+
- sig/resource.rbs
|
|
72
|
+
- sig/types.rbs
|
|
73
|
+
- sig/waiters.rbs
|
|
69
74
|
homepage: https://github.com/aws/aws-sdk-ruby
|
|
70
75
|
licenses:
|
|
71
76
|
- Apache-2.0
|
|
72
77
|
metadata:
|
|
73
78
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-datapipeline
|
|
74
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-datapipeline/CHANGELOG.md
|
|
75
|
-
post_install_message:
|
|
80
|
+
post_install_message:
|
|
76
81
|
rdoc_options: []
|
|
77
82
|
require_paths:
|
|
78
83
|
- lib
|
|
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
87
92
|
- !ruby/object:Gem::Version
|
|
88
93
|
version: '0'
|
|
89
94
|
requirements: []
|
|
90
|
-
rubygems_version: 3.
|
|
91
|
-
signing_key:
|
|
95
|
+
rubygems_version: 3.4.10
|
|
96
|
+
signing_key:
|
|
92
97
|
specification_version: 4
|
|
93
98
|
summary: AWS SDK for Ruby - AWS Data Pipeline
|
|
94
99
|
test_files: []
|