File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed
AzureFunctions.Extensions.GoogleBigQuery.DemoProject1 Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -286,3 +286,4 @@ __pycache__/
286286* .btm.cs
287287* .odx.cs
288288* .xsd.cs
289+ /AzureFunctions.Extensions.GoogleBigQuery.DemoProject1 /credencials.json
Original file line number Diff line number Diff line change 1+ using System ;
2+ using System . ComponentModel . DataAnnotations . Schema ;
3+ using Microsoft . Azure . WebJobs ;
4+
5+ namespace AzureFunctions . Extensions . GoogleBigQuery . DemoProject1 {
6+ public static class Function5 {
7+
8+ [ Disable ]
9+ [ FunctionName ( "Function5" ) ]
10+ public static void Run (
11+ [ TimerTrigger ( "0 */1 * * * *" , RunOnStartup = true ) ] TimerInfo myTimer ,
12+ [ GoogleBigQuery ( "MyGoogleBigQueryConfig4" ) ] GoogleBigQueryOperations bigQueryOperations ) {
13+
14+
15+ bigQueryOperations . CreateTableAsync ( ) ;
16+ bigQueryOperations . DeleteTableAsync ( ) ;
17+
18+
19+ }
20+ }
21+ }
You can’t perform that action at this time.
0 commit comments