google-cloud

Google Cloud Platform: Clojure + {GAE, GCE, anything else on Google Platform}
oly 2021-02-16T12:21:17.002100Z

Trying to run a BQ query in clojure I am strugging with the job create, translating this example I can evaluate up to JobInfo, how ever bigquery.create is failing with No matching method create found taking 1 args for class https://github.com/googleapis/java-bigquery/blob/master/samples/snippets/src/main/java/com/example/bigquery/SimpleApp.java#L53

oly 2021-02-16T12:22:46.003600Z

(.create s
         (-> (query)
             (JobInfo/newBuilder)
             (.setJobId (JobId/of (str (java.util.UUID/randomUUID))))))
So I basically have the above, I can evaluate the threading macro but the response passed to .create is failing, probably something I am not understanding in my java interop anyone able to offer some pointers ?