aws-sdk-iotmanagedintegrations 1.2.0 → 1.4.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/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotmanagedintegrations/client.rb +1374 -32
- data/lib/aws-sdk-iotmanagedintegrations/client_api.rb +939 -12
- data/lib/aws-sdk-iotmanagedintegrations/errors.rb +42 -0
- data/lib/aws-sdk-iotmanagedintegrations/types.rb +1776 -85
- data/lib/aws-sdk-iotmanagedintegrations.rb +2 -2
- data/sig/client.rbs +437 -10
- data/sig/errors.rbs +8 -0
- data/sig/types.rbs +504 -12
- metadata +4 -4
@@ -31,6 +31,8 @@ module Aws::IoTManagedIntegrations
|
|
31
31
|
# * {ConflictException}
|
32
32
|
# * {InternalFailureException}
|
33
33
|
# * {InternalServerException}
|
34
|
+
# * {InvalidRequestException}
|
35
|
+
# * {LimitExceededException}
|
34
36
|
# * {ResourceNotFoundException}
|
35
37
|
# * {ServiceQuotaExceededException}
|
36
38
|
# * {ServiceUnavailableException}
|
@@ -104,6 +106,36 @@ module Aws::IoTManagedIntegrations
|
|
104
106
|
end
|
105
107
|
end
|
106
108
|
|
109
|
+
class InvalidRequestException < ServiceError
|
110
|
+
|
111
|
+
# @param [Seahorse::Client::RequestContext] context
|
112
|
+
# @param [String] message
|
113
|
+
# @param [Aws::IoTManagedIntegrations::Types::InvalidRequestException] data
|
114
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
115
|
+
super(context, message, data)
|
116
|
+
end
|
117
|
+
|
118
|
+
# @return [String]
|
119
|
+
def message
|
120
|
+
@message || @data[:message]
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
class LimitExceededException < ServiceError
|
125
|
+
|
126
|
+
# @param [Seahorse::Client::RequestContext] context
|
127
|
+
# @param [String] message
|
128
|
+
# @param [Aws::IoTManagedIntegrations::Types::LimitExceededException] data
|
129
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
130
|
+
super(context, message, data)
|
131
|
+
end
|
132
|
+
|
133
|
+
# @return [String]
|
134
|
+
def message
|
135
|
+
@message || @data[:message]
|
136
|
+
end
|
137
|
+
end
|
138
|
+
|
107
139
|
class ResourceNotFoundException < ServiceError
|
108
140
|
|
109
141
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -117,6 +149,16 @@ module Aws::IoTManagedIntegrations
|
|
117
149
|
def message
|
118
150
|
@message || @data[:message]
|
119
151
|
end
|
152
|
+
|
153
|
+
# @return [String]
|
154
|
+
def resource_id
|
155
|
+
@data[:resource_id]
|
156
|
+
end
|
157
|
+
|
158
|
+
# @return [String]
|
159
|
+
def resource_type
|
160
|
+
@data[:resource_type]
|
161
|
+
end
|
120
162
|
end
|
121
163
|
|
122
164
|
class ServiceQuotaExceededException < ServiceError
|