Skip to content

Commit 4c357ab

Browse files
committed
Update docs
1 parent cfabb43 commit 4c357ab

7 files changed

+84
-147
lines changed

README.md

+11-59
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
## Acknowledgement ##
99

1010
* [Swagger UI](https://github.com/swagger-api/swagger-ui) version used for this library is [v3.44.0](https://github.com/swagger-api/swagger-ui/releases/tag/v3.44.0) under the [Apache 2.0 license](https://opensource.org/licenses/Apache-2.0).
11+
* This extension supports the OpenAPI spec version of [v2.0](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/2.0.md) and [v3.0.1](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.1.md).
1112

1213

1314
## Getting Started ##
@@ -17,74 +18,25 @@
1718
* [**Microsoft.Azure.WebJobs.Extensions.OpenApi**](docs/openapi-in-proc.md)
1819
* [**Microsoft.Azure.WebJobs.Extensions.OpenApi.Core**](docs/openapi-core.md)
1920
* [**Securing Azure Functions Endpoints through OpenAPI Auth**](docs/openapi-auth.md): This document shows many various scenarios to add authN features including the built-in features and OAuth2 auth flows.
20-
* [**Azure Functions v1 Support**](docs/azure-functions-v1-support.md): This document shows how to support Azure Functions v1 runtime with this OpenAPI extension.
21+
* ~~[**Azure Functions v1 Support**](docs/azure-functions-v1-support.md): This document shows how to support Azure Functions v1 runtime with this OpenAPI extension.~~
2122
* [**Integrating OpenAPI-enabled Azure Functions to Azure API Management**](docs/integrate-with-apim.md): This document shows how to integrate the Azure Functions application with [Azure API Management](https://docs.microsoft.com/azure/api-management/api-management-key-concepts?WT.mc_id=dotnet_0000_juyoo), via this OpenAPI extension.
2223
<!-- * [**Integrating OpenAPI-enabled Azure Functions to Power Platform**](docs/integrate-with-powerplatform.md): This document shows how to integrate the Azure Functions application with [Power Platform](https://powerplatform.microsoft.com/?WT.mc_id=dotnet_0000_juyoo), via this OpenAPI extension. -->
24+
* [**Generic CI/CD Pipeline Support](./docs/generic-cicd-pipeline-support.md): This document shows how to generate the OpenAPI document within a CI/CD pipeline, using either PowerShell or bash shell script.
2325

2426

2527
## GitHub Actions Support ##
2628

2729
If you are using GitHub Actions as your preferred CI/CD pipeline, you can run the GitHub Action into your workflow to automatically generate the OpenAPI document. Find more details at the [Build OpenAPI](./actions/build-openapi/) action page.
2830

2931

30-
## Generic CI/CD Pipeline Support ##
32+
## GitHub Codespaces Support ##
3133

32-
Alternatively, you can run either PowerShell script or bash shell script to generate the OpenAPI document within your own CI/CD pipeline other than GitHub Actions. Here are two script files:
34+
If you want to run your Azure Functions app on GitHub Codespaces, you might want to accommodate `local.settings.json`. The following PowerShell script may help you for the accommodation:
3335

34-
* PowerShell: [Get-OpenApiDocument.ps1](./actions/Get-OpenApiDocument.ps1)
35-
36-
```powershell
37-
./actions/Get-OpenApiDocument.ps1 `
38-
-FunctionAppPath <function app directory> `
39-
-BaseUri <function app base URI> `
40-
-Endpoint <endpoint for OpenAPI document> `
41-
-OutputPath <output directory for generated OpenAPI document> `
42-
-OutputFilename <OpenAPI document name> `
43-
-Delay <delay in second between run function app and document generation> `
44-
-UseWindows <switch indicating whether to use Windows OS or not>
45-
```
46-
47-
For more details, run `Get-OpenApiDocument.ps1 -Help`
48-
49-
You can also remotely invoke this PowerShell script:
50-
51-
```powershell
52-
& $([Scriptblock]::Create($(Invoke-RestMethod https://aka.ms/azfunc-openapi/generate-openapi.ps1))) `
53-
-FunctionAppPath <function app directory> `
54-
-BaseUri <function app base URI> `
55-
-Endpoint <endpoint for OpenAPI document> `
56-
-OutputPath <output directory for generated OpenAPI document> `
57-
-OutputFilename <OpenAPI document name> `
58-
-Delay <delay in second between run function app and document generation> `
59-
-UseWindows <switch indicating whether to use Windows OS or not>
60-
```
61-
62-
* Bash shell: [get-openapi-document.sh](./actions/get-openapi-document.sh)
63-
64-
```bash
65-
./actions/get-openapi-document.sh \
66-
-p|--functionapp-path <function app directory> \
67-
-u|--base-uri <function app base URI> \
68-
-e|--endpoint <endpoint for OpenAPI document> \
69-
-o|--output-path <output directory for generated OpenAPI document> \
70-
-f|--output-filename <OpenAPI document name> \
71-
-d|--delay <delay in second between run function app and document generation>
72-
```
73-
74-
For more details, run `get-openapi-document.sh --help`
75-
76-
You can also remotely invoke this bash shell script:
77-
78-
```bash
79-
curl -fsSL https://aka.ms/azfunc-openapi/generate-openapi.sh \
80-
| bash -s -- \
81-
-p|--functionapp-path <function app directory> \
82-
-u|--base-uri <function app base URI> \
83-
-e|--endpoint <endpoint for OpenAPI document> \
84-
-o|--output-path <output directory for generated OpenAPI document> \
85-
-f|--output-filename <OpenAPI document name> \
86-
-d|--delay <delay in second between run function app and document generation>
87-
```
36+
```bash
37+
# Update local.settings.json
38+
pwsh -c "Invoke-RestMethod https://aka.ms/azfunc-openapi/add-codespaces.ps1 | Invoke-Expression"
39+
```
8840

8941

9042
## Sample Azure Function Apps with OpenAPI Document Enabled ##
@@ -95,9 +47,9 @@ Here are sample apps using the project references:
9547
* [Function App in-proc worker](samples/Microsoft.Azure.WebJobs.Extensions.OpenApi.FunctionApp.InProc)
9648

9749

98-
## Azure Functions V1 Support ##
50+
~~## Azure Functions V1 Support ##~~
9951

100-
This library supports Azure Functions V3 and onwards. If you still want to get your v1 and v2 runtime app supported, find the [community contribution](https://github.com/aliencube/AzureFunctions.Extensions) or the [proxy feature](docs/azure-functions-v1-support.md).
52+
~~This library supports Azure Functions V3 and onwards. If you still want to get your v1 and v2 runtime app supported, find the [community contribution](https://github.com/aliencube/AzureFunctions.Extensions) or the [proxy feature](docs/azure-functions-v1-support.md).~~
10153

10254

10355
## Known Issues ##

docs/README.md

-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,3 @@ This extension adds the OpenAPI capability to your Azure Functions app.
1111
| [Microsoft.Azure.WebJobs.Extensions.OpenApi.Configuration.AppSettings](app-settings.md) | [![](https://img.shields.io/nuget/dt/Microsoft.Azure.WebJobs.Extensions.OpenApi.Configuration.AppSettings.svg)](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.OpenApi.Configuration.AppSettings/) | [![](https://img.shields.io/nuget/v/Microsoft.Azure.WebJobs.Extensions.OpenApi.Configuration.AppSettings.svg)](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.OpenApi.Configuration.AppSettings/) |
1212
| [Microsoft.Azure.WebJobs.Extensions.OpenApi.Core](openapi-core.md) | [![](https://img.shields.io/nuget/dt/Microsoft.Azure.WebJobs.Extensions.OpenApi.Core.svg)](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.OpenApi.Core/) | [![](https://img.shields.io/nuget/v/Microsoft.Azure.WebJobs.Extensions.OpenApi.Core.svg)](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.OpenApi.Core/) |
1313
| [Microsoft.Azure.WebJobs.Extensions.OpenApi](openapi-in-proc.md) | [![](https://img.shields.io/nuget/dt/Microsoft.Azure.WebJobs.Extensions.OpenApi.svg)](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.OpenApi/) | [![](https://img.shields.io/nuget/v/Microsoft.Azure.WebJobs.Extensions.OpenApi.svg)](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.OpenApi/) |
14-
| [Microsoft.Azure.WebJobs.Extensions.OpenApi.CLI](openapi-cli.md) | [![](https://img.shields.io/static/v1?label=tag&message=cli-*&color=brightgreen)](https://github.com/Azure/azure-functions-openapi-extension/releases) | [![](https://img.shields.io/static/v1?label=tag&message=cli-*&color=brightgreen)](https://github.com/Azure/azure-functions-openapi-extension/releases) |

docs/enable-open-api-endpoints-in-proc.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[OpenAPI metadata][openapi] supports in Azure Functions is now available with this extension, [Azure Functions OpenAPI Extension (In-Process Worker)][az func openapi extension]. With this extension, you can directly let your API endpoints be discoverable.
44

55
> [!IMPORTANT]
6-
> This extension supports only Azure Functions v2 and onwards. If you want to get your Azure Functions v1 supported, find [this preview document][az func openapi v1 preview] or [community contribution][az func openapi community]. You may also want to see [this out-of-process model][docs out-of-proc].
6+
> This extension supports only up to .NET 6. If you want to use .NET Framework 4.8.x and .NET 7+, find [this out-of-process model][docs out-of-proc].
77
88
[OpenAPI metadata][openapi] allows wide variety of other software and applications to consume an Azure Functions app hosting HTTP APIs. The software and applications include Microsoft products and services like [Power Platform][power platform], [API Management][az apim] and third-party tools like [Postman][postman].
99

@@ -13,9 +13,9 @@
1313
To get yourself started, you need to have the followings installed on your local machine.
1414

1515
> [!IMPORTANT]
16-
> This extension is currently available in .NET Core runtime.
16+
> This extension is currently available in .NET 6 runtime.
1717
18-
* [.NET Core SDK 3.1 LTS][dotnet core sdk]
18+
* [.NET 6 SDK LTS][dotnet sdk]
1919
* [Azure Functions Core Tools][az func core tools]
2020
* [Visual Studio Code][vs code]
2121
* [Visual Studio Extensions for Azure Tools][vs code azure tools]
@@ -223,7 +223,7 @@ You have got an Azure Functions app with OpenAPI metadata enabled. In the next a
223223
[docs apim]: integrate-with-apim.md
224224
[docs powerplatform]: integrate-with-powerplatform.md
225225

226-
[dotnet core sdk]: https://dotnet.microsoft.com/download/dotnet-core/3.1?WT.mc_id=dotnet-0000-juyoo
226+
[dotnet sdk]: https://dotnet.microsoft.com/download/dotnet-core/6.0?WT.mc_id=dotnet-0000-juyoo
227227
228228
[az account free]: https://azure.microsoft.com/free/?WT.mc_id=dotnet-0000-juyoo
229229
[az account free students]: https://azure.microsoft.com/free/students/?WT.mc_id=dotnet-0000-juyoo

docs/enable-open-api-endpoints-out-of-proc.md

+5-7
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[OpenAPI metadata][openapi] supports in Azure Functions is now available with this extension, [Azure Functions OpenAPI Extension (Out-of-Process Worker)][az func openapi extension]. With this extension, you can directly let your API endpoints be discoverable.
44

55
> [!IMPORTANT]
6-
> This extension supports only Azure Functions v3 and onwards. If you want to get your Azure Functions v2 supported, find [this in-process model][docs in-proc]. If you want to get your Azure Functions v1 supported, find [this preview document][az func openapi v1 preview] or [community contribution][az func openapi community].
6+
> This extension supports both .NET Framework 4.8.x and .NET 7+. If you want to use .NET 6, find [this in-process model][docs in-proc].
77
88
[OpenAPI metadata][openapi] allows wide variety of other software and applications to consume an Azure Functions app hosting HTTP APIs. The software and applications include Microsoft products and services like [Power Platform][power platform], [API Management][az apim] and third-party tools like [Postman][postman].
99

@@ -13,10 +13,9 @@
1313
To get yourself started, you need to have the followings installed on your local machine.
1414

1515
> [!IMPORTANT]
16-
> This extension is currently available in .NET Core runtime.
16+
> This extension is currently available in both .NET Framework 4.8.x and .NET 7+ runtime.
1717
18-
* [.NET Core SDK 3.1 LTS][dotnet core sdk]
19-
* [.NET 5 SDK][dotnet 5 sdk]
18+
* [.NET 7 SDK STS][dotnet sdk] or [.NET 4.8 SDK][dotnet 48 sdk]
2019
* [Azure Functions Core Tools][az func core tools]
2120
* [Visual Studio Code][vs code]
2221
* [Visual Studio Extensions for Azure Tools][vs code azure tools]
@@ -105,7 +104,6 @@ namespace MyOpenApiFunctionApp
105104
106105
// Add these lines below
107106
.ConfigureFunctionsWorkerDefaults(worker => worker.UseNewtonsoftJson())
108-
.ConfigureOpenApi()
109107
// Add these lines above
110108
.Build();
111109

@@ -251,8 +249,8 @@ You have got an Azure Functions app with OpenAPI metadata enabled. In the next a
251249
[docs apim]: integrate-with-apim.md
252250
[docs powerplatform]: integrate-with-powerplatform.md
253251

254-
[dotnet core sdk]: https://dotnet.microsoft.com/download/dotnet-core/3.1?WT.mc_id=dotnet-0000-juyoo
255-
[dotnet 5 sdk]: https://dotnet.microsoft.com/download/dotnet/5.0?WT.mc_id=dotnet-0000-juyoo
252+
[dotnet sdk]: https://dotnet.microsoft.com/download/dotnet/7.0?WT.mc_id=dotnet-0000-juyoo
253+
[dotnet 48 sdk]: https://dotnet.microsoft.com/download/dotnet-framework/net48?WT.mc_id=dotnet-0000-juyoo
256254
257255
[az account free]: https://azure.microsoft.com/free/?WT.mc_id=dotnet-0000-juyoo
258256
[az account free students]: https://azure.microsoft.com/free/students/?WT.mc_id=dotnet-0000-juyoo

docs/generic-cicd-pipeline-support.md

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# Generic CI/CD Pipeline Support #
2+
3+
You can run either PowerShell script or bash shell script to generate the OpenAPI document within your own CI/CD pipeline including Azure DevOps or GitHub Actions.
4+
5+
6+
## PowerShell ##
7+
8+
Run the PowerShell script remotely:
9+
10+
```powershell
11+
& $([Scriptblock]::Create($(Invoke-RestMethod https://aka.ms/azfunc-openapi/generate-openapi.ps1))) `
12+
-FunctionAppPath <function app directory> `
13+
-BaseUri <function app base URI> `
14+
-Endpoint <endpoint for OpenAPI document> `
15+
-OutputPath <output directory for generated OpenAPI document> `
16+
-OutputFilename <OpenAPI document name> `
17+
-Delay <delay in second between run function app and document generation> `
18+
-UseWindows <switch indicating whether to use Windows OS or not>
19+
```
20+
21+
Alternatively, you can manually download the PowerShell script and include it to your codebase: [Get-OpenApiDocument.ps1](./actions/Get-OpenApiDocument.ps1)
22+
23+
```powershell
24+
./actions/Get-OpenApiDocument.ps1 `
25+
-FunctionAppPath <function app directory> `
26+
-BaseUri <function app base URI> `
27+
-Endpoint <endpoint for OpenAPI document> `
28+
-OutputPath <output directory for generated OpenAPI document> `
29+
-OutputFilename <OpenAPI document name> `
30+
-Delay <delay in second between run function app and document generation> `
31+
-UseWindows <switch indicating whether to use Windows OS or not>
32+
```
33+
34+
For more details, run `Get-OpenApiDocument.ps1 -Help`
35+
36+
37+
## Bash Shell ##
38+
39+
Run the bash shell script remotely:
40+
41+
```bash
42+
curl -fsSL https://aka.ms/azfunc-openapi/generate-openapi.sh \
43+
| bash -s -- \
44+
-p|--functionapp-path <function app directory> \
45+
-u|--base-uri <function app base URI> \
46+
-e|--endpoint <endpoint for OpenAPI document> \
47+
-o|--output-path <output directory for generated OpenAPI document> \
48+
-f|--output-filename <OpenAPI document name> \
49+
-d|--delay <delay in second between run function app and document generation>
50+
```
51+
52+
Alternatively, you can manually download the PowerShell script and include it to your codebase: [get-openapi-document.sh](./actions/get-openapi-document.sh)
53+
54+
```bash
55+
./actions/get-openapi-document.sh \
56+
-p|--functionapp-path <function app directory> \
57+
-u|--base-uri <function app base URI> \
58+
-e|--endpoint <endpoint for OpenAPI document> \
59+
-o|--output-path <output directory for generated OpenAPI document> \
60+
-f|--output-filename <OpenAPI document name> \
61+
-d|--delay <delay in second between run function app and document generation>
62+
```
63+
64+
For more details, run `get-openapi-document.sh --help`

docs/openapi-cli.md

-73
This file was deleted.

0 commit comments

Comments
 (0)