Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions OWS3Client/OWS3Client.h
Original file line number Diff line number Diff line change
Expand Up @@ -122,4 +122,11 @@
cacheControl:(NSString*)cacheControl
success:(void (^)(S3PutObjectResponse *responseObject))success
failure:(void (^)(NSError *error))failure;

/* Hack:: Exposed raw PUT request operation, so that custom meta data can be provided with the request (not supported by other methods) */
- (void) putS3ObjectRequest:(S3PutObjectRequest*)request
acl:(NSString*)acl
cacheControl:(NSString *)cacheControl
success:(void (^)(S3PutObjectResponse *responseObject))success
failure:(void (^)(NSError *error))failure;
@end