Skip to content

Commit b182f52

Browse files
authored
Merge pull request #174071 from JasonWHowell/fix-links
Fix absolute links - docs-link-absolute suggestions
2 parents 0389f6a + c7c418e commit b182f52

File tree

10 files changed

+15
-23
lines changed

10 files changed

+15
-23
lines changed

articles/active-directory/saas-apps/media/fortigate-ssl-vpn-tutorial/fortigate-deployment-guide-converted.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
2-
title: FortiGate deployment guide | Microsoft Docs
2+
title: FortiGate deployment guide
33
description: Set up and work with the Fortinet FortiGate next-generation firewall product.
4-
services: active-directory
54
author: jeevansd
65
manager: CelesteDG
76
ms.reviewer: celested

articles/aks/concepts-sustainable-software-engineering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,4 +98,4 @@ Learn more about the features of AKS mentioned in this article:
9898
[node-sizing]: use-multiple-node-pools.md#specify-a-vm-size-for-a-node-pool
9999
[sustainability-calculator]: https://azure.microsoft.com/blog/microsoft-sustainability-calculator-helps-enterprises-analyze-the-carbon-emissions-of-their-it-infrastructure/
100100
[system-pools]: use-system-pools.md
101-
[principles-sse]: https://docs.microsoft.com/learn/modules/sustainable-software-engineering-overview/
101+
[principles-sse]: /learn/modules/sustainable-software-engineering-overview/

articles/aks/windows-faq.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
title: Windows Server node pools FAQ
33
titleSuffix: Azure Kubernetes Service
44
description: See the frequently asked questions when you run Windows Server node pools and application workloads in Azure Kubernetes Service (AKS).
5-
services: container-service
65
ms.topic: article
76
ms.date: 10/12/2020
87

@@ -65,7 +64,8 @@ Yes. For the implications and options that are available, see [Maximum number of
6564

6665
If you created your cluster before February 2020 and have never done any cluster upgrade operations, the cluster still uses an old Windows image. You may have seen an error that resembles:
6766

68-
"The following list of images referenced from the deployment template is not found: Publisher: MicrosoftWindowsServer, Offer: WindowsServer, Sku: 2019-datacenter-core-smalldisk-2004, Version: latest. Please refer to https://docs.microsoft.com/azure/virtual-machines/windows/cli-ps-findimage for instructions on finding available images."
67+
"The following list of images referenced from the deployment template is not found: Publisher: MicrosoftWindowsServer, Offer: WindowsServer, Sku: 2019-datacenter-core-smalldisk-2004, Version: latest. Please refer to [Find and use Azure Marketplace VM images with Azure PowerShell
68+
](../virtual-machines/windows/cli-ps-findimage.md) for instructions on finding available images.
6969

7070
To fix this error:
7171

@@ -193,8 +193,8 @@ To see the current time zone of the running container or an available list of ti
193193
While this will be supported in the WS2022 OS version, the current way to achieve session affinity by Client IP is done by limiting your desired pod to run a single instance per node and configuring your Kubernetes service to direct traffic to the pod on the local node. To achieve this, the following configuration can be used:
194194
1. AKS cluster running a minimum version of 1.20.
195195
1. Constrain your pod to allow only one instance per Windows node. This can be achieved by using anti-affinity in your deployment configuration.
196-
1. In your Kubernetes service configuration, set externalTrafficPolicy=Local. This will ensure the Kubernetes service only directs traffic to pods within the local node.
197-
1. In your Kubernetes service configuration, set sessionAffinity: ClientIP. This will ensure the Azure Load Balancer gets configured with session affinity.
196+
1. In your Kubernetes service configuration, set "externalTrafficPolicy=Local". This will ensure the Kubernetes service only directs traffic to pods within the local node.
197+
1. In your Kubernetes service configuration, set "sessionAffinity: ClientIP". This will ensure the Azure Load Balancer gets configured with session affinity.
198198

199199
## What if I need a feature that's not supported?
200200

articles/azure-maps/migrate-from-google-maps-web-app.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ ms.author: v-stharr
66
ms.date: 12/07/2020
77
ms.topic: tutorial
88
ms.service: azure-maps
9-
services: azure-maps
109
manager: cpendle
1110
ms.custom: devx-track-js
1211
---
@@ -1679,7 +1678,7 @@ The following appendix provides a cross reference of the commonly used classes i
16791678
|---------------|-------------|
16801679
| `google.maps.Map` | [atlas.Map](/javascript/api/azure-maps-control/atlas.map) |
16811680
| `google.maps.InfoWindow` | [atlas.Popup](/javascript/api/azure-maps-control/atlas.popup) |
1682-
| `google.maps.InfoWindowOptions` | [atlas.PopupOptions](https://docs.microsoft.com/) |
1681+
| `google.maps.InfoWindowOptions` | [atlas.PopupOptions](/javascript/api/azure-maps-control/atlas.popupoptions) |
16831682
| `google.maps.LatLng` | [atlas.data.Position](/javascript/api/azure-maps-control/atlas.data.position) |
16841683
| `google.maps.LatLngBounds` | [atlas.data.BoundingBox](/javascript/api/azure-maps-control/atlas.data.boundingbox) |
16851684
| `google.maps.MapOptions` | [atlas.CameraOptions](/javascript/api/azure-maps-control/atlas.cameraoptions)<br/>[atlas.CameraBoundsOptions](/javascript/api/azure-maps-control/atlas.cameraboundsoptions)<br/>[atlas.ServiceOptions](/javascript/api/azure-maps-control/atlas.serviceoptions)<br/>[atlas.StyleOptions](/javascript/api/azure-maps-control/atlas.styleoptions)<br/>[atlas.UserInteractionOptions](/javascript/api/azure-maps-control/atlas.userinteractionoptions) |

articles/azure-monitor/app/snapshot-debugger-troubleshoot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ To check the setting, open your web.config file and find the system.web section.
8989
```
9090

9191
> [!NOTE]
92-
> Modifying the httpRuntime targetFramework value changes the runtime quirks applied to your application and can cause other, subtle behavior changes. Be sure to test your application thoroughly after making this change. For a full list of compatibility changes, please see https://docs.microsoft.com/dotnet/framework/migration-guide/application-compatibility#retargeting-changes
92+
> Modifying the httpRuntime targetFramework value changes the runtime quirks applied to your application and can cause other, subtle behavior changes. Be sure to test your application thoroughly after making this change. For a full list of compatibility changes, see [Retargeting changes](/dotnet/framework/migration-guide/application-compatibility#retargeting-changes).
9393
9494
> [!NOTE]
9595
> If the targetFramework is 4.7 or above then Windows determines the available protocols. In Azure App Service, TLS 1.2 is available. However, if you are using your own virtual machine, you may need to enable TLS 1.2 in the OS.

articles/azure-monitor/essentials/metrics-supported.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1575,7 +1575,7 @@ The Azure Monitor Agent replaces the Azure Diagnostics extension and Log Analyti
15751575
|---|---|---|---|---|---|---|
15761576
|AddRegion|Yes|Region Added|Count|Count|Region Added|Region|
15771577
|AutoscaleMaxThroughput|No|Autoscale Max Throughput|Count|Maximum|Autoscale Max Throughput|DatabaseName, CollectionName|
1578-
|AvailableStorage|No|(deprecated) Available Storage|Bytes|Total|"Available Storage"will be removed from Azure Monitor at the end of September 2023. Cosmos DB collection storage size is now unlimited. The only restriction is that the storage size for each logical partition key is 20GB. You can enable PartitionKeyStatistics in Diagnostic Log to know the storage consumption for top partition keys. For more info about Cosmos DB storage quota, please check this doc https://docs.microsoft.com/azure/cosmos-db/concepts-limits. After deprecation, the remaining alert rules still defined on the deprecated metric will be automatically disabled post the deprecation date.|CollectionName, DatabaseName, Region|
1578+
|AvailableStorage|No|(deprecated) Available Storage|Bytes|Total|"Available Storage"will be removed from Azure Monitor at the end of September 2023. Cosmos DB collection storage size is now unlimited. The only restriction is that the storage size for each logical partition key is 20GB. You can enable PartitionKeyStatistics in Diagnostic Log to know the storage consumption for top partition keys. For more info about Cosmos DB storage quota, please check this doc [Azure Cosmos DB service quotas](../../cosmos-db/concepts-limits.md). After deprecation, the remaining alert rules still defined on the deprecated metric will be automatically disabled post the deprecation date.|CollectionName, DatabaseName, Region|
15791579
|CassandraConnectionClosures|No|Cassandra Connection Closures|Count|Total|Number of Cassandra connections that were closed, reported at a 1 minute granularity|APIType, Region, ClosureReason|
15801580
|CassandraConnectorAvgReplicationLatency|No|Cassandra Connector Average ReplicationLatency|MilliSeconds|Average|Cassandra Connector Average ReplicationLatency|No Dimensions|
15811581
|CassandraConnectorReplicationHealthStatus|No|Cassandra Connector Replication Health Status|Count|Count|Cassandra Connector Replication Health Status|NotStarted, ReplicationInProgress, Error|

articles/cloud-services-extended-support/swap-cloud-service.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,11 @@ author: surbhijain
77
ms.author: surbhijain
88
ms.reviewer: gachandw
99
ms.date: 04/01/2021
10-
ms.custom:
1110
---
1211

1312
# Swap or switch deployments in Azure Cloud Services (extended support)
1413

15-
You can swap between two independent cloud service deployments in Azure Cloud Services (extended support). Unlike in Azure Cloud Services (classic), the Azure Resource Manager model in Azure Cloud Services (extended support) doesn't use deployment slots. In Azure Cloud Services (extended support), when you deploy a new release of a cloud service, you can make the cloud service swappable with an existing cloud service in Azure Cloud Services (extended support).
14+
You can swap between two independent cloud service deployments in Azure Cloud Services (extended support). Unlike in Azure Cloud Services (classic), the Azure Resource Manager model in Azure Cloud Services (extended support) doesn't use deployment slots. In Azure Cloud Services (extended support), when you deploy a new release of a cloud service, you can make the cloud service "swappable" with an existing cloud service in Azure Cloud Services (extended support).
1615

1716
After you swap the deployments, you can stage and test your new release by using the new cloud service deployment. In effect, swapping promotes a new cloud service that's staged to production release.
1817

@@ -27,7 +26,6 @@ Upon deployment of the second cloud service, both the cloud services have their
2726

2827
Once set, the SwappableCloudService property is treated as readonly. It cannot be deleted or changed to another value. Deleting one of the cloud services (of the swappable pair) will result in the SwappableCloudService property of the remaining cloud service being cleared.
2928

30-
3129
## ARM template
3230

3331
If you use an ARM template deployment method, to make the cloud services swappable, set the `SwappableCloudService` property in `networkProfile` in the `cloudServices` object to the ID of the paired cloud service:
@@ -60,7 +58,7 @@ To save compute costs, you can delete one of the cloud services (designated as a
6058

6159
## REST API
6260

63-
To use the [REST API](https://review.docs.microsoft.com/rest/api/compute/load-balancers/swap-public-ip-addresses?branch=net202102) to swap to a new cloud services deployment in Azure Cloud Services (extended support), use the following command and JSON configuration:
61+
To use the [REST API](/rest/api/compute/load-balancers/swap-public-ip-addresses) to swap to a new cloud services deployment in Azure Cloud Services (extended support), use the following command and JSON configuration:
6462

6563
```http
6664
POST https://management.azure.com/subscriptions/subid/providers/Microsoft.Network/locations/westus/setLoadBalancerFrontendPublicIpAddresses?api-version=2021-02-01

articles/cognitive-services/Bing-Entities-Search/tutorial-bing-entities-search-single-page-app.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@
22
title: "Tutorial: Bing Entity Search single-page web app"
33
titleSuffix: Azure Cognitive Services
44
description: This tutorial shows how to use the Bing Entity Search API in a single-page Web application.
5-
services: cognitive-services
65
author: aahill
7-
manager: nitinme
8-
96
ms.service: cognitive-services
107
ms.subservice: bing-entity-search
118
ms.topic: tutorial
@@ -559,7 +556,7 @@ Leave the command window open while you use the tutorial app; closing the window
559556
## Next steps
560557

561558
> [!div class="nextstepaction"]
562-
> [Bing Entity Search API reference](//docs.microsoft.com/rest/api/cognitiveservices/bing-entities-api-v7-reference)
559+
> [Bing Entity Search API reference](/rest/api/cognitiveservices/bing-entities-api-v7-reference)
563560
564561
> [!div class="nextstepaction"]
565-
> [Bing Maps API documentation](//msdn.microsoft.com/library/dd877180.aspx)
562+
> [Bing Maps API documentation](/bingmaps/)

articles/cognitive-services/Custom-Vision-Service/role-based-access-control.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
title: "Azure role-based access control - Custom Vision"
33
titleSuffix: Azure Cognitive Services
44
description: This article will show you how to configure Azure role-based access control for your Custom Vision projects.
5-
services: cognitive-services
65
author: PatrickFarley
76
manager: nitinme
87
ms.service: cognitive-services
@@ -29,7 +28,7 @@ Azure RBAC can be assigned to a Custom Vision resource. To grant access to an Az
2928
1. On the **Members** tab, select a user, group, service principal, or managed identity.
3029
1. On the **Review + assign** tab, select **Review + assign** to assign the role.
3130

32-
Within a few minutes, the target will be assigned the selected role at the selected scope. For help with these steps, see [Assign Azure roles using the Azure portal](https://review.docs.microsoft.com/azure/role-based-access-control/role-assignments-portal).
31+
Within a few minutes, the target will be assigned the selected role at the selected scope. For help with these steps, see [Assign Azure roles using the Azure portal](../../role-based-access-control/role-assignments-portal.md).
3332

3433
## Custom Vision role types
3534

articles/cognitive-services/Custom-Vision-Service/storage-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Next, go to your storage resource in the Azure portal. Go to the **Access contro
3434
* If you plan to use the model backup feature, select the **Storage Blob Data Contributor** role, and add your Custom Vision training resource as a member. Select **Review + assign** to complete.
3535
* If you plan to use the notification queue feature, then select the **Storage Queue Data Contributor** role, and add your Custom Vision training resource as a member. Select **Review + assign** to complete.
3636

37-
For help with role assignments, see [Assign Azure roles using the Azure portal](https://review.docs.microsoft.com/azure/role-based-access-control/role-assignments-portal).
37+
For help with role assignments, see [Assign Azure roles using the Azure portal](../../role-based-access-control/role-assignments-portal.md).
3838

3939
### Get integration URLs
4040

0 commit comments

Comments
 (0)