Azure Functions Flashcards

1
Q

What kind of things can trigger Azure Functions?

A
  • Time
  • Data
  • Webhooks
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is Azure Functions built on top of?

A
  • The Web Applications Web Jobs SDK
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is serverless?

A
  • There are still servers (of course)

- You are delegating management of servers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How can you share code between functions?

A
  • create NuGet package and have functions reference

- create a shared folder in Functions App and use #load to load shared files into functions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How do you script referencing a library?

A
  • # r
  • example: #r “SendGrid”
  • SendGrid is a built in option
  • then use using statements
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do you get Functions to automatically refresh when changing shared code?

A
  • Add a watchDirectors config setting
How well did you know this?
1
Not at all
2
3
4
5
Perfectly