aws

http://status.aws.amazon.com/ https://www.expeditedssl.com/aws-in-plain-english
slipset 2020-02-04T13:58:41.064100Z

For the cognitect-labs/aws-api, the code that actually consumes stuff like https://github.com/aws/aws-sdk-js/blob/master/apis/s3-2006-03-01.normal.json and creates specs and the stuff that's needed to run aws-api, is that proprietary?

kenny 2020-02-05T16:01:13.067400Z

@slipset It's pretty straightforward to do. We have also written an api that is very similar to aws-api for GCP: https://github.com/ComputeSoftware/gcp-api

kenny 2020-02-05T16:03:41.067700Z

gcp-api takes in swagger and transforms it into descriptor files (it only does this to minimize the size of the final artifact). I'm somewhat sure a generic client could be made to take in Swagger and call a service. We're also going to need to build one of these for k8s soon. Once I have a better understanding of where things are common, I may pull the swagger part out into a separate library.

2020-02-04T16:26:04.064300Z

Yes

slipset 2020-02-04T18:49:52.066500Z

The reason I’m asking is that we need to talk to azure, and they have their api specs in swagger, so it’d be fun to use the same approach.