You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+11-59
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@
8
8
## Acknowledgement ##
9
9
10
10
*[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).
*[**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.~~
21
22
*[**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.
22
23
<!-- * [**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.
23
25
24
26
25
27
## GitHub Actions Support ##
26
28
27
29
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.
28
30
29
31
30
-
## Generic CI/CD Pipeline Support ##
32
+
## GitHub Codespaces Support ##
31
33
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:
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).~~
Copy file name to clipboardexpand all lines: docs/enable-open-api-endpoints-in-proc.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
[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.
4
4
5
5
> [!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].
7
7
8
8
[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].
9
9
@@ -13,9 +13,9 @@
13
13
To get yourself started, you need to have the followings installed on your local machine.
14
14
15
15
> [!IMPORTANT]
16
-
> This extension is currently available in .NET Core runtime.
16
+
> This extension is currently available in .NET 6 runtime.
17
17
18
-
*[.NET Core SDK 3.1 LTS][dotnet core sdk]
18
+
*[.NET 6 SDK LTS][dotnet sdk]
19
19
*[Azure Functions Core Tools][az func core tools]
20
20
*[Visual Studio Code][vs code]
21
21
*[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
Copy file name to clipboardexpand all lines: docs/enable-open-api-endpoints-out-of-proc.md
+5-7
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
[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.
4
4
5
5
> [!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].
7
7
8
8
[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].
9
9
@@ -13,10 +13,9 @@
13
13
To get yourself started, you need to have the followings installed on your local machine.
14
14
15
15
> [!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.
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.
-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`
-o|--output-path <output directory for generated OpenAPI document> \
48
+
-f|--output-filename <OpenAPI document name> \
49
+
-d|--delay <delay in second between run functionapp 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 functionapp and document generation>
62
+
```
63
+
64
+
For more details, run `get-openapi-document.sh --help`
0 commit comments