aws-sdk-simpledb 1.16.0 → 1.21.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/aws-sdk-simpledb.rb +9 -4
- data/lib/aws-sdk-simpledb/client.rb +76 -14
- data/lib/aws-sdk-simpledb/client_api.rb +2 -0
- data/lib/aws-sdk-simpledb/customizations.rb +1 -0
- data/lib/aws-sdk-simpledb/errors.rb +41 -17
- data/lib/aws-sdk-simpledb/resource.rb +3 -0
- data/lib/aws-sdk-simpledb/types.rb +39 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: d41f4b997c63b3e3320231955beae1f52af03c386792d3affb92f9038acde0b2
|
4
|
+
data.tar.gz: 3288d6271491fd7d50b769c2e299830202d17baa369d63dcc11dcfd47c6be18f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8330e55d8432f9be1bc31d19f0cc29d1034aefb6158247be2c4f5723364c05ddc99789cb9a917256d09af78a8b60ec2b5c3bb96db6518b59759ba867372612d7
|
7
|
+
data.tar.gz: e2fff4c9655fcc21ba5087ff28151c287868bb7710ad78509c67783c3928dc799b0183ecc35b00db01a63964c2db03194bcee583e933f2ecb2efa82b7bea62e9
|
data/lib/aws-sdk-simpledb.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,17 +26,20 @@ require_relative 'aws-sdk-simpledb/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# simple_db = Aws::SimpleDB::Client.new
|
30
|
+
# resp = simple_db.batch_delete_attributes(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from Amazon SimpleDB
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from Amazon SimpleDB are defined in the
|
37
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
38
|
#
|
34
39
|
# begin
|
35
40
|
# # do stuff
|
36
41
|
# rescue Aws::SimpleDB::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all Amazon SimpleDB API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-simpledb/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::SimpleDB
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.21.0'
|
46
51
|
|
47
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,12 +26,25 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v2.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
29
32
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:simpledb)
|
31
34
|
|
32
35
|
module Aws::SimpleDB
|
36
|
+
# An API client for SimpleDB. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::SimpleDB::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
43
|
+
#
|
44
|
+
# For details on configuring region and credentials see
|
45
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
46
|
+
#
|
47
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
48
|
class Client < Seahorse::Client::Base
|
34
49
|
|
35
50
|
include Aws::ClientStubs
|
@@ -57,6 +72,7 @@ module Aws::SimpleDB
|
|
57
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
59
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
60
76
|
add_plugin(Aws::Plugins::SignatureV2)
|
61
77
|
add_plugin(Aws::Plugins::Protocols::Query)
|
62
78
|
|
@@ -93,7 +109,7 @@ module Aws::SimpleDB
|
|
93
109
|
# @option options [required, String] :region
|
94
110
|
# The AWS region to connect to. The configured `:region` is
|
95
111
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
97
113
|
#
|
98
114
|
# * `Aws.config[:region]`
|
99
115
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +124,12 @@ module Aws::SimpleDB
|
|
108
124
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
125
|
# the background every 60 secs (default). Defaults to `false`.
|
110
126
|
#
|
127
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
128
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
129
|
+
# until there is sufficent client side capacity to retry the request.
|
130
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
131
|
+
# not retry instead of sleeping.
|
132
|
+
#
|
111
133
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
134
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
135
|
# this client.
|
@@ -132,6 +154,10 @@ module Aws::SimpleDB
|
|
132
154
|
# When `true`, an attempt is made to coerce request parameters into
|
133
155
|
# the required types.
|
134
156
|
#
|
157
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
158
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
159
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
160
|
+
#
|
135
161
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
162
|
# Set to true to disable SDK automatically adding host prefix
|
137
163
|
# to default service endpoint when available.
|
@@ -139,7 +165,7 @@ module Aws::SimpleDB
|
|
139
165
|
# @option options [String] :endpoint
|
140
166
|
# The client endpoint is normally constructed from the `:region`
|
141
167
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
143
169
|
#
|
144
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +180,7 @@ module Aws::SimpleDB
|
|
154
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
181
|
#
|
156
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
158
184
|
#
|
159
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
186
|
# The log formatter.
|
@@ -166,15 +192,29 @@ module Aws::SimpleDB
|
|
166
192
|
# The Logger instance to send log messages to. If this option
|
167
193
|
# is not set, logging will be disabled.
|
168
194
|
#
|
195
|
+
# @option options [Integer] :max_attempts (3)
|
196
|
+
# An integer representing the maximum number attempts that will be made for
|
197
|
+
# a single request, including the initial attempt. For example,
|
198
|
+
# setting this value to 5 will result in a request being retried up to
|
199
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
200
|
+
#
|
169
201
|
# @option options [String] :profile ("default")
|
170
202
|
# Used when loading credentials from the shared credentials file
|
171
203
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
204
|
#
|
205
|
+
# @option options [Proc] :retry_backoff
|
206
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
207
|
+
# This option is only used in the `legacy` retry mode.
|
208
|
+
#
|
173
209
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
210
|
+
# The base delay in seconds used by the default backoff function. This option
|
211
|
+
# is only used in the `legacy` retry mode.
|
175
212
|
#
|
176
213
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
214
|
+
# A delay randomiser function used by the default backoff function.
|
215
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
216
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
217
|
+
# in the `legacy` retry mode.
|
178
218
|
#
|
179
219
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
220
|
#
|
@@ -182,11 +222,30 @@ module Aws::SimpleDB
|
|
182
222
|
# The maximum number of times to retry failed requests. Only
|
183
223
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
224
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
225
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
226
|
+
# endpoint discovery, and errors from expired credentials.
|
227
|
+
# This option is only used in the `legacy` retry mode.
|
187
228
|
#
|
188
229
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
230
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
231
|
+
# used by the default backoff function. This option is only used in the
|
232
|
+
# `legacy` retry mode.
|
233
|
+
#
|
234
|
+
# @option options [String] :retry_mode ("legacy")
|
235
|
+
# Specifies which retry algorithm to use. Values are:
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
190
249
|
#
|
191
250
|
# @option options [String] :secret_access_key
|
192
251
|
#
|
@@ -209,16 +268,15 @@ module Aws::SimpleDB
|
|
209
268
|
# requests through. Formatted like 'http://proxy.com:123'.
|
210
269
|
#
|
211
270
|
# @option options [Float] :http_open_timeout (15) The number of
|
212
|
-
# seconds to wait when opening a HTTP session before
|
271
|
+
# seconds to wait when opening a HTTP session before raising a
|
213
272
|
# `Timeout::Error`.
|
214
273
|
#
|
215
274
|
# @option options [Integer] :http_read_timeout (60) The default
|
216
275
|
# number of seconds to wait for response data. This value can
|
217
|
-
# safely be set
|
218
|
-
# per-request on the session yeidled by {#session_for}.
|
276
|
+
# safely be set per-request on the session.
|
219
277
|
#
|
220
278
|
# @option options [Float] :http_idle_timeout (5) The number of
|
221
|
-
# seconds a connection is allowed to sit
|
279
|
+
# seconds a connection is allowed to sit idle before it is
|
222
280
|
# considered stale. Stale connections are closed and removed
|
223
281
|
# from the pool before making a request.
|
224
282
|
#
|
@@ -227,7 +285,7 @@ module Aws::SimpleDB
|
|
227
285
|
# request body. This option has no effect unless the request has
|
228
286
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
229
287
|
# disables this behaviour. This value can safely be set per
|
230
|
-
# request on the session
|
288
|
+
# request on the session.
|
231
289
|
#
|
232
290
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
233
291
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -602,6 +660,8 @@ module Aws::SimpleDB
|
|
602
660
|
# * {Types::ListDomainsResult#domain_names #domain_names} => Array<String>
|
603
661
|
# * {Types::ListDomainsResult#next_token #next_token} => String
|
604
662
|
#
|
663
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
664
|
+
#
|
605
665
|
# @example Request syntax with placeholder values
|
606
666
|
#
|
607
667
|
# resp = client.list_domains({
|
@@ -728,6 +788,8 @@ module Aws::SimpleDB
|
|
728
788
|
# * {Types::SelectResult#items #items} => Array<Types::Item>
|
729
789
|
# * {Types::SelectResult#next_token #next_token} => String
|
730
790
|
#
|
791
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
792
|
+
#
|
731
793
|
# @example Request syntax with placeholder values
|
732
794
|
#
|
733
795
|
# resp = client.select({
|
@@ -768,7 +830,7 @@ module Aws::SimpleDB
|
|
768
830
|
params: params,
|
769
831
|
config: config)
|
770
832
|
context[:gem_name] = 'aws-sdk-simpledb'
|
771
|
-
context[:gem_version] = '1.
|
833
|
+
context[:gem_version] = '1.21.0'
|
772
834
|
Seahorse::Client::Request.new(handlers, context)
|
773
835
|
end
|
774
836
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,45 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::SimpleDB
|
11
|
+
|
12
|
+
# When SimpleDB returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::SimpleDB::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all SimpleDB errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::SimpleDB::Errors::ServiceError
|
20
|
+
# # rescues all SimpleDB API errors
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
#
|
24
|
+
# ## Request Context
|
25
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
26
|
+
# information about the request that generated the error.
|
27
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
28
|
+
#
|
29
|
+
# ## Error Classes
|
30
|
+
# * {AttributeDoesNotExist}
|
31
|
+
# * {DuplicateItemName}
|
32
|
+
# * {InvalidNextToken}
|
33
|
+
# * {InvalidNumberPredicates}
|
34
|
+
# * {InvalidNumberValueTests}
|
35
|
+
# * {InvalidParameterValue}
|
36
|
+
# * {InvalidQueryExpression}
|
37
|
+
# * {MissingParameter}
|
38
|
+
# * {NoSuchDomain}
|
39
|
+
# * {NumberDomainAttributesExceeded}
|
40
|
+
# * {NumberDomainBytesExceeded}
|
41
|
+
# * {NumberDomainsExceeded}
|
42
|
+
# * {NumberItemAttributesExceeded}
|
43
|
+
# * {NumberSubmittedAttributesExceeded}
|
44
|
+
# * {NumberSubmittedItemsExceeded}
|
45
|
+
# * {RequestTimeout}
|
46
|
+
# * {TooManyRequestedAttributes}
|
47
|
+
#
|
48
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
49
|
+
# if they are not defined above.
|
9
50
|
module Errors
|
10
51
|
|
11
52
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +64,6 @@ module Aws::SimpleDB
|
|
23
64
|
def box_usage
|
24
65
|
@data[:box_usage]
|
25
66
|
end
|
26
|
-
|
27
67
|
end
|
28
68
|
|
29
69
|
class DuplicateItemName < ServiceError
|
@@ -39,7 +79,6 @@ module Aws::SimpleDB
|
|
39
79
|
def box_usage
|
40
80
|
@data[:box_usage]
|
41
81
|
end
|
42
|
-
|
43
82
|
end
|
44
83
|
|
45
84
|
class InvalidNextToken < ServiceError
|
@@ -55,7 +94,6 @@ module Aws::SimpleDB
|
|
55
94
|
def box_usage
|
56
95
|
@data[:box_usage]
|
57
96
|
end
|
58
|
-
|
59
97
|
end
|
60
98
|
|
61
99
|
class InvalidNumberPredicates < ServiceError
|
@@ -71,7 +109,6 @@ module Aws::SimpleDB
|
|
71
109
|
def box_usage
|
72
110
|
@data[:box_usage]
|
73
111
|
end
|
74
|
-
|
75
112
|
end
|
76
113
|
|
77
114
|
class InvalidNumberValueTests < ServiceError
|
@@ -87,7 +124,6 @@ module Aws::SimpleDB
|
|
87
124
|
def box_usage
|
88
125
|
@data[:box_usage]
|
89
126
|
end
|
90
|
-
|
91
127
|
end
|
92
128
|
|
93
129
|
class InvalidParameterValue < ServiceError
|
@@ -103,7 +139,6 @@ module Aws::SimpleDB
|
|
103
139
|
def box_usage
|
104
140
|
@data[:box_usage]
|
105
141
|
end
|
106
|
-
|
107
142
|
end
|
108
143
|
|
109
144
|
class InvalidQueryExpression < ServiceError
|
@@ -119,7 +154,6 @@ module Aws::SimpleDB
|
|
119
154
|
def box_usage
|
120
155
|
@data[:box_usage]
|
121
156
|
end
|
122
|
-
|
123
157
|
end
|
124
158
|
|
125
159
|
class MissingParameter < ServiceError
|
@@ -135,7 +169,6 @@ module Aws::SimpleDB
|
|
135
169
|
def box_usage
|
136
170
|
@data[:box_usage]
|
137
171
|
end
|
138
|
-
|
139
172
|
end
|
140
173
|
|
141
174
|
class NoSuchDomain < ServiceError
|
@@ -151,7 +184,6 @@ module Aws::SimpleDB
|
|
151
184
|
def box_usage
|
152
185
|
@data[:box_usage]
|
153
186
|
end
|
154
|
-
|
155
187
|
end
|
156
188
|
|
157
189
|
class NumberDomainAttributesExceeded < ServiceError
|
@@ -167,7 +199,6 @@ module Aws::SimpleDB
|
|
167
199
|
def box_usage
|
168
200
|
@data[:box_usage]
|
169
201
|
end
|
170
|
-
|
171
202
|
end
|
172
203
|
|
173
204
|
class NumberDomainBytesExceeded < ServiceError
|
@@ -183,7 +214,6 @@ module Aws::SimpleDB
|
|
183
214
|
def box_usage
|
184
215
|
@data[:box_usage]
|
185
216
|
end
|
186
|
-
|
187
217
|
end
|
188
218
|
|
189
219
|
class NumberDomainsExceeded < ServiceError
|
@@ -199,7 +229,6 @@ module Aws::SimpleDB
|
|
199
229
|
def box_usage
|
200
230
|
@data[:box_usage]
|
201
231
|
end
|
202
|
-
|
203
232
|
end
|
204
233
|
|
205
234
|
class NumberItemAttributesExceeded < ServiceError
|
@@ -215,7 +244,6 @@ module Aws::SimpleDB
|
|
215
244
|
def box_usage
|
216
245
|
@data[:box_usage]
|
217
246
|
end
|
218
|
-
|
219
247
|
end
|
220
248
|
|
221
249
|
class NumberSubmittedAttributesExceeded < ServiceError
|
@@ -231,7 +259,6 @@ module Aws::SimpleDB
|
|
231
259
|
def box_usage
|
232
260
|
@data[:box_usage]
|
233
261
|
end
|
234
|
-
|
235
262
|
end
|
236
263
|
|
237
264
|
class NumberSubmittedItemsExceeded < ServiceError
|
@@ -247,7 +274,6 @@ module Aws::SimpleDB
|
|
247
274
|
def box_usage
|
248
275
|
@data[:box_usage]
|
249
276
|
end
|
250
|
-
|
251
277
|
end
|
252
278
|
|
253
279
|
class RequestTimeout < ServiceError
|
@@ -263,7 +289,6 @@ module Aws::SimpleDB
|
|
263
289
|
def box_usage
|
264
290
|
@data[:box_usage]
|
265
291
|
end
|
266
|
-
|
267
292
|
end
|
268
293
|
|
269
294
|
class TooManyRequestedAttributes < ServiceError
|
@@ -279,7 +304,6 @@ module Aws::SimpleDB
|
|
279
304
|
def box_usage
|
280
305
|
@data[:box_usage]
|
281
306
|
end
|
282
|
-
|
283
307
|
end
|
284
308
|
|
285
309
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::SimpleDB
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -37,6 +39,7 @@ module Aws::SimpleDB
|
|
37
39
|
:alternate_name_encoding,
|
38
40
|
:value,
|
39
41
|
:alternate_value_encoding)
|
42
|
+
SENSITIVE = []
|
40
43
|
include Aws::Structure
|
41
44
|
end
|
42
45
|
|
@@ -47,6 +50,7 @@ module Aws::SimpleDB
|
|
47
50
|
#
|
48
51
|
class AttributeDoesNotExist < Struct.new(
|
49
52
|
:box_usage)
|
53
|
+
SENSITIVE = []
|
50
54
|
include Aws::Structure
|
51
55
|
end
|
52
56
|
|
@@ -81,6 +85,7 @@ module Aws::SimpleDB
|
|
81
85
|
class BatchDeleteAttributesRequest < Struct.new(
|
82
86
|
:domain_name,
|
83
87
|
:items)
|
88
|
+
SENSITIVE = []
|
84
89
|
include Aws::Structure
|
85
90
|
end
|
86
91
|
|
@@ -114,6 +119,7 @@ module Aws::SimpleDB
|
|
114
119
|
class BatchPutAttributesRequest < Struct.new(
|
115
120
|
:domain_name,
|
116
121
|
:items)
|
122
|
+
SENSITIVE = []
|
117
123
|
include Aws::Structure
|
118
124
|
end
|
119
125
|
|
@@ -132,6 +138,7 @@ module Aws::SimpleDB
|
|
132
138
|
#
|
133
139
|
class CreateDomainRequest < Struct.new(
|
134
140
|
:domain_name)
|
141
|
+
SENSITIVE = []
|
135
142
|
include Aws::Structure
|
136
143
|
end
|
137
144
|
|
@@ -159,6 +166,7 @@ module Aws::SimpleDB
|
|
159
166
|
class DeletableItem < Struct.new(
|
160
167
|
:name,
|
161
168
|
:attributes)
|
169
|
+
SENSITIVE = []
|
162
170
|
include Aws::Structure
|
163
171
|
end
|
164
172
|
|
@@ -211,6 +219,7 @@ module Aws::SimpleDB
|
|
211
219
|
:item_name,
|
212
220
|
:attributes,
|
213
221
|
:expected)
|
222
|
+
SENSITIVE = []
|
214
223
|
include Aws::Structure
|
215
224
|
end
|
216
225
|
|
@@ -227,6 +236,7 @@ module Aws::SimpleDB
|
|
227
236
|
#
|
228
237
|
class DeleteDomainRequest < Struct.new(
|
229
238
|
:domain_name)
|
239
|
+
SENSITIVE = []
|
230
240
|
include Aws::Structure
|
231
241
|
end
|
232
242
|
|
@@ -243,6 +253,7 @@ module Aws::SimpleDB
|
|
243
253
|
#
|
244
254
|
class DomainMetadataRequest < Struct.new(
|
245
255
|
:domain_name)
|
256
|
+
SENSITIVE = []
|
246
257
|
include Aws::Structure
|
247
258
|
end
|
248
259
|
|
@@ -284,6 +295,7 @@ module Aws::SimpleDB
|
|
284
295
|
:attribute_value_count,
|
285
296
|
:attribute_values_size_bytes,
|
286
297
|
:timestamp)
|
298
|
+
SENSITIVE = []
|
287
299
|
include Aws::Structure
|
288
300
|
end
|
289
301
|
|
@@ -294,6 +306,7 @@ module Aws::SimpleDB
|
|
294
306
|
#
|
295
307
|
class DuplicateItemName < Struct.new(
|
296
308
|
:box_usage)
|
309
|
+
SENSITIVE = []
|
297
310
|
include Aws::Structure
|
298
311
|
end
|
299
312
|
|
@@ -328,6 +341,7 @@ module Aws::SimpleDB
|
|
328
341
|
:item_name,
|
329
342
|
:attribute_names,
|
330
343
|
:consistent_read)
|
344
|
+
SENSITIVE = []
|
331
345
|
include Aws::Structure
|
332
346
|
end
|
333
347
|
|
@@ -337,6 +351,7 @@ module Aws::SimpleDB
|
|
337
351
|
#
|
338
352
|
class GetAttributesResult < Struct.new(
|
339
353
|
:attributes)
|
354
|
+
SENSITIVE = []
|
340
355
|
include Aws::Structure
|
341
356
|
end
|
342
357
|
|
@@ -347,6 +362,7 @@ module Aws::SimpleDB
|
|
347
362
|
#
|
348
363
|
class InvalidNextToken < Struct.new(
|
349
364
|
:box_usage)
|
365
|
+
SENSITIVE = []
|
350
366
|
include Aws::Structure
|
351
367
|
end
|
352
368
|
|
@@ -357,6 +373,7 @@ module Aws::SimpleDB
|
|
357
373
|
#
|
358
374
|
class InvalidNumberPredicates < Struct.new(
|
359
375
|
:box_usage)
|
376
|
+
SENSITIVE = []
|
360
377
|
include Aws::Structure
|
361
378
|
end
|
362
379
|
|
@@ -367,6 +384,7 @@ module Aws::SimpleDB
|
|
367
384
|
#
|
368
385
|
class InvalidNumberValueTests < Struct.new(
|
369
386
|
:box_usage)
|
387
|
+
SENSITIVE = []
|
370
388
|
include Aws::Structure
|
371
389
|
end
|
372
390
|
|
@@ -377,6 +395,7 @@ module Aws::SimpleDB
|
|
377
395
|
#
|
378
396
|
class InvalidParameterValue < Struct.new(
|
379
397
|
:box_usage)
|
398
|
+
SENSITIVE = []
|
380
399
|
include Aws::Structure
|
381
400
|
end
|
382
401
|
|
@@ -387,6 +406,7 @@ module Aws::SimpleDB
|
|
387
406
|
#
|
388
407
|
class InvalidQueryExpression < Struct.new(
|
389
408
|
:box_usage)
|
409
|
+
SENSITIVE = []
|
390
410
|
include Aws::Structure
|
391
411
|
end
|
392
412
|
|
@@ -405,6 +425,7 @@ module Aws::SimpleDB
|
|
405
425
|
:name,
|
406
426
|
:alternate_name_encoding,
|
407
427
|
:attributes)
|
428
|
+
SENSITIVE = []
|
408
429
|
include Aws::Structure
|
409
430
|
end
|
410
431
|
|
@@ -429,6 +450,7 @@ module Aws::SimpleDB
|
|
429
450
|
class ListDomainsRequest < Struct.new(
|
430
451
|
:max_number_of_domains,
|
431
452
|
:next_token)
|
453
|
+
SENSITIVE = []
|
432
454
|
include Aws::Structure
|
433
455
|
end
|
434
456
|
|
@@ -443,6 +465,7 @@ module Aws::SimpleDB
|
|
443
465
|
class ListDomainsResult < Struct.new(
|
444
466
|
:domain_names,
|
445
467
|
:next_token)
|
468
|
+
SENSITIVE = []
|
446
469
|
include Aws::Structure
|
447
470
|
end
|
448
471
|
|
@@ -453,6 +476,7 @@ module Aws::SimpleDB
|
|
453
476
|
#
|
454
477
|
class MissingParameter < Struct.new(
|
455
478
|
:box_usage)
|
479
|
+
SENSITIVE = []
|
456
480
|
include Aws::Structure
|
457
481
|
end
|
458
482
|
|
@@ -463,6 +487,7 @@ module Aws::SimpleDB
|
|
463
487
|
#
|
464
488
|
class NoSuchDomain < Struct.new(
|
465
489
|
:box_usage)
|
490
|
+
SENSITIVE = []
|
466
491
|
include Aws::Structure
|
467
492
|
end
|
468
493
|
|
@@ -473,6 +498,7 @@ module Aws::SimpleDB
|
|
473
498
|
#
|
474
499
|
class NumberDomainAttributesExceeded < Struct.new(
|
475
500
|
:box_usage)
|
501
|
+
SENSITIVE = []
|
476
502
|
include Aws::Structure
|
477
503
|
end
|
478
504
|
|
@@ -483,6 +509,7 @@ module Aws::SimpleDB
|
|
483
509
|
#
|
484
510
|
class NumberDomainBytesExceeded < Struct.new(
|
485
511
|
:box_usage)
|
512
|
+
SENSITIVE = []
|
486
513
|
include Aws::Structure
|
487
514
|
end
|
488
515
|
|
@@ -493,6 +520,7 @@ module Aws::SimpleDB
|
|
493
520
|
#
|
494
521
|
class NumberDomainsExceeded < Struct.new(
|
495
522
|
:box_usage)
|
523
|
+
SENSITIVE = []
|
496
524
|
include Aws::Structure
|
497
525
|
end
|
498
526
|
|
@@ -503,6 +531,7 @@ module Aws::SimpleDB
|
|
503
531
|
#
|
504
532
|
class NumberItemAttributesExceeded < Struct.new(
|
505
533
|
:box_usage)
|
534
|
+
SENSITIVE = []
|
506
535
|
include Aws::Structure
|
507
536
|
end
|
508
537
|
|
@@ -513,6 +542,7 @@ module Aws::SimpleDB
|
|
513
542
|
#
|
514
543
|
class NumberSubmittedAttributesExceeded < Struct.new(
|
515
544
|
:box_usage)
|
545
|
+
SENSITIVE = []
|
516
546
|
include Aws::Structure
|
517
547
|
end
|
518
548
|
|
@@ -523,6 +553,7 @@ module Aws::SimpleDB
|
|
523
553
|
#
|
524
554
|
class NumberSubmittedItemsExceeded < Struct.new(
|
525
555
|
:box_usage)
|
556
|
+
SENSITIVE = []
|
526
557
|
include Aws::Structure
|
527
558
|
end
|
528
559
|
|
@@ -570,6 +601,7 @@ module Aws::SimpleDB
|
|
570
601
|
:item_name,
|
571
602
|
:attributes,
|
572
603
|
:expected)
|
604
|
+
SENSITIVE = []
|
573
605
|
include Aws::Structure
|
574
606
|
end
|
575
607
|
|
@@ -598,6 +630,7 @@ module Aws::SimpleDB
|
|
598
630
|
:name,
|
599
631
|
:value,
|
600
632
|
:replace)
|
633
|
+
SENSITIVE = []
|
601
634
|
include Aws::Structure
|
602
635
|
end
|
603
636
|
|
@@ -626,6 +659,7 @@ module Aws::SimpleDB
|
|
626
659
|
class ReplaceableItem < Struct.new(
|
627
660
|
:name,
|
628
661
|
:attributes)
|
662
|
+
SENSITIVE = []
|
629
663
|
include Aws::Structure
|
630
664
|
end
|
631
665
|
|
@@ -637,6 +671,7 @@ module Aws::SimpleDB
|
|
637
671
|
#
|
638
672
|
class RequestTimeout < Struct.new(
|
639
673
|
:box_usage)
|
674
|
+
SENSITIVE = []
|
640
675
|
include Aws::Structure
|
641
676
|
end
|
642
677
|
|
@@ -665,6 +700,7 @@ module Aws::SimpleDB
|
|
665
700
|
:select_expression,
|
666
701
|
:next_token,
|
667
702
|
:consistent_read)
|
703
|
+
SENSITIVE = []
|
668
704
|
include Aws::Structure
|
669
705
|
end
|
670
706
|
|
@@ -679,6 +715,7 @@ module Aws::SimpleDB
|
|
679
715
|
class SelectResult < Struct.new(
|
680
716
|
:items,
|
681
717
|
:next_token)
|
718
|
+
SENSITIVE = []
|
682
719
|
include Aws::Structure
|
683
720
|
end
|
684
721
|
|
@@ -689,6 +726,7 @@ module Aws::SimpleDB
|
|
689
726
|
#
|
690
727
|
class TooManyRequestedAttributes < Struct.new(
|
691
728
|
:box_usage)
|
729
|
+
SENSITIVE = []
|
692
730
|
include Aws::Structure
|
693
731
|
end
|
694
732
|
|
@@ -728,6 +766,7 @@ module Aws::SimpleDB
|
|
728
766
|
:name,
|
729
767
|
:value,
|
730
768
|
:exists)
|
769
|
+
SENSITIVE = []
|
731
770
|
include Aws::Structure
|
732
771
|
end
|
733
772
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-simpledb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.21.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-06-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.99.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv2
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - Amazon SimpleDB
|