There is an API for Cloud Run: https://cloud.google.com/run/docs/reference/rest
The gcloud SDK is only an interface to connect to the GCP APIs. If you run any command with the flags `--verbosity=debug` and `--log-http`, you'll see each call the SDK is making. You can make the calls manually, but it is non-trivial. Nevertheless, all the actions that can be taken in Cloud Run (including deployment), can be taken through the API. You can try to deploy using the API directly from your browser: https://apis-explorer.appspot.com/apis-explorer/#p/run/v1/run.namespaces.services.create On Sunday, September 6, 2020 at 2:16:26 AM UTC+2, Jaden Banson wrote: > > Is it possible to deploy a container (docker) on cloud run > programmatically in code via an API, or is running bash commands w/ the > gcloud SDK my only option? > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/e4a0718a-ae61-478e-8d5f-a136bbee8052o%40googlegroups.com.
