What's the hex package to use for google cloud?

I know for for AWS, there’s ex_aws for interacting with it. But what’s the equivalent one for google compute?

1 Like

I recently came across this package, which contains the bulk of Google’s APIs. I do believe compute is in there as well.

More specifically here’s the compute section.

3 Likes

Thanks for the tip. However, I have a quick question. How do I create a connection? I see that I can call GoogleApi.Storage.V1.Connection.new, but that’s for anon connections. It seems like there’s a version of new/1, where it takes a bearer token.

Where do you get the bearer token from? I’m guessing from OAuth2? But google_api_o_auth2 isn’t published in hex. elixir-google-api/clients/o_auth2 at main · googleapis/elixir-google-api · GitHub

How do you connect to your own private account?