aws-sdk-timestreamquery 1.9.0 → 1.13.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-timestreamquery/client.rb +676 -39
- data/lib/aws-sdk-timestreamquery/client_api.rb +469 -2
- data/lib/aws-sdk-timestreamquery/errors.rb +37 -0
- data/lib/aws-sdk-timestreamquery/types.rb +1549 -155
- data/lib/aws-sdk-timestreamquery.rb +1 -1
- metadata +4 -4
@@ -32,6 +32,8 @@ module Aws::TimestreamQuery
|
|
32
32
|
# * {InternalServerException}
|
33
33
|
# * {InvalidEndpointException}
|
34
34
|
# * {QueryExecutionException}
|
35
|
+
# * {ResourceNotFoundException}
|
36
|
+
# * {ServiceQuotaExceededException}
|
35
37
|
# * {ThrottlingException}
|
36
38
|
# * {ValidationException}
|
37
39
|
#
|
@@ -116,6 +118,41 @@ module Aws::TimestreamQuery
|
|
116
118
|
end
|
117
119
|
end
|
118
120
|
|
121
|
+
class ResourceNotFoundException < ServiceError
|
122
|
+
|
123
|
+
# @param [Seahorse::Client::RequestContext] context
|
124
|
+
# @param [String] message
|
125
|
+
# @param [Aws::TimestreamQuery::Types::ResourceNotFoundException] data
|
126
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
127
|
+
super(context, message, data)
|
128
|
+
end
|
129
|
+
|
130
|
+
# @return [String]
|
131
|
+
def message
|
132
|
+
@message || @data[:message]
|
133
|
+
end
|
134
|
+
|
135
|
+
# @return [String]
|
136
|
+
def scheduled_query_arn
|
137
|
+
@data[:scheduled_query_arn]
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
141
|
+
class ServiceQuotaExceededException < ServiceError
|
142
|
+
|
143
|
+
# @param [Seahorse::Client::RequestContext] context
|
144
|
+
# @param [String] message
|
145
|
+
# @param [Aws::TimestreamQuery::Types::ServiceQuotaExceededException] data
|
146
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
147
|
+
super(context, message, data)
|
148
|
+
end
|
149
|
+
|
150
|
+
# @return [String]
|
151
|
+
def message
|
152
|
+
@message || @data[:message]
|
153
|
+
end
|
154
|
+
end
|
155
|
+
|
119
156
|
class ThrottlingException < ServiceError
|
120
157
|
|
121
158
|
# @param [Seahorse::Client::RequestContext] context
|