gcp-api is a Clojure library which provides programmatic access to GCP services from your Clojure program.
See aws-api's rationale here.
Much the same as aws-api's approach, this library publishes descriptor files that specify the operations, inputs, and outputs. These descriptor files are created from the Swagger 2.0 files published by apis.guru.
The generated descriptor files are published in a separate repository located here.
Using gcp-api requires you to add compute/gcp-api
and the service(s) of your choosing. In the below example we add the GCP Compute Engine API compute.gcp-api/compute
.
{compute/gcp-api {:git/url "https://github.com/ComputeSoftware/gcp-api.git"
:sha "<most recent sha>"}
compute.gcp-api/compute {:git/url "git@github.com:ComputeSoftware/gcp-api-descriptors.git"
:sha "<most recent sha>"
:deps/root "compute"}}
@(invoke
c
{:op "compute.instances.list"
:request {:project "my-project"
:zone "us-central1-c"}})
- Cognitect's aws-api
Copyright © 2020 Compute Software
Distributed under the Eclipse Public License either version 2.0 or (at your option) any later version.