Re: AWS SDK

2017-10-28 Thread aberba via Digitalmars-d
, but It depends on the required time investment. I need some time to look at the docs etc... Regards, Igor Hi Igor, I started a little tool (POC) that can parse the API spec and creates types and the API interface only for now: https://github.com/Extrawurst/aws-sdk-dlang-gen Its a start

Re: AWS SDK

2017-10-20 Thread ikod via Digitalmars-d
started a little tool (POC) that can parse the API spec and creates types and the API interface only for now: https://github.com/Extrawurst/aws-sdk-dlang-gen Its a start, not tested and does not come with any dependency to vibe or what. AWS specific request signing also needs to be done on

Re: AWS SDK

2017-10-18 Thread Stephan Dilly via Digitalmars-d
types and the API interface only for now: https://github.com/Extrawurst/aws-sdk-dlang-gen Its a start, not tested and does not come with any dependency to vibe or what. AWS specific request signing also needs to be done on top of it. but using that tool the types can be automatically

Re: AWS SDK

2017-10-18 Thread ikod via Digitalmars-d
On Wednesday, 18 October 2017 at 20:51:48 UTC, Stephan Dilly wrote: On 2017-10-18 20:19:20 +, ikod said: Hello, On Wednesday, 18 October 2017 at 20:05:28 UTC, Andre Pany wrote: [...] Is there any docs from Amazon on this, beside json's itself? I will be very grateful for link. Are

Re: AWS SDK

2017-10-18 Thread Stephan Dilly via Digitalmars-d
On 2017-10-18 20:19:20 +, ikod said: Hello, On Wednesday, 18 October 2017 at 20:05:28 UTC, Andre Pany wrote: On Wednesday, 18 October 2017 at 19:28:30 UTC, aberba wrote: The implementation is straight forward. For every api definition (e.g. https://github.com/aws/aws-sdk-js/blob/master

Re: AWS SDK

2017-10-18 Thread Andre Pany via Digitalmars-d
On Wednesday, 18 October 2017 at 20:19:20 UTC, ikod wrote: Hello, On Wednesday, 18 October 2017 at 20:05:28 UTC, Andre Pany wrote: On Wednesday, 18 October 2017 at 19:28:30 UTC, aberba wrote: The implementation is straight forward. For every api definition (e.g. https://github.com/aws/aws

Re: AWS SDK

2017-10-18 Thread ikod via Digitalmars-d
Hello, On Wednesday, 18 October 2017 at 20:05:28 UTC, Andre Pany wrote: On Wednesday, 18 October 2017 at 19:28:30 UTC, aberba wrote: The implementation is straight forward. For every api definition (e.g. https://github.com/aws/aws-sdk-js/blob/master/apis/iam-2010-05-08.normal.json) create a

Re: AWS SDK

2017-10-18 Thread Andre Pany via Digitalmars-d
On Wednesday, 18 October 2017 at 19:28:30 UTC, aberba wrote: What's up with proprietary stuff in this? At least give us the setup for us to generate the apis on our own if you have your private stuff in there. I have been waiting for a D AWS SDK for "years"... At least any

Re: AWS SDK

2017-10-18 Thread aberba via Digitalmars-d
n tempted to do this a couple times, but the time investment would likely be more than I'm willing to spend. I've started talking with a few of the aws sdk engineers (some of who I worked with when I was there) today about their sdk and the tooling involved. It might not be a ho

Re: AWS SDK

2017-10-18 Thread Andre Pany via Digitalmars-d
would likely be more than I'm willing to spend. I've started talking with a few of the aws sdk engineers (some of who I worked with when I was there) today about their sdk and the tooling involved. It might not be a horrible job to add another language to the mix. I'm going to m

Re: AWS SDK

2017-10-17 Thread Brad Roberts via Digitalmars-d
e more than I'm willing to spend. I've started talking with a few of the aws sdk engineers (some of who I worked with when I was there) today about their sdk and the tooling involved.  It might not be a horrible job to add another language to the mix.  I'm going to meet with th

Re: AWS SDK

2017-10-17 Thread Ky-Anh Huynh via Digitalmars-d
ted talking with a few of the aws sdk engineers (some of who I worked with when I was there) today about their sdk and the tooling involved. It might not be a horrible job to add another language to the mix. I'm going to meet with them and dig through some of the tooling to get a better f

Re: AWS SDK

2016-06-27 Thread Brad Roberts via Digitalmars-d
services. Trying to manage them all by hand is a loosing battle. I've been tempted to do this a couple times, but the time investment would likely be more than I'm willing to spend. I've started talking with a few of the aws sdk engineers (some of who I worked with when I was t

Re: AWS SDK

2016-06-27 Thread jadbox via Digitalmars-d
On Monday, 27 June 2016 at 17:53:32 UTC, Brad Roberts wrote: https://github.com/braddr/downloads.dlang.org/tree/master/src It has sig v2 signing and some s3 object related code. Super minimal and sig v2 is out of date (though still very usable, in most aws regions). Ideally, someone would p

Re: AWS SDK

2016-06-27 Thread Brad Roberts via Digitalmars-d
On 6/26/2016 4:06 PM, Jadbox via Digitalmars-d wrote: Is there an AWS library in the works for D? It's seriously the main blocker for me to push adoption of the language internally. If not, I can try to invest time into making one, but I could use help. (fyi, there's one in the works for Rust:

Re: AWS SDK

2016-06-27 Thread Ola Fosheim Grøstad via Digitalmars-d
works for Rust: https://github.com/rusoto/rusoto) The C++ SDK appears to use a Java generator, maybe you can make it work for D since it is quite close to C++ (but probably a lot of work): https://github.com/aws/aws-sdk-cpp/tree/master/code-generation https://aws.amazon.com/blogs/aws/intro

Re: AWS SDK

2016-06-27 Thread yawniek via Digitalmars-d
On Sunday, 26 June 2016 at 23:06:02 UTC, Jadbox wrote: Is there an AWS library in the works for D? It's seriously the main blocker for me to push adoption of the language internally. If not, I can try to invest time into making one, but I could use help. (fyi, there's one in the works for Ru

Re: AWS SDK

2016-06-26 Thread bachmeier via Digitalmars-d
On Sunday, 26 June 2016 at 23:06:02 UTC, Jadbox wrote: Is there an AWS library in the works for D? It's seriously the main blocker for me to push adoption of the language internally. If not, I can try to invest time into making one, but I could use help. (fyi, there's one in the works for Ru

AWS SDK

2016-06-26 Thread Jadbox via Digitalmars-d
Is there an AWS library in the works for D? It's seriously the main blocker for me to push adoption of the language internally. If not, I can try to invest time into making one, but I could use help. (fyi, there's one in the works for Rust: https://github.com/rusoto/rusoto)