aws-sdk-datapipeline 1.17.0 → 1.22.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/lib/aws-sdk-datapipeline.rb +4 -2
- data/lib/aws-sdk-datapipeline/client.rb +38 -14
- data/lib/aws-sdk-datapipeline/client_api.rb +2 -0
- data/lib/aws-sdk-datapipeline/customizations.rb +1 -0
- data/lib/aws-sdk-datapipeline/errors.rb +2 -0
- data/lib/aws-sdk-datapipeline/resource.rb +3 -7
- data/lib/aws-sdk-datapipeline/types.rb +53 -0
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ecfa916a224f26a70a7adad94e508318cc4578bfb159141620fb3086012d7212
|
4
|
+
data.tar.gz: f0ed393454cd5448dbec829ac80d367cc09e2bf98d3139376a3b6fe18194e00b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eec53e9aefc567de4db4c8848e967b62f7e443d7ce95498abe7ebf038686a1e7acaa51b29682c4e68f156d74db9693f41e0a8ea7f6d658c294670380a359a048
|
7
|
+
data.tar.gz: 56a249abf2891ed36674247f4d399d46f98926c0b2185dbdb3569df779b38849f1fce46c3547a6b6afe559fdb1207f8ae10986ac624175752e5f3cb94fcd70d3
|
data/lib/aws-sdk-datapipeline.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-datapipeline/customizations'
|
|
42
44
|
#
|
43
45
|
# See {Errors} for more information.
|
44
46
|
#
|
45
|
-
#
|
47
|
+
# @!group service
|
46
48
|
module Aws::DataPipeline
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.22.0'
|
49
51
|
|
50
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::DataPipeline
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -81,13 +85,28 @@ module Aws::DataPipeline
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
82
86
|
# credentials.
|
83
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
86
104
|
#
|
87
|
-
# * `Aws::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,15 +116,15 @@ module Aws::DataPipeline
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
98
117
|
# * `~/.aws/credentials`
|
99
118
|
# * `~/.aws/config`
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
107
126
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
127
|
+
# a default `:region` is searched for in the following locations:
|
109
128
|
#
|
110
129
|
# * `Aws.config[:region]`
|
111
130
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +180,7 @@ module Aws::DataPipeline
|
|
161
180
|
# @option options [String] :endpoint
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
184
|
#
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +195,7 @@ module Aws::DataPipeline
|
|
176
195
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
196
|
#
|
178
197
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
198
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
199
|
#
|
181
200
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
201
|
# The log formatter.
|
@@ -279,8 +298,7 @@ module Aws::DataPipeline
|
|
279
298
|
#
|
280
299
|
# @option options [Integer] :http_read_timeout (60) The default
|
281
300
|
# number of seconds to wait for response data. This value can
|
282
|
-
# safely be set
|
283
|
-
# per-request on the session yielded by {#session_for}.
|
301
|
+
# safely be set per-request on the session.
|
284
302
|
#
|
285
303
|
# @option options [Float] :http_idle_timeout (5) The number of
|
286
304
|
# seconds a connection is allowed to sit idle before it is
|
@@ -292,7 +310,7 @@ module Aws::DataPipeline
|
|
292
310
|
# request body. This option has no effect unless the request has
|
293
311
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
294
312
|
# disables this behaviour. This value can safely be set per
|
295
|
-
# request on the session
|
313
|
+
# request on the session.
|
296
314
|
#
|
297
315
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
298
316
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -550,6 +568,8 @@ module Aws::DataPipeline
|
|
550
568
|
# * {Types::DescribeObjectsOutput#marker #marker} => String
|
551
569
|
# * {Types::DescribeObjectsOutput#has_more_results #has_more_results} => Boolean
|
552
570
|
#
|
571
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
572
|
+
#
|
553
573
|
# @example Request syntax with placeholder values
|
554
574
|
#
|
555
575
|
# resp = client.describe_objects({
|
@@ -734,6 +754,8 @@ module Aws::DataPipeline
|
|
734
754
|
# * {Types::ListPipelinesOutput#marker #marker} => String
|
735
755
|
# * {Types::ListPipelinesOutput#has_more_results #has_more_results} => Boolean
|
736
756
|
#
|
757
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
758
|
+
#
|
737
759
|
# @example Request syntax with placeholder values
|
738
760
|
#
|
739
761
|
# resp = client.list_pipelines({
|
@@ -958,6 +980,8 @@ module Aws::DataPipeline
|
|
958
980
|
# * {Types::QueryObjectsOutput#marker #marker} => String
|
959
981
|
# * {Types::QueryObjectsOutput#has_more_results #has_more_results} => Boolean
|
960
982
|
#
|
983
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
984
|
+
#
|
961
985
|
# @example Request syntax with placeholder values
|
962
986
|
#
|
963
987
|
# resp = client.query_objects({
|
@@ -1305,7 +1329,7 @@ module Aws::DataPipeline
|
|
1305
1329
|
params: params,
|
1306
1330
|
config: config)
|
1307
1331
|
context[:gem_name] = 'aws-sdk-datapipeline'
|
1308
|
-
context[:gem_version] = '1.
|
1332
|
+
context[:gem_version] = '1.22.0'
|
1309
1333
|
Seahorse::Client::Request.new(handlers, context)
|
1310
1334
|
end
|
1311
1335
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,13 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::DataPipeline
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::DataPipeline::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::DataPipeline::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::DataPipeline::Resource.new(client: client)
|
11
|
+
|
16
12
|
class Resource
|
17
13
|
|
18
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -43,6 +45,7 @@ module Aws::DataPipeline
|
|
43
45
|
:pipeline_id,
|
44
46
|
:parameter_values,
|
45
47
|
:start_timestamp)
|
48
|
+
SENSITIVE = []
|
46
49
|
include Aws::Structure
|
47
50
|
end
|
48
51
|
|
@@ -80,6 +83,7 @@ module Aws::DataPipeline
|
|
80
83
|
class AddTagsInput < Struct.new(
|
81
84
|
:pipeline_id,
|
82
85
|
:tags)
|
86
|
+
SENSITIVE = []
|
83
87
|
include Aws::Structure
|
84
88
|
end
|
85
89
|
|
@@ -150,6 +154,7 @@ module Aws::DataPipeline
|
|
150
154
|
:unique_id,
|
151
155
|
:description,
|
152
156
|
:tags)
|
157
|
+
SENSITIVE = []
|
153
158
|
include Aws::Structure
|
154
159
|
end
|
155
160
|
|
@@ -164,6 +169,7 @@ module Aws::DataPipeline
|
|
164
169
|
#
|
165
170
|
class CreatePipelineOutput < Struct.new(
|
166
171
|
:pipeline_id)
|
172
|
+
SENSITIVE = []
|
167
173
|
include Aws::Structure
|
168
174
|
end
|
169
175
|
|
@@ -193,6 +199,7 @@ module Aws::DataPipeline
|
|
193
199
|
class DeactivatePipelineInput < Struct.new(
|
194
200
|
:pipeline_id,
|
195
201
|
:cancel_active)
|
202
|
+
SENSITIVE = []
|
196
203
|
include Aws::Structure
|
197
204
|
end
|
198
205
|
|
@@ -219,6 +226,7 @@ module Aws::DataPipeline
|
|
219
226
|
#
|
220
227
|
class DeletePipelineInput < Struct.new(
|
221
228
|
:pipeline_id)
|
229
|
+
SENSITIVE = []
|
222
230
|
include Aws::Structure
|
223
231
|
end
|
224
232
|
|
@@ -263,6 +271,7 @@ module Aws::DataPipeline
|
|
263
271
|
:object_ids,
|
264
272
|
:evaluate_expressions,
|
265
273
|
:marker)
|
274
|
+
SENSITIVE = []
|
266
275
|
include Aws::Structure
|
267
276
|
end
|
268
277
|
|
@@ -288,6 +297,7 @@ module Aws::DataPipeline
|
|
288
297
|
:pipeline_objects,
|
289
298
|
:marker,
|
290
299
|
:has_more_results)
|
300
|
+
SENSITIVE = []
|
291
301
|
include Aws::Structure
|
292
302
|
end
|
293
303
|
|
@@ -310,6 +320,7 @@ module Aws::DataPipeline
|
|
310
320
|
#
|
311
321
|
class DescribePipelinesInput < Struct.new(
|
312
322
|
:pipeline_ids)
|
323
|
+
SENSITIVE = []
|
313
324
|
include Aws::Structure
|
314
325
|
end
|
315
326
|
|
@@ -323,6 +334,7 @@ module Aws::DataPipeline
|
|
323
334
|
#
|
324
335
|
class DescribePipelinesOutput < Struct.new(
|
325
336
|
:pipeline_description_list)
|
337
|
+
SENSITIVE = []
|
326
338
|
include Aws::Structure
|
327
339
|
end
|
328
340
|
|
@@ -355,6 +367,7 @@ module Aws::DataPipeline
|
|
355
367
|
:pipeline_id,
|
356
368
|
:object_id,
|
357
369
|
:expression)
|
370
|
+
SENSITIVE = []
|
358
371
|
include Aws::Structure
|
359
372
|
end
|
360
373
|
|
@@ -368,6 +381,7 @@ module Aws::DataPipeline
|
|
368
381
|
#
|
369
382
|
class EvaluateExpressionOutput < Struct.new(
|
370
383
|
:evaluated_expression)
|
384
|
+
SENSITIVE = []
|
371
385
|
include Aws::Structure
|
372
386
|
end
|
373
387
|
|
@@ -402,6 +416,7 @@ module Aws::DataPipeline
|
|
402
416
|
:key,
|
403
417
|
:string_value,
|
404
418
|
:ref_value)
|
419
|
+
SENSITIVE = []
|
405
420
|
include Aws::Structure
|
406
421
|
end
|
407
422
|
|
@@ -431,6 +446,7 @@ module Aws::DataPipeline
|
|
431
446
|
class GetPipelineDefinitionInput < Struct.new(
|
432
447
|
:pipeline_id,
|
433
448
|
:version)
|
449
|
+
SENSITIVE = []
|
434
450
|
include Aws::Structure
|
435
451
|
end
|
436
452
|
|
@@ -454,6 +470,7 @@ module Aws::DataPipeline
|
|
454
470
|
:pipeline_objects,
|
455
471
|
:parameter_objects,
|
456
472
|
:parameter_values)
|
473
|
+
SENSITIVE = []
|
457
474
|
include Aws::Structure
|
458
475
|
end
|
459
476
|
|
@@ -494,6 +511,7 @@ module Aws::DataPipeline
|
|
494
511
|
class InstanceIdentity < Struct.new(
|
495
512
|
:document,
|
496
513
|
:signature)
|
514
|
+
SENSITIVE = []
|
497
515
|
include Aws::Structure
|
498
516
|
end
|
499
517
|
|
@@ -507,6 +525,7 @@ module Aws::DataPipeline
|
|
507
525
|
#
|
508
526
|
class InternalServiceError < Struct.new(
|
509
527
|
:message)
|
528
|
+
SENSITIVE = []
|
510
529
|
include Aws::Structure
|
511
530
|
end
|
512
531
|
|
@@ -523,6 +542,7 @@ module Aws::DataPipeline
|
|
523
542
|
#
|
524
543
|
class InvalidRequestException < Struct.new(
|
525
544
|
:message)
|
545
|
+
SENSITIVE = []
|
526
546
|
include Aws::Structure
|
527
547
|
end
|
528
548
|
|
@@ -546,6 +566,7 @@ module Aws::DataPipeline
|
|
546
566
|
#
|
547
567
|
class ListPipelinesInput < Struct.new(
|
548
568
|
:marker)
|
569
|
+
SENSITIVE = []
|
549
570
|
include Aws::Structure
|
550
571
|
end
|
551
572
|
|
@@ -574,6 +595,7 @@ module Aws::DataPipeline
|
|
574
595
|
:pipeline_id_list,
|
575
596
|
:marker,
|
576
597
|
:has_more_results)
|
598
|
+
SENSITIVE = []
|
577
599
|
include Aws::Structure
|
578
600
|
end
|
579
601
|
|
@@ -633,6 +655,7 @@ module Aws::DataPipeline
|
|
633
655
|
class Operator < Struct.new(
|
634
656
|
:type,
|
635
657
|
:values)
|
658
|
+
SENSITIVE = []
|
636
659
|
include Aws::Structure
|
637
660
|
end
|
638
661
|
|
@@ -659,6 +682,7 @@ module Aws::DataPipeline
|
|
659
682
|
class ParameterAttribute < Struct.new(
|
660
683
|
:key,
|
661
684
|
:string_value)
|
685
|
+
SENSITIVE = []
|
662
686
|
include Aws::Structure
|
663
687
|
end
|
664
688
|
|
@@ -690,6 +714,7 @@ module Aws::DataPipeline
|
|
690
714
|
class ParameterObject < Struct.new(
|
691
715
|
:id,
|
692
716
|
:attributes)
|
717
|
+
SENSITIVE = []
|
693
718
|
include Aws::Structure
|
694
719
|
end
|
695
720
|
|
@@ -716,6 +741,7 @@ module Aws::DataPipeline
|
|
716
741
|
class ParameterValue < Struct.new(
|
717
742
|
:id,
|
718
743
|
:string_value)
|
744
|
+
SENSITIVE = []
|
719
745
|
include Aws::Structure
|
720
746
|
end
|
721
747
|
|
@@ -729,6 +755,7 @@ module Aws::DataPipeline
|
|
729
755
|
#
|
730
756
|
class PipelineDeletedException < Struct.new(
|
731
757
|
:message)
|
758
|
+
SENSITIVE = []
|
732
759
|
include Aws::Structure
|
733
760
|
end
|
734
761
|
|
@@ -770,6 +797,7 @@ module Aws::DataPipeline
|
|
770
797
|
:fields,
|
771
798
|
:description,
|
772
799
|
:tags)
|
800
|
+
SENSITIVE = []
|
773
801
|
include Aws::Structure
|
774
802
|
end
|
775
803
|
|
@@ -789,6 +817,7 @@ module Aws::DataPipeline
|
|
789
817
|
class PipelineIdName < Struct.new(
|
790
818
|
:id,
|
791
819
|
:name)
|
820
|
+
SENSITIVE = []
|
792
821
|
include Aws::Structure
|
793
822
|
end
|
794
823
|
|
@@ -803,6 +832,7 @@ module Aws::DataPipeline
|
|
803
832
|
#
|
804
833
|
class PipelineNotFoundException < Struct.new(
|
805
834
|
:message)
|
835
|
+
SENSITIVE = []
|
806
836
|
include Aws::Structure
|
807
837
|
end
|
808
838
|
|
@@ -843,6 +873,7 @@ module Aws::DataPipeline
|
|
843
873
|
:id,
|
844
874
|
:name,
|
845
875
|
:fields)
|
876
|
+
SENSITIVE = []
|
846
877
|
include Aws::Structure
|
847
878
|
end
|
848
879
|
|
@@ -893,6 +924,7 @@ module Aws::DataPipeline
|
|
893
924
|
:worker_group,
|
894
925
|
:hostname,
|
895
926
|
:instance_identity)
|
927
|
+
SENSITIVE = []
|
896
928
|
include Aws::Structure
|
897
929
|
end
|
898
930
|
|
@@ -910,6 +942,7 @@ module Aws::DataPipeline
|
|
910
942
|
#
|
911
943
|
class PollForTaskOutput < Struct.new(
|
912
944
|
:task_object)
|
945
|
+
SENSITIVE = []
|
913
946
|
include Aws::Structure
|
914
947
|
end
|
915
948
|
|
@@ -976,6 +1009,7 @@ module Aws::DataPipeline
|
|
976
1009
|
:pipeline_objects,
|
977
1010
|
:parameter_objects,
|
978
1011
|
:parameter_values)
|
1012
|
+
SENSITIVE = []
|
979
1013
|
include Aws::Structure
|
980
1014
|
end
|
981
1015
|
|
@@ -1004,6 +1038,7 @@ module Aws::DataPipeline
|
|
1004
1038
|
:validation_errors,
|
1005
1039
|
:validation_warnings,
|
1006
1040
|
:errored)
|
1041
|
+
SENSITIVE = []
|
1007
1042
|
include Aws::Structure
|
1008
1043
|
end
|
1009
1044
|
|
@@ -1033,6 +1068,7 @@ module Aws::DataPipeline
|
|
1033
1068
|
#
|
1034
1069
|
class Query < Struct.new(
|
1035
1070
|
:selectors)
|
1071
|
+
SENSITIVE = []
|
1036
1072
|
include Aws::Structure
|
1037
1073
|
end
|
1038
1074
|
|
@@ -1095,6 +1131,7 @@ module Aws::DataPipeline
|
|
1095
1131
|
:sphere,
|
1096
1132
|
:marker,
|
1097
1133
|
:limit)
|
1134
|
+
SENSITIVE = []
|
1098
1135
|
include Aws::Structure
|
1099
1136
|
end
|
1100
1137
|
|
@@ -1121,6 +1158,7 @@ module Aws::DataPipeline
|
|
1121
1158
|
:ids,
|
1122
1159
|
:marker,
|
1123
1160
|
:has_more_results)
|
1161
|
+
SENSITIVE = []
|
1124
1162
|
include Aws::Structure
|
1125
1163
|
end
|
1126
1164
|
|
@@ -1147,6 +1185,7 @@ module Aws::DataPipeline
|
|
1147
1185
|
class RemoveTagsInput < Struct.new(
|
1148
1186
|
:pipeline_id,
|
1149
1187
|
:tag_keys)
|
1188
|
+
SENSITIVE = []
|
1150
1189
|
include Aws::Structure
|
1151
1190
|
end
|
1152
1191
|
|
@@ -1187,6 +1226,7 @@ module Aws::DataPipeline
|
|
1187
1226
|
class ReportTaskProgressInput < Struct.new(
|
1188
1227
|
:task_id,
|
1189
1228
|
:fields)
|
1229
|
+
SENSITIVE = []
|
1190
1230
|
include Aws::Structure
|
1191
1231
|
end
|
1192
1232
|
|
@@ -1202,6 +1242,7 @@ module Aws::DataPipeline
|
|
1202
1242
|
#
|
1203
1243
|
class ReportTaskProgressOutput < Struct.new(
|
1204
1244
|
:canceled)
|
1245
|
+
SENSITIVE = []
|
1205
1246
|
include Aws::Structure
|
1206
1247
|
end
|
1207
1248
|
|
@@ -1243,6 +1284,7 @@ module Aws::DataPipeline
|
|
1243
1284
|
:taskrunner_id,
|
1244
1285
|
:worker_group,
|
1245
1286
|
:hostname)
|
1287
|
+
SENSITIVE = []
|
1246
1288
|
include Aws::Structure
|
1247
1289
|
end
|
1248
1290
|
|
@@ -1256,6 +1298,7 @@ module Aws::DataPipeline
|
|
1256
1298
|
#
|
1257
1299
|
class ReportTaskRunnerHeartbeatOutput < Struct.new(
|
1258
1300
|
:terminate)
|
1301
|
+
SENSITIVE = []
|
1259
1302
|
include Aws::Structure
|
1260
1303
|
end
|
1261
1304
|
|
@@ -1290,6 +1333,7 @@ module Aws::DataPipeline
|
|
1290
1333
|
class Selector < Struct.new(
|
1291
1334
|
:field_name,
|
1292
1335
|
:operator)
|
1336
|
+
SENSITIVE = []
|
1293
1337
|
include Aws::Structure
|
1294
1338
|
end
|
1295
1339
|
|
@@ -1325,6 +1369,7 @@ module Aws::DataPipeline
|
|
1325
1369
|
:pipeline_id,
|
1326
1370
|
:object_ids,
|
1327
1371
|
:status)
|
1372
|
+
SENSITIVE = []
|
1328
1373
|
include Aws::Structure
|
1329
1374
|
end
|
1330
1375
|
|
@@ -1380,6 +1425,7 @@ module Aws::DataPipeline
|
|
1380
1425
|
:error_id,
|
1381
1426
|
:error_message,
|
1382
1427
|
:error_stack_trace)
|
1428
|
+
SENSITIVE = []
|
1383
1429
|
include Aws::Structure
|
1384
1430
|
end
|
1385
1431
|
|
@@ -1431,6 +1477,7 @@ module Aws::DataPipeline
|
|
1431
1477
|
class Tag < Struct.new(
|
1432
1478
|
:key,
|
1433
1479
|
:value)
|
1480
|
+
SENSITIVE = []
|
1434
1481
|
include Aws::Structure
|
1435
1482
|
end
|
1436
1483
|
|
@@ -1444,6 +1491,7 @@ module Aws::DataPipeline
|
|
1444
1491
|
#
|
1445
1492
|
class TaskNotFoundException < Struct.new(
|
1446
1493
|
:message)
|
1494
|
+
SENSITIVE = []
|
1447
1495
|
include Aws::Structure
|
1448
1496
|
end
|
1449
1497
|
|
@@ -1476,6 +1524,7 @@ module Aws::DataPipeline
|
|
1476
1524
|
:pipeline_id,
|
1477
1525
|
:attempt_id,
|
1478
1526
|
:objects)
|
1527
|
+
SENSITIVE = []
|
1479
1528
|
include Aws::Structure
|
1480
1529
|
end
|
1481
1530
|
|
@@ -1542,6 +1591,7 @@ module Aws::DataPipeline
|
|
1542
1591
|
:pipeline_objects,
|
1543
1592
|
:parameter_objects,
|
1544
1593
|
:parameter_values)
|
1594
|
+
SENSITIVE = []
|
1545
1595
|
include Aws::Structure
|
1546
1596
|
end
|
1547
1597
|
|
@@ -1565,6 +1615,7 @@ module Aws::DataPipeline
|
|
1565
1615
|
:validation_errors,
|
1566
1616
|
:validation_warnings,
|
1567
1617
|
:errored)
|
1618
|
+
SENSITIVE = []
|
1568
1619
|
include Aws::Structure
|
1569
1620
|
end
|
1570
1621
|
|
@@ -1585,6 +1636,7 @@ module Aws::DataPipeline
|
|
1585
1636
|
class ValidationError < Struct.new(
|
1586
1637
|
:id,
|
1587
1638
|
:errors)
|
1639
|
+
SENSITIVE = []
|
1588
1640
|
include Aws::Structure
|
1589
1641
|
end
|
1590
1642
|
|
@@ -1605,6 +1657,7 @@ module Aws::DataPipeline
|
|
1605
1657
|
class ValidationWarning < Struct.new(
|
1606
1658
|
:id,
|
1607
1659
|
:warnings)
|
1660
|
+
SENSITIVE = []
|
1608
1661
|
include Aws::Structure
|
1609
1662
|
end
|
1610
1663
|
|
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.22.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-08-25 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.99.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.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -80,7 +80,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
80
80
|
- !ruby/object:Gem::Version
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
|
-
|
83
|
+
rubyforge_project:
|
84
|
+
rubygems_version: 2.7.6.2
|
84
85
|
signing_key:
|
85
86
|
specification_version: 4
|
86
87
|
summary: AWS SDK for Ruby - AWS Data Pipeline
|