aws-sdk-datapipeline 1.11.0 → 1.12.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 722c53b0220c2cf5fed0be67e5e1ebcf71e337b6
4
- data.tar.gz: 3884d291e68db9e30ab0b1046ef00bd017446964
3
+ metadata.gz: 1427e42322f2d63047671993946e1bc1d39e6470
4
+ data.tar.gz: 328ff6d5b0aefb25458e047f5895e2f3a95b1551
5
5
  SHA512:
6
- metadata.gz: 939274e46ef11d4d3c42e38b60b48d8bec7a2482fa93824bc24d8d00abde85193ef46cd8ca21a09bfbbd8f741223dd8303d0322fa2965243e162b76e4bc82fb8
7
- data.tar.gz: 9c874deefb59ed6387dfcf36dd043070b99ad7e1608d9cf50c29ce147c736b787bedd4774422e8e042a413381f37f3b81dd7b94977389585a26cdfbb9ae7953a
6
+ metadata.gz: d0baf3350fd52706ac5fc4c3b3a1dbf6d804affd41ce127f75be10bff12ebdd8374ce82ca7b2ed12fe2bd4831ea5b21a83e5745482df623dfb7280d8dee171d8
7
+ data.tar.gz: dcf5d7a11ec3dc8cdf104db7c4d456c388f6bd491e4ec21f67fb03f29162d8d1f61a4c63c76a78dc75ac0584e268a317e767e10ef44464b92e85a3e921aaf882
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-datapipeline/customizations'
42
42
  # @service
43
43
  module Aws::DataPipeline
44
44
 
45
- GEM_VERSION = '1.11.0'
45
+ GEM_VERSION = '1.12.0'
46
46
 
47
47
  end
@@ -1246,7 +1246,7 @@ module Aws::DataPipeline
1246
1246
  params: params,
1247
1247
  config: config)
1248
1248
  context[:gem_name] = 'aws-sdk-datapipeline'
1249
- context[:gem_version] = '1.11.0'
1249
+ context[:gem_version] = '1.12.0'
1250
1250
  Seahorse::Client::Request.new(handlers, context)
1251
1251
  end
1252
1252
 
@@ -175,6 +175,12 @@ module Aws::DataPipeline
175
175
  InstanceIdentity.add_member(:signature, Shapes::ShapeRef.new(shape: string, location_name: "signature"))
176
176
  InstanceIdentity.struct_class = Types::InstanceIdentity
177
177
 
178
+ InternalServiceError.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
179
+ InternalServiceError.struct_class = Types::InternalServiceError
180
+
181
+ InvalidRequestException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
182
+ InvalidRequestException.struct_class = Types::InvalidRequestException
183
+
178
184
  ListPipelinesInput.add_member(:marker, Shapes::ShapeRef.new(shape: string, location_name: "marker"))
179
185
  ListPipelinesInput.struct_class = Types::ListPipelinesInput
180
186
 
@@ -205,6 +211,9 @@ module Aws::DataPipeline
205
211
 
206
212
  ParameterValueList.member = Shapes::ShapeRef.new(shape: ParameterValue)
207
213
 
214
+ PipelineDeletedException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
215
+ PipelineDeletedException.struct_class = Types::PipelineDeletedException
216
+
208
217
  PipelineDescription.add_member(:pipeline_id, Shapes::ShapeRef.new(shape: id, required: true, location_name: "pipelineId"))
209
218
  PipelineDescription.add_member(:name, Shapes::ShapeRef.new(shape: id, required: true, location_name: "name"))
210
219
  PipelineDescription.add_member(:fields, Shapes::ShapeRef.new(shape: fieldList, required: true, location_name: "fields"))
@@ -218,6 +227,9 @@ module Aws::DataPipeline
218
227
  PipelineIdName.add_member(:name, Shapes::ShapeRef.new(shape: id, location_name: "name"))
219
228
  PipelineIdName.struct_class = Types::PipelineIdName
220
229
 
230
+ PipelineNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
231
+ PipelineNotFoundException.struct_class = Types::PipelineNotFoundException
232
+
221
233
  PipelineObject.add_member(:id, Shapes::ShapeRef.new(shape: id, required: true, location_name: "id"))
222
234
  PipelineObject.add_member(:name, Shapes::ShapeRef.new(shape: id, required: true, location_name: "name"))
223
235
  PipelineObject.add_member(:fields, Shapes::ShapeRef.new(shape: fieldList, required: true, location_name: "fields"))
@@ -307,6 +319,9 @@ module Aws::DataPipeline
307
319
  Tag.add_member(:value, Shapes::ShapeRef.new(shape: tagValue, required: true, location_name: "value"))
308
320
  Tag.struct_class = Types::Tag
309
321
 
322
+ TaskNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
323
+ TaskNotFoundException.struct_class = Types::TaskNotFoundException
324
+
310
325
  TaskObject.add_member(:task_id, Shapes::ShapeRef.new(shape: taskId, location_name: "taskId"))
311
326
  TaskObject.add_member(:pipeline_id, Shapes::ShapeRef.new(shape: id, location_name: "pipelineId"))
312
327
  TaskObject.add_member(:attempt_id, Shapes::ShapeRef.new(shape: id, location_name: "attemptId"))
@@ -10,5 +10,85 @@ module Aws::DataPipeline
10
10
 
11
11
  extend Aws::Errors::DynamicErrors
12
12
 
13
+ class InternalServiceError < ServiceError
14
+
15
+ # @param [Seahorse::Client::RequestContext] context
16
+ # @param [String] message
17
+ # @param [Aws::DataPipeline::Types::InternalServiceError] data
18
+ def initialize(context, message, data = Aws::EmptyStructure.new)
19
+ super(context, message, data)
20
+ end
21
+
22
+ # @return [String]
23
+ def message
24
+ @message || @data[:message]
25
+ end
26
+
27
+ end
28
+
29
+ class InvalidRequestException < ServiceError
30
+
31
+ # @param [Seahorse::Client::RequestContext] context
32
+ # @param [String] message
33
+ # @param [Aws::DataPipeline::Types::InvalidRequestException] data
34
+ def initialize(context, message, data = Aws::EmptyStructure.new)
35
+ super(context, message, data)
36
+ end
37
+
38
+ # @return [String]
39
+ def message
40
+ @message || @data[:message]
41
+ end
42
+
43
+ end
44
+
45
+ class PipelineDeletedException < ServiceError
46
+
47
+ # @param [Seahorse::Client::RequestContext] context
48
+ # @param [String] message
49
+ # @param [Aws::DataPipeline::Types::PipelineDeletedException] data
50
+ def initialize(context, message, data = Aws::EmptyStructure.new)
51
+ super(context, message, data)
52
+ end
53
+
54
+ # @return [String]
55
+ def message
56
+ @message || @data[:message]
57
+ end
58
+
59
+ end
60
+
61
+ class PipelineNotFoundException < ServiceError
62
+
63
+ # @param [Seahorse::Client::RequestContext] context
64
+ # @param [String] message
65
+ # @param [Aws::DataPipeline::Types::PipelineNotFoundException] data
66
+ def initialize(context, message, data = Aws::EmptyStructure.new)
67
+ super(context, message, data)
68
+ end
69
+
70
+ # @return [String]
71
+ def message
72
+ @message || @data[:message]
73
+ end
74
+
75
+ end
76
+
77
+ class TaskNotFoundException < ServiceError
78
+
79
+ # @param [Seahorse::Client::RequestContext] context
80
+ # @param [String] message
81
+ # @param [Aws::DataPipeline::Types::TaskNotFoundException] data
82
+ def initialize(context, message, data = Aws::EmptyStructure.new)
83
+ super(context, message, data)
84
+ end
85
+
86
+ # @return [String]
87
+ def message
88
+ @message || @data[:message]
89
+ end
90
+
91
+ end
92
+
13
93
  end
14
94
  end
@@ -497,6 +497,35 @@ module Aws::DataPipeline
497
497
  include Aws::Structure
498
498
  end
499
499
 
500
+ # An internal service error occurred.
501
+ #
502
+ # @!attribute [rw] message
503
+ # Description of the error message.
504
+ # @return [String]
505
+ #
506
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datapipeline-2012-10-29/InternalServiceError AWS API Documentation
507
+ #
508
+ class InternalServiceError < Struct.new(
509
+ :message)
510
+ include Aws::Structure
511
+ end
512
+
513
+ # The request was not valid. Verify that your request was properly
514
+ # formatted, that the signature was generated with the correct
515
+ # credentials, and that you haven't exceeded any of the service limits
516
+ # for your account.
517
+ #
518
+ # @!attribute [rw] message
519
+ # Description of the error message.
520
+ # @return [String]
521
+ #
522
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datapipeline-2012-10-29/InvalidRequestException AWS API Documentation
523
+ #
524
+ class InvalidRequestException < Struct.new(
525
+ :message)
526
+ include Aws::Structure
527
+ end
528
+
500
529
  # Contains the parameters for ListPipelines.
501
530
  #
502
531
  # @note When making an API call, you may pass ListPipelinesInput
@@ -690,6 +719,19 @@ module Aws::DataPipeline
690
719
  include Aws::Structure
691
720
  end
692
721
 
722
+ # The specified pipeline has been deleted.
723
+ #
724
+ # @!attribute [rw] message
725
+ # Description of the error message.
726
+ # @return [String]
727
+ #
728
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datapipeline-2012-10-29/PipelineDeletedException AWS API Documentation
729
+ #
730
+ class PipelineDeletedException < Struct.new(
731
+ :message)
732
+ include Aws::Structure
733
+ end
734
+
693
735
  # Contains pipeline metadata.
694
736
  #
695
737
  # @!attribute [rw] pipeline_id
@@ -750,6 +792,20 @@ module Aws::DataPipeline
750
792
  include Aws::Structure
751
793
  end
752
794
 
795
+ # The specified pipeline was not found. Verify that you used the correct
796
+ # user and account identifiers.
797
+ #
798
+ # @!attribute [rw] message
799
+ # Description of the error message.
800
+ # @return [String]
801
+ #
802
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datapipeline-2012-10-29/PipelineNotFoundException AWS API Documentation
803
+ #
804
+ class PipelineNotFoundException < Struct.new(
805
+ :message)
806
+ include Aws::Structure
807
+ end
808
+
753
809
  # Contains information about a pipeline object. This can be a logical,
754
810
  # physical, or physical attempt pipeline object. The complete set of
755
811
  # components of a pipeline defines the pipeline.
@@ -1378,6 +1434,19 @@ module Aws::DataPipeline
1378
1434
  include Aws::Structure
1379
1435
  end
1380
1436
 
1437
+ # The specified task was not found.
1438
+ #
1439
+ # @!attribute [rw] message
1440
+ # Description of the error message.
1441
+ # @return [String]
1442
+ #
1443
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datapipeline-2012-10-29/TaskNotFoundException AWS API Documentation
1444
+ #
1445
+ class TaskNotFoundException < Struct.new(
1446
+ :message)
1447
+ include Aws::Structure
1448
+ end
1449
+
1381
1450
  # Contains information about a pipeline task that is assigned to a task
1382
1451
  # runner.
1383
1452
  #
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.11.0
4
+ version: 1.12.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: 2019-05-15 00:00:00.000000000 Z
11
+ date: 2019-05-21 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.52.1
22
+ version: 3.53.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.52.1
32
+ version: 3.53.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement