Skip to content

Commit 4dc0cd3

Browse files
authored
Merge pull request #293025 from MicrosoftDocs/main
1/14/2025 AM Publish
2 parents 19f3c9c + b79f62f commit 4dc0cd3

File tree

45 files changed

+125
-117
lines changed

Some content is hidden

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

45 files changed

+125
-117
lines changed

articles/api-management/api-management-howto-disaster-recovery-backup-restore.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: dlepow
77

88
ms.service: azure-api-management
99
ms.topic: how-to
10-
ms.date: 01/06/2025
10+
ms.date: 09/06/2024
1111
ms.author: danlep
1212
ms.custom: devx-track-azurepowershell
1313
---
@@ -29,8 +29,7 @@ This article shows how to automate backup and restore operations of your API Man
2929
> Each backup expires after 30 days. If you attempt to restore a backup after the 30-day expiration period has expired, the restore will fail with a `Cannot restore: backup expired` message.
3030
3131
> [!IMPORTANT]
32-
> * Backup and restore aren't supported in the [v2 service tiers](v2-service-tiers-overview.md) or in API Management instances configured with [workspaces](workspaces-overview.md).
33-
> * Restore operation doesn't change custom hostname configuration of the target service. We recommend to use the same custom hostname and TLS certificate for both active and standby services, so that, after restore operation completes, the traffic can be re-directed to the standby instance by a simple DNS CNAME change.
32+
> Restore operation doesn't change custom hostname configuration of the target service. We recommend to use the same custom hostname and TLS certificate for both active and standby services, so that, after restore operation completes, the traffic can be re-directed to the standby instance by a simple DNS CNAME change.
3433
3534

3635
[!INCLUDE [updated-for-az](~/reusable-content/ce-skilling/azure/includes/updated-for-az.md)]

articles/application-gateway/for-containers/how-to-websockets-gateway-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: application gateway
55
author: greg-lindsay
66
ms.service: azure-appgw-for-containers
77
ms.topic: conceptual
8-
ms.date: 1/13/2025
8+
ms.date: 1/14/2025
99
ms.author: greglin
1010
---
1111

@@ -26,7 +26,7 @@ WebSocket protocol has no specific implementation with Gateway API for configura
2626
Apply the following deployment.yaml file on your cluster to create a sample web application to demonstrate WebSocket support.
2727

2828
```bash
29-
kubectl apply -f https://learn.microsoft.com/azure/application-gateway/for-containers/examples/websocket-scenario/deployment.yaml
29+
kubectl apply -f https://raw.githubusercontent.com/MicrosoftDocs/azure-docs/refs/heads/main/articles/application-gateway/for-containers/examples/websocket-scenario/deployment.yaml
3030
```
3131

3232
This command creates the following on your cluster:

articles/application-gateway/for-containers/overview.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: greg-lindsay
66
ms.custom: references_regions
77
ms.service: azure-appgw-for-containers
88
ms.topic: overview
9-
ms.date: 9/16/2024
9+
ms.date: 1/14/2025
1010
ms.author: greglin
1111
---
1212

@@ -77,6 +77,7 @@ Application Gateway for Containers supports the following features for traffic m
7777
- TLS policies
7878
- URL redirect
7979
- URL rewrite
80+
- WebSocket support
8081

8182
### Deployment strategies
8283

articles/application-gateway/for-containers/websockets.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,6 @@ EOF
7171
7272
### Metrics & Monitoring
7373

74-
WebSockets Metrics:
75-
76-
- New Connection Upgrades: This metric incrments on new WebSocket connections created (or upgraded) from regular HTTP requests.
77-
- Current Connection Upgrades: This metrics reflects active upgraded connections.
78-
79-
>[!Note]
80-
>Connection upgrade metrics also include other connection upgrades, such as HTTP 1.1 to HTTP 2.
81-
8274
Diagnostic Logs:
8375

8476
WebSocket connections operate using a distinct protocol. Upon initiating the connection, the browser receives an HTTP 101 status code, indicating the switch from HTTP to WebSocket and will be reflected in the access log.

articles/azure-fluid-relay/how-tos/test-automation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fluid.url: https://fluidframework.com/docs/testing/testing/
99

1010
# How to: Use test automation with Azure Fluid Relay
1111

12-
Testing and automation are crucial to maintaining the quality and longevity of your code. Internally, Fluid uses a range of unit and integration tests powered by [Mocha](https://mochajs.org/), [Jest](https://jestjs.io/), [Puppeteer](https://github.com/puppeteer/puppeteer), and [Webpack](https://webpack.js.org/).
12+
Testing and automation are crucial to maintaining the quality and longevity of your code. Internally, Fluid uses a range of unit and integration tests powered by [Mocha](https://mochajs.org/), [Jest](https://jestjs.io/), [Puppeteer](https://github.com/puppeteer/puppeteer), and [webpack](https://webpack.js.org/).
1313

1414
You can run tests using the local [@fluidframework/azure-local-service](https://www.npmjs.com/package/@fluidframework/azure-local-service) or using a test tenant in Azure Fluid Relay service. AzureClient can be configured to connect to both a remote service and a local service, which enables you to use a single client type between tests against live and local service instances. The only difference is the configuration used to create the client.
1515

articles/azure-fluid-relay/how-tos/use-audience-in-fluid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ npm run start
361361
Navigate to `localhost:3000` on a browser tab to view the running application. To create a new container, select a user ID button while leaving the container ID input blank. To simulate a new user joining the container session, open a new browser tab and navigate to `localhost:3000`. This time, input the container ID value which can be found from first browser tab's url proceeding `http://localhost:3000/#`.
362362

363363
> [!NOTE]
364-
> You may need to install an additional dependency to make this demo compatible with Webpack 5. If you receive a compilation error related to a "buffer" or "url" package, please run `npm install -D buffer url` and try again. This will be resolved in a future release of Fluid Framework.
364+
> You may need to install an additional dependency to make this demo compatible with webpack 5. If you receive a compilation error related to a "buffer" or "url" package, please run `npm install -D buffer url` and try again. This will be resolved in a future release of Fluid Framework.
365365
366366
## Next steps
367367

articles/azure-functions/functions-networking-options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ To learn how to set up service endpoints, see [Establish Azure Functions private
7878

7979
## Outbound networking features
8080

81-
You can use the features in this section toto manage outbound connections made by your app.
81+
You can use the features in this section to manage outbound connections made by your app.
8282

8383
### Virtual network integration
8484

articles/azure-maps/how-to-use-indoor-module.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ To use the globally hosted Azure Content Delivery Network version of the *Azure
5757
import * as indoor from "azure-maps-indoor";
5858
```
5959
60-
You would also need to embed the CSS Style Sheet for various controls to display correctly. If you're using a JavaScript bundler to bundle the dependencies and package your code, refer to your bundler's documentation on how it's done. For [Webpack], it's commonly done via a combination of `style-loader` and `css-loader` with documentation available at [style-loader].
60+
You would also need to embed the CSS Style Sheet for various controls to display correctly. If you're using a JavaScript bundler to bundle the dependencies and package your code, refer to your bundler's documentation on how it's done. For [webpack], it's commonly done via a combination of `style-loader` and `css-loader` with documentation available at [style-loader].
6161
6262
To begin, install style-loader and css-loader:
6363
@@ -71,7 +71,7 @@ To use the globally hosted Azure Content Delivery Network version of the *Azure
7171
import "azure-maps-indoor/dist/atlas-indoor.min.css";
7272
```
7373
74-
Then add loaders to the module rules portion of the Webpack config:
74+
Then add loaders to the module rules portion of the webpack config:
7575
7676
```js
7777
module.exports = {
@@ -305,4 +305,4 @@ Learn more about how to add more data to your map:
305305
[Subscription key]: quick-demo-map-app.md#get-the-subscription-key-for-your-account
306306
[Tileset List API]: /rest/api/maps-creator/tileset/list
307307
[visual style editor]: https://azure.github.io/Azure-Maps-Style-Editor
308-
[Webpack]: https://webpack.js.org
308+
[webpack]: https://webpack.js.org

articles/azure-maps/how-to-use-npm-package.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ npm install azure-maps-control
3232

3333
This package includes a minified version of the source code, CSS Style Sheet, and the TypeScript definitions for the Azure Maps map control.
3434

35-
You would also need to embed the CSS Style Sheet for various controls to display correctly. If you're using a JavaScript bundler to bundle the dependencies and package your code, refer to your bundler's documentation on how it's done. For [Webpack], it's commonly done via a combination of `style-loader` and `css-loader` with documentation available at [style-loader].
35+
You would also need to embed the CSS Style Sheet for various controls to display correctly. If you're using a JavaScript bundler to bundle the dependencies and package your code, refer to your bundler's documentation on how it's done. For [webpack], it's commonly done via a combination of `style-loader` and `css-loader` with documentation available at [style-loader].
3636

3737
To begin, install `style-loader` and `css-loader`:
3838

@@ -46,7 +46,7 @@ Inside your source file, import _atlas.min.css_:
4646
import "azure-maps-control/dist/atlas.min.css";
4747
```
4848

49-
Then add loaders to the module rules portion of the Webpack config:
49+
Then add loaders to the module rules portion of the webpack config:
5050

5151
```js
5252
module.exports = {
@@ -81,7 +81,7 @@ Embed a map in a web page using the map control npm package.
8181
npm install azure-maps-control
8282
```
8383
84-
3. Install Webpack and other dev dependencies.
84+
3. Install webpack and other dev dependencies.
8585
8686
```powershell
8787
npm install --save-dev webpack webpack-cli style-loader css-loader
@@ -113,7 +113,7 @@ Embed a map in a web page using the map control npm package.
113113
}
114114
```
115115
116-
5. Create a Webpack config file named _webpack.config.js_ in the project's root folder. Include these settings in the config file.
116+
5. Create a webpack config file named _webpack.config.js_ in the project's root folder. Include these settings in the config file.
117117
118118
```js
119119
module.exports = {
@@ -265,7 +265,7 @@ The following sample shows how to import a module and use it in your application
265265
document.body.onload = onload;
266266
```
267267
268-
4. Webpack 5 may throw errors about not being able to resolve some node.js core modules. Add these settings to your Webpack config file to fix the problem.
268+
4. Webpack 5 may throw errors about not being able to resolve some node.js core modules. Add these settings to your webpack config file to fix the problem.
269269
270270
```js
271271
module.exports = {
@@ -305,7 +305,7 @@ Learn best practices and see samples:
305305
[Azure Maps account]: quick-demo-map-app.md#create-an-azure-maps-account
306306
[subscription key]: quick-demo-map-app.md#get-the-subscription-key-for-your-account
307307
[authentication options]: /javascript/api/azure-maps-control/atlas.authenticationoptions
308-
[Webpack]: https://webpack.js.org/
308+
[webpack]: https://webpack.js.org/
309309
[style-loader]: https://webpack.js.org/loaders/style-loader/
310310
[azure-maps-drawing-tools]: ./set-drawing-options.md
311311
[azure-maps-indoor]: ./how-to-use-indoor-module.md

articles/azure-maps/set-drawing-options.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The Azure Maps Web SDK provides a [drawing tools module]. This module makes it e
3535
import * as drawing from "azure-maps-drawing-tools";
3636
```
3737

38-
You would also need to embed the CSS for various controls to display correctly. If you're using a JavaScript bundler to bundle the dependencies and package your code, refer to your bundler's documentation on how it's done. For [Webpack], it's commonly done via a combination of `style-loader` and `css-loader` with documentation available at [style-loader].
38+
You would also need to embed the CSS for various controls to display correctly. If you're using a JavaScript bundler to bundle the dependencies and package your code, refer to your bundler's documentation on how it's done. For [webpack], it's commonly done via a combination of `style-loader` and `css-loader` with documentation available at [style-loader].
3939

4040
To begin, install style-loader and css-loader:
4141

@@ -49,7 +49,7 @@ The Azure Maps Web SDK provides a [drawing tools module]. This module makes it e
4949
import "azure-maps-drawing-tools/dist/atlas-drawing.min.css";
5050
```
5151

52-
Then add loaders to the module rules portion of the Webpack config:
52+
Then add loaders to the module rules portion of the webpack config:
5353

5454
```js
5555
module.exports = {
@@ -226,4 +226,4 @@ Learn more about the classes and methods used in this article:
226226
[Map]: /javascript/api/azure-maps-control/atlas.map
227227
[React to drawing events]: drawing-tools-events.md
228228
[style-loader]: https://webpack.js.org/loaders/style-loader/
229-
[Webpack]: https://webpack.js.org/
229+
[webpack]: https://webpack.js.org/

0 commit comments

Comments
 (0)