-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyaml.schema.json
More file actions
1784 lines (1784 loc) · 68 KB
/
Copy pathyaml.schema.json
File metadata and controls
1784 lines (1784 loc) · 68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"projectId": {
"type": "string",
"description": "The projectId used for telemetry."
},
"environmentFolderPath": {
"type": "string",
"description": "The folder path of .env files used for variables and different envrironments."
},
"version": {
"type": "string",
"description": "The version of the yaml file schema",
"const": "v1.5"
},
"additionalMetadata": {
"type": "object",
"description": "Metadata property, used by Teams Toolkit only.",
"additionalProperties": true,
"properties": {
"sampleTag": {
"type": ["number","string","boolean","object","array", "null", "integer"],
"description": "A tag for the sample app used to track telemetry events sent by Teams Toolkit associated with that sample. Pattern: <sample-repo>:<sample-name>"
}
}
},
"provision": {
"$ref": "#/definitions/lifeCycleArray",
"description": "Called by `teamsfx provision`"
},
"deploy": {
"$ref": "#/definitions/lifeCycleArray",
"description": "Called by `teamsfx deploy`"
},
"publish": {
"$ref": "#/definitions/lifeCycleArray",
"description": "Called by `teamsfx publish`"
}
},
"required": ["version"],
"definitions": {
"lifeCycleArray": {
"type": "array",
"items": {
"anyOf": [
{ "$ref": "#/definitions/aadAppCreate" },
{ "$ref": "#/definitions/aadAppUpdate" },
{ "$ref": "#/definitions/armDeploy" },
{ "$ref": "#/definitions/azureStorageEnableStaticWebsite" },
{ "$ref": "#/definitions/cliRunNpmCommand" },
{ "$ref": "#/definitions/cliRunDotnetCommand" },
{ "$ref": "#/definitions/cliRunNpxCommand" },
{ "$ref": "#/definitions/azureStorageDeploy" },
{ "$ref": "#/definitions/azureAppServiceZipDeploy" },
{ "$ref": "#/definitions/azureFunctionsZipDeploy" },
{ "$ref": "#/definitions/teamsAppCreate" },
{ "$ref": "#/definitions/teamsAppValidateManifest" },
{ "$ref": "#/definitions/teamsAppValidateAppPackage" },
{ "$ref": "#/definitions/teamsAppZipAppPackage" },
{ "$ref": "#/definitions/teamsAppUpdate" },
{ "$ref": "#/definitions/teamsAppPublishAppPackage" },
{ "$ref": "#/definitions/botAadAppCreate" },
{ "$ref": "#/definitions/botframeworkCreate" },
{ "$ref": "#/definitions/fileCreateOrUpdateEnvironmentFile" },
{ "$ref": "#/definitions/fileCreateOrUpdateJsonFile" },
{ "$ref": "#/definitions/devToolInstall" },
{ "$ref": "#/definitions/teamsAppExtendToM365" },
{ "$ref": "#/definitions/spfxDeploy" },
{ "$ref": "#/definitions/teamsAppCopyAppPackageToSPFx" },
{ "$ref": "#/definitions/script" },
{ "$ref": "#/definitions/apiKeyRegister"},
{ "$ref": "#/definitions/azureStaticWebAppGetDeploymentKey"},
{ "$ref": "#/definitions/apiKeyUpdate"},
{ "$ref": "#/definitions/oauthRegister"},
{ "$ref": "#/definitions/oauthUpdate"}
]
}
},
"aadAppCreateBase": {
"type": "object",
"description": "Create Microsoft Entra application and client secret (optional). Refer to https://aka.ms/teamsfx-actions/aadapp-create for more details.",
"required": ["uses", "writeToEnvironmentFile"],
"properties": {
"name": {
"type": "string",
"description": "An optional name of this action."
},
"env": {
"type": "object",
"description": "Define environment variables for this action.",
"additionalProperties": {
"type": "string"
}
},
"uses": {
"type": "string",
"description": "Create Microsoft Entra application when the environment variable that stores clientId is empty. Also create client secret for the application when generateClientSecret parameter is true and the environment variable that stores clientSecret is empty. When creating new Microsoft Entra application, this action generates clientId, objectId, tenantId, authority and authorityHost. When creating new client secret, this action generates clientSecret. Refer to https://aka.ms/teamsfx-actions/aadapp-create for more details.",
"const": "aadApp/create"
}
}
},
"aadAppCreateWithSecret": {
"type": "object",
"additionalProperties": false,
"allOf": [ { "$ref": "#/definitions/aadAppCreateBase" } ],
"required": ["with", "writeToEnvironmentFile"],
"properties": {
"name": {},
"uses": {},
"env": {},
"with": {
"type": "object",
"additionalProperties": false,
"description": "Parameters for this action",
"required": ["name", "generateClientSecret", "signInAudience"],
"properties": {
"name": {
"type": "string",
"description": "The name of Microsoft Entra application. Note: when you run aadApp/update, the Microsoft Entra application name will be updated based on the definition in manifest. If you don't want to change the name, ensure the name in Microsoft Entra application manifest is the same with the name defined here."
},
"generateClientSecret": {
"type": "boolean",
"description": "Whether to generate client secret for the Microsoft Entra application. When the value is true, you need to specify the name of environment variable that stores the value of client secret in writeToEnvironmentVariable. For example: `clientSecret: SECRET_MY_AAD_APP_CLIENT_SECRET`.",
"const": true
},
"signInAudience": {
"type": "string",
"description": "Specifies what Microsoft accounts are supported for the current application.",
"enum": ["AzureADMyOrg", "AzureADMultipleOrgs", "AzureADandPersonalMicrosoftAccount", "PersonalMicrosoftAccount"]
},
"serviceManagementReference": {
"type": "string",
"description": "References application or service contact information from a Service or Asset Management database."
},
"clientSecretExpireDays": {
"type": "integer",
"description": "The number of days the client secret is valid.",
"minimum": 1
},
"clientSecretDescription": {
"type": "string",
"description": "The description of the client secret."
}
}
},
"writeToEnvironmentFile": {
"type": "object",
"additionalProperties": false,
"description": "Write environment variables to environment file",
"required": ["clientId", "objectId", "clientSecret"],
"properties": {
"clientId": {
"description": "Required. The client (application) id of created Microsoft Entra application.",
"$ref": "#/definitions/envVarName"
},
"objectId": {
"description": "Required. The object id of created Microsoft Entra application.",
"$ref": "#/definitions/envVarName"
},
"clientSecret": {
"description": "Required when generateClientSecret is true. The generated client secret of the Microsoft Entra application.",
"$ref": "#/definitions/secretEnvVarName"
},
"tenantId": {
"description": "The tenant id of created Microsoft Entra application.",
"$ref": "#/definitions/envVarName"
},
"authority": {
"description": "The authority of created Microsoft Entra application.",
"$ref": "#/definitions/envVarName"
},
"authorityHost": {
"description": "The authority host name of created Microsoft Entra application.",
"$ref": "#/definitions/envVarName"
}
}
}
}
},
"aadAppCreateWithoutSecret": {
"type": "object",
"allOf": [ { "$ref": "#/definitions/aadAppCreateBase" } ],
"required": ["with", "writeToEnvironmentFile"],
"additionalProperties": false,
"properties": {
"name": {},
"uses": {},
"env": {},
"with": {
"type": "object",
"additionalProperties": false,
"description": "Parameters for this action",
"required": ["name", "generateClientSecret", "signInAudience"],
"properties": {
"name": {
"type": "string",
"description": "The name of Microsoft Entra application. Note: when you run aadApp/update, the Microsoft Entra application name will be updated based on the definition in manifest. If you don't want to change the name, ensure the name in Microsoft Entra application manifest is the same with the name defined here."
},
"generateClientSecret": {
"type": "boolean",
"description": "Whether to generate client secret for the Microsoft Entra application. When the value is true, you need to specify the name of environment variable that stores the value of client secret in writeToEnvironmentVariable. For example: `clientSecret: SECRET_MY_AAD_APP_CLIENT_SECRET`.",
"const": false
},
"signInAudience": {
"type": "string",
"description": "Specifies what Microsoft accounts are supported for the current application.",
"enum": ["AzureADMyOrg", "AzureADMultipleOrgs", "AzureADandPersonalMicrosoftAccount", "PersonalMicrosoftAccount"]
},
"serviceManagementReference": {
"type": "string",
"description": "References application or service contact information from a Service or Asset Management database."
}
}
},
"writeToEnvironmentFile": {
"type": "object",
"additionalProperties": false,
"description": "Write environment variables to environment file",
"required": ["clientId", "objectId"],
"properties": {
"clientId": {
"description": "Required. The client (application) id of created Microsoft Entra application.",
"$ref": "#/definitions/envVarName"
},
"objectId": {
"description": "Required. The object id of created Microsoft Entra application.",
"$ref": "#/definitions/envVarName"
},
"tenantId": {
"description": "The tenant id of created Microsoft Entra application.",
"$ref": "#/definitions/envVarName"
},
"authority": {
"description": "The authority of created Microsoft Entra application.",
"$ref": "#/definitions/envVarName"
},
"authorityHost": {
"description": "The authority host name of created Microsoft Entra application.",
"$ref": "#/definitions/envVarName"
}
}
}
}
},
"aadAppCreate": {
"type": "object",
"oneOf": [
{ "$ref": "#/definitions/aadAppCreateWithoutSecret" },
{ "$ref": "#/definitions/aadAppCreateWithSecret" }
]
},
"aadAppUpdate": {
"type": "object",
"additionalProperties": false,
"description": "Update Microsoft Entra application. Refer to https://aka.ms/teamsfx-actions/aadapp-update for more details.",
"required": ["uses", "with"],
"properties": {
"name": {
"type": "string",
"description": "An optional name of this action."
},
"env": {
"type": "object",
"description": "Define environment variables for this action.",
"additionalProperties": {
"type": "string"
}
},
"uses": {
"type": "string",
"description": "Update Microsoft Entra application based on the given Microsoft Entra application manifest. If the manifest uses AAD_APP_ACCESS_AS_USER_PERMISSION_ID and the environment variable is empty, this action will generate a random id and output it. Refer to https://aka.ms/teamsfx-actions/aadapp-update for more details.",
"const": "aadApp/update"
},
"with": {
"type": "object",
"additionalProperties": false,
"description": "Parameters for this action",
"required": ["manifestPath", "outputFilePath"],
"properties": {
"manifestPath": {
"type": "string",
"description": "Path of Microsoft Entra application manifest. Environment variables in the manifest will be replaced before applying the manifest to Microsoft Entra application."
},
"outputFilePath": {
"type": "string",
"description": "Generate the final Microsoft Entra application manifest used to update Microsoft Entra application to this path."
}
}
}
}
},
"armDeploy": {
"type": "object",
"additionalProperties": false,
"description": "Create Azure resources using the referenced Bicep/JSON files. Refer to https://aka.ms/teamsfx-actions/arm-deploy for more details on the naming convertion rule.",
"required": ["uses", "with"],
"properties": {
"name": {
"type": "string",
"description": "An optional name of this action."
},
"env": {
"type": "object",
"description": "Define environment variables for this action.",
"additionalProperties": {
"type": "string"
}
},
"uses": {
"type": "string",
"description": "Create Azure resources using the referenced Bicep/JSON files. Outputs from Bicep/JSON will be persisted in the current Teams Toolkit environment following certain naming convertion. Refer to https://aka.ms/teamsfx-actions/arm-deploy for more details on the naming convertion rule.",
"const": "arm/deploy"
},
"with": {
"type": "object",
"additionalProperties": false,
"description": "parameters for this action",
"required": ["subscriptionId", "resourceGroupName", "templates"],
"properties": {
"subscriptionId": {
"type": "string",
"description": "The subscription id to deploy to"
},
"resourceGroupName": {
"type": "string",
"description": "The resource group name to deploy to"
},
"bicepCliVersion": {
"type": "string",
"description": "The Bicep CLI version. Bicep CLI will be downloaded to {Home}/.fx/bin/bicep.\n Teams Toolkit defaults to Bicep in PATH if version is not defined."
},
"templates": {
"type": "array",
"description": "The list of templates to deploy",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["deploymentName", "path"],
"properties": {
"deploymentName": {
"type": "string",
"description": "The name of ARM deployment"
},
"path": {
"type": "string",
"description": "Relative path to ARM template. Both Bicep and JSON format are supported."
},
"parameters": {
"type": "string",
"description": "Relative path to ARM parameters file. Teams Toolkit will expand the environment variable in the parameters file"
}
}
}
}
}
}
}
},
"azureStorageEnableStaticWebsite": {
"type": "object",
"additionalProperties": false,
"description": "Enable static website config for Azure Storage. Refer to https://aka.ms/teamsfx-actions/azure-storage-enable-static-website for more details.",
"required": ["uses", "with"],
"properties": {
"name": {
"type": "string",
"description": "An optional name of this action."
},
"env": {
"type": "object",
"description": "Define environment variables for this action.",
"additionalProperties": {
"type": "string"
}
},
"uses": {
"type": "string",
"description": "Enable static website config for Azure Storage. This action has no output. Refer to https://aka.ms/teamsfx-actions/azure-storage-enable-static-website for more details.",
"const": "azureStorage/enableStaticWebsite"
},
"with": {
"type": "object",
"description": "parameters for this action",
"additionalProperties": false,
"required": ["storageResourceId"],
"properties": {
"storageResourceId": {
"type": "string",
"description": "The resource id of the storage account"
},
"indexPage": {
"type": "string",
"description": "The index page of the static website, default to 'index.html'"
},
"errorPage": {
"type": "string",
"description": "The error page of the static website, default to 'index.html'"
}
}
}
}
},
"cliRunNpmCommand": {
"type": "object",
"additionalProperties": false,
"description": "Execute npm command with arguments. Refer to https://aka.ms/teamsfx-actions/cli-run-npm-command for more details.",
"required": ["uses", "with"],
"properties": {
"name": {
"type": "string",
"description": "An optional name of this action."
},
"env": {
"type": "object",
"description": "Define environment variables for this action.",
"additionalProperties": {
"type": "string"
}
},
"uses": {
"type": "string",
"description": "Execute npm command with arguments. Refer to https://aka.ms/teamsfx-actions/cli-run-npm-command for more details.",
"const": "cli/runNpmCommand"
},
"with": {
"type": "object",
"description": "parameters for this action",
"additionalProperties": false,
"required": ["args"],
"properties": {
"args": {
"type": "string",
"description": "The arguments passed to the npm command"
},
"workingDirectory": {
"type": "string",
"description": "The working directory, default to './'"
}
}
}
}
},
"cliRunDotnetCommand": {
"type": "object",
"additionalProperties": false,
"description": "Execute dotnet command with arguments. Refer to https://aka.ms/teamsfx-actions/cli-run-dotnet-command for more details.",
"required": ["uses", "with"],
"properties": {
"name": {
"type": "string",
"description": "An optional name of this action."
},
"env": {
"type": "object",
"description": "Define environment variables for this action.",
"additionalProperties": {
"type": "string"
}
},
"uses": {
"type": "string",
"description": "Execute dotnet command with arguments. Refer to https://aka.ms/teamsfx-actions/cli-run-dotnet-command for more details.",
"const": "cli/runDotnetCommand"
},
"with": {
"type": "object",
"description": "parameters for this action",
"additionalProperties": false,
"required": ["args"],
"properties": {
"args": {
"type": "string",
"description": "The arguments passed to the dotnet command"
},
"workingDirectory": {
"type": "string",
"description": "The working directory, default to './'"
},
"execPath": {
"type": "string",
"description": "The path to the dotnet executable, default to system path."
}
}
}
}
},
"cliRunNpxCommand": {
"type": "object",
"additionalProperties": false,
"description": "Execute npx command with arguments. Refer to https://aka.ms/teamsfx-actions/cli-run-npx-command for more details.",
"required": ["uses", "with"],
"properties": {
"name": {
"type": "string",
"description": "An optional name of this action."
},
"env": {
"type": "object",
"description": "Define environment variables for this action.",
"additionalProperties": {
"type": "string"
}
},
"uses": {
"type": "string",
"description": "Execute npx command with arguments. Refer to https://aka.ms/teamsfx-actions/cli-run-npx-command for more details.",
"const": "cli/runNpxCommand"
},
"with": {
"type": "object",
"description": "parameters for this action",
"additionalProperties": false,
"required": ["args"],
"properties": {
"args": {
"type": "string",
"description": "The arguments passed to the npm command"
},
"workingDirectory": {
"type": "string",
"description": "The working directory, default to './'"
}
}
}
}
},
"azureStorageDeploy": {
"type": "object",
"additionalProperties": false,
"description": "Upload and deploy the project to Azure Storage Service. Refer to https://aka.ms/teamsfx-actions/azure-storage-deploy for more details.",
"required": ["uses", "with"],
"properties": {
"name": {
"type": "string",
"description": "An optional name of this action."
},
"env": {
"type": "object",
"description": "Define environment variables for this action.",
"additionalProperties": {
"type": "string"
}
},
"uses": {
"type": "string",
"description": "This action will upload and deploy the project to Azure Storage Service. This action has no output. Refer to https://aka.ms/teamsfx-actions/azure-storage-deploy for more details.",
"const": "azureStorage/deploy"
},
"with": {
"type": "object",
"additionalProperties": false,
"description": "parameters for this action",
"required": ["artifactFolder", "resourceId"],
"properties": {
"artifactFolder": {
"type": "string",
"description": "Path to the distribution folder that contains the files to deploy."
},
"resourceId": {
"type": "string",
"description": "The resource id of the storage account."
},
"workingDirectory": {
"type": "string",
"description": "The working directory, deploy program will find ignore file and create upload package file based on this directory, default to './'"
},
"ignoreFile": {
"type": "string",
"description": "The path to the ignore file. Any files listed in this file will be ignored during upload. default ignores nothing."
}
}
}
}
},
"azureAppServiceZipDeploy": {
"type": "object",
"additionalProperties": false,
"description": "Upload and deploy the project to Azure App Service. Refer to https://aka.ms/teamsfx-actions/azure-app-service-deploy for more details.",
"required": ["uses", "with"],
"properties": {
"name": {
"type": "string",
"description": "An optional name of this action."
},
"env": {
"type": "object",
"description": "Define environment variables for this action.",
"additionalProperties": {
"type": "string"
}
},
"uses": {
"type": "string",
"description": "This action will upload and deploy the project to Azure App Service. This action has no output. Refer to https://aka.ms/teamsfx-actions/azure-app-service-deploy for more details.",
"const": "azureAppService/zipDeploy"
},
"with": {
"type": "object",
"additionalProperties": false,
"description": "parameters for this action",
"required": ["artifactFolder", "resourceId"],
"properties": {
"artifactFolder": {
"type": "string",
"description": "Path to the distribution folder that contains the files to deploy."
},
"resourceId": {
"type": "string",
"description": "The resource id of the Azure App Service."
},
"workingDirectory": {
"type": "string",
"description": "The working directory, deploy program will find ignore file and create upload package file based on this directory, default to './'"
},
"ignoreFile": {
"type": "string",
"description": "The path to the ignore file. Any files listed in this file will be ignored during upload. default ignores nothing."
},
"dryRun": {
"type": "boolean",
"description": "If true, the action will only package the files to be deployed without actually deploying them. Default to false."
},
"outputZipFile": {
"type": "string",
"description": "The path to the packaged zip file. If not specified, the zip file will be saved to the workingDirectory/.deployment/deployment.zip."
}
}
}
}
},
"azureFunctionsZipDeploy": {
"type": "object",
"additionalProperties": false,
"description": "Upload and deploy the project to Azure Functions. Refer to https://aka.ms/teamsfx-actions/azure-functions-deploy for more details.",
"required": ["uses", "with"],
"properties": {
"name": {
"type": "string",
"description": "An optional name of this action."
},
"env": {
"type": "object",
"description": "Define environment variables for this action.",
"additionalProperties": {
"type": "string"
}
},
"uses": {
"type": "string",
"description": "This action will upload and deploy the project to Azure Functions. This action has no output. Refer to https://aka.ms/teamsfx-actions/azure-functions-deploy for more details.",
"const": "azureFunctions/zipDeploy"
},
"with": {
"type": "object",
"additionalProperties": false,
"description": "parameters for this action",
"required": ["artifactFolder", "resourceId"],
"properties": {
"artifactFolder": {
"type": "string",
"description": "Path to the distribution folder that contains the files to deploy."
},
"resourceId": {
"type": "string",
"description": "The resource id of the Azure Functions."
},
"workingDirectory": {
"type": "string",
"description": "The working directory, deploy program will find ignore file based on this directory, default to './'"
},
"ignoreFile": {
"type": "string",
"description": "The path to the ignore file. Any files listed in this file will be ignored during upload. default ignores nothing."
},
"dryRun": {
"type": "boolean",
"description": "If true, the action will only package the files to be deployed without actually deploying them. Default to false."
},
"outputZipFile": {
"type": "string",
"description": "The path to the packaged zip file. If not specified, the zip file will be saved to the workingDirectory/.deployment/deployment.zip."
}
}
}
}
},
"teamsAppCreate": {
"type": "object",
"additionalProperties": false,
"description": "Create a Teams app in Teams Developer Portal. Refer to https://aka.ms/teamsfx-actions/teamsapp-create for more details.",
"required": ["uses", "with", "writeToEnvironmentFile"],
"properties": {
"name": {
"type": "string",
"description": "An optional name of this action."
},
"env": {
"type": "object",
"description": "Define environment variables for this action.",
"additionalProperties": {
"type": "string"
}
},
"uses": {
"type": "string",
"description": "This action will create a new Teams app for you if TEAMS_APP_ID environment variable is empty or the app with TEAMS_APP_ID is not found from Teams Developer Portal. Refer to https://aka.ms/teamsfx-actions/teamsapp-create for more details",
"const": "teamsApp/create"
},
"with": {
"type": "object",
"additionalProperties": false,
"description": "Parameters for this action",
"required": ["name"],
"properties": {
"name": {
"type": "string",
"description": "Name of the Teams app"
}
}
},
"writeToEnvironmentFile": {
"type": "object",
"additionalProperties": false,
"description": "Write environment variables to environment file",
"required": ["teamsAppId"],
"properties": {
"teamsAppId": {
"$ref": "#/definitions/envVarName"
}
}
}
}
},
"teamsAppValidateManifest": {
"type": "object",
"additionalProperties": false,
"description": "Validate Teams app manifest. Refer to https://aka.ms/teamsfx-actions/teamsapp-validate for more details.",
"required": ["uses", "with"],
"properties": {
"name": {
"type": "string",
"description": "An optional name of this action."
},
"env": {
"type": "object",
"description": "Define environment variables for this action.",
"additionalProperties": {
"type": "string"
}
},
"uses": {
"type": "string",
"description": "This action will validate Teams app manifest with manifest schema. Refer to https://aka.ms/teamsfx-actions/teamsapp-validate for more details.",
"const": "teamsApp/validateManifest"
},
"with": {
"type": "object",
"additionalProperties": false,
"description": "Parameters for this action",
"required": ["manifestPath"],
"properties": {
"manifestPath": {
"type": "string",
"description": "Path to Teams app manifest file."
}
}
}
}
},
"teamsAppValidateAppPackage": {
"type": "object",
"additionalProperties": false,
"description": "Validate Teams app manifest. Refer to https://aka.ms/teamsfx-actions/teamsapp-validate for more details.",
"required": ["uses", "with"],
"properties": {
"name": {
"type": "string",
"description": "An optional name of this action."
},
"env": {
"type": "object",
"description": "Define environment variables for this action.",
"additionalProperties": {
"type": "string"
}
},
"uses": {
"type": "string",
"description": "This action will validate Teams app package file using validation rules. Refer to https://aka.ms/teamsfx-actions/teamsapp-validate for more details.",
"const": "teamsApp/validateAppPackage"
},
"with": {
"type": "object",
"additionalProperties": false,
"description": "Parameters for this action",
"required": ["appPackagePath"],
"properties": {
"appPackagePath": {
"type": "string",
"description": "Path to zipped Teams app package file."
}
}
}
}
},
"teamsAppZipAppPackage": {
"type": "object",
"additionalProperties": false,
"description": "Zip app package with manifest file and icons. Refer to https://aka.ms/teamsfx-actions/teamsapp-zipAppPackage for more details.",
"required": ["uses", "with"],
"properties": {
"name": {
"type": "string",
"description": "An optional name of this action."
},
"env": {
"type": "object",
"description": "Define environment variables for this action.",
"additionalProperties": {
"type": "string"
}
},
"uses": {
"type": "string",
"description": "This action will render Teams app manifest template with environment variables, and zip manifest file with two icons. Refer to https://aka.ms/teamsfx-actions/teamsapp-zipAppPackage for more details.",
"const": "teamsApp/zipAppPackage"
},
"with": {
"type": "object",
"additionalProperties": false,
"description": "parameters for this action",
"required": ["manifestPath", "outputZipPath", "outputJsonPath"],
"properties": {
"manifestPath": {
"type": "string",
"description": "Path to Teams app manifest file"
},
"outputZipPath": {
"type": "string",
"description": "Path to the output zip package"
},
"outputJsonPath": {
"type": "string",
"description": "Path to the output manifest file"
}
}
}
}
},
"teamsAppUpdate": {
"type": "object",
"additionalProperties": false,
"description": "Update Teams app in Teams Developer Portal. Refer to https://aka.ms/teamsfx-actions/teamsapp-update for more details.",
"required": ["uses", "with"],
"properties": {
"name": {
"type": "string",
"description": "An optional name of this action."
},
"env": {
"type": "object",
"description": "Define environment variables for this action.",
"additionalProperties": {
"type": "string"
}
},
"uses": {
"type": "string",
"description": "Apply the Teams app manifest to an existing Teams app in Teams Developer Portal. Will use the app id in manifest.json file to determine which Teams app to update. Refer to https://aka.ms/teamsfx-actions/teamsapp-update for more details.",
"const": "teamsApp/update"
},
"with": {
"type": "object",
"additionalProperties": false,
"description": "parameters for this action",
"required": ["appPackagePath"],
"properties": {
"appPackagePath": {
"type": "string",
"description": "Path to Teams app package"
}
}
}
}
},
"teamsAppPublishAppPackage": {
"type": "object",
"additionalProperties": false,
"description": "Publish Teams app package to Teams Admin center. Refer to https://aka.ms/teamsfx-actions/teamsapp-publish for more details.",
"required": ["uses", "with", "writeToEnvironmentFile"],
"properties": {
"name": {
"type": "string",
"description": "An optional name of this action."
},
"env": {
"type": "object",
"description": "Define environment variables for this action.",
"additionalProperties": {
"type": "string"
}
},
"uses": {
"type": "string",
"description": "Publish Teams app package to Teams Admin center. Refer to https://aka.ms/teamsfx-actions/teamsapp-publish for more details.",
"const": "teamsApp/publishAppPackage"
},
"with": {
"type": "object",
"additionalProperties": false,
"description": "parameters for this action",
"required": ["appPackagePath"],
"properties": {
"appPackagePath": {
"type": "string",
"description": "Path to Teams app package to be published."
}
}
},
"writeToEnvironmentFile": {
"type": "object",
"additionalProperties": false,
"description": "Write environment variables to environment file",
"required": ["publishedAppId"],
"properties": {
"publishedAppId": {
"$ref": "#/definitions/envVarName"
}
}
}
}
},
"botAadAppCreate": {
"type": "object",
"additionalProperties": false,
"description": "Create a new or reuse an existing Microsoft Entra application for bot. Refer to https://aka.ms/teamsfx-actions/botaadapp-create for more details.",
"required": ["uses", "with", "writeToEnvironmentFile"],
"properties": {
"name": {
"type": "string",
"description": "An optional name of this action."
},
"env": {
"type": "object",
"description": "Define environment variables for this action.",
"additionalProperties": {
"type": "string"
}
},
"uses": {
"type": "string",
"description": "Create a new or reuse an existing Microsoft Entra application for bot. Refer to https://aka.ms/teamsfx-actions/botaadapp-create for more details.",
"const": "botAadApp/create"
},
"with": {
"type": "object",
"additionalProperties": false,
"description": "Parameters for this action",
"required": ["name"],
"properties": {
"name": {
"type": "string",
"description": "The user-facing display name for this Microsoft Entra application"
}
}
},
"writeToEnvironmentFile": {
"type": "object",
"additionalProperties": false,
"description": "Write environment variables to environment file",
"required": ["botId", "botPassword"],
"properties": {
"botId": {
"description": "Required. Client (application) id of the Microsoft Entra application created for bot.",
"$ref": "#/definitions/envVarName"
},
"botPassword": {
"description": "Required. Client secret of the Microsoft Entra application created for bot.",
"$ref": "#/definitions/secretEnvVarName"
}
}
}
}
},
"botframeworkCreate": {
"type": "object",
"additionalProperties": false,
"description": "Create or update the bot registration on dev.botframework.com. Refer to https://aka.ms/teamsfx-actions/botframework-create for more details.",
"required": ["uses", "with"],
"properties": {
"name": {
"type": "string",
"description": "An optional name of this action."
},
"env": {
"type": "object",
"description": "Define environment variables for this action.",