aws-sdk-core 3.24.1 → 3.25.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
  SHA1:
3
- metadata.gz: d0112d79aadef38a18af5bcb4cc6c8a9b54e6949
4
- data.tar.gz: 656cb8c8d7f94daa25c73221797974ff84d362ef
3
+ metadata.gz: 3d0671aecf4a245416ee6a50f25055e3663d54bd
4
+ data.tar.gz: 8578109735a75ff1486bc035c4823529c932e654
5
5
  SHA512:
6
- metadata.gz: 64a13dce6eba0af409c03ca46a3a93a6ada6c7fd77c26edeca3e156c4df42eca77c6a3e2419d701ff15d89da9295e1b8efe26acd4a6666608eac579439ddc67f
7
- data.tar.gz: 9278a0fe61154a55d234768dfaa0519480b492dc342d3bcc676b41cdaa1fafbab57c5ff832e43ddb2fd60958e82a4b0db24076272ebe0b70c3ef264918797f3a
6
+ metadata.gz: fbc1d15f69cd390db5cca41962413207e56f059600f3a6d2fbc991c14d3f5e0f709b8262ff58b05d47d0ea958447c1d3a2c61e24ea5082b16b41b36786f66ec4
7
+ data.tar.gz: 5bb0dbef3f485bc4c0664d5021a56d068bf76693192faa65654a7c2aa5bec95b3542c2684e6a379d6664873513a6ce96b570ca5638af361a0c7645ff3cd85cc3
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.24.1
1
+ 3.25.0
@@ -184,12 +184,18 @@ module Aws
184
184
 
185
185
  # Allows you to access all of the requests that the stubbed client has made
186
186
  #
187
+ # @params [Boolean] exclude_presign Setting to true for filtering out not sent requests from
188
+ # generating presigned urls. Default to false.
187
189
  # @return [Array] Returns an array of the api requests made, each request object contains the
188
190
  # :operation_name, :params, and :context of the request.
189
191
  # @raise [NotImplementedError] Raises `NotImplementedError` when the client is not stubbed
190
- def api_requests
192
+ def api_requests(options = {})
191
193
  if config.stub_responses
192
- @api_requests
194
+ if options[:exclude_presign]
195
+ @api_requests.reject {|req| req[:context][:presigned_url] }
196
+ else
197
+ @api_requests
198
+ end
193
199
  else
194
200
  msg = 'This method is only implemented for stubbed clients, and is '
195
201
  msg << 'available when you enable stubbing in the constructor with `stub_responses: true`'
@@ -11,7 +11,7 @@ module Aws
11
11
  #
12
12
  # @api private
13
13
  # begin
14
- SENSITIVE = [:access_token, :account_name, :account_password, :admin_contact, :artifact_credentials, :auth_code, :authentication_token, :base_32_string_seed, :body, :bot_configuration, :client_id, :client_secret, :configuration, :copy_source_sse_customer_key, :credentials, :db_password, :description, :email, :email_address, :email_message, :feedback_token, :id, :id_token, :input, :input_text, :key_id, :kms_key_id, :kms_master_key_id, :local_console_password, :master_account_email, :message, :name, :new_password, :notes, :old_password, :owner_information, :parameters, :passphrase, :password, :payload, :plaintext, :previous_password, :private_key, :proposed_password, :public_key, :qr_code_png, :query, :refresh_token, :registrant_contact, :request_attributes, :search_query, :secret_access_key, :secret_binary, :secret_code, :secret_hash, :secret_string, :service_password, :session_attributes, :shared_secret, :slots, :sse_customer_key, :ssekms_key_id, :status_message, :task_parameters, :tech_contact, :temporary_password, :text, :trust_password, :upload_credentials, :upload_url, :username, :value, :values, :variables, :zip_file]
14
+ SENSITIVE = [:access_token, :account_name, :account_password, :admin_contact, :artifact_credentials, :auth_code, :authentication_token, :base_32_string_seed, :body, :bot_configuration, :client_id, :client_secret, :configuration, :copy_source_sse_customer_key, :credentials, :custom_attributes, :db_password, :description, :email, :email_address, :email_message, :feedback_token, :id, :id_token, :input, :input_text, :key_id, :kms_key_id, :kms_master_key_id, :local_console_password, :master_account_email, :message, :name, :new_password, :notes, :old_password, :owner_information, :parameters, :passphrase, :password, :payload, :plaintext, :previous_password, :private_key, :proposed_password, :public_key, :qr_code_png, :query, :refresh_token, :registrant_contact, :request_attributes, :search_query, :secret_access_key, :secret_binary, :secret_code, :secret_hash, :secret_string, :service_password, :session_attributes, :shared_secret, :slots, :sse_customer_key, :ssekms_key_id, :status_message, :task_parameters, :tech_contact, :temporary_password, :text, :trust_password, :upload_credentials, :upload_url, :username, :value, :values, :variables, :zip_file]
15
15
  # end
16
16
 
17
17
  def initialize(options = {})
@@ -40,6 +40,6 @@ require_relative 'aws-sdk-sts/customizations'
40
40
  # @service
41
41
  module Aws::STS
42
42
 
43
- GEM_VERSION = '3.24.1'
43
+ GEM_VERSION = '3.25.0'
44
44
 
45
45
  end
@@ -1486,7 +1486,7 @@ module Aws::STS
1486
1486
  params: params,
1487
1487
  config: config)
1488
1488
  context[:gem_name] = 'aws-sdk-core'
1489
- context[:gem_version] = '3.24.1'
1489
+ context[:gem_version] = '3.25.0'
1490
1490
  Seahorse::Client::Request.new(handlers, context)
1491
1491
  end
1492
1492
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.24.1
4
+ version: 3.25.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-08-13 00:00:00.000000000 Z
11
+ date: 2018-08-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath