aws-sdk-greengrass 1.19.0 → 1.20.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3371dbbbdb7f22abd1d3687b5669951b88470af0
|
4
|
+
data.tar.gz: 16dc87863a0a1987be5b20f9584b8a075aa456e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84db9f9acf68fb3e101cdd9b4554c89cb0aa1b24af5f885a9aed3ddc490eed76ca441af4be0536f65704e6e53dfb2f525aebfb29b2c56fe5f80a39db6ce61223
|
7
|
+
data.tar.gz: eb13c0be44d2ef5b9d3c0ab034fefa16e7cc085696e082d8f3c3c0bdf16c96d5e7cb22d0c0f0d47d3ba46eb2ee44916ac86ecd2212ccc497dba21161731d66a9
|
data/lib/aws-sdk-greengrass.rb
CHANGED
@@ -3927,7 +3927,7 @@ module Aws::Greengrass
|
|
3927
3927
|
params: params,
|
3928
3928
|
config: config)
|
3929
3929
|
context[:gem_name] = 'aws-sdk-greengrass'
|
3930
|
-
context[:gem_version] = '1.
|
3930
|
+
context[:gem_version] = '1.20.0'
|
3931
3931
|
Seahorse::Client::Request.new(handlers, context)
|
3932
3932
|
end
|
3933
3933
|
|
@@ -290,6 +290,10 @@ module Aws::Greengrass
|
|
290
290
|
AssociateServiceRoleToAccountResponse.add_member(:associated_at, Shapes::ShapeRef.new(shape: __string, location_name: "AssociatedAt"))
|
291
291
|
AssociateServiceRoleToAccountResponse.struct_class = Types::AssociateServiceRoleToAccountResponse
|
292
292
|
|
293
|
+
BadRequestException.add_member(:error_details, Shapes::ShapeRef.new(shape: ErrorDetails, location_name: "ErrorDetails"))
|
294
|
+
BadRequestException.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "Message"))
|
295
|
+
BadRequestException.struct_class = Types::BadRequestException
|
296
|
+
|
293
297
|
BulkDeployment.add_member(:bulk_deployment_arn, Shapes::ShapeRef.new(shape: __string, location_name: "BulkDeploymentArn"))
|
294
298
|
BulkDeployment.add_member(:bulk_deployment_id, Shapes::ShapeRef.new(shape: __string, location_name: "BulkDeploymentId"))
|
295
299
|
BulkDeployment.add_member(:created_at, Shapes::ShapeRef.new(shape: __string, location_name: "CreatedAt"))
|
@@ -1005,6 +1009,10 @@ module Aws::Greengrass
|
|
1005
1009
|
GroupVersion.add_member(:subscription_definition_version_arn, Shapes::ShapeRef.new(shape: __string, location_name: "SubscriptionDefinitionVersionArn"))
|
1006
1010
|
GroupVersion.struct_class = Types::GroupVersion
|
1007
1011
|
|
1012
|
+
InternalServerErrorException.add_member(:error_details, Shapes::ShapeRef.new(shape: ErrorDetails, location_name: "ErrorDetails"))
|
1013
|
+
InternalServerErrorException.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "Message"))
|
1014
|
+
InternalServerErrorException.struct_class = Types::InternalServerErrorException
|
1015
|
+
|
1008
1016
|
ListBulkDeploymentDetailedReportsRequest.add_member(:bulk_deployment_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "BulkDeploymentId"))
|
1009
1017
|
ListBulkDeploymentDetailedReportsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "MaxResults"))
|
1010
1018
|
ListBulkDeploymentDetailedReportsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "NextToken"))
|
@@ -10,5 +10,47 @@ module Aws::Greengrass
|
|
10
10
|
|
11
11
|
extend Aws::Errors::DynamicErrors
|
12
12
|
|
13
|
+
class BadRequestException < ServiceError
|
14
|
+
|
15
|
+
# @param [Seahorse::Client::RequestContext] context
|
16
|
+
# @param [String] message
|
17
|
+
# @param [Aws::Greengrass::Types::BadRequestException] data
|
18
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
19
|
+
super(context, message, data)
|
20
|
+
end
|
21
|
+
|
22
|
+
# @return [String]
|
23
|
+
def error_details
|
24
|
+
@data[:error_details]
|
25
|
+
end
|
26
|
+
|
27
|
+
# @return [String]
|
28
|
+
def message
|
29
|
+
@message || @data[:message]
|
30
|
+
end
|
31
|
+
|
32
|
+
end
|
33
|
+
|
34
|
+
class InternalServerErrorException < ServiceError
|
35
|
+
|
36
|
+
# @param [Seahorse::Client::RequestContext] context
|
37
|
+
# @param [String] message
|
38
|
+
# @param [Aws::Greengrass::Types::InternalServerErrorException] data
|
39
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
40
|
+
super(context, message, data)
|
41
|
+
end
|
42
|
+
|
43
|
+
# @return [String]
|
44
|
+
def error_details
|
45
|
+
@data[:error_details]
|
46
|
+
end
|
47
|
+
|
48
|
+
# @return [String]
|
49
|
+
def message
|
50
|
+
@message || @data[:message]
|
51
|
+
end
|
52
|
+
|
53
|
+
end
|
54
|
+
|
13
55
|
end
|
14
56
|
end
|
@@ -72,6 +72,23 @@ module Aws::Greengrass
|
|
72
72
|
include Aws::Structure
|
73
73
|
end
|
74
74
|
|
75
|
+
# General error information.
|
76
|
+
#
|
77
|
+
# @!attribute [rw] error_details
|
78
|
+
# A list of error details.
|
79
|
+
# @return [Array<Types::ErrorDetail>]
|
80
|
+
#
|
81
|
+
# @!attribute [rw] message
|
82
|
+
# @return [String]
|
83
|
+
#
|
84
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/BadRequestException AWS API Documentation
|
85
|
+
#
|
86
|
+
class BadRequestException < Struct.new(
|
87
|
+
:error_details,
|
88
|
+
:message)
|
89
|
+
include Aws::Structure
|
90
|
+
end
|
91
|
+
|
75
92
|
# Information about a bulk deployment. You cannot start a new bulk
|
76
93
|
# deployment while another one is still running or in a non-terminal
|
77
94
|
# state.
|
@@ -4000,6 +4017,23 @@ module Aws::Greengrass
|
|
4000
4017
|
include Aws::Structure
|
4001
4018
|
end
|
4002
4019
|
|
4020
|
+
# General error information.
|
4021
|
+
#
|
4022
|
+
# @!attribute [rw] error_details
|
4023
|
+
# A list of error details.
|
4024
|
+
# @return [Array<Types::ErrorDetail>]
|
4025
|
+
#
|
4026
|
+
# @!attribute [rw] message
|
4027
|
+
# @return [String]
|
4028
|
+
#
|
4029
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/InternalServerErrorException AWS API Documentation
|
4030
|
+
#
|
4031
|
+
class InternalServerErrorException < Struct.new(
|
4032
|
+
:error_details,
|
4033
|
+
:message)
|
4034
|
+
include Aws::Structure
|
4035
|
+
end
|
4036
|
+
|
4003
4037
|
# @note When making an API call, you may pass ListBulkDeploymentDetailedReportsRequest
|
4004
4038
|
# data as a hash:
|
4005
4039
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-greengrass
|
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
|