John Scoles

Results 17 issues of John Scoles

ok here is the fixe for S3 Put Tagging and some tests for get and put

This should be all the Pinpoint tests that hit all the working code I have put in version 41 I used real data where I had it and just filler...

Been playing with Boto V2 over the pass few days. https://github.com/boto/botocore/tree/v2 I was able to get most things working (from my s3taggin baranch) Do you think it is worth the...

I just did what will be the Beta checking for all of the RestXML APIs On my usual branch https://github.com/byterock/aws-sdk-perl/tree/s3ObjectTagging I have confirmed with real world tests that all the...

Once this you merdge this branch into master https://github.com/byterock/aws-sdk-perl/tree/s3ObjectTagging all of the s3 actions (ecept a few depircated ones that no longer work) should be working I also added in...

Looking up the AWS API for rest Post ResoreObject https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectPOSTrestore.html I noticed that there are two responses possable 200 and 202 > If the object copy is not previously restored,...

This is a sore point I think raised else where PutBucketLifecycleConfiguration the API requires a 'content-md5' but it is missing from Boto "ContentMD5":{ "shape":"ContentMD5", "documentation":"Addeed autmatically by Paws", "location":"header", "locationName":"Content-MD5"...

I finally got a fix in for the URI bug where if we had "/{Bucket}?analytics" or alike and added a param the above was clobbered. My first fix was a...

This was a major fix as this is the only call in all of AWS that uses an XML trait ` ` I also fixed another bug-bear the flatten problems...

This call returns only json so made this change to Paws::Net::RestXMLResponse sub response_to_object ``` + $unserialized_struct = {}; + } elsif (exists($headers->{'content-type'}) + and $headers->{'content-type'} eq 'application/json' + and $ret_class->can('_payload')){...