aws-sdk-codepipeline 1.19.0 → 1.20.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bc5e7ec150dff804d9698979ad8fabc06b5f54cb
|
4
|
+
data.tar.gz: 0200a5bc3f94fbb8b4f73e6b7a1be4610587f252
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 35f5446bed7c2fa731cc4c0f7a0d616e4f944d22d2e78dcc44d0ee34e477c0f2b5cf7b19f9f87c412e5fcf49c89aa5cc4e455746263699d94fe84e7892d10cca
|
7
|
+
data.tar.gz: 9567b42735eae44de90ff7b6b928570bcfae3585e22882636e7de08a9f72bf3539c7147d833e87bb6fb7af5d588c639d6c164f6be870ec6f009babdba3bb7521
|
data/lib/aws-sdk-codepipeline.rb
CHANGED
@@ -2236,7 +2236,7 @@ module Aws::CodePipeline
|
|
2236
2236
|
params: params,
|
2237
2237
|
config: config)
|
2238
2238
|
context[:gem_name] = 'aws-sdk-codepipeline'
|
2239
|
-
context[:gem_version] = '1.
|
2239
|
+
context[:gem_version] = '1.20.0'
|
2240
2240
|
Seahorse::Client::Request.new(handlers, context)
|
2241
2241
|
end
|
2242
2242
|
|
@@ -457,6 +457,9 @@ module Aws::CodePipeline
|
|
457
457
|
BlockerDeclaration.add_member(:type, Shapes::ShapeRef.new(shape: BlockerType, required: true, location_name: "type"))
|
458
458
|
BlockerDeclaration.struct_class = Types::BlockerDeclaration
|
459
459
|
|
460
|
+
ConcurrentModificationException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
|
461
|
+
ConcurrentModificationException.struct_class = Types::ConcurrentModificationException
|
462
|
+
|
460
463
|
CreateCustomActionTypeInput.add_member(:category, Shapes::ShapeRef.new(shape: ActionCategory, required: true, location_name: "category"))
|
461
464
|
CreateCustomActionTypeInput.add_member(:provider, Shapes::ShapeRef.new(shape: ActionProvider, required: true, location_name: "provider"))
|
462
465
|
CreateCustomActionTypeInput.add_member(:version, Shapes::ShapeRef.new(shape: Version, required: true, location_name: "version"))
|
@@ -575,6 +578,12 @@ module Aws::CodePipeline
|
|
575
578
|
|
576
579
|
InputArtifactList.member = Shapes::ShapeRef.new(shape: InputArtifact)
|
577
580
|
|
581
|
+
InvalidArnException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
|
582
|
+
InvalidArnException.struct_class = Types::InvalidArnException
|
583
|
+
|
584
|
+
InvalidTagsException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
|
585
|
+
InvalidTagsException.struct_class = Types::InvalidTagsException
|
586
|
+
|
578
587
|
Job.add_member(:id, Shapes::ShapeRef.new(shape: JobId, location_name: "id"))
|
579
588
|
Job.add_member(:data, Shapes::ShapeRef.new(shape: JobData, location_name: "data"))
|
580
589
|
Job.add_member(:nonce, Shapes::ShapeRef.new(shape: Nonce, location_name: "nonce"))
|
@@ -872,6 +881,9 @@ module Aws::CodePipeline
|
|
872
881
|
|
873
882
|
ThirdPartyJobList.member = Shapes::ShapeRef.new(shape: ThirdPartyJob)
|
874
883
|
|
884
|
+
TooManyTagsException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
|
885
|
+
TooManyTagsException.struct_class = Types::TooManyTagsException
|
886
|
+
|
875
887
|
TransitionState.add_member(:enabled, Shapes::ShapeRef.new(shape: Enabled, location_name: "enabled"))
|
876
888
|
TransitionState.add_member(:last_changed_by, Shapes::ShapeRef.new(shape: LastChangedBy, location_name: "lastChangedBy"))
|
877
889
|
TransitionState.add_member(:last_changed_at, Shapes::ShapeRef.new(shape: LastChangedAt, location_name: "lastChangedAt"))
|
@@ -10,5 +10,69 @@ module Aws::CodePipeline
|
|
10
10
|
|
11
11
|
extend Aws::Errors::DynamicErrors
|
12
12
|
|
13
|
+
class ConcurrentModificationException < ServiceError
|
14
|
+
|
15
|
+
# @param [Seahorse::Client::RequestContext] context
|
16
|
+
# @param [String] message
|
17
|
+
# @param [Aws::CodePipeline::Types::ConcurrentModificationException] 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 InvalidArnException < ServiceError
|
30
|
+
|
31
|
+
# @param [Seahorse::Client::RequestContext] context
|
32
|
+
# @param [String] message
|
33
|
+
# @param [Aws::CodePipeline::Types::InvalidArnException] 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 InvalidTagsException < ServiceError
|
46
|
+
|
47
|
+
# @param [Seahorse::Client::RequestContext] context
|
48
|
+
# @param [String] message
|
49
|
+
# @param [Aws::CodePipeline::Types::InvalidTagsException] 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 TooManyTagsException < ServiceError
|
62
|
+
|
63
|
+
# @param [Seahorse::Client::RequestContext] context
|
64
|
+
# @param [String] message
|
65
|
+
# @param [Aws::CodePipeline::Types::TooManyTagsException] 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
|
+
|
13
77
|
end
|
14
78
|
end
|
@@ -969,6 +969,18 @@ module Aws::CodePipeline
|
|
969
969
|
include Aws::Structure
|
970
970
|
end
|
971
971
|
|
972
|
+
# Unable to modify the tag due to a simultaneous update request.
|
973
|
+
#
|
974
|
+
# @!attribute [rw] message
|
975
|
+
# @return [String]
|
976
|
+
#
|
977
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ConcurrentModificationException AWS API Documentation
|
978
|
+
#
|
979
|
+
class ConcurrentModificationException < Struct.new(
|
980
|
+
:message)
|
981
|
+
include Aws::Structure
|
982
|
+
end
|
983
|
+
|
972
984
|
# Represents the input of a CreateCustomActionType operation.
|
973
985
|
#
|
974
986
|
# @note When making an API call, you may pass CreateCustomActionTypeInput
|
@@ -1802,6 +1814,30 @@ module Aws::CodePipeline
|
|
1802
1814
|
include Aws::Structure
|
1803
1815
|
end
|
1804
1816
|
|
1817
|
+
# The specified resource ARN is invalid.
|
1818
|
+
#
|
1819
|
+
# @!attribute [rw] message
|
1820
|
+
# @return [String]
|
1821
|
+
#
|
1822
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/InvalidArnException AWS API Documentation
|
1823
|
+
#
|
1824
|
+
class InvalidArnException < Struct.new(
|
1825
|
+
:message)
|
1826
|
+
include Aws::Structure
|
1827
|
+
end
|
1828
|
+
|
1829
|
+
# The specified resource tags are invalid.
|
1830
|
+
#
|
1831
|
+
# @!attribute [rw] message
|
1832
|
+
# @return [String]
|
1833
|
+
#
|
1834
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/InvalidTagsException AWS API Documentation
|
1835
|
+
#
|
1836
|
+
class InvalidTagsException < Struct.new(
|
1837
|
+
:message)
|
1838
|
+
include Aws::Structure
|
1839
|
+
end
|
1840
|
+
|
1805
1841
|
# Represents information about a job.
|
1806
1842
|
#
|
1807
1843
|
# @!attribute [rw] id
|
@@ -3582,6 +3618,18 @@ module Aws::CodePipeline
|
|
3582
3618
|
include Aws::Structure
|
3583
3619
|
end
|
3584
3620
|
|
3621
|
+
# The tags limit for a resource has been exceeded.
|
3622
|
+
#
|
3623
|
+
# @!attribute [rw] message
|
3624
|
+
# @return [String]
|
3625
|
+
#
|
3626
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/TooManyTagsException AWS API Documentation
|
3627
|
+
#
|
3628
|
+
class TooManyTagsException < Struct.new(
|
3629
|
+
:message)
|
3630
|
+
include Aws::Structure
|
3631
|
+
end
|
3632
|
+
|
3585
3633
|
# Represents information about the state of transitions between one
|
3586
3634
|
# stage and another stage.
|
3587
3635
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-codepipeline
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.20.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-
|
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.
|
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.
|
32
|
+
version: 3.53.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|