aws-sdk-cleanroomsml 1.26.0 → 1.27.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cleanroomsml/client.rb +215 -2
- data/lib/aws-sdk-cleanroomsml/client_api.rb +150 -22
- data/lib/aws-sdk-cleanroomsml/errors.rb +42 -0
- data/lib/aws-sdk-cleanroomsml/types.rb +435 -21
- data/lib/aws-sdk-cleanroomsml.rb +1 -1
- data/sig/client.rbs +53 -8
- data/sig/errors.rbs +8 -0
- data/sig/types.rbs +75 -0
- metadata +1 -1
@@ -29,8 +29,10 @@ module Aws::CleanRoomsML
|
|
29
29
|
# ## Error Classes
|
30
30
|
# * {AccessDeniedException}
|
31
31
|
# * {ConflictException}
|
32
|
+
# * {InternalServiceException}
|
32
33
|
# * {ResourceNotFoundException}
|
33
34
|
# * {ServiceQuotaExceededException}
|
35
|
+
# * {ThrottlingException}
|
34
36
|
# * {ValidationException}
|
35
37
|
#
|
36
38
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
@@ -69,6 +71,21 @@ module Aws::CleanRoomsML
|
|
69
71
|
end
|
70
72
|
end
|
71
73
|
|
74
|
+
class InternalServiceException < ServiceError
|
75
|
+
|
76
|
+
# @param [Seahorse::Client::RequestContext] context
|
77
|
+
# @param [String] message
|
78
|
+
# @param [Aws::CleanRoomsML::Types::InternalServiceException] data
|
79
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
80
|
+
super(context, message, data)
|
81
|
+
end
|
82
|
+
|
83
|
+
# @return [String]
|
84
|
+
def message
|
85
|
+
@message || @data[:message]
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
72
89
|
class ResourceNotFoundException < ServiceError
|
73
90
|
|
74
91
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -97,6 +114,31 @@ module Aws::CleanRoomsML
|
|
97
114
|
def message
|
98
115
|
@message || @data[:message]
|
99
116
|
end
|
117
|
+
|
118
|
+
# @return [String]
|
119
|
+
def quota_name
|
120
|
+
@data[:quota_name]
|
121
|
+
end
|
122
|
+
|
123
|
+
# @return [String]
|
124
|
+
def quota_value
|
125
|
+
@data[:quota_value]
|
126
|
+
end
|
127
|
+
end
|
128
|
+
|
129
|
+
class ThrottlingException < ServiceError
|
130
|
+
|
131
|
+
# @param [Seahorse::Client::RequestContext] context
|
132
|
+
# @param [String] message
|
133
|
+
# @param [Aws::CleanRoomsML::Types::ThrottlingException] data
|
134
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
135
|
+
super(context, message, data)
|
136
|
+
end
|
137
|
+
|
138
|
+
# @return [String]
|
139
|
+
def message
|
140
|
+
@message || @data[:message]
|
141
|
+
end
|
100
142
|
end
|
101
143
|
|
102
144
|
class ValidationException < ServiceError
|