aws-sdk-opsworks 1.15.0 → 1.16.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-opsworks.rb +1 -1
- data/lib/aws-sdk-opsworks/client.rb +1 -1
- data/lib/aws-sdk-opsworks/client_api.rb +6 -0
- data/lib/aws-sdk-opsworks/errors.rb +32 -0
- data/lib/aws-sdk-opsworks/types.rb +26 -0
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5b8098ecf24e06fc0ded72a79d4e1bf21228b44b
|
|
4
|
+
data.tar.gz: d6327ae6a1477c33edb8f9e51ef630a9bd98d0b2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 64d3948d9fdec30f27cb170ac88cac63ec5576701488fd94569388a53c7b16d59434861471fd1f0ffdeb60f605e4eae7256aa6ef4812febdfa053bf050980710
|
|
7
|
+
data.tar.gz: 0cc38a1ca4d9470486fd3da8c9e38c8c7dee65ab5acd3a342d134d79555b5f4a6f01d60af56ac908a3a83e2247f7478666367a59ea4343aeffc27e152c7bb439
|
data/lib/aws-sdk-opsworks.rb
CHANGED
|
@@ -5546,7 +5546,7 @@ module Aws::OpsWorks
|
|
|
5546
5546
|
params: params,
|
|
5547
5547
|
config: config)
|
|
5548
5548
|
context[:gem_name] = 'aws-sdk-opsworks'
|
|
5549
|
-
context[:gem_version] = '1.
|
|
5549
|
+
context[:gem_version] = '1.16.0'
|
|
5550
5550
|
Seahorse::Client::Request.new(handlers, context)
|
|
5551
5551
|
end
|
|
5552
5552
|
|
|
@@ -976,6 +976,9 @@ module Aws::OpsWorks
|
|
|
976
976
|
ReportedOs.add_member(:version, Shapes::ShapeRef.new(shape: String, location_name: "Version"))
|
|
977
977
|
ReportedOs.struct_class = Types::ReportedOs
|
|
978
978
|
|
|
979
|
+
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
980
|
+
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
|
981
|
+
|
|
979
982
|
SelfUserProfile.add_member(:iam_user_arn, Shapes::ShapeRef.new(shape: String, location_name: "IamUserArn"))
|
|
980
983
|
SelfUserProfile.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
|
|
981
984
|
SelfUserProfile.add_member(:ssh_username, Shapes::ShapeRef.new(shape: String, location_name: "SshUsername"))
|
|
@@ -1211,6 +1214,9 @@ module Aws::OpsWorks
|
|
|
1211
1214
|
|
|
1212
1215
|
UserProfiles.member = Shapes::ShapeRef.new(shape: UserProfile)
|
|
1213
1216
|
|
|
1217
|
+
ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
1218
|
+
ValidationException.struct_class = Types::ValidationException
|
|
1219
|
+
|
|
1214
1220
|
Volume.add_member(:volume_id, Shapes::ShapeRef.new(shape: String, location_name: "VolumeId"))
|
|
1215
1221
|
Volume.add_member(:ec2_volume_id, Shapes::ShapeRef.new(shape: String, location_name: "Ec2VolumeId"))
|
|
1216
1222
|
Volume.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
|
|
@@ -10,5 +10,37 @@ module Aws::OpsWorks
|
|
|
10
10
|
|
|
11
11
|
extend Aws::Errors::DynamicErrors
|
|
12
12
|
|
|
13
|
+
class ResourceNotFoundException < ServiceError
|
|
14
|
+
|
|
15
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
16
|
+
# @param [String] message
|
|
17
|
+
# @param [Aws::OpsWorks::Types::ResourceNotFoundException] 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 ValidationException < ServiceError
|
|
30
|
+
|
|
31
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
32
|
+
# @param [String] message
|
|
33
|
+
# @param [Aws::OpsWorks::Types::ValidationException] 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
|
+
|
|
13
45
|
end
|
|
14
46
|
end
|
|
@@ -5190,6 +5190,19 @@ module Aws::OpsWorks
|
|
|
5190
5190
|
include Aws::Structure
|
|
5191
5191
|
end
|
|
5192
5192
|
|
|
5193
|
+
# Indicates that a resource was not found.
|
|
5194
|
+
#
|
|
5195
|
+
# @!attribute [rw] message
|
|
5196
|
+
# The exception message.
|
|
5197
|
+
# @return [String]
|
|
5198
|
+
#
|
|
5199
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/opsworks-2013-02-18/ResourceNotFoundException AWS API Documentation
|
|
5200
|
+
#
|
|
5201
|
+
class ResourceNotFoundException < Struct.new(
|
|
5202
|
+
:message)
|
|
5203
|
+
include Aws::Structure
|
|
5204
|
+
end
|
|
5205
|
+
|
|
5193
5206
|
# Describes a user's SSH information.
|
|
5194
5207
|
#
|
|
5195
5208
|
# @!attribute [rw] iam_user_arn
|
|
@@ -7041,6 +7054,19 @@ module Aws::OpsWorks
|
|
|
7041
7054
|
include Aws::Structure
|
|
7042
7055
|
end
|
|
7043
7056
|
|
|
7057
|
+
# Indicates that a request was not valid.
|
|
7058
|
+
#
|
|
7059
|
+
# @!attribute [rw] message
|
|
7060
|
+
# The exception message.
|
|
7061
|
+
# @return [String]
|
|
7062
|
+
#
|
|
7063
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/opsworks-2013-02-18/ValidationException AWS API Documentation
|
|
7064
|
+
#
|
|
7065
|
+
class ValidationException < Struct.new(
|
|
7066
|
+
:message)
|
|
7067
|
+
include Aws::Structure
|
|
7068
|
+
end
|
|
7069
|
+
|
|
7044
7070
|
# Describes an instance's Amazon EBS volume.
|
|
7045
7071
|
#
|
|
7046
7072
|
# @!attribute [rw] volume_id
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-opsworks
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.16.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
|