aws-sdk-s3 1.0.0.rc10 → 1.0.0.rc11
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 +6 -1
- data/lib/aws-sdk-s3/client_api.rb +1 -0
- data/lib/aws-sdk-s3/object.rb +4 -0
- data/lib/aws-sdk-s3/object_summary.rb +4 -0
- data/lib/aws-sdk-s3/types.rb +8 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 820233d450cc2711be86e722328c461fefbac36b
|
|
4
|
+
data.tar.gz: 6f7b180b07bb352947592f994cffa95e518ab404
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5d29d6a15f68e05c2b5413d20b58fb292561e764e3683ac7b5ae07298cf903c1f66ae995a880722a201c97fb922e1853e475c8127167cffa350304b0570c63fa
|
|
7
|
+
data.tar.gz: 35574cde20abdf21ee430f853a03ba96474d2bae6aca94c638ab0c7f5e52fb5c3c48d62622d441e15f354f67b5b3f63fe381a696f19b1201c2e98f16efa0e82b
|
data/lib/aws-sdk-s3.rb
CHANGED
data/lib/aws-sdk-s3/client.rb
CHANGED
|
@@ -763,6 +763,10 @@ module Aws::S3
|
|
|
763
763
|
# buckets can be found at
|
|
764
764
|
# http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
|
765
765
|
#
|
|
766
|
+
# @option params [String] :tagging
|
|
767
|
+
# The tag-set for the object. The tag-set must be encoded as URL Query
|
|
768
|
+
# parameters
|
|
769
|
+
#
|
|
766
770
|
# @return [Types::CreateMultipartUploadOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
767
771
|
#
|
|
768
772
|
# * {Types::CreateMultipartUploadOutput#abort_date #abort_date} => Time
|
|
@@ -820,6 +824,7 @@ module Aws::S3
|
|
|
820
824
|
# sse_customer_key_md5: "SSECustomerKeyMD5",
|
|
821
825
|
# ssekms_key_id: "SSEKMSKeyId",
|
|
822
826
|
# request_payer: "requester", # accepts requester
|
|
827
|
+
# tagging: "TaggingHeader",
|
|
823
828
|
# })
|
|
824
829
|
#
|
|
825
830
|
# @example Response structure
|
|
@@ -5863,7 +5868,7 @@ module Aws::S3
|
|
|
5863
5868
|
params: params,
|
|
5864
5869
|
config: config)
|
|
5865
5870
|
context[:gem_name] = 'aws-sdk-s3'
|
|
5866
|
-
context[:gem_version] = '1.0.0.
|
|
5871
|
+
context[:gem_version] = '1.0.0.rc11'
|
|
5867
5872
|
Seahorse::Client::Request.new(handlers, context)
|
|
5868
5873
|
end
|
|
5869
5874
|
|
|
@@ -640,6 +640,7 @@ module Aws::S3
|
|
|
640
640
|
CreateMultipartUploadRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
|
641
641
|
CreateMultipartUploadRequest.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
|
|
642
642
|
CreateMultipartUploadRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
|
643
|
+
CreateMultipartUploadRequest.add_member(:tagging, Shapes::ShapeRef.new(shape: TaggingHeader, location: "header", location_name: "x-amz-tagging"))
|
|
643
644
|
CreateMultipartUploadRequest.struct_class = Types::CreateMultipartUploadRequest
|
|
644
645
|
|
|
645
646
|
Delete.add_member(:objects, Shapes::ShapeRef.new(shape: ObjectIdentifierList, required: true, location_name: "Object"))
|
data/lib/aws-sdk-s3/object.rb
CHANGED
|
@@ -588,6 +588,7 @@ module Aws::S3
|
|
|
588
588
|
# sse_customer_key_md5: "SSECustomerKeyMD5",
|
|
589
589
|
# ssekms_key_id: "SSEKMSKeyId",
|
|
590
590
|
# request_payer: "requester", # accepts requester
|
|
591
|
+
# tagging: "TaggingHeader",
|
|
591
592
|
# })
|
|
592
593
|
# @param [Hash] options ({})
|
|
593
594
|
# @option options [String] :acl
|
|
@@ -651,6 +652,9 @@ module Aws::S3
|
|
|
651
652
|
# requests. Documentation on downloading objects from requester pays
|
|
652
653
|
# buckets can be found at
|
|
653
654
|
# http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
|
655
|
+
# @option options [String] :tagging
|
|
656
|
+
# The tag-set for the object. The tag-set must be encoded as URL Query
|
|
657
|
+
# parameters
|
|
654
658
|
# @return [MultipartUpload]
|
|
655
659
|
def initiate_multipart_upload(options = {})
|
|
656
660
|
options = options.merge(
|
|
@@ -431,6 +431,7 @@ module Aws::S3
|
|
|
431
431
|
# sse_customer_key_md5: "SSECustomerKeyMD5",
|
|
432
432
|
# ssekms_key_id: "SSEKMSKeyId",
|
|
433
433
|
# request_payer: "requester", # accepts requester
|
|
434
|
+
# tagging: "TaggingHeader",
|
|
434
435
|
# })
|
|
435
436
|
# @param [Hash] options ({})
|
|
436
437
|
# @option options [String] :acl
|
|
@@ -494,6 +495,9 @@ module Aws::S3
|
|
|
494
495
|
# requests. Documentation on downloading objects from requester pays
|
|
495
496
|
# buckets can be found at
|
|
496
497
|
# http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
|
498
|
+
# @option options [String] :tagging
|
|
499
|
+
# The tag-set for the object. The tag-set must be encoded as URL Query
|
|
500
|
+
# parameters
|
|
497
501
|
# @return [MultipartUpload]
|
|
498
502
|
def initiate_multipart_upload(options = {})
|
|
499
503
|
options = options.merge(
|
data/lib/aws-sdk-s3/types.rb
CHANGED
|
@@ -1267,6 +1267,7 @@ module Aws::S3
|
|
|
1267
1267
|
# sse_customer_key_md5: "SSECustomerKeyMD5",
|
|
1268
1268
|
# ssekms_key_id: "SSEKMSKeyId",
|
|
1269
1269
|
# request_payer: "requester", # accepts requester
|
|
1270
|
+
# tagging: "TaggingHeader",
|
|
1270
1271
|
# }
|
|
1271
1272
|
#
|
|
1272
1273
|
# @!attribute [rw] acl
|
|
@@ -1377,6 +1378,11 @@ module Aws::S3
|
|
|
1377
1378
|
# http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
|
1378
1379
|
# @return [String]
|
|
1379
1380
|
#
|
|
1381
|
+
# @!attribute [rw] tagging
|
|
1382
|
+
# The tag-set for the object. The tag-set must be encoded as URL Query
|
|
1383
|
+
# parameters
|
|
1384
|
+
# @return [String]
|
|
1385
|
+
#
|
|
1380
1386
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/CreateMultipartUploadRequest AWS API Documentation
|
|
1381
1387
|
#
|
|
1382
1388
|
class CreateMultipartUploadRequest < Struct.new(
|
|
@@ -1401,7 +1407,8 @@ module Aws::S3
|
|
|
1401
1407
|
:sse_customer_key,
|
|
1402
1408
|
:sse_customer_key_md5,
|
|
1403
1409
|
:ssekms_key_id,
|
|
1404
|
-
:request_payer
|
|
1410
|
+
:request_payer,
|
|
1411
|
+
:tagging)
|
|
1405
1412
|
include Aws::Structure
|
|
1406
1413
|
end
|
|
1407
1414
|
|
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.0.0.
|
|
4
|
+
version: 1.0.0.rc11
|
|
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-06
|
|
11
|
+
date: 2017-07-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-kms
|
|
@@ -44,14 +44,14 @@ dependencies:
|
|
|
44
44
|
requirements:
|
|
45
45
|
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: 3.0.0.
|
|
47
|
+
version: 3.0.0.rc15
|
|
48
48
|
type: :runtime
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: 3.0.0.
|
|
54
|
+
version: 3.0.0.rc15
|
|
55
55
|
description: Official AWS Ruby gem for Amazon Simple Storage Service (Amazon S3).
|
|
56
56
|
This gem is part of the AWS SDK for Ruby.
|
|
57
57
|
email:
|