aws-sdk-sqs 1.68.0 → 1.70.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/types.rbs ADDED
@@ -0,0 +1,471 @@
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::SQS
9
+ module Types
10
+
11
+ class AddPermissionRequest
12
+ attr_accessor queue_url: ::String
13
+ attr_accessor label: ::String
14
+ attr_accessor aws_account_ids: ::Array[::String]
15
+ attr_accessor actions: ::Array[::String]
16
+ SENSITIVE: []
17
+ end
18
+
19
+ class BatchEntryIdsNotDistinct
20
+ attr_accessor message: ::String
21
+ SENSITIVE: []
22
+ end
23
+
24
+ class BatchRequestTooLong
25
+ attr_accessor message: ::String
26
+ SENSITIVE: []
27
+ end
28
+
29
+ class BatchResultErrorEntry
30
+ attr_accessor id: ::String
31
+ attr_accessor sender_fault: bool
32
+ attr_accessor code: ::String
33
+ attr_accessor message: ::String
34
+ SENSITIVE: []
35
+ end
36
+
37
+ class CancelMessageMoveTaskRequest
38
+ attr_accessor task_handle: ::String
39
+ SENSITIVE: []
40
+ end
41
+
42
+ class CancelMessageMoveTaskResult
43
+ attr_accessor approximate_number_of_messages_moved: ::Integer
44
+ SENSITIVE: []
45
+ end
46
+
47
+ class ChangeMessageVisibilityBatchRequest
48
+ attr_accessor queue_url: ::String
49
+ attr_accessor entries: ::Array[Types::ChangeMessageVisibilityBatchRequestEntry]
50
+ SENSITIVE: []
51
+ end
52
+
53
+ class ChangeMessageVisibilityBatchRequestEntry
54
+ attr_accessor id: ::String
55
+ attr_accessor receipt_handle: ::String
56
+ attr_accessor visibility_timeout: ::Integer
57
+ SENSITIVE: []
58
+ end
59
+
60
+ class ChangeMessageVisibilityBatchResult
61
+ attr_accessor successful: ::Array[Types::ChangeMessageVisibilityBatchResultEntry]
62
+ attr_accessor failed: ::Array[Types::BatchResultErrorEntry]
63
+ SENSITIVE: []
64
+ end
65
+
66
+ class ChangeMessageVisibilityBatchResultEntry
67
+ attr_accessor id: ::String
68
+ SENSITIVE: []
69
+ end
70
+
71
+ class ChangeMessageVisibilityRequest
72
+ attr_accessor queue_url: ::String
73
+ attr_accessor receipt_handle: ::String
74
+ attr_accessor visibility_timeout: ::Integer
75
+ SENSITIVE: []
76
+ end
77
+
78
+ class CreateQueueRequest
79
+ attr_accessor queue_name: ::String
80
+ attr_accessor attributes: ::Hash[("All" | "Policy" | "VisibilityTimeout" | "MaximumMessageSize" | "MessageRetentionPeriod" | "ApproximateNumberOfMessages" | "ApproximateNumberOfMessagesNotVisible" | "CreatedTimestamp" | "LastModifiedTimestamp" | "QueueArn" | "ApproximateNumberOfMessagesDelayed" | "DelaySeconds" | "ReceiveMessageWaitTimeSeconds" | "RedrivePolicy" | "FifoQueue" | "ContentBasedDeduplication" | "KmsMasterKeyId" | "KmsDataKeyReusePeriodSeconds" | "DeduplicationScope" | "FifoThroughputLimit" | "RedriveAllowPolicy" | "SqsManagedSseEnabled"), ::String]
81
+ attr_accessor tags: ::Hash[::String, ::String]
82
+ SENSITIVE: []
83
+ end
84
+
85
+ class CreateQueueResult
86
+ attr_accessor queue_url: ::String
87
+ SENSITIVE: []
88
+ end
89
+
90
+ class DeleteMessageBatchRequest
91
+ attr_accessor queue_url: ::String
92
+ attr_accessor entries: ::Array[Types::DeleteMessageBatchRequestEntry]
93
+ SENSITIVE: []
94
+ end
95
+
96
+ class DeleteMessageBatchRequestEntry
97
+ attr_accessor id: ::String
98
+ attr_accessor receipt_handle: ::String
99
+ SENSITIVE: []
100
+ end
101
+
102
+ class DeleteMessageBatchResult
103
+ attr_accessor successful: ::Array[Types::DeleteMessageBatchResultEntry]
104
+ attr_accessor failed: ::Array[Types::BatchResultErrorEntry]
105
+ SENSITIVE: []
106
+ end
107
+
108
+ class DeleteMessageBatchResultEntry
109
+ attr_accessor id: ::String
110
+ SENSITIVE: []
111
+ end
112
+
113
+ class DeleteMessageRequest
114
+ attr_accessor queue_url: ::String
115
+ attr_accessor receipt_handle: ::String
116
+ SENSITIVE: []
117
+ end
118
+
119
+ class DeleteQueueRequest
120
+ attr_accessor queue_url: ::String
121
+ SENSITIVE: []
122
+ end
123
+
124
+ class EmptyBatchRequest
125
+ attr_accessor message: ::String
126
+ SENSITIVE: []
127
+ end
128
+
129
+ class GetQueueAttributesRequest
130
+ attr_accessor queue_url: ::String
131
+ attr_accessor attribute_names: ::Array[("All" | "Policy" | "VisibilityTimeout" | "MaximumMessageSize" | "MessageRetentionPeriod" | "ApproximateNumberOfMessages" | "ApproximateNumberOfMessagesNotVisible" | "CreatedTimestamp" | "LastModifiedTimestamp" | "QueueArn" | "ApproximateNumberOfMessagesDelayed" | "DelaySeconds" | "ReceiveMessageWaitTimeSeconds" | "RedrivePolicy" | "FifoQueue" | "ContentBasedDeduplication" | "KmsMasterKeyId" | "KmsDataKeyReusePeriodSeconds" | "DeduplicationScope" | "FifoThroughputLimit" | "RedriveAllowPolicy" | "SqsManagedSseEnabled")]
132
+ SENSITIVE: []
133
+ end
134
+
135
+ class GetQueueAttributesResult
136
+ attr_accessor attributes: ::Hash[("All" | "Policy" | "VisibilityTimeout" | "MaximumMessageSize" | "MessageRetentionPeriod" | "ApproximateNumberOfMessages" | "ApproximateNumberOfMessagesNotVisible" | "CreatedTimestamp" | "LastModifiedTimestamp" | "QueueArn" | "ApproximateNumberOfMessagesDelayed" | "DelaySeconds" | "ReceiveMessageWaitTimeSeconds" | "RedrivePolicy" | "FifoQueue" | "ContentBasedDeduplication" | "KmsMasterKeyId" | "KmsDataKeyReusePeriodSeconds" | "DeduplicationScope" | "FifoThroughputLimit" | "RedriveAllowPolicy" | "SqsManagedSseEnabled"), ::String]
137
+ SENSITIVE: []
138
+ end
139
+
140
+ class GetQueueUrlRequest
141
+ attr_accessor queue_name: ::String
142
+ attr_accessor queue_owner_aws_account_id: ::String
143
+ SENSITIVE: []
144
+ end
145
+
146
+ class GetQueueUrlResult
147
+ attr_accessor queue_url: ::String
148
+ SENSITIVE: []
149
+ end
150
+
151
+ class InvalidAddress
152
+ attr_accessor message: ::String
153
+ SENSITIVE: []
154
+ end
155
+
156
+ class InvalidAttributeName
157
+ attr_accessor message: ::String
158
+ SENSITIVE: []
159
+ end
160
+
161
+ class InvalidAttributeValue
162
+ attr_accessor message: ::String
163
+ SENSITIVE: []
164
+ end
165
+
166
+ class InvalidBatchEntryId
167
+ attr_accessor message: ::String
168
+ SENSITIVE: []
169
+ end
170
+
171
+ class InvalidIdFormat < Aws::EmptyStructure
172
+ end
173
+
174
+ class InvalidMessageContents
175
+ attr_accessor message: ::String
176
+ SENSITIVE: []
177
+ end
178
+
179
+ class InvalidSecurity
180
+ attr_accessor message: ::String
181
+ SENSITIVE: []
182
+ end
183
+
184
+ class KmsAccessDenied
185
+ attr_accessor message: ::String
186
+ SENSITIVE: []
187
+ end
188
+
189
+ class KmsDisabled
190
+ attr_accessor message: ::String
191
+ SENSITIVE: []
192
+ end
193
+
194
+ class KmsInvalidKeyUsage
195
+ attr_accessor message: ::String
196
+ SENSITIVE: []
197
+ end
198
+
199
+ class KmsInvalidState
200
+ attr_accessor message: ::String
201
+ SENSITIVE: []
202
+ end
203
+
204
+ class KmsNotFound
205
+ attr_accessor message: ::String
206
+ SENSITIVE: []
207
+ end
208
+
209
+ class KmsOptInRequired
210
+ attr_accessor message: ::String
211
+ SENSITIVE: []
212
+ end
213
+
214
+ class KmsThrottled
215
+ attr_accessor message: ::String
216
+ SENSITIVE: []
217
+ end
218
+
219
+ class ListDeadLetterSourceQueuesRequest
220
+ attr_accessor queue_url: ::String
221
+ attr_accessor next_token: ::String
222
+ attr_accessor max_results: ::Integer
223
+ SENSITIVE: []
224
+ end
225
+
226
+ class ListDeadLetterSourceQueuesResult
227
+ attr_accessor queue_urls: ::Array[::String]
228
+ attr_accessor next_token: ::String
229
+ SENSITIVE: []
230
+ end
231
+
232
+ class ListMessageMoveTasksRequest
233
+ attr_accessor source_arn: ::String
234
+ attr_accessor max_results: ::Integer
235
+ SENSITIVE: []
236
+ end
237
+
238
+ class ListMessageMoveTasksResult
239
+ attr_accessor results: ::Array[Types::ListMessageMoveTasksResultEntry]
240
+ SENSITIVE: []
241
+ end
242
+
243
+ class ListMessageMoveTasksResultEntry
244
+ attr_accessor task_handle: ::String
245
+ attr_accessor status: ::String
246
+ attr_accessor source_arn: ::String
247
+ attr_accessor destination_arn: ::String
248
+ attr_accessor max_number_of_messages_per_second: ::Integer
249
+ attr_accessor approximate_number_of_messages_moved: ::Integer
250
+ attr_accessor approximate_number_of_messages_to_move: ::Integer
251
+ attr_accessor failure_reason: ::String
252
+ attr_accessor started_timestamp: ::Integer
253
+ SENSITIVE: []
254
+ end
255
+
256
+ class ListQueueTagsRequest
257
+ attr_accessor queue_url: ::String
258
+ SENSITIVE: []
259
+ end
260
+
261
+ class ListQueueTagsResult
262
+ attr_accessor tags: ::Hash[::String, ::String]
263
+ SENSITIVE: []
264
+ end
265
+
266
+ class ListQueuesRequest
267
+ attr_accessor queue_name_prefix: ::String
268
+ attr_accessor next_token: ::String
269
+ attr_accessor max_results: ::Integer
270
+ SENSITIVE: []
271
+ end
272
+
273
+ class ListQueuesResult
274
+ attr_accessor queue_urls: ::Array[::String]
275
+ attr_accessor next_token: ::String
276
+ SENSITIVE: []
277
+ end
278
+
279
+ class Message
280
+ attr_accessor message_id: ::String
281
+ attr_accessor receipt_handle: ::String
282
+ attr_accessor md5_of_body: ::String
283
+ attr_accessor body: ::String
284
+ attr_accessor attributes: ::Hash[("SenderId" | "SentTimestamp" | "ApproximateReceiveCount" | "ApproximateFirstReceiveTimestamp" | "SequenceNumber" | "MessageDeduplicationId" | "MessageGroupId" | "AWSTraceHeader" | "DeadLetterQueueSourceArn"), ::String]
285
+ attr_accessor md5_of_message_attributes: ::String
286
+ attr_accessor message_attributes: ::Hash[::String, Types::MessageAttributeValue]
287
+ SENSITIVE: []
288
+ end
289
+
290
+ class MessageAttributeValue
291
+ attr_accessor string_value: ::String
292
+ attr_accessor binary_value: ::String
293
+ attr_accessor string_list_values: ::Array[::String]
294
+ attr_accessor binary_list_values: ::Array[::String]
295
+ attr_accessor data_type: ::String
296
+ SENSITIVE: []
297
+ end
298
+
299
+ class MessageNotInflight < Aws::EmptyStructure
300
+ end
301
+
302
+ class MessageSystemAttributeValue
303
+ attr_accessor string_value: ::String
304
+ attr_accessor binary_value: ::String
305
+ attr_accessor string_list_values: ::Array[::String]
306
+ attr_accessor binary_list_values: ::Array[::String]
307
+ attr_accessor data_type: ::String
308
+ SENSITIVE: []
309
+ end
310
+
311
+ class OverLimit
312
+ attr_accessor message: ::String
313
+ SENSITIVE: []
314
+ end
315
+
316
+ class PurgeQueueInProgress
317
+ attr_accessor message: ::String
318
+ SENSITIVE: []
319
+ end
320
+
321
+ class PurgeQueueRequest
322
+ attr_accessor queue_url: ::String
323
+ SENSITIVE: []
324
+ end
325
+
326
+ class QueueDeletedRecently
327
+ attr_accessor message: ::String
328
+ SENSITIVE: []
329
+ end
330
+
331
+ class QueueDoesNotExist
332
+ attr_accessor message: ::String
333
+ SENSITIVE: []
334
+ end
335
+
336
+ class QueueNameExists
337
+ attr_accessor message: ::String
338
+ SENSITIVE: []
339
+ end
340
+
341
+ class ReceiptHandleIsInvalid
342
+ attr_accessor message: ::String
343
+ SENSITIVE: []
344
+ end
345
+
346
+ class ReceiveMessageRequest
347
+ attr_accessor queue_url: ::String
348
+ attr_accessor attribute_names: ::Array[("All" | "Policy" | "VisibilityTimeout" | "MaximumMessageSize" | "MessageRetentionPeriod" | "ApproximateNumberOfMessages" | "ApproximateNumberOfMessagesNotVisible" | "CreatedTimestamp" | "LastModifiedTimestamp" | "QueueArn" | "ApproximateNumberOfMessagesDelayed" | "DelaySeconds" | "ReceiveMessageWaitTimeSeconds" | "RedrivePolicy" | "FifoQueue" | "ContentBasedDeduplication" | "KmsMasterKeyId" | "KmsDataKeyReusePeriodSeconds" | "DeduplicationScope" | "FifoThroughputLimit" | "RedriveAllowPolicy" | "SqsManagedSseEnabled")]
349
+ attr_accessor message_attribute_names: ::Array[::String]
350
+ attr_accessor max_number_of_messages: ::Integer
351
+ attr_accessor visibility_timeout: ::Integer
352
+ attr_accessor wait_time_seconds: ::Integer
353
+ attr_accessor receive_request_attempt_id: ::String
354
+ SENSITIVE: []
355
+ end
356
+
357
+ class ReceiveMessageResult
358
+ attr_accessor messages: ::Array[Types::Message]
359
+ SENSITIVE: []
360
+ end
361
+
362
+ class RemovePermissionRequest
363
+ attr_accessor queue_url: ::String
364
+ attr_accessor label: ::String
365
+ SENSITIVE: []
366
+ end
367
+
368
+ class RequestThrottled
369
+ attr_accessor message: ::String
370
+ SENSITIVE: []
371
+ end
372
+
373
+ class ResourceNotFoundException
374
+ attr_accessor message: ::String
375
+ SENSITIVE: []
376
+ end
377
+
378
+ class SendMessageBatchRequest
379
+ attr_accessor queue_url: ::String
380
+ attr_accessor entries: ::Array[Types::SendMessageBatchRequestEntry]
381
+ SENSITIVE: []
382
+ end
383
+
384
+ class SendMessageBatchRequestEntry
385
+ attr_accessor id: ::String
386
+ attr_accessor message_body: ::String
387
+ attr_accessor delay_seconds: ::Integer
388
+ attr_accessor message_attributes: ::Hash[::String, Types::MessageAttributeValue]
389
+ attr_accessor message_system_attributes: ::Hash[("AWSTraceHeader"), Types::MessageSystemAttributeValue]
390
+ attr_accessor message_deduplication_id: ::String
391
+ attr_accessor message_group_id: ::String
392
+ SENSITIVE: []
393
+ end
394
+
395
+ class SendMessageBatchResult
396
+ attr_accessor successful: ::Array[Types::SendMessageBatchResultEntry]
397
+ attr_accessor failed: ::Array[Types::BatchResultErrorEntry]
398
+ SENSITIVE: []
399
+ end
400
+
401
+ class SendMessageBatchResultEntry
402
+ attr_accessor id: ::String
403
+ attr_accessor message_id: ::String
404
+ attr_accessor md5_of_message_body: ::String
405
+ attr_accessor md5_of_message_attributes: ::String
406
+ attr_accessor md5_of_message_system_attributes: ::String
407
+ attr_accessor sequence_number: ::String
408
+ SENSITIVE: []
409
+ end
410
+
411
+ class SendMessageRequest
412
+ attr_accessor queue_url: ::String
413
+ attr_accessor message_body: ::String
414
+ attr_accessor delay_seconds: ::Integer
415
+ attr_accessor message_attributes: ::Hash[::String, Types::MessageAttributeValue]
416
+ attr_accessor message_system_attributes: ::Hash[("AWSTraceHeader"), Types::MessageSystemAttributeValue]
417
+ attr_accessor message_deduplication_id: ::String
418
+ attr_accessor message_group_id: ::String
419
+ SENSITIVE: []
420
+ end
421
+
422
+ class SendMessageResult
423
+ attr_accessor md5_of_message_body: ::String
424
+ attr_accessor md5_of_message_attributes: ::String
425
+ attr_accessor md5_of_message_system_attributes: ::String
426
+ attr_accessor message_id: ::String
427
+ attr_accessor sequence_number: ::String
428
+ SENSITIVE: []
429
+ end
430
+
431
+ class SetQueueAttributesRequest
432
+ attr_accessor queue_url: ::String
433
+ attr_accessor attributes: ::Hash[("All" | "Policy" | "VisibilityTimeout" | "MaximumMessageSize" | "MessageRetentionPeriod" | "ApproximateNumberOfMessages" | "ApproximateNumberOfMessagesNotVisible" | "CreatedTimestamp" | "LastModifiedTimestamp" | "QueueArn" | "ApproximateNumberOfMessagesDelayed" | "DelaySeconds" | "ReceiveMessageWaitTimeSeconds" | "RedrivePolicy" | "FifoQueue" | "ContentBasedDeduplication" | "KmsMasterKeyId" | "KmsDataKeyReusePeriodSeconds" | "DeduplicationScope" | "FifoThroughputLimit" | "RedriveAllowPolicy" | "SqsManagedSseEnabled"), ::String]
434
+ SENSITIVE: []
435
+ end
436
+
437
+ class StartMessageMoveTaskRequest
438
+ attr_accessor source_arn: ::String
439
+ attr_accessor destination_arn: ::String
440
+ attr_accessor max_number_of_messages_per_second: ::Integer
441
+ SENSITIVE: []
442
+ end
443
+
444
+ class StartMessageMoveTaskResult
445
+ attr_accessor task_handle: ::String
446
+ SENSITIVE: []
447
+ end
448
+
449
+ class TagQueueRequest
450
+ attr_accessor queue_url: ::String
451
+ attr_accessor tags: ::Hash[::String, ::String]
452
+ SENSITIVE: []
453
+ end
454
+
455
+ class TooManyEntriesInBatchRequest
456
+ attr_accessor message: ::String
457
+ SENSITIVE: []
458
+ end
459
+
460
+ class UnsupportedOperation
461
+ attr_accessor message: ::String
462
+ SENSITIVE: []
463
+ end
464
+
465
+ class UntagQueueRequest
466
+ attr_accessor queue_url: ::String
467
+ attr_accessor tag_keys: ::Array[::String]
468
+ SENSITIVE: []
469
+ end
470
+ end
471
+ 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 SQS
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-sqs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.68.0
4
+ version: 1.70.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-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -71,13 +71,20 @@ files:
71
71
  - lib/aws-sdk-sqs/queue_poller.rb
72
72
  - lib/aws-sdk-sqs/resource.rb
73
73
  - lib/aws-sdk-sqs/types.rb
74
+ - sig/client.rbs
75
+ - sig/errors.rbs
76
+ - sig/message.rbs
77
+ - sig/queue.rbs
78
+ - sig/resource.rbs
79
+ - sig/types.rbs
80
+ - sig/waiters.rbs
74
81
  homepage: https://github.com/aws/aws-sdk-ruby
75
82
  licenses:
76
83
  - Apache-2.0
77
84
  metadata:
78
85
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-sqs
79
86
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-sqs/CHANGELOG.md
80
- post_install_message:
87
+ post_install_message:
81
88
  rdoc_options: []
82
89
  require_paths:
83
90
  - lib
@@ -92,8 +99,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
92
99
  - !ruby/object:Gem::Version
93
100
  version: '0'
94
101
  requirements: []
95
- rubygems_version: 3.1.6
96
- signing_key:
102
+ rubygems_version: 3.4.10
103
+ signing_key:
97
104
  specification_version: 4
98
105
  summary: AWS SDK for Ruby - Amazon SQS
99
106
  test_files: []