aws-sdk-simpledb 1.20.1 → 1.25.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-simpledb.rb +5 -2
- data/lib/aws-sdk-simpledb/client.rb +25 -8
- 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 +2 -0
- data/lib/aws-sdk-simpledb/types.rb +39 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4fd8c92bac0feca97477a7a53cd555430caf1153f90d0385a3923f78786142a9
|
4
|
+
data.tar.gz: 1f5691e9bdcdacfb34300ce9f0ba864c95e0afab9a94d70ecda2a7c3cc426fb6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8a99eb79686e4327158e7656012ed88c30fb0f3edb96e59e4663819ccb1586035864435575e7417da797a1ad72b1e1395855c4ebf5ab549f33ba0bf16504075
|
7
|
+
data.tar.gz: c500a678a745c72e882bff2880be5e414be896e157c40a52a99847af448a66b5ecf0ed5753cefd8ba6dcafa6db24d0343b7b2d374abc1fd3171145c89925f000
|
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:
|
@@ -5,6 +7,7 @@
|
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
10
|
+
|
8
11
|
require 'aws-sdk-core'
|
9
12
|
require 'aws-sigv2'
|
10
13
|
|
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-simpledb/customizations'
|
|
42
45
|
#
|
43
46
|
# See {Errors} for more information.
|
44
47
|
#
|
45
|
-
#
|
48
|
+
# @!group service
|
46
49
|
module Aws::SimpleDB
|
47
50
|
|
48
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.25.0'
|
49
52
|
|
50
53
|
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:
|
@@ -83,13 +85,28 @@ module Aws::SimpleDB
|
|
83
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
84
86
|
# credentials.
|
85
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
|
+
#
|
86
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
87
103
|
# from an EC2 IMDS on an EC2 instance.
|
88
104
|
#
|
89
|
-
# * `Aws::
|
90
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
91
107
|
#
|
92
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
93
110
|
#
|
94
111
|
# When `:credentials` are not configured directly, the following
|
95
112
|
# locations will be searched for credentials:
|
@@ -99,10 +116,10 @@ module Aws::SimpleDB
|
|
99
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
100
117
|
# * `~/.aws/credentials`
|
101
118
|
# * `~/.aws/config`
|
102
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
103
|
-
# very aggressive. Construct and pass an instance of
|
104
|
-
# `Aws::InstanceProfileCredentails`
|
105
|
-
# 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.
|
106
123
|
#
|
107
124
|
# @option options [required, String] :region
|
108
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -828,7 +845,7 @@ module Aws::SimpleDB
|
|
828
845
|
params: params,
|
829
846
|
config: config)
|
830
847
|
context[:gem_name] = 'aws-sdk-simpledb'
|
831
|
-
context[:gem_version] = '1.
|
848
|
+
context[:gem_version] = '1.25.0'
|
832
849
|
Seahorse::Client::Request.new(handlers, context)
|
833
850
|
end
|
834
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:
|
@@ -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.25.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: 2021-02-02 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.112.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.112.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv2
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|