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
@@ -31,7 +31,7 @@ In this tutorial, you learn how to:
31
31
> * Browse the developer portal to see changes and change log
32
32
> * Access an API revision
33
33
34
-
:::image type="content" source="media/api-management-getstarted-revise-api/azure-portal.png" alt-text="Screenshot of API revisions in the Azure portal." lightbox="media/api-management-getstarted-revise-api/azure-portal.png":::
34
+
:::image type="content" source="media/api-management-get-started-revise-api/azure-portal.png" alt-text="Screenshot of API revisions in the Azure portal." lightbox="media/api-management-get-started-revise-api/azure-portal.png":::
35
35
36
36
## Prerequisites
37
37
@@ -43,11 +43,11 @@ In this tutorial, you learn how to:
43
43
44
44
1. Sign in to the [Azure portal](https://portal.azure.com), and go to your API Management instance.
45
45
1. In the left menu, under **APIs**, select **APIs**.
46
-
2. Select **Demo Conference API** from the API list (or another API to which you want to add revisions).
46
+
2. Select **Swagger Petstore** from the API list (or another API to which you want to add revisions).
47
47
3. Select the **Revisions** tab.
48
48
4. Select **+ Add revision**.
49
49
50
-
:::image type="content" source="media/api-management-getstarted-revise-api/07-add-revisions-01-add-new-revision.png" alt-text="Screenshot of adding an API revision in the portal.":::
50
+
:::image type="content" source="media/api-management-get-started-revise-api/07-add-revisions-01-add-new-revision.png" alt-text="Screenshot of adding an API revision in the portal.":::
51
51
52
52
> [!TIP]
53
53
> You can also select **Add revision** in the context menu (**...**) of the API.
@@ -61,7 +61,7 @@ In this tutorial, you learn how to:
61
61
62
62
## Make nonbreaking changes to your revision
63
63
64
-
1. Select **Demo Conference API** from the API list.
64
+
1. Select **Swagger Petstore** from the API list.
65
65
1. Select the **Design** tab near the top of the screen.
66
66
1. Notice that the **revision selector** (directly above the design tab) shows **Revision 2** as currently selected.
67
67
@@ -71,7 +71,7 @@ In this tutorial, you learn how to:
71
71
1. Set your new operation to **POST**, and the **Display name**, **Name**, and **URL** of the operation as **test**.
72
72
1.**Save** your new operation.
73
73
74
-
:::image type="content" source="media/api-management-getstarted-revise-api/07-add-revisions-02-make-changes.png" alt-text="Screenshot showing how to add an operation in a revision in the portal.":::
74
+
:::image type="content" source="media/api-management-get-started-revise-api/07-add-revisions-02-make-changes.png" alt-text="Screenshot showing how to add an operation in a revision in the portal.":::
75
75
1. You've now made a change to **Revision 2**. Use the **revision selector** near the top of the page to switch back to **Revision 1**.
76
76
1. Notice that your new operation doesn't appear in **Revision 1**.
77
77
@@ -85,7 +85,7 @@ In this tutorial, you learn how to:
85
85
1. Select the **Post to Public Change log for this API** checkbox, if you want to post notes about this change. Provide a description for your change that the developers can see, for example: **Testing revisions. Added new "test" operation.**
86
86
1.**Revision 2** is now current.
87
87
88
-
:::image type="content" source="media/api-management-getstarted-revise-api/revisions-menu.png" alt-text="Screenshot of revision menu in Revisions window in the portal." lightbox="media/api-management-getstarted-revise-api/revisions-menu.png":::
88
+
:::image type="content" source="media/api-management-get-started-revise-api/revisions-menu.png" alt-text="Screenshot of revision menu in Revisions window in the portal." lightbox="media/api-management-get-started-revise-api/revisions-menu.png":::
89
89
90
90
### [Azure CLI](#tab/azure-cli)
91
91
@@ -95,7 +95,7 @@ To begin using Azure CLI:
95
95
96
96
Use this procedure to create and update a release.
97
97
98
-
1. Run the [az apim api list](/cli/azure/apim/api#az-apim-api-list) command to see your API IDs:
98
+
1. Run the [az api list](/cli/azure/apim/api#az-apim-api-list) command to see your API IDs:
99
99
100
100
```azurecli
101
101
az apim api list --resource-group apim-hello-word-resource-group \
@@ -108,7 +108,7 @@ Use this procedure to create and update a release.
108
108
109
109
```azurecli
110
110
az apim api release create --resource-group apim-hello-word-resource-group \
@@ -150,21 +150,21 @@ If you've tried the [developer portal](api-management-howto-developer-portal-cus
150
150
1. In the Azure portal, navigate to your API Management instance.
151
151
1. In the left menu, under **APIs**, select **APIs**.
152
152
1. Select **Developer portal** from the top menu.
153
-
1. In the developer portal, select **APIs**, and then select **Demo Conference API**.
153
+
1. In the developer portal, select **APIs**, and then select **Swagger Petstore**.
154
154
1. Notice your new **test** operation is now available.
155
155
1. Select **Changelog** near the API name.
156
156
1. Notice that your change log entry appears in the list.
157
157
158
158
159
159
## Access an API revision
160
160
161
-
Each revision to your API can be accessed using a specially formed URL. Add `;rev={revisionNumber}` at the end of your API URL path, but before the query string, to access a specific revision of that API. For example, you might use this URL to access revision 2 of the Demo Conference API:
161
+
Each revision to your API can be accessed using a specially formed URL. Add `;rev={revisionNumber}` at the end of your API URL path, but before the query string, to access a specific revision of that API. For example, you might use a URL similar to the following to access revision 2 of the Swagger Petstore API:
You can find the URL paths for your API's revisions on the **Revisions** tab in the Azure portal.
166
166
167
-
:::image type="content" source="media/transform-api/revision-url-path.png" alt-text="Screenshot of revision URLs in the portal.":::
167
+
:::image type="content" source="media/api-management-get-started-revise-api/revision-url-path.png" alt-text="Screenshot of revision URLs in the portal.":::
168
168
169
169
> [!TIP]
170
170
> You can access the *current* revision of your API using the API path without the `;rev` string, in addition to the full URL that appends `;rev={revisionNumber}` to your API path.
Copy file name to clipboardExpand all lines: articles/api-management/high-availability.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,8 +35,7 @@ Enabling [zone redundancy](../reliability/migrate-api-mgt.md) for an API Managem
35
35
36
36
When you enable zone redundancy in a region, consider the number of API Management scale [units](upgrade-and-scale.md) that need to be distributed. Minimally, configure the same number of units as the number of availability zones, or a multiple so that the units are distributed evenly across the zones. For example, if you select 3 availability zones in a region, you could have 3 units so that each zone hosts one unit.
37
37
38
-
> [!NOTE]
39
-
> Use [capacity metrics](api-management-capacity.md) and your own testing to decide the number of scale units that will provide the gateway performance for your needs. Learn more about [scaling and upgrading](upgrade-and-scale.md) your service instance.
0 commit comments