Finding different types of Azure types with the editor #1653
-
Its more of an understanding, but how does the vS code plugin know what at the types of Azure and the required parameters in order to produce valid Bicep. I have noticed in the VSCode extensions area there are a couple of additional files that are not inside GitHib e.g. Azure.Bicep.Types.Az.dll and Azure.Bicep.Types.dll. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Periodically, we generate this nuget, which is autogenerated based off of the Azure REST API Specs and ultimately powers the DLLs that you found. This is what gives the VS Code extension all of the information about Azure types. As teams add or update new swagger specifications for their resource types, those will be automatically pulled in by this process so that bicep is always current. |
Beta Was this translation helpful? Give feedback.
Periodically, we generate this nuget, which is autogenerated based off of the Azure REST API Specs and ultimately powers the DLLs that you found. This is what gives the VS Code extension all of the information about Azure types. As teams add or update new swagger specifications for their resource types, those will be automatically pulled in by this process so that bicep is always current.