aws-sdk-core 3.251.0 → 3.253.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 +14 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-signin/client.rb +407 -1
- data/lib/aws-sdk-signin/client_api.rb +325 -0
- data/lib/aws-sdk-signin/endpoint_parameters.rb +16 -0
- data/lib/aws-sdk-signin/endpoint_provider.rb +48 -0
- data/lib/aws-sdk-signin/endpoints.rb +114 -1
- data/lib/aws-sdk-signin/errors.rb +63 -0
- data/lib/aws-sdk-signin/types.rb +613 -3
- data/lib/aws-sdk-signin.rb +1 -1
- data/lib/aws-sdk-sso/client.rb +1 -1
- data/lib/aws-sdk-sso.rb +1 -1
- data/lib/aws-sdk-ssooidc/client.rb +1 -1
- data/lib/aws-sdk-ssooidc.rb +1 -1
- data/lib/aws-sdk-sts/client.rb +1 -1
- data/lib/aws-sdk-sts.rb +1 -1
- metadata +1 -1
|
@@ -28,7 +28,10 @@ module Aws::Signin
|
|
|
28
28
|
#
|
|
29
29
|
# ## Error Classes
|
|
30
30
|
# * {AccessDeniedException}
|
|
31
|
+
# * {ConflictException}
|
|
31
32
|
# * {InternalServerException}
|
|
33
|
+
# * {ResourceNotFoundException}
|
|
34
|
+
# * {ServiceQuotaExceededException}
|
|
32
35
|
# * {TooManyRequestsError}
|
|
33
36
|
# * {ValidationException}
|
|
34
37
|
#
|
|
@@ -58,6 +61,26 @@ module Aws::Signin
|
|
|
58
61
|
end
|
|
59
62
|
end
|
|
60
63
|
|
|
64
|
+
class ConflictException < ServiceError
|
|
65
|
+
|
|
66
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
67
|
+
# @param [String] message
|
|
68
|
+
# @param [Aws::Signin::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 error
|
|
75
|
+
@data[:error]
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
# @return [String]
|
|
79
|
+
def message
|
|
80
|
+
@message || @data[:message]
|
|
81
|
+
end
|
|
82
|
+
end
|
|
83
|
+
|
|
61
84
|
class InternalServerException < ServiceError
|
|
62
85
|
|
|
63
86
|
# @param [Seahorse::Client::RequestContext] context
|
|
@@ -78,6 +101,46 @@ module Aws::Signin
|
|
|
78
101
|
end
|
|
79
102
|
end
|
|
80
103
|
|
|
104
|
+
class ResourceNotFoundException < ServiceError
|
|
105
|
+
|
|
106
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
107
|
+
# @param [String] message
|
|
108
|
+
# @param [Aws::Signin::Types::ResourceNotFoundException] data
|
|
109
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
110
|
+
super(context, message, data)
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
# @return [String]
|
|
114
|
+
def error
|
|
115
|
+
@data[:error]
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
# @return [String]
|
|
119
|
+
def message
|
|
120
|
+
@message || @data[:message]
|
|
121
|
+
end
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
class ServiceQuotaExceededException < ServiceError
|
|
125
|
+
|
|
126
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
127
|
+
# @param [String] message
|
|
128
|
+
# @param [Aws::Signin::Types::ServiceQuotaExceededException] data
|
|
129
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
130
|
+
super(context, message, data)
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
# @return [String]
|
|
134
|
+
def error
|
|
135
|
+
@data[:error]
|
|
136
|
+
end
|
|
137
|
+
|
|
138
|
+
# @return [String]
|
|
139
|
+
def message
|
|
140
|
+
@message || @data[:message]
|
|
141
|
+
end
|
|
142
|
+
end
|
|
143
|
+
|
|
81
144
|
class TooManyRequestsError < ServiceError
|
|
82
145
|
|
|
83
146
|
# @param [Seahorse::Client::RequestContext] context
|