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: documentation/setup.md
+16-16Lines changed: 16 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -642,7 +642,7 @@ Therefore we want to create a new product and add to it several APIs.
642
642
643
643
3. Re-select the API Management Service to go to detail and click on `APIs`. Click the **Add a new API** and select the `Blank API`.
644
644
645
-
**Please note** that, normally the Function App can produce a Swagger file that can be imported directly. But unfortunately for V2 Beta (at the time of this writing), the `API Definitions` feature is not available.
645
+
**Please note** that, normally the Function App can produce a Swagger file that can be imported directly. But unfortunately for V2 (at the time of this writing), the `API Definitions` feature is not available.
646
646
647
647
4. Complete the API Management API creation form for `Drivers` with the following:
648
648
@@ -658,7 +658,7 @@ Therefore we want to create a new product and add to it several APIs.
658
658
659
659
5. Repeat step 4 for the `Trips` and `Passengers` Function Apps. The `Orchestrators` are not exposed to the outside world and hence they should not be added to APIM.
660
660
661
-
6. For each API we created, we need to design its operations. As noted above, this step will have to be done manually for V2 Beta. Select `Design` and click on **Add operation** for each operation (**please note** that the API operations are listed below so they can be added manually). Complete the operation form as shown here for a sample operation:
661
+
6. For each API we created, we need to design its operations. As noted above, this step will have to be done manually for V2. Select `Design` and click on **Add operation** for each operation (**please note** that the API operations are listed below so they can be added manually). Complete the operation form as shown here for a sample operation:
662
662
663
663
1.**Display Name**: Enter a name i.e. `Get Driver Locations`.
664
664
2.**Name**: Enter an identifier `get-driver-locations`.
@@ -889,7 +889,7 @@ The reference implementation solution requires several settings for each functio
889
889
| KEY | DESCRIPTION |
890
890
|---|---|
891
891
| APPINSIGHTS_INSTRUMENTATIONKEY | The Application Insights Resource Instrumentation Key. This key is required by the Function App so it knows there is an application insights resource associated with it |
892
-
| FUNCTIONS_EXTENSION_VERSION | Must be set to `.0.11961-alpha` since the solution uses V2 beta|
892
+
| FUNCTIONS_EXTENSION_VERSION | Must be set to `~2` since the solution uses V2 |
893
893
| DocDbApiKey | The Cosmos DB API Key |
894
894
| DocDbEndpointUri | The Cosmos DB Endpoint URI |
895
895
| DocDbRideShareDatabaseName | The Cosmos Database i.e. `RideShare`|
@@ -906,7 +906,7 @@ The reference implementation solution requires several settings for each functio
906
906
| KEY | DESCRIPTION |
907
907
|---|---|
908
908
| APPINSIGHTS_INSTRUMENTATIONKEY | The Application Insights Resource Instrumentation Key. This key is required by the Function App so it knows there is an application insights resource associated with it |
909
-
| FUNCTIONS_EXTENSION_VERSION | Must be set to `.0.11961-alpha` since the solution uses V2 beta|
909
+
| FUNCTIONS_EXTENSION_VERSION | Must be set to `~2` since the solution uses V2 |
910
910
| AzureWebJobsDashboard | The Storage Account Connection String |
911
911
| AzureWebJobsStorage | The Storage Account Connection String |
912
912
| DocDbApiKey | The Cosmos DB API Key |
@@ -928,7 +928,7 @@ The reference implementation solution requires several settings for each functio
928
928
| KEY | DESCRIPTION |
929
929
|---|---|
930
930
| APPINSIGHTS_INSTRUMENTATIONKEY | The Application Insights Resource Instrumentation Key. This key is required by the Function App so it knows there is an application insights resource associated with it |
931
-
| FUNCTIONS_EXTENSION_VERSION | Must be set to `.0.11961-alpha` since the solution uses V2 beta|
931
+
| FUNCTIONS_EXTENSION_VERSION | Must be set to `~2` since the solution uses V2 |
932
932
| AzureWebJobsDashboard | The Storage Account Connection String |
933
933
| AzureWebJobsStorage | The Storage Account Connection String |
934
934
| DocDbApiKey | The Cosmos DB API Key |
@@ -954,7 +954,7 @@ The reference implementation solution requires several settings for each functio
954
954
| KEY | DESCRIPTION |
955
955
|---|---|
956
956
| APPINSIGHTS_INSTRUMENTATIONKEY | The Application Insights Resource Instrumentation Key. This key is required by the Function App so it knows there is an application insights resource associated with it |
957
-
| FUNCTIONS_EXTENSION_VERSION | Must be set to `.0.11961-alpha` since the solution uses V2 beta|
957
+
| FUNCTIONS_EXTENSION_VERSION | Must be set to `~2` since the solution uses V2 |
958
958
| AzureWebJobsDashboard | The Storage Account Connection String |
959
959
| AzureWebJobsStorage | The Storage Account Connection String |
960
960
| DocDbApiKey | The Cosmos DB API Key |
@@ -1384,36 +1384,36 @@ In the `Dockerfiles` folder of the `.NET` source code, there is a `docker` file
1384
1384
**Drivers**:
1385
1385
1386
1386
```docker
1387
-
FROM microsoft/azure-functions-dotnet-core2.0:v2.0.11961-alpha
The `Dockerfile` is straightforward! We base it on the `microsoft/azure-functions-dotnet-core2.0` image with `v2.0.11961-alpha` tag (as it is the current version) and we copy the output of the `bin\<build>\netstandard2.0` to the `wwwroot` of the image.
1416
+
The `Dockerfile` is straightforward! We base it on the `microsoft/azure-functions-dotnet-core2.0` image with `v2~2` tag (as it is the current version) and we copy the output of the `bin\<build>\netstandard2.0` to the `wwwroot` of the image.
0 commit comments