aws-sdk-managedblockchain 1.2.0 → 1.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ec65686fb3b7f52852c5b77abdd5d05a13894826
4
- data.tar.gz: cbb7f6862642fe03953706a331454769f8b6bdcb
3
+ metadata.gz: 9601bf683e60fa271e06becab67de9ce4bd9334c
4
+ data.tar.gz: 29963765959f1407dd273080439c873acc272868
5
5
  SHA512:
6
- metadata.gz: d31e2120b7b243a0d797e45323242a7bd3d86e57b0d73549ae311a151c050f4a7b5732e99d70d27386f8d0bbaa00bae0de15b7194483cde3358e6a277ecb1240
7
- data.tar.gz: cd30471293825082d879142da36700a4cd357e85b8d2c7259c59cc16f588e9d597caa1dae5144ab31884499786e32eab3b15e8cd96359fea5580b9d802b430f9
6
+ metadata.gz: 4627ccd892f076589976709514c2355eef65643b6df6ceb15191fdb4b78e3bc440c4e73d37512c6af02d18400d166fb44d3a05b46a5a411794c60305d12d3ddb
7
+ data.tar.gz: 8affac18567a80cff3f974b056ce1257b9c94861e3ae096a62f41b7f0f5e0eba72c28587e00f82558860aff2d20f22e399c694677c33902f9cc151e39baf1058
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-managedblockchain/customizations'
42
42
  # @service
43
43
  module Aws::ManagedBlockchain
44
44
 
45
- GEM_VERSION = '1.2.0'
45
+ GEM_VERSION = '1.3.0'
46
46
 
47
47
  end
@@ -1130,7 +1130,7 @@ module Aws::ManagedBlockchain
1130
1130
  params: params,
1131
1131
  config: config)
1132
1132
  context[:gem_name] = 'aws-sdk-managedblockchain'
1133
- context[:gem_version] = '1.2.0'
1133
+ context[:gem_version] = '1.3.0'
1134
1134
  Seahorse::Client::Request.new(handlers, context)
1135
1135
  end
1136
1136
 
@@ -211,6 +211,12 @@ module Aws::ManagedBlockchain
211
211
  GetProposalOutput.add_member(:proposal, Shapes::ShapeRef.new(shape: Proposal, location_name: "Proposal"))
212
212
  GetProposalOutput.struct_class = Types::GetProposalOutput
213
213
 
214
+ IllegalActionException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
215
+ IllegalActionException.struct_class = Types::IllegalActionException
216
+
217
+ InvalidRequestException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
218
+ InvalidRequestException.struct_class = Types::InvalidRequestException
219
+
214
220
  Invitation.add_member(:invitation_id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "InvitationId"))
215
221
  Invitation.add_member(:creation_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationDate"))
216
222
  Invitation.add_member(:expiration_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "ExpirationDate"))
@@ -431,6 +437,18 @@ module Aws::ManagedBlockchain
431
437
 
432
438
  RemoveActionList.member = Shapes::ShapeRef.new(shape: RemoveAction)
433
439
 
440
+ ResourceAlreadyExistsException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
441
+ ResourceAlreadyExistsException.struct_class = Types::ResourceAlreadyExistsException
442
+
443
+ ResourceLimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
444
+ ResourceLimitExceededException.struct_class = Types::ResourceLimitExceededException
445
+
446
+ ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
447
+ ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
448
+
449
+ ResourceNotReadyException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
450
+ ResourceNotReadyException.struct_class = Types::ResourceNotReadyException
451
+
434
452
  VoteOnProposalInput.add_member(:network_id, Shapes::ShapeRef.new(shape: ResourceIdString, required: true, location: "uri", location_name: "networkId"))
435
453
  VoteOnProposalInput.add_member(:proposal_id, Shapes::ShapeRef.new(shape: ResourceIdString, required: true, location: "uri", location_name: "proposalId"))
436
454
  VoteOnProposalInput.add_member(:voter_member_id, Shapes::ShapeRef.new(shape: ResourceIdString, required: true, location_name: "VoterMemberId"))
@@ -10,5 +10,101 @@ module Aws::ManagedBlockchain
10
10
 
11
11
  extend Aws::Errors::DynamicErrors
12
12
 
13
+ class IllegalActionException < ServiceError
14
+
15
+ # @param [Seahorse::Client::RequestContext] context
16
+ # @param [String] message
17
+ # @param [Aws::ManagedBlockchain::Types::IllegalActionException] 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::ManagedBlockchain::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 ResourceAlreadyExistsException < ServiceError
46
+
47
+ # @param [Seahorse::Client::RequestContext] context
48
+ # @param [String] message
49
+ # @param [Aws::ManagedBlockchain::Types::ResourceAlreadyExistsException] 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 ResourceLimitExceededException < ServiceError
62
+
63
+ # @param [Seahorse::Client::RequestContext] context
64
+ # @param [String] message
65
+ # @param [Aws::ManagedBlockchain::Types::ResourceLimitExceededException] 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 ResourceNotFoundException < ServiceError
78
+
79
+ # @param [Seahorse::Client::RequestContext] context
80
+ # @param [String] message
81
+ # @param [Aws::ManagedBlockchain::Types::ResourceNotFoundException] 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
+
93
+ class ResourceNotReadyException < ServiceError
94
+
95
+ # @param [Seahorse::Client::RequestContext] context
96
+ # @param [String] message
97
+ # @param [Aws::ManagedBlockchain::Types::ResourceNotReadyException] data
98
+ def initialize(context, message, data = Aws::EmptyStructure.new)
99
+ super(context, message, data)
100
+ end
101
+
102
+ # @return [String]
103
+ def message
104
+ @message || @data[:message]
105
+ end
106
+
107
+ end
108
+
13
109
  end
14
110
  end
@@ -562,6 +562,29 @@ module Aws::ManagedBlockchain
562
562
  include Aws::Structure
563
563
  end
564
564
 
565
+ # @!attribute [rw] message
566
+ # @return [String]
567
+ #
568
+ # @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/IllegalActionException AWS API Documentation
569
+ #
570
+ class IllegalActionException < Struct.new(
571
+ :message)
572
+ include Aws::Structure
573
+ end
574
+
575
+ # The action or operation requested is invalid. Verify that the action
576
+ # is typed correctly.
577
+ #
578
+ # @!attribute [rw] message
579
+ # @return [String]
580
+ #
581
+ # @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/InvalidRequestException AWS API Documentation
582
+ #
583
+ class InvalidRequestException < Struct.new(
584
+ :message)
585
+ include Aws::Structure
586
+ end
587
+
565
588
  # An invitation to an AWS account to create a member and join the
566
589
  # network.
567
590
  #
@@ -1803,6 +1826,58 @@ module Aws::ManagedBlockchain
1803
1826
  include Aws::Structure
1804
1827
  end
1805
1828
 
1829
+ # A resource request is issued for a resource that already exists.
1830
+ #
1831
+ # @!attribute [rw] message
1832
+ # @return [String]
1833
+ #
1834
+ # @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/ResourceAlreadyExistsException AWS API Documentation
1835
+ #
1836
+ class ResourceAlreadyExistsException < Struct.new(
1837
+ :message)
1838
+ include Aws::Structure
1839
+ end
1840
+
1841
+ # The maximum number of resources of that type already exist. Ensure the
1842
+ # resources requested are within the boundaries of the service edition
1843
+ # and your account limits.
1844
+ #
1845
+ # @!attribute [rw] message
1846
+ # @return [String]
1847
+ #
1848
+ # @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/ResourceLimitExceededException AWS API Documentation
1849
+ #
1850
+ class ResourceLimitExceededException < Struct.new(
1851
+ :message)
1852
+ include Aws::Structure
1853
+ end
1854
+
1855
+ # A requested resource does not exist on the network. It may have been
1856
+ # deleted or referenced inaccurately.
1857
+ #
1858
+ # @!attribute [rw] message
1859
+ # @return [String]
1860
+ #
1861
+ # @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/ResourceNotFoundException AWS API Documentation
1862
+ #
1863
+ class ResourceNotFoundException < Struct.new(
1864
+ :message)
1865
+ include Aws::Structure
1866
+ end
1867
+
1868
+ # The requested resource exists but is not in a status that can complete
1869
+ # the operation.
1870
+ #
1871
+ # @!attribute [rw] message
1872
+ # @return [String]
1873
+ #
1874
+ # @see http://docs.aws.amazon.com/goto/WebAPI/managedblockchain-2018-09-24/ResourceNotReadyException AWS API Documentation
1875
+ #
1876
+ class ResourceNotReadyException < Struct.new(
1877
+ :message)
1878
+ include Aws::Structure
1879
+ end
1880
+
1806
1881
  # @note When making an API call, you may pass VoteOnProposalInput
1807
1882
  # data as a hash:
1808
1883
  #
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-managedblockchain
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.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