aws-sdk-simpledb 1.17.0 → 1.22.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 +4 -2
- data/lib/aws-sdk-simpledb/client.rb +54 -28
- 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 +2 -0
- data/lib/aws-sdk-simpledb/resource.rb +3 -7
- 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: 8e904126807df239f6b590bac73d3a5c952841f0103f65cc4543fe3ea639c8da
|
4
|
+
data.tar.gz: fd458c87129ff7721dc2761d4733230ad2b42980258244d46a8d2589f9f8799a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c0f8d3d460ac51d0dd93e276683cec529db953fec61732d1dfebcfb5ab381304502cfb1658a65c9e1d74fe29a3c6433088ce1f4d9adbd522ad9a0980698c76ab
|
7
|
+
data.tar.gz: 0716dba32caa609d657fa8cd9e14f1f73653d06761d3ec87a8fa164d7aa1d6a15cdf7c2bd682f7b6518d9ca2d61a229ecfe0ec16ddb4c67958fd354693313405
|
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:
|
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-simpledb/customizations'
|
|
42
44
|
#
|
43
45
|
# See {Errors} for more information.
|
44
46
|
#
|
45
|
-
#
|
47
|
+
# @!group service
|
46
48
|
module Aws::SimpleDB
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.22.0'
|
49
51
|
|
50
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,6 +26,7 @@ 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
|
|
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:simpledb)
|
|
32
35
|
module Aws::SimpleDB
|
33
36
|
# An API client for SimpleDB. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
37
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
38
|
+
# client = Aws::SimpleDB::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
40
43
|
#
|
41
44
|
# For details on configuring region and credentials see
|
42
45
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -69,6 +72,7 @@ module Aws::SimpleDB
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV2)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::Query)
|
74
78
|
|
@@ -81,13 +85,28 @@ module Aws::SimpleDB
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
82
86
|
# credentials.
|
83
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
86
104
|
#
|
87
|
-
# * `Aws::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,15 +116,15 @@ module Aws::SimpleDB
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
98
117
|
# * `~/.aws/credentials`
|
99
118
|
# * `~/.aws/config`
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
107
126
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
127
|
+
# a default `:region` is searched for in the following locations:
|
109
128
|
#
|
110
129
|
# * `Aws.config[:region]`
|
111
130
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +180,7 @@ module Aws::SimpleDB
|
|
161
180
|
# @option options [String] :endpoint
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
184
|
#
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +195,7 @@ module Aws::SimpleDB
|
|
176
195
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
196
|
#
|
178
197
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
198
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
199
|
#
|
181
200
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
201
|
# The log formatter.
|
@@ -229,15 +248,19 @@ module Aws::SimpleDB
|
|
229
248
|
#
|
230
249
|
# @option options [String] :retry_mode ("legacy")
|
231
250
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
251
|
+
#
|
252
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
253
|
+
# no retry mode is provided.
|
254
|
+
#
|
255
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
256
|
+
# This includes support for retry quotas, which limit the number of
|
257
|
+
# unsuccessful retries a client can make.
|
258
|
+
#
|
259
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
260
|
+
# functionality of `standard` mode along with automatic client side
|
261
|
+
# throttling. This is a provisional mode that may change behavior
|
262
|
+
# in the future.
|
263
|
+
#
|
241
264
|
#
|
242
265
|
# @option options [String] :secret_access_key
|
243
266
|
#
|
@@ -265,8 +288,7 @@ module Aws::SimpleDB
|
|
265
288
|
#
|
266
289
|
# @option options [Integer] :http_read_timeout (60) The default
|
267
290
|
# number of seconds to wait for response data. This value can
|
268
|
-
# safely be set
|
269
|
-
# per-request on the session yielded by {#session_for}.
|
291
|
+
# safely be set per-request on the session.
|
270
292
|
#
|
271
293
|
# @option options [Float] :http_idle_timeout (5) The number of
|
272
294
|
# seconds a connection is allowed to sit idle before it is
|
@@ -278,7 +300,7 @@ module Aws::SimpleDB
|
|
278
300
|
# request body. This option has no effect unless the request has
|
279
301
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
280
302
|
# disables this behaviour. This value can safely be set per
|
281
|
-
# request on the session
|
303
|
+
# request on the session.
|
282
304
|
#
|
283
305
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
284
306
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -653,6 +675,8 @@ module Aws::SimpleDB
|
|
653
675
|
# * {Types::ListDomainsResult#domain_names #domain_names} => Array<String>
|
654
676
|
# * {Types::ListDomainsResult#next_token #next_token} => String
|
655
677
|
#
|
678
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
679
|
+
#
|
656
680
|
# @example Request syntax with placeholder values
|
657
681
|
#
|
658
682
|
# resp = client.list_domains({
|
@@ -779,6 +803,8 @@ module Aws::SimpleDB
|
|
779
803
|
# * {Types::SelectResult#items #items} => Array<Types::Item>
|
780
804
|
# * {Types::SelectResult#next_token #next_token} => String
|
781
805
|
#
|
806
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
807
|
+
#
|
782
808
|
# @example Request syntax with placeholder values
|
783
809
|
#
|
784
810
|
# resp = client.select({
|
@@ -819,7 +845,7 @@ module Aws::SimpleDB
|
|
819
845
|
params: params,
|
820
846
|
config: config)
|
821
847
|
context[:gem_name] = 'aws-sdk-simpledb'
|
822
|
-
context[:gem_version] = '1.
|
848
|
+
context[:gem_version] = '1.22.0'
|
823
849
|
Seahorse::Client::Request.new(handlers, context)
|
824
850
|
end
|
825
851
|
|
@@ -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,13 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::SimpleDB
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::SimpleDB::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::SimpleDB::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::SimpleDB::Resource.new(client: client)
|
11
|
+
|
16
12
|
class Resource
|
17
13
|
|
18
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.22.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: 2020-
|
11
|
+
date: 2020-08-25 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
|