aws-sdk-simpledb 1.36.0 → 1.37.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: 2daad379bcc046b1e7892e26180ff36cead30037366f1b171859a25d8d9f0ae4
4
- data.tar.gz: 19c64061bb5f31ed5941cb1b6bb47572e251301031a1982fe08a4146f64ae029
3
+ metadata.gz: a476ae37bc8efb0e152330440952b9c7a340eab15e63b9c1dbed2243a87dc066
4
+ data.tar.gz: d3b02899f93f8429cde011cd021e7133b3bd3b50df5231bb08fdb1e665eda371
5
5
  SHA512:
6
- metadata.gz: '0794529a7f92b743b2f8f4e73ab9f42c17a4c8cdc1b00ca47efc5c32a2b82df88d1743baf730ec70405adac18be9984d746e516c3ab818e06b4125b075620fd9'
7
- data.tar.gz: 492ec73b7e4221730e39bdc2100d4cd4bd3d1850a0b6cb1c4a0c54e8ce33cc7bc9a3fc26ed44bb2913010d9436c3a5a222f087d49749f2bfc5924038efc25a47
6
+ metadata.gz: 3dc8316b40e7848319adb00a55f4428739fe4c4d9a18ae512315ed018f3a70485ce90fa852dffbc6c6b218bc48ea8d60f3179055e40274488b2b48750560e1ed
7
+ data.tar.gz: 985afa1deffe89d9de32a89231b98ce782afb378bc033fdd41e58a0b80113ffb27084f05a8cf8baf94fe106b687b129b8e7363e592870a287e4dc8e12c38cf12
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.37.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.36.1 (2023-01-18)
10
+ ------------------
11
+
12
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
13
+
4
14
  1.36.0 (2022-10-25)
5
15
  ------------------
6
16
 
@@ -248,4 +258,4 @@ Unreleased Changes
248
258
  1.0.0.rc1 (2016-12-05)
249
259
  ------------------
250
260
 
251
- * Feature - Initial preview release of the `aws-sdk-simpledb` gem.
261
+ * Feature - Initial preview release of the `aws-sdk-simpledb` gem.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.36.0
1
+ 1.37.0
@@ -274,6 +274,11 @@ module Aws::SimpleDB
274
274
  # in the future.
275
275
  #
276
276
  #
277
+ # @option options [String] :sdk_ua_app_id
278
+ # A unique and opaque application ID that is appended to the
279
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
280
+ # maximum length of 50.
281
+ #
277
282
  # @option options [String] :secret_access_key
278
283
  #
279
284
  # @option options [String] :session_token
@@ -882,7 +887,7 @@ module Aws::SimpleDB
882
887
  params: params,
883
888
  config: config)
884
889
  context[:gem_name] = 'aws-sdk-simpledb'
885
- context[:gem_version] = '1.36.0'
890
+ context[:gem_version] = '1.37.0'
886
891
  Seahorse::Client::Request.new(handlers, context)
887
892
  end
888
893
 
@@ -10,16 +10,6 @@
10
10
  module Aws::SimpleDB
11
11
  module Types
12
12
 
13
- # @note When making an API call, you may pass Attribute
14
- # data as a hash:
15
- #
16
- # {
17
- # name: "String", # required
18
- # alternate_name_encoding: "String",
19
- # value: "String", # required
20
- # alternate_value_encoding: "String",
21
- # }
22
- #
23
13
  # @!attribute [rw] name
24
14
  # The name of the attribute.
25
15
  # @return [String]
@@ -54,26 +44,6 @@ module Aws::SimpleDB
54
44
  include Aws::Structure
55
45
  end
56
46
 
57
- # @note When making an API call, you may pass BatchDeleteAttributesRequest
58
- # data as a hash:
59
- #
60
- # {
61
- # domain_name: "String", # required
62
- # items: [ # required
63
- # {
64
- # name: "String", # required
65
- # attributes: [
66
- # {
67
- # name: "String", # required
68
- # alternate_name_encoding: "String",
69
- # value: "String", # required
70
- # alternate_value_encoding: "String",
71
- # },
72
- # ],
73
- # },
74
- # ],
75
- # }
76
- #
77
47
  # @!attribute [rw] domain_name
78
48
  # The name of the domain in which the attributes are being deleted.
79
49
  # @return [String]
@@ -89,25 +59,6 @@ module Aws::SimpleDB
89
59
  include Aws::Structure
90
60
  end
91
61
 
92
- # @note When making an API call, you may pass BatchPutAttributesRequest
93
- # data as a hash:
94
- #
95
- # {
96
- # domain_name: "String", # required
97
- # items: [ # required
98
- # {
99
- # name: "String", # required
100
- # attributes: [ # required
101
- # {
102
- # name: "String", # required
103
- # value: "String", # required
104
- # replace: false,
105
- # },
106
- # ],
107
- # },
108
- # ],
109
- # }
110
- #
111
62
  # @!attribute [rw] domain_name
112
63
  # The name of the domain in which the attributes are being stored.
113
64
  # @return [String]
@@ -123,13 +74,6 @@ module Aws::SimpleDB
123
74
  include Aws::Structure
124
75
  end
125
76
 
126
- # @note When making an API call, you may pass CreateDomainRequest
127
- # data as a hash:
128
- #
129
- # {
130
- # domain_name: "String", # required
131
- # }
132
- #
133
77
  # @!attribute [rw] domain_name
134
78
  # The name of the domain to create. The name can range between 3 and
135
79
  # 255 characters and can contain the following characters: a-z, A-Z,
@@ -142,21 +86,6 @@ module Aws::SimpleDB
142
86
  include Aws::Structure
143
87
  end
144
88
 
145
- # @note When making an API call, you may pass DeletableItem
146
- # data as a hash:
147
- #
148
- # {
149
- # name: "String", # required
150
- # attributes: [
151
- # {
152
- # name: "String", # required
153
- # alternate_name_encoding: "String",
154
- # value: "String", # required
155
- # alternate_value_encoding: "String",
156
- # },
157
- # ],
158
- # }
159
- #
160
89
  # @!attribute [rw] name
161
90
  # @return [String]
162
91
  #
@@ -170,27 +99,6 @@ module Aws::SimpleDB
170
99
  include Aws::Structure
171
100
  end
172
101
 
173
- # @note When making an API call, you may pass DeleteAttributesRequest
174
- # data as a hash:
175
- #
176
- # {
177
- # domain_name: "String", # required
178
- # item_name: "String", # required
179
- # attributes: [
180
- # {
181
- # name: "String", # required
182
- # alternate_name_encoding: "String",
183
- # value: "String", # required
184
- # alternate_value_encoding: "String",
185
- # },
186
- # ],
187
- # expected: {
188
- # name: "String",
189
- # value: "String",
190
- # exists: false,
191
- # },
192
- # }
193
- #
194
102
  # @!attribute [rw] domain_name
195
103
  # The name of the domain in which to perform the operation.
196
104
  # @return [String]
@@ -223,13 +131,6 @@ module Aws::SimpleDB
223
131
  include Aws::Structure
224
132
  end
225
133
 
226
- # @note When making an API call, you may pass DeleteDomainRequest
227
- # data as a hash:
228
- #
229
- # {
230
- # domain_name: "String", # required
231
- # }
232
- #
233
134
  # @!attribute [rw] domain_name
234
135
  # The name of the domain to delete.
235
136
  # @return [String]
@@ -240,13 +141,6 @@ module Aws::SimpleDB
240
141
  include Aws::Structure
241
142
  end
242
143
 
243
- # @note When making an API call, you may pass DomainMetadataRequest
244
- # data as a hash:
245
- #
246
- # {
247
- # domain_name: "String", # required
248
- # }
249
- #
250
144
  # @!attribute [rw] domain_name
251
145
  # The name of the domain for which to display the metadata of.
252
146
  # @return [String]
@@ -310,16 +204,6 @@ module Aws::SimpleDB
310
204
  include Aws::Structure
311
205
  end
312
206
 
313
- # @note When making an API call, you may pass GetAttributesRequest
314
- # data as a hash:
315
- #
316
- # {
317
- # domain_name: "String", # required
318
- # item_name: "String", # required
319
- # attribute_names: ["String"],
320
- # consistent_read: false,
321
- # }
322
- #
323
207
  # @!attribute [rw] domain_name
324
208
  # The name of the domain in which to perform the operation.
325
209
  # @return [String]
@@ -429,14 +313,6 @@ module Aws::SimpleDB
429
313
  include Aws::Structure
430
314
  end
431
315
 
432
- # @note When making an API call, you may pass ListDomainsRequest
433
- # data as a hash:
434
- #
435
- # {
436
- # max_number_of_domains: 1,
437
- # next_token: "String",
438
- # }
439
- #
440
316
  # @!attribute [rw] max_number_of_domains
441
317
  # The maximum number of domain names you want returned. The range is 1
442
318
  # to 100. The default setting is 100.
@@ -557,26 +433,6 @@ module Aws::SimpleDB
557
433
  include Aws::Structure
558
434
  end
559
435
 
560
- # @note When making an API call, you may pass PutAttributesRequest
561
- # data as a hash:
562
- #
563
- # {
564
- # domain_name: "String", # required
565
- # item_name: "String", # required
566
- # attributes: [ # required
567
- # {
568
- # name: "String", # required
569
- # value: "String", # required
570
- # replace: false,
571
- # },
572
- # ],
573
- # expected: {
574
- # name: "String",
575
- # value: "String",
576
- # exists: false,
577
- # },
578
- # }
579
- #
580
436
  # @!attribute [rw] domain_name
581
437
  # The name of the domain in which to perform the operation.
582
438
  # @return [String]
@@ -605,15 +461,6 @@ module Aws::SimpleDB
605
461
  include Aws::Structure
606
462
  end
607
463
 
608
- # @note When making an API call, you may pass ReplaceableAttribute
609
- # data as a hash:
610
- #
611
- # {
612
- # name: "String", # required
613
- # value: "String", # required
614
- # replace: false,
615
- # }
616
- #
617
464
  # @!attribute [rw] name
618
465
  # The name of the replaceable attribute.
619
466
  # @return [String]
@@ -634,20 +481,6 @@ module Aws::SimpleDB
634
481
  include Aws::Structure
635
482
  end
636
483
 
637
- # @note When making an API call, you may pass ReplaceableItem
638
- # data as a hash:
639
- #
640
- # {
641
- # name: "String", # required
642
- # attributes: [ # required
643
- # {
644
- # name: "String", # required
645
- # value: "String", # required
646
- # replace: false,
647
- # },
648
- # ],
649
- # }
650
- #
651
484
  # @!attribute [rw] name
652
485
  # The name of the replaceable item.
653
486
  # @return [String]
@@ -675,15 +508,6 @@ module Aws::SimpleDB
675
508
  include Aws::Structure
676
509
  end
677
510
 
678
- # @note When making an API call, you may pass SelectRequest
679
- # data as a hash:
680
- #
681
- # {
682
- # select_expression: "String", # required
683
- # next_token: "String",
684
- # consistent_read: false,
685
- # }
686
- #
687
511
  # @!attribute [rw] select_expression
688
512
  # The expression used to query the domain.
689
513
  # @return [String]
@@ -736,15 +560,6 @@ module Aws::SimpleDB
736
560
  # with a specific name and value exists, or if a specific attribute
737
561
  # doesn't exist.
738
562
  #
739
- # @note When making an API call, you may pass UpdateCondition
740
- # data as a hash:
741
- #
742
- # {
743
- # name: "String",
744
- # value: "String",
745
- # exists: false,
746
- # }
747
- #
748
563
  # @!attribute [rw] name
749
564
  # The name of the attribute involved in the condition.
750
565
  # @return [String]
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-simpledb/customizations'
48
48
  # @!group service
49
49
  module Aws::SimpleDB
50
50
 
51
- GEM_VERSION = '1.36.0'
51
+ GEM_VERSION = '1.37.0'
52
52
 
53
53
  end
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.36.0
4
+ version: 1.37.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: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2023-05-31 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.165.0
22
+ version: 3.174.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.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv2
35
35
  requirement: !ruby/object:Gem::Requirement