aws-sdk-identitystore 1.17.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 +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-identitystore/client.rb +798 -10
- data/lib/aws-sdk-identitystore/client_api.rb +553 -17
- data/lib/aws-sdk-identitystore/errors.rb +69 -0
- data/lib/aws-sdk-identitystore/types.rb +1584 -121
- data/lib/aws-sdk-identitystore.rb +2 -2
- metadata +2 -2
@@ -28,8 +28,10 @@ module Aws::IdentityStore
|
|
28
28
|
#
|
29
29
|
# ## Error Classes
|
30
30
|
# * {AccessDeniedException}
|
31
|
+
# * {ConflictException}
|
31
32
|
# * {InternalServerException}
|
32
33
|
# * {ResourceNotFoundException}
|
34
|
+
# * {ServiceQuotaExceededException}
|
33
35
|
# * {ThrottlingException}
|
34
36
|
# * {ValidationException}
|
35
37
|
#
|
@@ -59,6 +61,31 @@ module Aws::IdentityStore
|
|
59
61
|
end
|
60
62
|
end
|
61
63
|
|
64
|
+
class ConflictException < ServiceError
|
65
|
+
|
66
|
+
# @param [Seahorse::Client::RequestContext] context
|
67
|
+
# @param [String] message
|
68
|
+
# @param [Aws::IdentityStore::Types::ConflictException] data
|
69
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
70
|
+
super(context, message, data)
|
71
|
+
end
|
72
|
+
|
73
|
+
# @return [String]
|
74
|
+
def message
|
75
|
+
@message || @data[:message]
|
76
|
+
end
|
77
|
+
|
78
|
+
# @return [String]
|
79
|
+
def request_id
|
80
|
+
@data[:request_id]
|
81
|
+
end
|
82
|
+
|
83
|
+
# @return [String]
|
84
|
+
def reason
|
85
|
+
@data[:reason]
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
62
89
|
class InternalServerException < ServiceError
|
63
90
|
|
64
91
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -77,6 +104,15 @@ module Aws::IdentityStore
|
|
77
104
|
def request_id
|
78
105
|
@data[:request_id]
|
79
106
|
end
|
107
|
+
|
108
|
+
# @return [String]
|
109
|
+
def retry_after_seconds
|
110
|
+
@data[:retry_after_seconds]
|
111
|
+
end
|
112
|
+
|
113
|
+
def retryable?
|
114
|
+
true
|
115
|
+
end
|
80
116
|
end
|
81
117
|
|
82
118
|
class ResourceNotFoundException < ServiceError
|
@@ -109,6 +145,26 @@ module Aws::IdentityStore
|
|
109
145
|
end
|
110
146
|
end
|
111
147
|
|
148
|
+
class ServiceQuotaExceededException < ServiceError
|
149
|
+
|
150
|
+
# @param [Seahorse::Client::RequestContext] context
|
151
|
+
# @param [String] message
|
152
|
+
# @param [Aws::IdentityStore::Types::ServiceQuotaExceededException] data
|
153
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
154
|
+
super(context, message, data)
|
155
|
+
end
|
156
|
+
|
157
|
+
# @return [String]
|
158
|
+
def message
|
159
|
+
@message || @data[:message]
|
160
|
+
end
|
161
|
+
|
162
|
+
# @return [String]
|
163
|
+
def request_id
|
164
|
+
@data[:request_id]
|
165
|
+
end
|
166
|
+
end
|
167
|
+
|
112
168
|
class ThrottlingException < ServiceError
|
113
169
|
|
114
170
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -127,6 +183,19 @@ module Aws::IdentityStore
|
|
127
183
|
def request_id
|
128
184
|
@data[:request_id]
|
129
185
|
end
|
186
|
+
|
187
|
+
# @return [String]
|
188
|
+
def retry_after_seconds
|
189
|
+
@data[:retry_after_seconds]
|
190
|
+
end
|
191
|
+
|
192
|
+
def retryable?
|
193
|
+
true
|
194
|
+
end
|
195
|
+
|
196
|
+
def throttling?
|
197
|
+
true
|
198
|
+
end
|
130
199
|
end
|
131
200
|
|
132
201
|
class ValidationException < ServiceError
|