interop

timo 2017-04-11T13:09:29.082624Z

hi

timo 2017-04-11T13:11:18.108392Z

Azure azure = Azure.configure() .withLogLevel(LogLevel.BASIC) .authenticate(credFile) .withDefaultSubscription();

timo 2017-04-11T13:12:30.125430Z

I could need some help here

timo 2017-04-11T13:13:21.137775Z

I want to authenticate to MS Azure and the class Azure is final and you would login like in the code above with Java. But how would you write it in clojure?

lincpa 2017-04-11T13:20:21.240561Z

i never use Azure, try write.

lincpa 2017-04-11T13:21:39.260545Z

(-> Azure .configure (.withLogLevel , LogLevel/BASIC) (.authenticate , credFile) .withDefaultSubscription)

timo 2017-04-11T13:28:11.361845Z

thanks