aws-sdk-s3 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 +4 -4
- data/lib/aws-sdk-s3.rb +1 -1
- data/lib/aws-sdk-s3/client.rb +7 -7
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 692c57b78b50b4a9b2013d2e5a80e2cb0ce1a7c0
|
|
4
|
+
data.tar.gz: a80985068fb479ea33e59ae4eaece708e3b0ee40
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e059c09120bf36df457653ea9e7b6fdc0ec27fe186c4c8c07f063543d2b682cc073921bf1d3c837ae2c4fbd14939e618b1f96f4bd83b89d9c8aa30d15de893b3
|
|
7
|
+
data.tar.gz: 5bc6153cdfe5c6142ef6182bb66af8d1d9fdfe48b5377664f9d429b40888ec0e4c5ce494f093476085dda56d44a1c5f5da64fe9062dd3420a47d0b5fe963277d
|
data/lib/aws-sdk-s3.rb
CHANGED
data/lib/aws-sdk-s3/client.rb
CHANGED
|
@@ -2085,9 +2085,9 @@ module Aws::S3
|
|
|
2085
2085
|
#
|
|
2086
2086
|
# @overload get_bucket_policy(params = {})
|
|
2087
2087
|
# @param [Hash] params ({})
|
|
2088
|
-
def get_bucket_policy(params = {}, options = {})
|
|
2088
|
+
def get_bucket_policy(params = {}, options = {}, &block)
|
|
2089
2089
|
req = build_request(:get_bucket_policy, params)
|
|
2090
|
-
req.send_request(options)
|
|
2090
|
+
req.send_request(options, &block)
|
|
2091
2091
|
end
|
|
2092
2092
|
|
|
2093
2093
|
# Returns the replication configuration of a bucket.
|
|
@@ -2592,9 +2592,9 @@ module Aws::S3
|
|
|
2592
2592
|
#
|
|
2593
2593
|
# @overload get_object(params = {})
|
|
2594
2594
|
# @param [Hash] params ({})
|
|
2595
|
-
def get_object(params = {}, options = {})
|
|
2595
|
+
def get_object(params = {}, options = {}, &block)
|
|
2596
2596
|
req = build_request(:get_object, params)
|
|
2597
|
-
req.send_request(options)
|
|
2597
|
+
req.send_request(options, &block)
|
|
2598
2598
|
end
|
|
2599
2599
|
|
|
2600
2600
|
# Returns the access control list (ACL) of an object.
|
|
@@ -2837,9 +2837,9 @@ module Aws::S3
|
|
|
2837
2837
|
#
|
|
2838
2838
|
# @overload get_object_torrent(params = {})
|
|
2839
2839
|
# @param [Hash] params ({})
|
|
2840
|
-
def get_object_torrent(params = {}, options = {})
|
|
2840
|
+
def get_object_torrent(params = {}, options = {}, &block)
|
|
2841
2841
|
req = build_request(:get_object_torrent, params)
|
|
2842
|
-
req.send_request(options)
|
|
2842
|
+
req.send_request(options, &block)
|
|
2843
2843
|
end
|
|
2844
2844
|
|
|
2845
2845
|
# This operation is useful to determine if a bucket exists and you have
|
|
@@ -5868,7 +5868,7 @@ module Aws::S3
|
|
|
5868
5868
|
params: params,
|
|
5869
5869
|
config: config)
|
|
5870
5870
|
context[:gem_name] = 'aws-sdk-s3'
|
|
5871
|
-
context[:gem_version] = '1.
|
|
5871
|
+
context[:gem_version] = '1.1.0'
|
|
5872
5872
|
Seahorse::Client::Request.new(handlers, context)
|
|
5873
5873
|
end
|
|
5874
5874
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-s3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
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-
|
|
11
|
+
date: 2017-09-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-kms
|
|
@@ -132,7 +132,9 @@ files:
|
|
|
132
132
|
homepage: http://github.com/aws/aws-sdk-ruby
|
|
133
133
|
licenses:
|
|
134
134
|
- Apache-2.0
|
|
135
|
-
metadata:
|
|
135
|
+
metadata:
|
|
136
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-s3
|
|
137
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-s3/CHANGELOG.md
|
|
136
138
|
post_install_message:
|
|
137
139
|
rdoc_options: []
|
|
138
140
|
require_paths:
|