aws-sdk-sqs 1.0.0.rc3 → 1.0.0.rc4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-sqs.rb +1 -1
- data/lib/aws-sdk-sqs/client.rb +37 -1
- data/lib/aws-sdk-sqs/types.rb +72 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9234bb28603d564b31679504737ef4b0d66e0baf
|
4
|
+
data.tar.gz: cfbbe01d2e6fe850cbcdfa163b0a023ba702f6f7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab36d51367d23470b208706eaef227a6f2578b0f91d78b578ca84124d1d081e675924a90b7933f164eff0ec72fdde0e69055c8d66caa440014720bea5f86e110
|
7
|
+
data.tar.gz: d88f7439db603f27a9407ea50376ea24037fcce0b28e45c84f77902c809fb222c562f999f01673f2942a6f9ff1765d6754d97b86b5551ee5edcb13101006e009
|
data/lib/aws-sdk-sqs.rb
CHANGED
data/lib/aws-sdk-sqs/client.rb
CHANGED
@@ -18,6 +18,7 @@ require 'aws-sdk-core/plugins/regional_endpoint.rb'
|
|
18
18
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
19
19
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
20
20
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
21
|
+
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
21
22
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
22
23
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
23
24
|
require 'aws-sdk-sqs/plugins/queue_urls.rb'
|
@@ -47,6 +48,7 @@ module Aws::SQS
|
|
47
48
|
add_plugin(Aws::Plugins::ResponsePaging)
|
48
49
|
add_plugin(Aws::Plugins::StubResponses)
|
49
50
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
51
|
+
add_plugin(Aws::Plugins::JsonvalueConverter)
|
50
52
|
add_plugin(Aws::Plugins::SignatureV4)
|
51
53
|
add_plugin(Aws::Plugins::Protocols::Query)
|
52
54
|
add_plugin(Aws::SQS::Plugins::QueueUrls)
|
@@ -247,6 +249,8 @@ module Aws::SQS
|
|
247
249
|
# actions: ["String"], # required
|
248
250
|
# })
|
249
251
|
#
|
252
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/AddPermission AWS API Documentation
|
253
|
+
#
|
250
254
|
# @overload add_permission(params = {})
|
251
255
|
# @param [Hash] params ({})
|
252
256
|
def add_permission(params = {}, options = {})
|
@@ -325,6 +329,8 @@ module Aws::SQS
|
|
325
329
|
# visibility_timeout: 1, # required
|
326
330
|
# })
|
327
331
|
#
|
332
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/ChangeMessageVisibility AWS API Documentation
|
333
|
+
#
|
328
334
|
# @overload change_message_visibility(params = {})
|
329
335
|
# @param [Hash] params ({})
|
330
336
|
def change_message_visibility(params = {}, options = {})
|
@@ -390,6 +396,8 @@ module Aws::SQS
|
|
390
396
|
# resp.failed[0].code #=> String
|
391
397
|
# resp.failed[0].message #=> String
|
392
398
|
#
|
399
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/ChangeMessageVisibilityBatch AWS API Documentation
|
400
|
+
#
|
393
401
|
# @overload change_message_visibility_batch(params = {})
|
394
402
|
# @param [Hash] params ({})
|
395
403
|
def change_message_visibility_batch(params = {}, options = {})
|
@@ -592,6 +600,8 @@ module Aws::SQS
|
|
592
600
|
#
|
593
601
|
# resp.queue_url #=> String
|
594
602
|
#
|
603
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/CreateQueue AWS API Documentation
|
604
|
+
#
|
595
605
|
# @overload create_queue(params = {})
|
596
606
|
# @param [Hash] params ({})
|
597
607
|
def create_queue(params = {}, options = {})
|
@@ -641,6 +651,8 @@ module Aws::SQS
|
|
641
651
|
# receipt_handle: "String", # required
|
642
652
|
# })
|
643
653
|
#
|
654
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/DeleteMessage AWS API Documentation
|
655
|
+
#
|
644
656
|
# @overload delete_message(params = {})
|
645
657
|
# @param [Hash] params ({})
|
646
658
|
def delete_message(params = {}, options = {})
|
@@ -701,6 +713,8 @@ module Aws::SQS
|
|
701
713
|
# resp.failed[0].code #=> String
|
702
714
|
# resp.failed[0].message #=> String
|
703
715
|
#
|
716
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/DeleteMessageBatch AWS API Documentation
|
717
|
+
#
|
704
718
|
# @overload delete_message_batch(params = {})
|
705
719
|
# @param [Hash] params ({})
|
706
720
|
def delete_message_batch(params = {}, options = {})
|
@@ -736,6 +750,8 @@ module Aws::SQS
|
|
736
750
|
# queue_url: "String", # required
|
737
751
|
# })
|
738
752
|
#
|
753
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/DeleteQueue AWS API Documentation
|
754
|
+
#
|
739
755
|
# @overload delete_queue(params = {})
|
740
756
|
# @param [Hash] params ({})
|
741
757
|
def delete_queue(params = {}, options = {})
|
@@ -854,6 +870,8 @@ module Aws::SQS
|
|
854
870
|
# resp.attributes #=> Hash
|
855
871
|
# resp.attributes["QueueAttributeName"] #=> String
|
856
872
|
#
|
873
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/GetQueueAttributes AWS API Documentation
|
874
|
+
#
|
857
875
|
# @overload get_queue_attributes(params = {})
|
858
876
|
# @param [Hash] params ({})
|
859
877
|
def get_queue_attributes(params = {}, options = {})
|
@@ -900,6 +918,8 @@ module Aws::SQS
|
|
900
918
|
#
|
901
919
|
# resp.queue_url #=> String
|
902
920
|
#
|
921
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/GetQueueUrl AWS API Documentation
|
922
|
+
#
|
903
923
|
# @overload get_queue_url(params = {})
|
904
924
|
# @param [Hash] params ({})
|
905
925
|
def get_queue_url(params = {}, options = {})
|
@@ -937,6 +957,8 @@ module Aws::SQS
|
|
937
957
|
# resp.queue_urls #=> Array
|
938
958
|
# resp.queue_urls[0] #=> String
|
939
959
|
#
|
960
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/ListDeadLetterSourceQueues AWS API Documentation
|
961
|
+
#
|
940
962
|
# @overload list_dead_letter_source_queues(params = {})
|
941
963
|
# @param [Hash] params ({})
|
942
964
|
def list_dead_letter_source_queues(params = {}, options = {})
|
@@ -970,6 +992,8 @@ module Aws::SQS
|
|
970
992
|
# resp.queue_urls #=> Array
|
971
993
|
# resp.queue_urls[0] #=> String
|
972
994
|
#
|
995
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/ListQueues AWS API Documentation
|
996
|
+
#
|
973
997
|
# @overload list_queues(params = {})
|
974
998
|
# @param [Hash] params ({})
|
975
999
|
def list_queues(params = {}, options = {})
|
@@ -1003,6 +1027,8 @@ module Aws::SQS
|
|
1003
1027
|
# queue_url: "String", # required
|
1004
1028
|
# })
|
1005
1029
|
#
|
1030
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/PurgeQueue AWS API Documentation
|
1031
|
+
#
|
1006
1032
|
# @overload purge_queue(params = {})
|
1007
1033
|
# @param [Hash] params ({})
|
1008
1034
|
def purge_queue(params = {}, options = {})
|
@@ -1280,6 +1306,8 @@ module Aws::SQS
|
|
1280
1306
|
# resp.messages[0].message_attributes["String"].binary_list_values[0] #=> String
|
1281
1307
|
# resp.messages[0].message_attributes["String"].data_type #=> String
|
1282
1308
|
#
|
1309
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/ReceiveMessage AWS API Documentation
|
1310
|
+
#
|
1283
1311
|
# @overload receive_message(params = {})
|
1284
1312
|
# @param [Hash] params ({})
|
1285
1313
|
def receive_message(params = {}, options = {})
|
@@ -1308,6 +1336,8 @@ module Aws::SQS
|
|
1308
1336
|
# label: "String", # required
|
1309
1337
|
# })
|
1310
1338
|
#
|
1339
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/RemovePermission AWS API Documentation
|
1340
|
+
#
|
1311
1341
|
# @overload remove_permission(params = {})
|
1312
1342
|
# @param [Hash] params ({})
|
1313
1343
|
def remove_permission(params = {}, options = {})
|
@@ -1516,6 +1546,8 @@ module Aws::SQS
|
|
1516
1546
|
# resp.message_id #=> String
|
1517
1547
|
# resp.sequence_number #=> String
|
1518
1548
|
#
|
1549
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/SendMessage AWS API Documentation
|
1550
|
+
#
|
1519
1551
|
# @overload send_message(params = {})
|
1520
1552
|
# @param [Hash] params ({})
|
1521
1553
|
def send_message(params = {}, options = {})
|
@@ -1622,6 +1654,8 @@ module Aws::SQS
|
|
1622
1654
|
# resp.failed[0].code #=> String
|
1623
1655
|
# resp.failed[0].message #=> String
|
1624
1656
|
#
|
1657
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/SendMessageBatch AWS API Documentation
|
1658
|
+
#
|
1625
1659
|
# @overload send_message_batch(params = {})
|
1626
1660
|
# @param [Hash] params ({})
|
1627
1661
|
def send_message_batch(params = {}, options = {})
|
@@ -1762,6 +1796,8 @@ module Aws::SQS
|
|
1762
1796
|
# },
|
1763
1797
|
# })
|
1764
1798
|
#
|
1799
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/SetQueueAttributes AWS API Documentation
|
1800
|
+
#
|
1765
1801
|
# @overload set_queue_attributes(params = {})
|
1766
1802
|
# @param [Hash] params ({})
|
1767
1803
|
def set_queue_attributes(params = {}, options = {})
|
@@ -1782,7 +1818,7 @@ module Aws::SQS
|
|
1782
1818
|
params: params,
|
1783
1819
|
config: config)
|
1784
1820
|
context[:gem_name] = 'aws-sdk-sqs'
|
1785
|
-
context[:gem_version] = '1.0.0.
|
1821
|
+
context[:gem_version] = '1.0.0.rc4'
|
1786
1822
|
Seahorse::Client::Request.new(handlers, context)
|
1787
1823
|
end
|
1788
1824
|
|
data/lib/aws-sdk-sqs/types.rb
CHANGED
@@ -76,6 +76,8 @@ module Aws::SQS
|
|
76
76
|
# [1]: http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/acp-overview.html#PermissionTypes
|
77
77
|
# @return [Array<String>]
|
78
78
|
#
|
79
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/AddPermissionRequest AWS API Documentation
|
80
|
+
#
|
79
81
|
class AddPermissionRequest < Struct.new(
|
80
82
|
:queue_url,
|
81
83
|
:label,
|
@@ -103,6 +105,8 @@ module Aws::SQS
|
|
103
105
|
# A message explaining why the action failed on this entry.
|
104
106
|
# @return [String]
|
105
107
|
#
|
108
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/BatchResultErrorEntry AWS API Documentation
|
109
|
+
#
|
106
110
|
class BatchResultErrorEntry < Struct.new(
|
107
111
|
:id,
|
108
112
|
:sender_fault,
|
@@ -137,6 +141,8 @@ module Aws::SQS
|
|
137
141
|
# timeout must be changed.
|
138
142
|
# @return [Array<Types::ChangeMessageVisibilityBatchRequestEntry>]
|
139
143
|
#
|
144
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/ChangeMessageVisibilityBatchRequest AWS API Documentation
|
145
|
+
#
|
140
146
|
class ChangeMessageVisibilityBatchRequest < Struct.new(
|
141
147
|
:queue_url,
|
142
148
|
:entries)
|
@@ -183,6 +189,8 @@ module Aws::SQS
|
|
183
189
|
# The new value (in seconds) for the message's visibility timeout.
|
184
190
|
# @return [Integer]
|
185
191
|
#
|
192
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/ChangeMessageVisibilityBatchRequestEntry AWS API Documentation
|
193
|
+
#
|
186
194
|
class ChangeMessageVisibilityBatchRequestEntry < Struct.new(
|
187
195
|
:id,
|
188
196
|
:receipt_handle,
|
@@ -202,6 +210,8 @@ module Aws::SQS
|
|
202
210
|
# A list of ` BatchResultErrorEntry ` items.
|
203
211
|
# @return [Array<Types::BatchResultErrorEntry>]
|
204
212
|
#
|
213
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/ChangeMessageVisibilityBatchResult AWS API Documentation
|
214
|
+
#
|
205
215
|
class ChangeMessageVisibilityBatchResult < Struct.new(
|
206
216
|
:successful,
|
207
217
|
:failed)
|
@@ -215,6 +225,8 @@ module Aws::SQS
|
|
215
225
|
# successfully.
|
216
226
|
# @return [String]
|
217
227
|
#
|
228
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/ChangeMessageVisibilityBatchResultEntry AWS API Documentation
|
229
|
+
#
|
218
230
|
class ChangeMessageVisibilityBatchResultEntry < Struct.new(
|
219
231
|
:id)
|
220
232
|
include Aws::Structure
|
@@ -247,6 +259,8 @@ module Aws::SQS
|
|
247
259
|
# Values values: `0` to `43200`. Maximum: 12 hours.
|
248
260
|
# @return [Integer]
|
249
261
|
#
|
262
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/ChangeMessageVisibilityRequest AWS API Documentation
|
263
|
+
#
|
250
264
|
class ChangeMessageVisibilityRequest < Struct.new(
|
251
265
|
:queue_url,
|
252
266
|
:receipt_handle,
|
@@ -393,6 +407,8 @@ module Aws::SQS
|
|
393
407
|
# [6]: http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html#FIFO-queues-exactly-once-processing
|
394
408
|
# @return [Hash<String,String>]
|
395
409
|
#
|
410
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/CreateQueueRequest AWS API Documentation
|
411
|
+
#
|
396
412
|
class CreateQueueRequest < Struct.new(
|
397
413
|
:queue_name,
|
398
414
|
:attributes)
|
@@ -405,6 +421,8 @@ module Aws::SQS
|
|
405
421
|
# The URL of the created Amazon SQS queue.
|
406
422
|
# @return [String]
|
407
423
|
#
|
424
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/CreateQueueResult AWS API Documentation
|
425
|
+
#
|
408
426
|
class CreateQueueResult < Struct.new(
|
409
427
|
:queue_url)
|
410
428
|
include Aws::Structure
|
@@ -433,6 +451,8 @@ module Aws::SQS
|
|
433
451
|
# A list of receipt handles for the messages to be deleted.
|
434
452
|
# @return [Array<Types::DeleteMessageBatchRequestEntry>]
|
435
453
|
#
|
454
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/DeleteMessageBatchRequest AWS API Documentation
|
455
|
+
#
|
436
456
|
class DeleteMessageBatchRequest < Struct.new(
|
437
457
|
:queue_url,
|
438
458
|
:entries)
|
@@ -462,6 +482,8 @@ module Aws::SQS
|
|
462
482
|
# A receipt handle.
|
463
483
|
# @return [String]
|
464
484
|
#
|
485
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/DeleteMessageBatchRequestEntry AWS API Documentation
|
486
|
+
#
|
465
487
|
class DeleteMessageBatchRequestEntry < Struct.new(
|
466
488
|
:id,
|
467
489
|
:receipt_handle)
|
@@ -480,6 +502,8 @@ module Aws::SQS
|
|
480
502
|
# A list of ` BatchResultErrorEntry ` items.
|
481
503
|
# @return [Array<Types::BatchResultErrorEntry>]
|
482
504
|
#
|
505
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/DeleteMessageBatchResult AWS API Documentation
|
506
|
+
#
|
483
507
|
class DeleteMessageBatchResult < Struct.new(
|
484
508
|
:successful,
|
485
509
|
:failed)
|
@@ -492,6 +516,8 @@ module Aws::SQS
|
|
492
516
|
# Represents a successfully deleted message.
|
493
517
|
# @return [String]
|
494
518
|
#
|
519
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/DeleteMessageBatchResultEntry AWS API Documentation
|
520
|
+
#
|
495
521
|
class DeleteMessageBatchResultEntry < Struct.new(
|
496
522
|
:id)
|
497
523
|
include Aws::Structure
|
@@ -515,6 +541,8 @@ module Aws::SQS
|
|
515
541
|
# The receipt handle associated with the message to delete.
|
516
542
|
# @return [String]
|
517
543
|
#
|
544
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/DeleteMessageRequest AWS API Documentation
|
545
|
+
#
|
518
546
|
class DeleteMessageRequest < Struct.new(
|
519
547
|
:queue_url,
|
520
548
|
:receipt_handle)
|
@@ -534,6 +562,8 @@ module Aws::SQS
|
|
534
562
|
# Queue URLs are case-sensitive.
|
535
563
|
# @return [String]
|
536
564
|
#
|
565
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/DeleteQueueRequest AWS API Documentation
|
566
|
+
#
|
537
567
|
class DeleteQueueRequest < Struct.new(
|
538
568
|
:queue_url)
|
539
569
|
include Aws::Structure
|
@@ -634,6 +664,8 @@ module Aws::SQS
|
|
634
664
|
# [7]: http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html#FIFO-queues-exactly-once-processing
|
635
665
|
# @return [Array<String>]
|
636
666
|
#
|
667
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/GetQueueAttributesRequest AWS API Documentation
|
668
|
+
#
|
637
669
|
class GetQueueAttributesRequest < Struct.new(
|
638
670
|
:queue_url,
|
639
671
|
:attribute_names)
|
@@ -646,6 +678,8 @@ module Aws::SQS
|
|
646
678
|
# A map of attributes to their respective values.
|
647
679
|
# @return [Hash<String,String>]
|
648
680
|
#
|
681
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/GetQueueAttributesResult AWS API Documentation
|
682
|
+
#
|
649
683
|
class GetQueueAttributesResult < Struct.new(
|
650
684
|
:attributes)
|
651
685
|
include Aws::Structure
|
@@ -671,6 +705,8 @@ module Aws::SQS
|
|
671
705
|
# The AWS account ID of the account that created the queue.
|
672
706
|
# @return [String]
|
673
707
|
#
|
708
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/GetQueueUrlRequest AWS API Documentation
|
709
|
+
#
|
674
710
|
class GetQueueUrlRequest < Struct.new(
|
675
711
|
:queue_name,
|
676
712
|
:queue_owner_aws_account_id)
|
@@ -688,6 +724,8 @@ module Aws::SQS
|
|
688
724
|
# The URL of the queue.
|
689
725
|
# @return [String]
|
690
726
|
#
|
727
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/GetQueueUrlResult AWS API Documentation
|
728
|
+
#
|
691
729
|
class GetQueueUrlResult < Struct.new(
|
692
730
|
:queue_url)
|
693
731
|
include Aws::Structure
|
@@ -706,6 +744,8 @@ module Aws::SQS
|
|
706
744
|
# Queue URLs are case-sensitive.
|
707
745
|
# @return [String]
|
708
746
|
#
|
747
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/ListDeadLetterSourceQueuesRequest AWS API Documentation
|
748
|
+
#
|
709
749
|
class ListDeadLetterSourceQueuesRequest < Struct.new(
|
710
750
|
:queue_url)
|
711
751
|
include Aws::Structure
|
@@ -718,6 +758,8 @@ module Aws::SQS
|
|
718
758
|
# attribute configured with a dead letter queue.
|
719
759
|
# @return [Array<String>]
|
720
760
|
#
|
761
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/ListDeadLetterSourceQueuesResult AWS API Documentation
|
762
|
+
#
|
721
763
|
class ListDeadLetterSourceQueuesResult < Struct.new(
|
722
764
|
:queue_urls)
|
723
765
|
include Aws::Structure
|
@@ -737,6 +779,8 @@ module Aws::SQS
|
|
737
779
|
# Queue names are case-sensitive.
|
738
780
|
# @return [String]
|
739
781
|
#
|
782
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/ListQueuesRequest AWS API Documentation
|
783
|
+
#
|
740
784
|
class ListQueuesRequest < Struct.new(
|
741
785
|
:queue_name_prefix)
|
742
786
|
include Aws::Structure
|
@@ -748,6 +792,8 @@ module Aws::SQS
|
|
748
792
|
# A list of queue URLs, up to 1,000 entries.
|
749
793
|
# @return [Array<String>]
|
750
794
|
#
|
795
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/ListQueuesResult AWS API Documentation
|
796
|
+
#
|
751
797
|
class ListQueuesResult < Struct.new(
|
752
798
|
:queue_urls)
|
753
799
|
include Aws::Structure
|
@@ -807,6 +853,8 @@ module Aws::SQS
|
|
807
853
|
# [1]: http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-attributes.html#message-attributes-items-validation
|
808
854
|
# @return [Hash<String,Types::MessageAttributeValue>]
|
809
855
|
#
|
856
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/Message AWS API Documentation
|
857
|
+
#
|
810
858
|
class Message < Struct.new(
|
811
859
|
:message_id,
|
812
860
|
:receipt_handle,
|
@@ -874,6 +922,8 @@ module Aws::SQS
|
|
874
922
|
# [1]: http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-attributes.html#message-attributes-data-types-validation
|
875
923
|
# @return [String]
|
876
924
|
#
|
925
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/MessageAttributeValue AWS API Documentation
|
926
|
+
#
|
877
927
|
class MessageAttributeValue < Struct.new(
|
878
928
|
:string_value,
|
879
929
|
:binary_value,
|
@@ -897,6 +947,8 @@ module Aws::SQS
|
|
897
947
|
# Queue URLs are case-sensitive.
|
898
948
|
# @return [String]
|
899
949
|
#
|
950
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/PurgeQueueRequest AWS API Documentation
|
951
|
+
#
|
900
952
|
class PurgeQueueRequest < Struct.new(
|
901
953
|
:queue_url)
|
902
954
|
include Aws::Structure
|
@@ -1102,6 +1154,8 @@ module Aws::SQS
|
|
1102
1154
|
# [2]: http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queue-recommendations.html#using-receiverequestattemptid-request-parameter
|
1103
1155
|
# @return [String]
|
1104
1156
|
#
|
1157
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/ReceiveMessageRequest AWS API Documentation
|
1158
|
+
#
|
1105
1159
|
class ReceiveMessageRequest < Struct.new(
|
1106
1160
|
:queue_url,
|
1107
1161
|
:attribute_names,
|
@@ -1119,6 +1173,8 @@ module Aws::SQS
|
|
1119
1173
|
# A list of messages.
|
1120
1174
|
# @return [Array<Types::Message>]
|
1121
1175
|
#
|
1176
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/ReceiveMessageResult AWS API Documentation
|
1177
|
+
#
|
1122
1178
|
class ReceiveMessageResult < Struct.new(
|
1123
1179
|
:messages)
|
1124
1180
|
include Aws::Structure
|
@@ -1143,6 +1199,8 @@ module Aws::SQS
|
|
1143
1199
|
# added using the ` AddPermission ` action.
|
1144
1200
|
# @return [String]
|
1145
1201
|
#
|
1202
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/RemovePermissionRequest AWS API Documentation
|
1203
|
+
#
|
1146
1204
|
class RemovePermissionRequest < Struct.new(
|
1147
1205
|
:queue_url,
|
1148
1206
|
:label)
|
@@ -1184,6 +1242,8 @@ module Aws::SQS
|
|
1184
1242
|
# A list of ` SendMessageBatchRequestEntry ` items.
|
1185
1243
|
# @return [Array<Types::SendMessageBatchRequestEntry>]
|
1186
1244
|
#
|
1245
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/SendMessageBatchRequest AWS API Documentation
|
1246
|
+
#
|
1187
1247
|
class SendMessageBatchRequest < Struct.new(
|
1188
1248
|
:queue_url,
|
1189
1249
|
:entries)
|
@@ -1348,6 +1408,8 @@ module Aws::SQS
|
|
1348
1408
|
# [1]: http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queue-recommendations.html#using-messagegroupid-property
|
1349
1409
|
# @return [String]
|
1350
1410
|
#
|
1411
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/SendMessageBatchRequestEntry AWS API Documentation
|
1412
|
+
#
|
1351
1413
|
class SendMessageBatchRequestEntry < Struct.new(
|
1352
1414
|
:id,
|
1353
1415
|
:message_body,
|
@@ -1371,6 +1433,8 @@ module Aws::SQS
|
|
1371
1433
|
# each message that can't be enqueued.
|
1372
1434
|
# @return [Array<Types::BatchResultErrorEntry>]
|
1373
1435
|
#
|
1436
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/SendMessageBatchResult AWS API Documentation
|
1437
|
+
#
|
1374
1438
|
class SendMessageBatchResult < Struct.new(
|
1375
1439
|
:successful,
|
1376
1440
|
:failed)
|
@@ -1420,6 +1484,8 @@ module Aws::SQS
|
|
1420
1484
|
# continues to increase for a particular `MessageGroupId`.
|
1421
1485
|
# @return [String]
|
1422
1486
|
#
|
1487
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/SendMessageBatchResultEntry AWS API Documentation
|
1488
|
+
#
|
1423
1489
|
class SendMessageBatchResultEntry < Struct.new(
|
1424
1490
|
:id,
|
1425
1491
|
:message_id,
|
@@ -1603,6 +1669,8 @@ module Aws::SQS
|
|
1603
1669
|
# [1]: http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queue-recommendations.html#using-messagegroupid-property
|
1604
1670
|
# @return [String]
|
1605
1671
|
#
|
1672
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/SendMessageRequest AWS API Documentation
|
1673
|
+
#
|
1606
1674
|
class SendMessageRequest < Struct.new(
|
1607
1675
|
:queue_url,
|
1608
1676
|
:message_body,
|
@@ -1657,6 +1725,8 @@ module Aws::SQS
|
|
1657
1725
|
# continues to increase for a particular `MessageGroupId`.
|
1658
1726
|
# @return [String]
|
1659
1727
|
#
|
1728
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/SendMessageResult AWS API Documentation
|
1729
|
+
#
|
1660
1730
|
class SendMessageResult < Struct.new(
|
1661
1731
|
:md5_of_message_body,
|
1662
1732
|
:md5_of_message_attributes,
|
@@ -1788,6 +1858,8 @@ module Aws::SQS
|
|
1788
1858
|
# [5]: http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html#FIFO-queues-exactly-once-processing
|
1789
1859
|
# @return [Hash<String,String>]
|
1790
1860
|
#
|
1861
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sqs-2012-11-05/SetQueueAttributesRequest AWS API Documentation
|
1862
|
+
#
|
1791
1863
|
class SetQueueAttributesRequest < Struct.new(
|
1792
1864
|
:queue_url,
|
1793
1865
|
:attributes)
|
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.0.0.
|
4
|
+
version: 1.0.0.rc4
|
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: 2017-
|
11
|
+
date: 2017-04-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|