aws-sdk-sqs 1.0.0 → 1.1.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4dcf7bae512be145e8f33003f18a89422579a7ea
4
- data.tar.gz: f9d1e5d1b9c5b7ad8eed92dd0d44bbb68c2e60e4
3
+ metadata.gz: e26afb7b00b5c1f049aea2e1ec67d66a38747410
4
+ data.tar.gz: 054cd26bfd74fecabf09cd3e9855eac3002d82a0
5
5
  SHA512:
6
- metadata.gz: 4e2d9a9716a0b0d96a60120e1a0cabefd439c593074edfb100b57a2e1ce78b42631165b4de240509829e53d7590512d267cdec65c883f3a19efb2551530ca8d7
7
- data.tar.gz: 37c41c258e4a1ec452c4cc8eb2d7769aee6a04d74bbecb7bbf4d8b758c432ab5c22fd8e0762fea06d00a70e7c18fe64069062519f34dcee344ac9a951f7b1120
6
+ metadata.gz: 54e01e2b6ad1a19e7db2f62688ac599cd04199acd997b6f0a701ae20af959c1074f145e0a6422707025da297b5545d003d49072e5c9ff8f971cde8a19a8b2fea
7
+ data.tar.gz: 1e13cfcd5c167c1968fd0cf8c04a678e181b893a44c805406ffad9856e44b621d43bb36eb9d3b3779101691ff26fad5f249d66eda6d63af7cc740e5cd4e4154c
data/lib/aws-sdk-sqs.rb CHANGED
@@ -44,6 +44,6 @@ require_relative 'aws-sdk-sqs/customizations'
44
44
  # @service
45
45
  module Aws::SQS
46
46
 
47
- GEM_VERSION = '1.0.0'
47
+ GEM_VERSION = '1.1.0'
48
48
 
49
49
  end
@@ -1859,7 +1859,7 @@ module Aws::SQS
1859
1859
  params: params,
1860
1860
  config: config)
1861
1861
  context[:gem_name] = 'aws-sdk-sqs'
1862
- context[:gem_version] = '1.0.0'
1862
+ context[:gem_version] = '1.1.0'
1863
1863
  Seahorse::Client::Request.new(handlers, context)
1864
1864
  end
1865
1865
 
@@ -42,19 +42,19 @@ module Aws::SQS
42
42
  # across all AWS accounts for an extended period of time.
43
43
  # @return [String]
44
44
  def message_id
45
- data.message_id
45
+ data[:message_id]
46
46
  end
47
47
 
48
48
  # An MD5 digest of the non-URL-encoded message body string.
49
49
  # @return [String]
50
50
  def md5_of_body
51
- data.md5_of_body
51
+ data[:md5_of_body]
52
52
  end
53
53
 
54
54
  # The message's contents (not URL-encoded).
55
55
  # @return [String]
56
56
  def body
57
- data.body
57
+ data[:body]
58
58
  end
59
59
 
60
60
  # `SenderId`, `SentTimestamp`, `ApproximateReceiveCount`, and/or
@@ -67,7 +67,7 @@ module Aws::SQS
67
67
  # [1]: http://en.wikipedia.org/wiki/Unix_time
68
68
  # @return [Hash<String,String>]
69
69
  def attributes
70
- data.attributes
70
+ data[:attributes]
71
71
  end
72
72
 
73
73
  # An MD5 digest of the non-URL-encoded message attribute string. You can
@@ -80,7 +80,7 @@ module Aws::SQS
80
80
  # [1]: https://www.ietf.org/rfc/rfc1321.txt
81
81
  # @return [String]
82
82
  def md5_of_message_attributes
83
- data.md5_of_message_attributes
83
+ data[:md5_of_message_attributes]
84
84
  end
85
85
 
86
86
  # Each message attribute consists of a `Name`, `Type`, and `Value`. For
@@ -92,7 +92,7 @@ module Aws::SQS
92
92
  # [1]: http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-attributes.html#message-attributes-items-validation
93
93
  # @return [Hash<String,Types::MessageAttributeValue>]
94
94
  def message_attributes
95
- data.message_attributes
95
+ data[:message_attributes]
96
96
  end
97
97
 
98
98
  # @!endgroup
@@ -33,7 +33,7 @@ module Aws::SQS
33
33
  # A map of attributes to their respective values.
34
34
  # @return [Hash<String,String>]
35
35
  def attributes
36
- data.attributes
36
+ data[:attributes]
37
37
  end
38
38
 
39
39
  # @!endgroup
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.1.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: 2017-08-29 00:00:00.000000000 Z
11
+ date: 2017-09-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -61,7 +61,9 @@ files:
61
61
  homepage: http://github.com/aws/aws-sdk-ruby
62
62
  licenses:
63
63
  - Apache-2.0
64
- metadata: {}
64
+ metadata:
65
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-sqs
66
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-sqs/CHANGELOG.md
65
67
  post_install_message:
66
68
  rdoc_options: []
67
69
  require_paths: