aws-sdk-opsworkscm 1.18.0 → 1.19.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: 63913269bb1757bf275d09e56feeac681577d579
4
- data.tar.gz: fbd9bf0609b110a1b8c7b47d02f320d0a583b9b2
3
+ metadata.gz: ad89677b5233dfd5193932a888b19bbf40385f3f
4
+ data.tar.gz: 4ed59e5a66b0788d8ead3f970cd9b09578785761
5
5
  SHA512:
6
- metadata.gz: ddea2a9aad701c85ce8d6602a15368808a58580088095878fc23f3a07bc2d5dd5aa0e65982f3efaf7fcd2990a7111225c9e7304d23aa10d5ecb5aa3a6cee6591
7
- data.tar.gz: a0a8d40948728edc6e0a181637d5721d9d56fc9f1cf475c8e13ede64882504825ffaa1f9ffb98ceb9ae6b539779106c91c37c25d050bb1833391628c8bd143dc
6
+ metadata.gz: 0c90fd9bc0f572d52f0e7ba6b9aa2881cb1a6720e175cafb2c43840cfbcbc056fe1c0701bafca646c484aa598afe9ae5dc31982ef1853dc1791f5784c51f7f27
7
+ data.tar.gz: cb51738d0b4c824da281cf956fb49b177f784d06fb8bcb1b1613b7eab1ad54859d5c563e717403d110e44e2432bb0053eeb9885fd92e21aeb508df9965dbdd36
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-opsworkscm/customizations'
43
43
  # @service
44
44
  module Aws::OpsWorksCM
45
45
 
46
- GEM_VERSION = '1.18.0'
46
+ GEM_VERSION = '1.19.0'
47
47
 
48
48
  end
@@ -1437,7 +1437,7 @@ module Aws::OpsWorksCM
1437
1437
  params: params,
1438
1438
  config: config)
1439
1439
  context[:gem_name] = 'aws-sdk-opsworkscm'
1440
- context[:gem_version] = '1.18.0'
1440
+ context[:gem_version] = '1.19.0'
1441
1441
  Seahorse::Client::Request.new(handlers, context)
1442
1442
  end
1443
1443
 
@@ -231,6 +231,21 @@ module Aws::OpsWorksCM
231
231
  ExportServerEngineAttributeResponse.add_member(:server_name, Shapes::ShapeRef.new(shape: ServerName, location_name: "ServerName"))
232
232
  ExportServerEngineAttributeResponse.struct_class = Types::ExportServerEngineAttributeResponse
233
233
 
234
+ InvalidNextTokenException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
235
+ InvalidNextTokenException.struct_class = Types::InvalidNextTokenException
236
+
237
+ InvalidStateException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
238
+ InvalidStateException.struct_class = Types::InvalidStateException
239
+
240
+ LimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
241
+ LimitExceededException.struct_class = Types::LimitExceededException
242
+
243
+ ResourceAlreadyExistsException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
244
+ ResourceAlreadyExistsException.struct_class = Types::ResourceAlreadyExistsException
245
+
246
+ ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
247
+ ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
248
+
234
249
  RestoreServerRequest.add_member(:backup_id, Shapes::ShapeRef.new(shape: BackupId, required: true, location_name: "BackupId"))
235
250
  RestoreServerRequest.add_member(:server_name, Shapes::ShapeRef.new(shape: ServerName, required: true, location_name: "ServerName"))
236
251
  RestoreServerRequest.add_member(:instance_type, Shapes::ShapeRef.new(shape: String, location_name: "InstanceType"))
@@ -301,6 +316,9 @@ module Aws::OpsWorksCM
301
316
  UpdateServerResponse.add_member(:server, Shapes::ShapeRef.new(shape: Server, location_name: "Server"))
302
317
  UpdateServerResponse.struct_class = Types::UpdateServerResponse
303
318
 
319
+ ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
320
+ ValidationException.struct_class = Types::ValidationException
321
+
304
322
 
305
323
  # @api private
306
324
  API = Seahorse::Model::Api.new.tap do |api|
@@ -10,5 +10,101 @@ module Aws::OpsWorksCM
10
10
 
11
11
  extend Aws::Errors::DynamicErrors
12
12
 
13
+ class InvalidNextTokenException < ServiceError
14
+
15
+ # @param [Seahorse::Client::RequestContext] context
16
+ # @param [String] message
17
+ # @param [Aws::OpsWorksCM::Types::InvalidNextTokenException] 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 InvalidStateException < ServiceError
30
+
31
+ # @param [Seahorse::Client::RequestContext] context
32
+ # @param [String] message
33
+ # @param [Aws::OpsWorksCM::Types::InvalidStateException] 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 LimitExceededException < ServiceError
46
+
47
+ # @param [Seahorse::Client::RequestContext] context
48
+ # @param [String] message
49
+ # @param [Aws::OpsWorksCM::Types::LimitExceededException] 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 ResourceAlreadyExistsException < ServiceError
62
+
63
+ # @param [Seahorse::Client::RequestContext] context
64
+ # @param [String] message
65
+ # @param [Aws::OpsWorksCM::Types::ResourceAlreadyExistsException] 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::OpsWorksCM::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 ValidationException < ServiceError
94
+
95
+ # @param [Seahorse::Client::RequestContext] context
96
+ # @param [String] message
97
+ # @param [Aws::OpsWorksCM::Types::ValidationException] 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
@@ -960,6 +960,78 @@ module Aws::OpsWorksCM
960
960
  include Aws::Structure
961
961
  end
962
962
 
963
+ # This occurs when the provided nextToken is not valid.
964
+ #
965
+ # @!attribute [rw] message
966
+ # Error or informational message that can contain more detail about a
967
+ # nextToken failure.
968
+ # @return [String]
969
+ #
970
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opsworkscm-2016-11-01/InvalidNextTokenException AWS API Documentation
971
+ #
972
+ class InvalidNextTokenException < Struct.new(
973
+ :message)
974
+ include Aws::Structure
975
+ end
976
+
977
+ # The resource is in a state that does not allow you to perform a
978
+ # specified action.
979
+ #
980
+ # @!attribute [rw] message
981
+ # Error or informational message that provides more detail if a
982
+ # resource is in a state that is not valid for performing a specified
983
+ # action.
984
+ # @return [String]
985
+ #
986
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opsworkscm-2016-11-01/InvalidStateException AWS API Documentation
987
+ #
988
+ class InvalidStateException < Struct.new(
989
+ :message)
990
+ include Aws::Structure
991
+ end
992
+
993
+ # The limit of servers or backups has been reached.
994
+ #
995
+ # @!attribute [rw] message
996
+ # Error or informational message that the maximum allowed number of
997
+ # servers or backups has been exceeded.
998
+ # @return [String]
999
+ #
1000
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opsworkscm-2016-11-01/LimitExceededException AWS API Documentation
1001
+ #
1002
+ class LimitExceededException < Struct.new(
1003
+ :message)
1004
+ include Aws::Structure
1005
+ end
1006
+
1007
+ # The requested resource cannot be created because it already exists.
1008
+ #
1009
+ # @!attribute [rw] message
1010
+ # Error or informational message in response to a CreateServer request
1011
+ # that a resource cannot be created because it already exists.
1012
+ # @return [String]
1013
+ #
1014
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opsworkscm-2016-11-01/ResourceAlreadyExistsException AWS API Documentation
1015
+ #
1016
+ class ResourceAlreadyExistsException < Struct.new(
1017
+ :message)
1018
+ include Aws::Structure
1019
+ end
1020
+
1021
+ # The requested resource does not exist, or access was denied.
1022
+ #
1023
+ # @!attribute [rw] message
1024
+ # Error or informational message that can contain more detail about
1025
+ # problems locating or accessing a resource.
1026
+ # @return [String]
1027
+ #
1028
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opsworkscm-2016-11-01/ResourceNotFoundException AWS API Documentation
1029
+ #
1030
+ class ResourceNotFoundException < Struct.new(
1031
+ :message)
1032
+ include Aws::Structure
1033
+ end
1034
+
963
1035
  # @note When making an API call, you may pass RestoreServerRequest
964
1036
  # data as a hash:
965
1037
  #
@@ -1344,5 +1416,19 @@ module Aws::OpsWorksCM
1344
1416
  include Aws::Structure
1345
1417
  end
1346
1418
 
1419
+ # One or more of the provided request parameters are not valid.
1420
+ #
1421
+ # @!attribute [rw] message
1422
+ # Error or informational message that can contain more detail about a
1423
+ # validation failure.
1424
+ # @return [String]
1425
+ #
1426
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opsworkscm-2016-11-01/ValidationException AWS API Documentation
1427
+ #
1428
+ class ValidationException < Struct.new(
1429
+ :message)
1430
+ include Aws::Structure
1431
+ end
1432
+
1347
1433
  end
1348
1434
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-opsworkscm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.18.0
4
+ version: 1.19.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