Skip to content

Commit da72a3a

Browse files
authored
Merge branch 'MicrosoftDocs:main' into main
2 parents a86e52d + bda2d04 commit da72a3a

File tree

212 files changed

+2089
-1927
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

212 files changed

+2089
-1927
lines changed

articles/api-center/manage-apis-azure-cli.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@ az apic api create --resource-group myResourceGroup \
3939
--title "Petstore API" --type "rest"
4040
```
4141

42-
> [!NOTE]
43-
> After creating an API, you can update the API's properties by using the [az apic api update](/cli/azure/apic/api#az_apic_api_update) command.
44-
45-
4642
### Create an API version
4743

4844
Use the [az apic api version create](/cli/azure/apic/api/version#az_apic_api_version_create) command to create a version for your API.
@@ -117,8 +113,26 @@ az apic api register --resource-group myResourceGroup \
117113
* By default, the command sets the API's **Lifecycle stage** to *design*.
118114
* It creates an API version named according to the `version` property in the API definition (or *1-0-0* by default), and an API definition named according to the specification format (for example, *openapi*).
119115

116+
## Update API properties
117+
120118
After registering an API, you can update the API's properties by using the [az apic api update](/cli/azure/apic/api#az_apic_api_update), [az apic api version update](/cli/azure/apic/api/version#az_apic_api_version_update), and [az apic api definition update](/cli/azure/apic/api/definition#az_apic_api_definition_update) commands.
121119

120+
The following example updates the title of the *petstore-api* API to *Petstore API v2*.
121+
122+
```azurecli-interactive
123+
az apic api update --resource-group myResourceGroup \
124+
--service-name myAPICenter --api-id petstore-api \
125+
--title "Petstore API v2"
126+
```
127+
128+
The following example sets the API's Boolean *internal* custom property to *false*.
129+
130+
```azurecli-interactive
131+
az apic api update --resource-group myResourceGroup \
132+
--service-name myAPICenter --api-id petstore-api \
133+
--set custom_properties.internal=false
134+
```
135+
122136
## Delete API resources
123137

124138
Use the [az apic api delete](/cli/azure/apic/api#az_apic_api_delete) command to delete an API and all of its version and definition resources. For example:

articles/api-management/api-management-howto-app-insights.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ To improve performance issues, skip:
397397
398398
## Video
399399
400-
> [!VIDEO https://www.microsoft.com/en-us/videoplayer/embed/RE2pkXv]
400+
> [!VIDEO https://learn-video.azurefd.net/vod/player?id=85acedcd-4200-4788-b7c0-41a11286fcab]
401401
>
402402
>
403403
@@ -410,4 +410,4 @@ Addressing the issue of telemetry data flow from API Management to Application I
410410
411411
+ Learn more about [Azure Application Insights](/azure/azure-monitor/app/app-insights-overview).
412412
+ Consider [logging with Azure Event Hubs](api-management-howto-log-event-hubs.md).
413-
+ Learn about visualizing data from Application Insights using [Azure Managed Grafana](visualize-using-managed-grafana-dashboard.md)
413+
+ Learn about visualizing data from Application Insights using [Azure Managed Grafana](visualize-using-managed-grafana-dashboard.md)

articles/api-management/monetization-support.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,13 +151,13 @@ API Management can be deployed either through:
151151
## Videos
152152

153153
### Integrate API Management with Adyen payment gateway
154-
> [!VIDEO https://www.microsoft.com/videoplayer/embed/RWSSq2]
154+
> [!VIDEO https://learn-video.azurefd.net/vod/player?id=64aae697-a0ae-497b-a5ec-c3edc7134c61]
155155
156156
### Integrate API Management with Stripe payment gateway
157-
> [!VIDEO https://www.microsoft.com/videoplayer/embed/RWSTfp]
157+
> [!VIDEO https://learn-video.azurefd.net/vod/player?id=0337c2ce-aa26-48e4-b752-bcce254966a6]
158158
159159

160160
## Next steps
161161

162162
* [Learn more about API Management monetization strategies](monetization-overview.md).
163-
* Deploy a demo Adyen or Stripe integration via the associated [Git repo](https://github.com/microsoft/azure-api-management-monetization).
163+
* Deploy a demo Adyen or Stripe integration via the associated [Git repo](https://github.com/microsoft/azure-api-management-monetization).

articles/api-management/private-endpoint.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ Typically, a network administrator creates a private endpoint. Depending on your
5858
1. [Get available private endpoint types in subscription](#get-available-private-endpoint-types-in-subscription)
5959
1. [Disable network policies in subnet](#disable-network-policies-in-subnet)
6060
1. [Create private endpoint - portal](#create-private-endpoint---portal)
61-
(#approve-pending-private-endpoint-connections)
6261

6362
### Get available private endpoint types in subscription
6463

articles/app-service/configure-language-python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Existing web applications can be redeployed to Azure as follows:
108108
1. **App service resources**: Create a resource group, App Service plan, and App Service web app to host your application. You can do this easily by running the Azure CLI command [`az webapp up`](/cli/azure/webapp#az-webapp-up). Or, you can create and deploy resources as shown in [Tutorial: Deploy a Python (Django or Flask) web app with PostgreSQL](tutorial-python-postgresql-app.md). Replace the names of the resource group, App Service plan, and web app to be more suitable for your application.
109109
110110
1. **Environment variables**: If your application requires any environment variables, create equivalent [App Service application settings](configure-common.md#configure-app-settings). These App Service settings appear to your code as environment variables, as described in [Access environment variables](#access-app-settings-as-environment-variables).
111-
- Database connections, for example, are often managed through such settings, as shown in [Tutorial: Deploy a Django web app with PostgreSQL - verify connection settings](tutorial-python-postgresql-app.md#2-verify-connection-settings).
111+
- Database connections, for example, are often managed through such settings, as shown in [Tutorial: Deploy a Django web app with PostgreSQL - verify connection settings](tutorial-python-postgresql-app.md#2-secure-connection-secrets).
112112
- See [Production settings for Django apps](#production-settings-for-django-apps) for specific settings for typical Django apps.
113113
114114
1. **App startup**: Review the section [Container startup process](#container-startup-process) later in this article to understand how App Service attempts to run your app. App Service uses the Gunicorn web server by default, which must be able to find your app object or *wsgi.py* folder. If you need to, you can [Customize the startup command](#customize-startup-command).
@@ -430,7 +430,7 @@ When attempting to run database migrations with a Django app, you might see "sql
430430

431431
Check the `DATABASES` variable in the app's *settings.py* file to ensure that your app is using a cloud database instead of SQLite.
432432

433-
If you're encountering this error with the sample in [Tutorial: Deploy a Django web app with PostgreSQL](tutorial-python-postgresql-app.md), check that you completed the steps in [Verify connection settings](tutorial-python-postgresql-app.md#2-verify-connection-settings).
433+
If you're encountering this error with the sample in [Tutorial: Deploy a Django web app with PostgreSQL](tutorial-python-postgresql-app.md), check that you completed the steps in [Verify connection settings](tutorial-python-postgresql-app.md#2-secure-connection-secrets).
434434

435435
#### Other issues
436436

51.6 KB
Loading
43.6 KB
Loading
60.7 KB
Loading
88.4 KB
Loading
17.7 KB
Loading

0 commit comments

Comments
 (0)