aws-sdk-iot1clickprojects 1.13.0 → 1.14.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: 9906bf493db7284f38e0a703c8f0d352e8c3f539
|
4
|
+
data.tar.gz: f4c268f9067c019535bb6d4c87b2c3fd63ec2f66
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ec361b0e312bcc177fdd0928ad14ded302b4927df87f1a6bfa265648f32b658fdd068a7e4e8be8a913cd42f8a6e0f9ba547ea78bd5b3471f3cdde7d75dbdccf
|
7
|
+
data.tar.gz: dbf84b7d570204fb67149868d786c3a1693ab86fb37d1f41c34ea8bd00a4377c932a086d79707a7adf4a538f34b7dc9b232c2321f01ab50c145a5ecc34839b5a
|
@@ -824,7 +824,7 @@ module Aws::IoT1ClickProjects
|
|
824
824
|
params: params,
|
825
825
|
config: config)
|
826
826
|
context[:gem_name] = 'aws-sdk-iot1clickprojects'
|
827
|
-
context[:gem_version] = '1.
|
827
|
+
context[:gem_version] = '1.14.0'
|
828
828
|
Seahorse::Client::Request.new(handlers, context)
|
829
829
|
end
|
830
830
|
|
@@ -160,6 +160,14 @@ module Aws::IoT1ClickProjects
|
|
160
160
|
GetDevicesInPlacementResponse.add_member(:devices, Shapes::ShapeRef.new(shape: DeviceMap, required: true, location_name: "devices"))
|
161
161
|
GetDevicesInPlacementResponse.struct_class = Types::GetDevicesInPlacementResponse
|
162
162
|
|
163
|
+
InternalFailureException.add_member(:code, Shapes::ShapeRef.new(shape: Code, required: true, location_name: "code"))
|
164
|
+
InternalFailureException.add_member(:message, Shapes::ShapeRef.new(shape: Message, required: true, location_name: "message"))
|
165
|
+
InternalFailureException.struct_class = Types::InternalFailureException
|
166
|
+
|
167
|
+
InvalidRequestException.add_member(:code, Shapes::ShapeRef.new(shape: Code, required: true, location_name: "code"))
|
168
|
+
InvalidRequestException.add_member(:message, Shapes::ShapeRef.new(shape: Message, required: true, location_name: "message"))
|
169
|
+
InvalidRequestException.struct_class = Types::InvalidRequestException
|
170
|
+
|
163
171
|
ListPlacementsRequest.add_member(:project_name, Shapes::ShapeRef.new(shape: ProjectName, required: true, location: "uri", location_name: "projectName"))
|
164
172
|
ListPlacementsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
165
173
|
ListPlacementsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
@@ -223,6 +231,14 @@ module Aws::IoT1ClickProjects
|
|
223
231
|
|
224
232
|
ProjectSummaryList.member = Shapes::ShapeRef.new(shape: ProjectSummary)
|
225
233
|
|
234
|
+
ResourceConflictException.add_member(:code, Shapes::ShapeRef.new(shape: Code, required: true, location_name: "code"))
|
235
|
+
ResourceConflictException.add_member(:message, Shapes::ShapeRef.new(shape: Message, required: true, location_name: "message"))
|
236
|
+
ResourceConflictException.struct_class = Types::ResourceConflictException
|
237
|
+
|
238
|
+
ResourceNotFoundException.add_member(:code, Shapes::ShapeRef.new(shape: Code, required: true, location_name: "code"))
|
239
|
+
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: Message, required: true, location_name: "message"))
|
240
|
+
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
241
|
+
|
226
242
|
TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
|
227
243
|
|
228
244
|
TagMap.key = Shapes::ShapeRef.new(shape: TagKey)
|
@@ -234,6 +250,10 @@ module Aws::IoT1ClickProjects
|
|
234
250
|
|
235
251
|
TagResourceResponse.struct_class = Types::TagResourceResponse
|
236
252
|
|
253
|
+
TooManyRequestsException.add_member(:code, Shapes::ShapeRef.new(shape: Code, required: true, location_name: "code"))
|
254
|
+
TooManyRequestsException.add_member(:message, Shapes::ShapeRef.new(shape: Message, required: true, location_name: "message"))
|
255
|
+
TooManyRequestsException.struct_class = Types::TooManyRequestsException
|
256
|
+
|
237
257
|
UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ProjectArn, required: true, location: "uri", location_name: "resourceArn"))
|
238
258
|
UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location: "querystring", location_name: "tagKeys"))
|
239
259
|
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
@@ -10,5 +10,110 @@ module Aws::IoT1ClickProjects
|
|
10
10
|
|
11
11
|
extend Aws::Errors::DynamicErrors
|
12
12
|
|
13
|
+
class InternalFailureException < ServiceError
|
14
|
+
|
15
|
+
# @param [Seahorse::Client::RequestContext] context
|
16
|
+
# @param [String] message
|
17
|
+
# @param [Aws::IoT1ClickProjects::Types::InternalFailureException] data
|
18
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
19
|
+
super(context, message, data)
|
20
|
+
end
|
21
|
+
|
22
|
+
# @return [String]
|
23
|
+
def code
|
24
|
+
@code || @data[:code]
|
25
|
+
end
|
26
|
+
|
27
|
+
# @return [String]
|
28
|
+
def message
|
29
|
+
@message || @data[:message]
|
30
|
+
end
|
31
|
+
|
32
|
+
end
|
33
|
+
|
34
|
+
class InvalidRequestException < ServiceError
|
35
|
+
|
36
|
+
# @param [Seahorse::Client::RequestContext] context
|
37
|
+
# @param [String] message
|
38
|
+
# @param [Aws::IoT1ClickProjects::Types::InvalidRequestException] data
|
39
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
40
|
+
super(context, message, data)
|
41
|
+
end
|
42
|
+
|
43
|
+
# @return [String]
|
44
|
+
def code
|
45
|
+
@code || @data[:code]
|
46
|
+
end
|
47
|
+
|
48
|
+
# @return [String]
|
49
|
+
def message
|
50
|
+
@message || @data[:message]
|
51
|
+
end
|
52
|
+
|
53
|
+
end
|
54
|
+
|
55
|
+
class ResourceConflictException < ServiceError
|
56
|
+
|
57
|
+
# @param [Seahorse::Client::RequestContext] context
|
58
|
+
# @param [String] message
|
59
|
+
# @param [Aws::IoT1ClickProjects::Types::ResourceConflictException] data
|
60
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
61
|
+
super(context, message, data)
|
62
|
+
end
|
63
|
+
|
64
|
+
# @return [String]
|
65
|
+
def code
|
66
|
+
@code || @data[:code]
|
67
|
+
end
|
68
|
+
|
69
|
+
# @return [String]
|
70
|
+
def message
|
71
|
+
@message || @data[:message]
|
72
|
+
end
|
73
|
+
|
74
|
+
end
|
75
|
+
|
76
|
+
class ResourceNotFoundException < ServiceError
|
77
|
+
|
78
|
+
# @param [Seahorse::Client::RequestContext] context
|
79
|
+
# @param [String] message
|
80
|
+
# @param [Aws::IoT1ClickProjects::Types::ResourceNotFoundException] data
|
81
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
82
|
+
super(context, message, data)
|
83
|
+
end
|
84
|
+
|
85
|
+
# @return [String]
|
86
|
+
def code
|
87
|
+
@code || @data[:code]
|
88
|
+
end
|
89
|
+
|
90
|
+
# @return [String]
|
91
|
+
def message
|
92
|
+
@message || @data[:message]
|
93
|
+
end
|
94
|
+
|
95
|
+
end
|
96
|
+
|
97
|
+
class TooManyRequestsException < ServiceError
|
98
|
+
|
99
|
+
# @param [Seahorse::Client::RequestContext] context
|
100
|
+
# @param [String] message
|
101
|
+
# @param [Aws::IoT1ClickProjects::Types::TooManyRequestsException] data
|
102
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
103
|
+
super(context, message, data)
|
104
|
+
end
|
105
|
+
|
106
|
+
# @return [String]
|
107
|
+
def code
|
108
|
+
@code || @data[:code]
|
109
|
+
end
|
110
|
+
|
111
|
+
# @return [String]
|
112
|
+
def message
|
113
|
+
@message || @data[:message]
|
114
|
+
end
|
115
|
+
|
116
|
+
end
|
117
|
+
|
13
118
|
end
|
14
119
|
end
|
@@ -328,6 +328,30 @@ module Aws::IoT1ClickProjects
|
|
328
328
|
include Aws::Structure
|
329
329
|
end
|
330
330
|
|
331
|
+
# @!attribute [rw] code
|
332
|
+
# @return [String]
|
333
|
+
#
|
334
|
+
# @!attribute [rw] message
|
335
|
+
# @return [String]
|
336
|
+
#
|
337
|
+
class InternalFailureException < Struct.new(
|
338
|
+
:code,
|
339
|
+
:message)
|
340
|
+
include Aws::Structure
|
341
|
+
end
|
342
|
+
|
343
|
+
# @!attribute [rw] code
|
344
|
+
# @return [String]
|
345
|
+
#
|
346
|
+
# @!attribute [rw] message
|
347
|
+
# @return [String]
|
348
|
+
#
|
349
|
+
class InvalidRequestException < Struct.new(
|
350
|
+
:code,
|
351
|
+
:message)
|
352
|
+
include Aws::Structure
|
353
|
+
end
|
354
|
+
|
331
355
|
# @note When making an API call, you may pass ListPlacementsRequest
|
332
356
|
# data as a hash:
|
333
357
|
#
|
@@ -614,6 +638,30 @@ module Aws::IoT1ClickProjects
|
|
614
638
|
include Aws::Structure
|
615
639
|
end
|
616
640
|
|
641
|
+
# @!attribute [rw] code
|
642
|
+
# @return [String]
|
643
|
+
#
|
644
|
+
# @!attribute [rw] message
|
645
|
+
# @return [String]
|
646
|
+
#
|
647
|
+
class ResourceConflictException < Struct.new(
|
648
|
+
:code,
|
649
|
+
:message)
|
650
|
+
include Aws::Structure
|
651
|
+
end
|
652
|
+
|
653
|
+
# @!attribute [rw] code
|
654
|
+
# @return [String]
|
655
|
+
#
|
656
|
+
# @!attribute [rw] message
|
657
|
+
# @return [String]
|
658
|
+
#
|
659
|
+
class ResourceNotFoundException < Struct.new(
|
660
|
+
:code,
|
661
|
+
:message)
|
662
|
+
include Aws::Structure
|
663
|
+
end
|
664
|
+
|
617
665
|
# @note When making an API call, you may pass TagResourceRequest
|
618
666
|
# data as a hash:
|
619
667
|
#
|
@@ -646,6 +694,18 @@ module Aws::IoT1ClickProjects
|
|
646
694
|
|
647
695
|
class TagResourceResponse < Aws::EmptyStructure; end
|
648
696
|
|
697
|
+
# @!attribute [rw] code
|
698
|
+
# @return [String]
|
699
|
+
#
|
700
|
+
# @!attribute [rw] message
|
701
|
+
# @return [String]
|
702
|
+
#
|
703
|
+
class TooManyRequestsException < Struct.new(
|
704
|
+
:code,
|
705
|
+
:message)
|
706
|
+
include Aws::Structure
|
707
|
+
end
|
708
|
+
|
649
709
|
# @note When making an API call, you may pass UntagResourceRequest
|
650
710
|
# data as a hash:
|
651
711
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-iot1clickprojects
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.14.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
|