aws-sdk-sqs 1.8.0 → 1.9.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: '049c7ad858d5f60882ececfc554ec03f359a3e5c'
4
- data.tar.gz: a7196f7e592e1bc866e8bcac13afc2e4b0755834
3
+ metadata.gz: 651daf219ce1b60566adbf0aab641dd475493cac
4
+ data.tar.gz: 549dfbd2149c81faf026c59ab281f6e0234f3b64
5
5
  SHA512:
6
- metadata.gz: 3d13286825a71a85d5471e0eae6d3c72adc7a351fbb3931ec0d34373d25e5a6df69c71c9d7f681dc076bb112279a96e69478ac6fd6e70a0383b1564b13c6ef40
7
- data.tar.gz: 53699bdc51a2685f4375efa9705a0030ec17e694ea45bc3f289e393970abe79d94beb17c1a004566959532a46cafe49cc953bde24e444a11f5b8d76ee37e57d8
6
+ metadata.gz: a3bd97ad5ede3842b37205602e343b9bb86aafac6ac3911eb25dc8d5df797b740c20076d294cb9df10c0c61c103baa0de8f0d25db40e37bddb39f09ca9fcaf4c
7
+ data.tar.gz: ff8c134907721a067e7db9bce50cd53bb936ca6cbb1e031e7ebe113a94fc2f8fa0cc18f9a52a3c36c6ba68ed43f1cf8857fd9eec41f9eb4be3eaf1569746cc09
@@ -44,6 +44,6 @@ require_relative 'aws-sdk-sqs/customizations'
44
44
  # @service
45
45
  module Aws::SQS
46
46
 
47
- GEM_VERSION = '1.8.0'
47
+ GEM_VERSION = '1.9.0'
48
48
 
49
49
  end
@@ -58,127 +58,129 @@ module Aws::SQS
58
58
  add_plugin(Aws::SQS::Plugins::QueueUrls)
59
59
  add_plugin(Aws::SQS::Plugins::Md5s)
60
60
 
61
- # @option options [required, Aws::CredentialProvider] :credentials
62
- # Your AWS credentials. This can be an instance of any one of the
63
- # following classes:
61
+ # @overload initialize(options)
62
+ # @param [Hash] options
63
+ # @option options [required, Aws::CredentialProvider] :credentials
64
+ # Your AWS credentials. This can be an instance of any one of the
65
+ # following classes:
64
66
  #
65
- # * `Aws::Credentials` - Used for configuring static, non-refreshing
66
- # credentials.
67
+ # * `Aws::Credentials` - Used for configuring static, non-refreshing
68
+ # credentials.
67
69
  #
68
- # * `Aws::InstanceProfileCredentials` - Used for loading credentials
69
- # from an EC2 IMDS on an EC2 instance.
70
+ # * `Aws::InstanceProfileCredentials` - Used for loading credentials
71
+ # from an EC2 IMDS on an EC2 instance.
70
72
  #
71
- # * `Aws::SharedCredentials` - Used for loading credentials from a
72
- # shared file, such as `~/.aws/config`.
73
+ # * `Aws::SharedCredentials` - Used for loading credentials from a
74
+ # shared file, such as `~/.aws/config`.
73
75
  #
74
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
76
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
75
77
  #
76
- # When `:credentials` are not configured directly, the following
77
- # locations will be searched for credentials:
78
+ # When `:credentials` are not configured directly, the following
79
+ # locations will be searched for credentials:
78
80
  #
79
- # * `Aws.config[:credentials]`
80
- # * The `:access_key_id`, `:secret_access_key`, and `:session_token` options.
81
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
82
- # * `~/.aws/credentials`
83
- # * `~/.aws/config`
84
- # * EC2 IMDS instance profile - When used by default, the timeouts are
85
- # very aggressive. Construct and pass an instance of
86
- # `Aws::InstanceProfileCredentails` to enable retries and extended
87
- # timeouts.
81
+ # * `Aws.config[:credentials]`
82
+ # * The `:access_key_id`, `:secret_access_key`, and `:session_token` options.
83
+ # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
84
+ # * `~/.aws/credentials`
85
+ # * `~/.aws/config`
86
+ # * EC2 IMDS instance profile - When used by default, the timeouts are
87
+ # very aggressive. Construct and pass an instance of
88
+ # `Aws::InstanceProfileCredentails` to enable retries and extended
89
+ # timeouts.
88
90
  #
89
- # @option options [required, String] :region
90
- # The AWS region to connect to. The configured `:region` is
91
- # used to determine the service `:endpoint`. When not passed,
92
- # a default `:region` is search for in the following locations:
91
+ # @option options [required, String] :region
92
+ # The AWS region to connect to. The configured `:region` is
93
+ # used to determine the service `:endpoint`. When not passed,
94
+ # a default `:region` is search for in the following locations:
93
95
  #
94
- # * `Aws.config[:region]`
95
- # * `ENV['AWS_REGION']`
96
- # * `ENV['AMAZON_REGION']`
97
- # * `ENV['AWS_DEFAULT_REGION']`
98
- # * `~/.aws/credentials`
99
- # * `~/.aws/config`
96
+ # * `Aws.config[:region]`
97
+ # * `ENV['AWS_REGION']`
98
+ # * `ENV['AMAZON_REGION']`
99
+ # * `ENV['AWS_DEFAULT_REGION']`
100
+ # * `~/.aws/credentials`
101
+ # * `~/.aws/config`
100
102
  #
101
- # @option options [String] :access_key_id
103
+ # @option options [String] :access_key_id
102
104
  #
103
- # @option options [Boolean] :client_side_monitoring (false)
104
- # When `true`, client-side metrics will be collected for all API requests from
105
- # this client.
105
+ # @option options [Boolean] :client_side_monitoring (false)
106
+ # When `true`, client-side metrics will be collected for all API requests from
107
+ # this client.
106
108
  #
107
- # @option options [String] :client_side_monitoring_client_id ("")
108
- # Allows you to provide an identifier for this client which will be attached to
109
- # all generated client side metrics. Defaults to an empty string.
109
+ # @option options [String] :client_side_monitoring_client_id ("")
110
+ # Allows you to provide an identifier for this client which will be attached to
111
+ # all generated client side metrics. Defaults to an empty string.
110
112
  #
111
- # @option options [Integer] :client_side_monitoring_port (31000)
112
- # Required for publishing client metrics. The port that the client side monitoring
113
- # agent is running on, where client metrics will be published via UDP.
113
+ # @option options [Integer] :client_side_monitoring_port (31000)
114
+ # Required for publishing client metrics. The port that the client side monitoring
115
+ # agent is running on, where client metrics will be published via UDP.
114
116
  #
115
- # @option options [Aws::ClientSideMonitoring::Publisher] :client_side_monitoring_publisher (Aws::ClientSideMonitoring::Publisher)
116
- # Allows you to provide a custom client-side monitoring publisher class. By default,
117
- # will use the Client Side Monitoring Agent Publisher.
117
+ # @option options [Aws::ClientSideMonitoring::Publisher] :client_side_monitoring_publisher (Aws::ClientSideMonitoring::Publisher)
118
+ # Allows you to provide a custom client-side monitoring publisher class. By default,
119
+ # will use the Client Side Monitoring Agent Publisher.
118
120
  #
119
- # @option options [Boolean] :convert_params (true)
120
- # When `true`, an attempt is made to coerce request parameters into
121
- # the required types.
121
+ # @option options [Boolean] :convert_params (true)
122
+ # When `true`, an attempt is made to coerce request parameters into
123
+ # the required types.
122
124
  #
123
- # @option options [String] :endpoint
124
- # The client endpoint is normally constructed from the `:region`
125
- # option. You should only configure an `:endpoint` when connecting
126
- # to test endpoints. This should be avalid HTTP(S) URI.
125
+ # @option options [String] :endpoint
126
+ # The client endpoint is normally constructed from the `:region`
127
+ # option. You should only configure an `:endpoint` when connecting
128
+ # to test endpoints. This should be avalid HTTP(S) URI.
127
129
  #
128
- # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
129
- # The log formatter.
130
+ # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
131
+ # The log formatter.
130
132
  #
131
- # @option options [Symbol] :log_level (:info)
132
- # The log level to send messages to the `:logger` at.
133
+ # @option options [Symbol] :log_level (:info)
134
+ # The log level to send messages to the `:logger` at.
133
135
  #
134
- # @option options [Logger] :logger
135
- # The Logger instance to send log messages to. If this option
136
- # is not set, logging will be disabled.
136
+ # @option options [Logger] :logger
137
+ # The Logger instance to send log messages to. If this option
138
+ # is not set, logging will be disabled.
137
139
  #
138
- # @option options [String] :profile ("default")
139
- # Used when loading credentials from the shared credentials file
140
- # at HOME/.aws/credentials. When not specified, 'default' is used.
140
+ # @option options [String] :profile ("default")
141
+ # Used when loading credentials from the shared credentials file
142
+ # at HOME/.aws/credentials. When not specified, 'default' is used.
141
143
  #
142
- # @option options [Float] :retry_base_delay (0.3)
143
- # The base delay in seconds used by the default backoff function.
144
+ # @option options [Float] :retry_base_delay (0.3)
145
+ # The base delay in seconds used by the default backoff function.
144
146
  #
145
- # @option options [Symbol] :retry_jitter (:none)
146
- # A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
147
+ # @option options [Symbol] :retry_jitter (:none)
148
+ # A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
147
149
  #
148
- # @see https://www.awsarchitectureblog.com/2015/03/backoff.html
150
+ # @see https://www.awsarchitectureblog.com/2015/03/backoff.html
149
151
  #
150
- # @option options [Integer] :retry_limit (3)
151
- # The maximum number of times to retry failed requests. Only
152
- # ~ 500 level server errors and certain ~ 400 level client errors
153
- # are retried. Generally, these are throttling errors, data
154
- # checksum errors, networking errors, timeout errors and auth
155
- # errors from expired credentials.
152
+ # @option options [Integer] :retry_limit (3)
153
+ # The maximum number of times to retry failed requests. Only
154
+ # ~ 500 level server errors and certain ~ 400 level client errors
155
+ # are retried. Generally, these are throttling errors, data
156
+ # checksum errors, networking errors, timeout errors and auth
157
+ # errors from expired credentials.
156
158
  #
157
- # @option options [Integer] :retry_max_delay (0)
158
- # The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
159
+ # @option options [Integer] :retry_max_delay (0)
160
+ # The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
159
161
  #
160
- # @option options [String] :secret_access_key
162
+ # @option options [String] :secret_access_key
161
163
  #
162
- # @option options [String] :session_token
164
+ # @option options [String] :session_token
163
165
  #
164
- # @option options [Boolean] :stub_responses (false)
165
- # Causes the client to return stubbed responses. By default
166
- # fake responses are generated and returned. You can specify
167
- # the response data to return or errors to raise by calling
168
- # {ClientStubs#stub_responses}. See {ClientStubs} for more information.
166
+ # @option options [Boolean] :stub_responses (false)
167
+ # Causes the client to return stubbed responses. By default
168
+ # fake responses are generated and returned. You can specify
169
+ # the response data to return or errors to raise by calling
170
+ # {ClientStubs#stub_responses}. See {ClientStubs} for more information.
169
171
  #
170
- # ** Please note ** When response stubbing is enabled, no HTTP
171
- # requests are made, and retries are disabled.
172
+ # ** Please note ** When response stubbing is enabled, no HTTP
173
+ # requests are made, and retries are disabled.
172
174
  #
173
- # @option options [Boolean] :validate_params (true)
174
- # When `true`, request parameters are validated before
175
- # sending the request.
175
+ # @option options [Boolean] :validate_params (true)
176
+ # When `true`, request parameters are validated before
177
+ # sending the request.
176
178
  #
177
- # @option options [Boolean] :verify_checksums (true)
178
- # When `true` MD5 checksums will be computed for messages sent to
179
- # an SQS queue and matched against MD5 checksums returned by Amazon SQS.
180
- # `Aws::Errors::Checksum` errors are raised for cases where checksums do
181
- # not match.
179
+ # @option options [Boolean] :verify_checksums (true)
180
+ # When `true` MD5 checksums will be computed for messages sent to
181
+ # an SQS queue and matched against MD5 checksums returned by Amazon SQS.
182
+ # `Aws::Errors::Checksum` errors are raised for cases where checksums do
183
+ # not match.
182
184
  #
183
185
  def initialize(*args)
184
186
  super
@@ -2084,7 +2086,7 @@ module Aws::SQS
2084
2086
  params: params,
2085
2087
  config: config)
2086
2088
  context[:gem_name] = 'aws-sdk-sqs'
2087
- context[:gem_version] = '1.8.0'
2089
+ context[:gem_version] = '1.9.0'
2088
2090
  Seahorse::Client::Request.new(handlers, context)
2089
2091
  end
2090
2092
 
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.8.0
4
+ version: 1.9.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: 2018-10-23 00:00:00.000000000 Z
11
+ date: 2018-10-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core