what's the difference between a class.get() functi...
# azure
f
what's the difference between a class.get() function and a module.getSomethingOuput() function? Like
azuread.Application.get()
vs
azuread.getApplicationOutput()
f
don't know but output can have Input<string> as input and not just string
b
@few-postman-20852
.get()
is used if you know the ID of the resource you want to reference,
getApplication/Output
allows you to use more filters to drill down to the resource
f
Thanks @billowy-army-68599! This helps already! This will avoid me doing lots of imports!