aws-sdk-simpledb 1.18.0 → 1.23.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 22cf0e150d372ecae1c6fd48d1427fe8b2011de8c9828ea6fd3b75eca1095c64
4
- data.tar.gz: aad8ac11bdcd2f5425e01501c17ae0e584b84aae1f4e8e84adb2c394b526a774
3
+ metadata.gz: ba8aa0638edef875b8f34457fd892e4b9c67106bb754d545be657ea80acb3e01
4
+ data.tar.gz: bd488413d5c08b267c1b2c9c22a9fc76e42c116067da6b16298902b1550e0e30
5
5
  SHA512:
6
- metadata.gz: 0033e589897782ef6e3721f7adf688848eed01c8d1eeb26d5bc4428da7df0f1993588653aa8a06eb5e0951376c40d1b1afec59ae0ae2ea3f47b4e52c8a555594
7
- data.tar.gz: b5b4e08bfabca36b0ba7e2a4a1ddc914f8c9be4d32140c4cfa674c142a19204b1899c09caf0b8c6f6f73f7c159fcf47df002dc05cbfe4b4604f1c299afb36cd3
6
+ metadata.gz: 41a60a225f276e10789748184b0c9b29d16b59eed69688f397f01ee6af370082e4110aa2d75132ab98df21532baa977ef3efc9f4325771c76628b458c6892ef0
7
+ data.tar.gz: 5ab9df6739f5568dbdf7695c8f261e070d3d0a3ad900bd1f2a8a41e840d7861487c6b9a5c8d61e6fc5dac604e5dcb1f6707b11240a05b355a25a0ea0931c90e6
@@ -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
- # @service
48
+ # @!group service
46
49
  module Aws::SimpleDB
47
50
 
48
- GEM_VERSION = '1.18.0'
51
+ GEM_VERSION = '1.23.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:
@@ -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
 
@@ -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::SharedCredentials` - Used for loading credentials from a
88
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
89
107
  #
90
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
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,10 +116,10 @@ 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 are
101
- # very aggressive. Construct and pass an instance of
102
- # `Aws::InstanceProfileCredentails` to enable retries and extended
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
@@ -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 a valid HTTP(S) URI.
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. Defaults to `false`.
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.
@@ -826,7 +845,7 @@ module Aws::SimpleDB
826
845
  params: params,
827
846
  config: config)
828
847
  context[:gem_name] = 'aws-sdk-simpledb'
829
- context[:gem_version] = '1.18.0'
848
+ context[:gem_version] = '1.23.0'
830
849
  Seahorse::Client::Request.new(handlers, context)
831
850
  end
832
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:
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # WARNING ABOUT GENERATED CODE
2
3
  #
3
4
  # This file is generated. See the contributing for info on making contributions:
@@ -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:
@@ -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:
@@ -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.18.0
4
+ version: 1.23.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-05-07 00:00:00.000000000 Z
11
+ date: 2020-09-15 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.71.0
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.71.0
32
+ version: 3.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv2
35
35
  requirement: !ruby/object:Gem::Requirement