aws-sdk-simpledb 1.42.0 → 1.43.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: cf022b30507d9fbffa06d8a84b103d030ad5acc3bba66151b36d73175e20b9e3
4
- data.tar.gz: 830c71aa479ff78fb03d328ccefb22e3a807f0a0ebcc3412a82fc260d5de316b
3
+ metadata.gz: a4b22c06f47ce6e027191666febd16d382da96ddeff64e0efdd4068a9d66c129
4
+ data.tar.gz: 4e2d1289daacfd848e0cfe08dd5382acb30b727935db79947bcda280e07b86fb
5
5
  SHA512:
6
- metadata.gz: 5c7d2f2cf05236979b7d2d1670a935f7dfdf3f24dea0a57c1bc9b90675a795234cd95aaaabe611241994c10d5ea8b566bedf91bddfb534e69e307f972431bfba
7
- data.tar.gz: 9b72fc31c93cd377c585854616f818f92fead6aae73da0f16fb186e9b19758c66da667e34d9c0242c2b7fe2f9c01c15b4e8218675e88b41ba54396fae07d9ed9
6
+ metadata.gz: c592afd1f1c0b15871e95206bb97629c6d73ee8484a2c6dd59e76d7412d38b8f5cbe7e6bd865d7862fe866f97f2ed8e1ce8a306920d0434300735b016cbd67fc
7
+ data.tar.gz: 7dda4997c2c5c3077e5c0cb62ecb270a0f99c95a31a5063ac4bf7e7a38b21da1f418a653b74e5de759f78486b8312ae5078e38be6ec7b217a4dd151bde5ddf45
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.43.0 (2024-01-26)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.42.0 (2023-11-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.42.0
1
+ 1.43.0
@@ -902,7 +902,7 @@ module Aws::SimpleDB
902
902
  params: params,
903
903
  config: config)
904
904
  context[:gem_name] = 'aws-sdk-simpledb'
905
- context[:gem_version] = '1.42.0'
905
+ context[:gem_version] = '1.43.0'
906
906
  Seahorse::Client::Request.new(handlers, context)
907
907
  end
908
908
 
@@ -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.42.0'
51
+ GEM_VERSION = '1.43.0'
52
52
 
53
53
  end
data/sig/client.rbs ADDED
@@ -0,0 +1,218 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module SimpleDB
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SimpleDB/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?http_proxy: String,
57
+ ?http_open_timeout: (Float | Integer),
58
+ ?http_read_timeout: (Float | Integer),
59
+ ?http_idle_timeout: (Float | Integer),
60
+ ?http_continue_timeout: (Float | Integer),
61
+ ?ssl_timeout: (Float | Integer | nil),
62
+ ?http_wire_trace: bool,
63
+ ?ssl_verify_peer: bool,
64
+ ?ssl_ca_bundle: String,
65
+ ?ssl_ca_directory: String,
66
+ ?ssl_ca_store: String,
67
+ ?on_chunk_received: Proc,
68
+ ?on_chunk_sent: Proc,
69
+ ?raise_response_errors: bool
70
+ ) -> instance
71
+ | (?Hash[Symbol, untyped]) -> instance
72
+
73
+
74
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SimpleDB/Client.html#batch_delete_attributes-instance_method
75
+ def batch_delete_attributes: (
76
+ domain_name: ::String,
77
+ items: Array[
78
+ {
79
+ name: ::String,
80
+ attributes: Array[
81
+ {
82
+ name: ::String,
83
+ alternate_name_encoding: ::String?,
84
+ value: ::String,
85
+ alternate_value_encoding: ::String?
86
+ },
87
+ ]?
88
+ },
89
+ ]
90
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
91
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
92
+
93
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SimpleDB/Client.html#batch_put_attributes-instance_method
94
+ def batch_put_attributes: (
95
+ domain_name: ::String,
96
+ items: Array[
97
+ {
98
+ name: ::String,
99
+ attributes: Array[
100
+ {
101
+ name: ::String,
102
+ value: ::String,
103
+ replace: bool?
104
+ },
105
+ ]
106
+ },
107
+ ]
108
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
109
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
110
+
111
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SimpleDB/Client.html#create_domain-instance_method
112
+ def create_domain: (
113
+ domain_name: ::String
114
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
115
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
116
+
117
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SimpleDB/Client.html#delete_attributes-instance_method
118
+ def delete_attributes: (
119
+ domain_name: ::String,
120
+ item_name: ::String,
121
+ ?attributes: Array[
122
+ {
123
+ name: ::String,
124
+ alternate_name_encoding: ::String?,
125
+ value: ::String,
126
+ alternate_value_encoding: ::String?
127
+ },
128
+ ],
129
+ ?expected: {
130
+ name: ::String?,
131
+ value: ::String?,
132
+ exists: bool?
133
+ }
134
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
135
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
136
+
137
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SimpleDB/Client.html#delete_domain-instance_method
138
+ def delete_domain: (
139
+ domain_name: ::String
140
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
141
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
142
+
143
+ interface _DomainMetadataResponseSuccess
144
+ include ::Seahorse::Client::_ResponseSuccess[Types::DomainMetadataResult]
145
+ def item_count: () -> ::Integer
146
+ def item_names_size_bytes: () -> ::Integer
147
+ def attribute_name_count: () -> ::Integer
148
+ def attribute_names_size_bytes: () -> ::Integer
149
+ def attribute_value_count: () -> ::Integer
150
+ def attribute_values_size_bytes: () -> ::Integer
151
+ def timestamp: () -> ::Integer
152
+ end
153
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SimpleDB/Client.html#domain_metadata-instance_method
154
+ def domain_metadata: (
155
+ domain_name: ::String
156
+ ) -> _DomainMetadataResponseSuccess
157
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DomainMetadataResponseSuccess
158
+
159
+ interface _GetAttributesResponseSuccess
160
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAttributesResult]
161
+ def attributes: () -> ::Array[Types::Attribute]
162
+ end
163
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SimpleDB/Client.html#get_attributes-instance_method
164
+ def get_attributes: (
165
+ domain_name: ::String,
166
+ item_name: ::String,
167
+ ?attribute_names: Array[::String],
168
+ ?consistent_read: bool
169
+ ) -> _GetAttributesResponseSuccess
170
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAttributesResponseSuccess
171
+
172
+ interface _ListDomainsResponseSuccess
173
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDomainsResult]
174
+ def domain_names: () -> ::Array[::String]
175
+ def next_token: () -> ::String
176
+ end
177
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SimpleDB/Client.html#list_domains-instance_method
178
+ def list_domains: (
179
+ ?max_number_of_domains: ::Integer,
180
+ ?next_token: ::String
181
+ ) -> _ListDomainsResponseSuccess
182
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDomainsResponseSuccess
183
+
184
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SimpleDB/Client.html#put_attributes-instance_method
185
+ def put_attributes: (
186
+ domain_name: ::String,
187
+ item_name: ::String,
188
+ attributes: Array[
189
+ {
190
+ name: ::String,
191
+ value: ::String,
192
+ replace: bool?
193
+ },
194
+ ],
195
+ ?expected: {
196
+ name: ::String?,
197
+ value: ::String?,
198
+ exists: bool?
199
+ }
200
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
201
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
202
+
203
+ interface _SelectResponseSuccess
204
+ include ::Seahorse::Client::_ResponseSuccess[Types::SelectResult]
205
+ def items: () -> ::Array[Types::Item]
206
+ def next_token: () -> ::String
207
+ end
208
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SimpleDB/Client.html#select-instance_method
209
+ def select: (
210
+ select_expression: ::String,
211
+ ?next_token: ::String,
212
+ ?consistent_read: bool
213
+ ) -> _SelectResponseSuccess
214
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SelectResponseSuccess
215
+ end
216
+ end
217
+ end
218
+
data/sig/errors.rbs ADDED
@@ -0,0 +1,67 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module SimpleDB
10
+ module Errors
11
+ class ServiceError < ::Aws::Errors::ServiceError
12
+ end
13
+
14
+ class AttributeDoesNotExist < ::Aws::Errors::ServiceError
15
+ def box_usage: () -> ::String
16
+ end
17
+ class DuplicateItemName < ::Aws::Errors::ServiceError
18
+ def box_usage: () -> ::String
19
+ end
20
+ class InvalidNextToken < ::Aws::Errors::ServiceError
21
+ def box_usage: () -> ::String
22
+ end
23
+ class InvalidNumberPredicates < ::Aws::Errors::ServiceError
24
+ def box_usage: () -> ::String
25
+ end
26
+ class InvalidNumberValueTests < ::Aws::Errors::ServiceError
27
+ def box_usage: () -> ::String
28
+ end
29
+ class InvalidParameterValue < ::Aws::Errors::ServiceError
30
+ def box_usage: () -> ::String
31
+ end
32
+ class InvalidQueryExpression < ::Aws::Errors::ServiceError
33
+ def box_usage: () -> ::String
34
+ end
35
+ class MissingParameter < ::Aws::Errors::ServiceError
36
+ def box_usage: () -> ::String
37
+ end
38
+ class NoSuchDomain < ::Aws::Errors::ServiceError
39
+ def box_usage: () -> ::String
40
+ end
41
+ class NumberDomainAttributesExceeded < ::Aws::Errors::ServiceError
42
+ def box_usage: () -> ::String
43
+ end
44
+ class NumberDomainBytesExceeded < ::Aws::Errors::ServiceError
45
+ def box_usage: () -> ::String
46
+ end
47
+ class NumberDomainsExceeded < ::Aws::Errors::ServiceError
48
+ def box_usage: () -> ::String
49
+ end
50
+ class NumberItemAttributesExceeded < ::Aws::Errors::ServiceError
51
+ def box_usage: () -> ::String
52
+ end
53
+ class NumberSubmittedAttributesExceeded < ::Aws::Errors::ServiceError
54
+ def box_usage: () -> ::String
55
+ end
56
+ class NumberSubmittedItemsExceeded < ::Aws::Errors::ServiceError
57
+ def box_usage: () -> ::String
58
+ end
59
+ class RequestTimeout < ::Aws::Errors::ServiceError
60
+ def box_usage: () -> ::String
61
+ end
62
+ class TooManyRequestedAttributes < ::Aws::Errors::ServiceError
63
+ def box_usage: () -> ::String
64
+ end
65
+ end
66
+ end
67
+ end
data/sig/resource.rbs ADDED
@@ -0,0 +1,78 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module SimpleDB
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SimpleDB/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SimpleDB/Resource.html#initialize-instance_method
13
+ def initialize: (
14
+ ?client: Client,
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?http_proxy: String,
57
+ ?http_open_timeout: (Float | Integer),
58
+ ?http_read_timeout: (Float | Integer),
59
+ ?http_idle_timeout: (Float | Integer),
60
+ ?http_continue_timeout: (Float | Integer),
61
+ ?ssl_timeout: (Float | Integer | nil),
62
+ ?http_wire_trace: bool,
63
+ ?ssl_verify_peer: bool,
64
+ ?ssl_ca_bundle: String,
65
+ ?ssl_ca_directory: String,
66
+ ?ssl_ca_store: String,
67
+ ?on_chunk_received: Proc,
68
+ ?on_chunk_sent: Proc,
69
+ ?raise_response_errors: bool
70
+ ) -> void
71
+ | (?Hash[Symbol, untyped]) -> void
72
+
73
+ def client: () -> Client
74
+
75
+
76
+ end
77
+ end
78
+ end
data/sig/types.rbs ADDED
@@ -0,0 +1,229 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::SimpleDB
9
+ module Types
10
+
11
+ class Attribute
12
+ attr_accessor name: ::String
13
+ attr_accessor alternate_name_encoding: ::String
14
+ attr_accessor value: ::String
15
+ attr_accessor alternate_value_encoding: ::String
16
+ SENSITIVE: []
17
+ end
18
+
19
+ class AttributeDoesNotExist
20
+ attr_accessor box_usage: ::Float
21
+ SENSITIVE: []
22
+ end
23
+
24
+ class BatchDeleteAttributesRequest
25
+ attr_accessor domain_name: ::String
26
+ attr_accessor items: ::Array[Types::DeletableItem]
27
+ SENSITIVE: []
28
+ end
29
+
30
+ class BatchPutAttributesRequest
31
+ attr_accessor domain_name: ::String
32
+ attr_accessor items: ::Array[Types::ReplaceableItem]
33
+ SENSITIVE: []
34
+ end
35
+
36
+ class CreateDomainRequest
37
+ attr_accessor domain_name: ::String
38
+ SENSITIVE: []
39
+ end
40
+
41
+ class DeletableItem
42
+ attr_accessor name: ::String
43
+ attr_accessor attributes: ::Array[Types::Attribute]
44
+ SENSITIVE: []
45
+ end
46
+
47
+ class DeleteAttributesRequest
48
+ attr_accessor domain_name: ::String
49
+ attr_accessor item_name: ::String
50
+ attr_accessor attributes: ::Array[Types::Attribute]
51
+ attr_accessor expected: Types::UpdateCondition
52
+ SENSITIVE: []
53
+ end
54
+
55
+ class DeleteDomainRequest
56
+ attr_accessor domain_name: ::String
57
+ SENSITIVE: []
58
+ end
59
+
60
+ class DomainMetadataRequest
61
+ attr_accessor domain_name: ::String
62
+ SENSITIVE: []
63
+ end
64
+
65
+ class DomainMetadataResult
66
+ attr_accessor item_count: ::Integer
67
+ attr_accessor item_names_size_bytes: ::Integer
68
+ attr_accessor attribute_name_count: ::Integer
69
+ attr_accessor attribute_names_size_bytes: ::Integer
70
+ attr_accessor attribute_value_count: ::Integer
71
+ attr_accessor attribute_values_size_bytes: ::Integer
72
+ attr_accessor timestamp: ::Integer
73
+ SENSITIVE: []
74
+ end
75
+
76
+ class DuplicateItemName
77
+ attr_accessor box_usage: ::Float
78
+ SENSITIVE: []
79
+ end
80
+
81
+ class GetAttributesRequest
82
+ attr_accessor domain_name: ::String
83
+ attr_accessor item_name: ::String
84
+ attr_accessor attribute_names: ::Array[::String]
85
+ attr_accessor consistent_read: bool
86
+ SENSITIVE: []
87
+ end
88
+
89
+ class GetAttributesResult
90
+ attr_accessor attributes: ::Array[Types::Attribute]
91
+ SENSITIVE: []
92
+ end
93
+
94
+ class InvalidNextToken
95
+ attr_accessor box_usage: ::Float
96
+ SENSITIVE: []
97
+ end
98
+
99
+ class InvalidNumberPredicates
100
+ attr_accessor box_usage: ::Float
101
+ SENSITIVE: []
102
+ end
103
+
104
+ class InvalidNumberValueTests
105
+ attr_accessor box_usage: ::Float
106
+ SENSITIVE: []
107
+ end
108
+
109
+ class InvalidParameterValue
110
+ attr_accessor box_usage: ::Float
111
+ SENSITIVE: []
112
+ end
113
+
114
+ class InvalidQueryExpression
115
+ attr_accessor box_usage: ::Float
116
+ SENSITIVE: []
117
+ end
118
+
119
+ class Item
120
+ attr_accessor name: ::String
121
+ attr_accessor alternate_name_encoding: ::String
122
+ attr_accessor attributes: ::Array[Types::Attribute]
123
+ SENSITIVE: []
124
+ end
125
+
126
+ class ListDomainsRequest
127
+ attr_accessor max_number_of_domains: ::Integer
128
+ attr_accessor next_token: ::String
129
+ SENSITIVE: []
130
+ end
131
+
132
+ class ListDomainsResult
133
+ attr_accessor domain_names: ::Array[::String]
134
+ attr_accessor next_token: ::String
135
+ SENSITIVE: []
136
+ end
137
+
138
+ class MissingParameter
139
+ attr_accessor box_usage: ::Float
140
+ SENSITIVE: []
141
+ end
142
+
143
+ class NoSuchDomain
144
+ attr_accessor box_usage: ::Float
145
+ SENSITIVE: []
146
+ end
147
+
148
+ class NumberDomainAttributesExceeded
149
+ attr_accessor box_usage: ::Float
150
+ SENSITIVE: []
151
+ end
152
+
153
+ class NumberDomainBytesExceeded
154
+ attr_accessor box_usage: ::Float
155
+ SENSITIVE: []
156
+ end
157
+
158
+ class NumberDomainsExceeded
159
+ attr_accessor box_usage: ::Float
160
+ SENSITIVE: []
161
+ end
162
+
163
+ class NumberItemAttributesExceeded
164
+ attr_accessor box_usage: ::Float
165
+ SENSITIVE: []
166
+ end
167
+
168
+ class NumberSubmittedAttributesExceeded
169
+ attr_accessor box_usage: ::Float
170
+ SENSITIVE: []
171
+ end
172
+
173
+ class NumberSubmittedItemsExceeded
174
+ attr_accessor box_usage: ::Float
175
+ SENSITIVE: []
176
+ end
177
+
178
+ class PutAttributesRequest
179
+ attr_accessor domain_name: ::String
180
+ attr_accessor item_name: ::String
181
+ attr_accessor attributes: ::Array[Types::ReplaceableAttribute]
182
+ attr_accessor expected: Types::UpdateCondition
183
+ SENSITIVE: []
184
+ end
185
+
186
+ class ReplaceableAttribute
187
+ attr_accessor name: ::String
188
+ attr_accessor value: ::String
189
+ attr_accessor replace: bool
190
+ SENSITIVE: []
191
+ end
192
+
193
+ class ReplaceableItem
194
+ attr_accessor name: ::String
195
+ attr_accessor attributes: ::Array[Types::ReplaceableAttribute]
196
+ SENSITIVE: []
197
+ end
198
+
199
+ class RequestTimeout
200
+ attr_accessor box_usage: ::Float
201
+ SENSITIVE: []
202
+ end
203
+
204
+ class SelectRequest
205
+ attr_accessor select_expression: ::String
206
+ attr_accessor next_token: ::String
207
+ attr_accessor consistent_read: bool
208
+ SENSITIVE: []
209
+ end
210
+
211
+ class SelectResult
212
+ attr_accessor items: ::Array[Types::Item]
213
+ attr_accessor next_token: ::String
214
+ SENSITIVE: []
215
+ end
216
+
217
+ class TooManyRequestedAttributes
218
+ attr_accessor box_usage: ::Float
219
+ SENSITIVE: []
220
+ end
221
+
222
+ class UpdateCondition
223
+ attr_accessor name: ::String
224
+ attr_accessor value: ::String
225
+ attr_accessor exists: bool
226
+ SENSITIVE: []
227
+ end
228
+ end
229
+ end
data/sig/waiters.rbs ADDED
@@ -0,0 +1,13 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module SimpleDB
10
+ module Waiters
11
+ end
12
+ end
13
+ 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.42.0
4
+ version: 1.43.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-22 00:00:00.000000000 Z
11
+ date: 2024-01-26 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.188.0
22
+ version: 3.191.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.188.0
32
+ version: 3.191.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv2
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -62,13 +62,18 @@ files:
62
62
  - lib/aws-sdk-simpledb/errors.rb
63
63
  - lib/aws-sdk-simpledb/resource.rb
64
64
  - lib/aws-sdk-simpledb/types.rb
65
+ - sig/client.rbs
66
+ - sig/errors.rbs
67
+ - sig/resource.rbs
68
+ - sig/types.rbs
69
+ - sig/waiters.rbs
65
70
  homepage: https://github.com/aws/aws-sdk-ruby
66
71
  licenses:
67
72
  - Apache-2.0
68
73
  metadata:
69
74
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-simpledb
70
75
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-simpledb/CHANGELOG.md
71
- post_install_message:
76
+ post_install_message:
72
77
  rdoc_options: []
73
78
  require_paths:
74
79
  - lib
@@ -83,8 +88,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
83
88
  - !ruby/object:Gem::Version
84
89
  version: '0'
85
90
  requirements: []
86
- rubygems_version: 3.1.6
87
- signing_key:
91
+ rubygems_version: 3.4.10
92
+ signing_key:
88
93
  specification_version: 4
89
94
  summary: AWS SDK for Ruby - Amazon SimpleDB
90
95
  test_files: []