Skip to content

Commit 6bde531

Browse files
Changed second 10 files of broken internal links.
1 parent e1bb596 commit 6bde531

File tree

10 files changed

+15
-17
lines changed

10 files changed

+15
-17
lines changed

articles/azure-functions/functions-monitoring.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ If you write logs in your function code, their category is "Function".
188188

189189
### Log levels
190190

191-
The Azure functions logger also includes a *log level* with every log. [LogLevel](https://docs.microsoft.com/aspnet/core/api/microsoft.extensions.logging.loglevel#Microsoft_Extensions_Logging_LogLevel) is an enumeration, and the integer code indicates relative importance:
191+
The Azure functions logger also includes a *log level* with every log. <xref:Microsoft.Extensions.Logging.LogLevel> is an enumeration, and the integer code indicates relative importance:
192192

193193
|LogLevel |Code|
194194
|------------|---|

articles/container-registry/container-registry-tasks-multi-step.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ See [task examples][task-examples] for complete multi-step task YAML files and D
8787
8888
Tasks support both manual execution, called a "quick run," and automated execution on Git commit or base image update.
8989
90-
To run a task, you first define the task's steps in a YAML file, then execute the Azure CLI command [az acr run][az-acr-run].
90+
To run a task, you first define the task's steps in a YAML file, then execute the Azure CLI command [az acr run][/cli/azure/acr#az-acr-run].
9191
9292
Here's an example Azure CLI command that runs a task using a sample task YAML file. Its steps build and then push an image. Update `\<acrName\>` with the name of your own Azure container registry before running the command.
9393

articles/cosmos-db/faq.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -356,10 +356,10 @@ Yes, the Table API leverages the platform of Azure Cosmos DB for backups. Backup
356356

357357

358358
### Does the Table API index all attributes of an entity by default?
359-
Yes, all attributes of an entity are indexed by default. For more information, see [Azure Cosmos DB: Indexing policies](indexing-policies.md).
359+
Yes, all attributes of an entity are indexed by default. For more information, see [Azure Cosmos DB: Indexing policies](index-policy.md).
360360

361361
### Does this mean I do not have to create multiple indexes to satisfy the queries?
362-
Yes, Azure Cosmos DB Table API provides automatic indexing of all attributes without any schema definition. This automation frees developers to focus on the application rather than on index creation and management. For more information, see [Azure Cosmos DB: Indexing policies](indexing-policies.md).
362+
Yes, Azure Cosmos DB Table API provides automatic indexing of all attributes without any schema definition. This automation frees developers to focus on the application rather than on index creation and management. For more information, see [Azure Cosmos DB: Indexing policies](index-policy.md).
363363

364364
### Can I change the indexing policy?
365365
Yes, you can change the indexing policy by providing the index definition. For more information, see [Azure Cosmos DB capabilities](../cosmos-db/tutorial-develop-table-dotnet.md#azure-cosmos-db-capabilities). You need to properly encode and escape the settings.
@@ -679,10 +679,10 @@ The Azure Cosmos DB Cassandra API borrows from the globally distributed platform
679679
You can add as many regions as you want for the account and control where it can fail over to by providing a failover priority. To use the database, you need to provide an application there too. When you do so, your customers will not experience downtime.
680680

681681
### Does the Apache Cassandra API index all attributes of an entity by default?
682-
Yes, all attributes of an entity are indexed by default by Azure Cosmos DB. For more information, see [Azure Cosmos DB: Indexing policies](indexing-policies.md). You get benefits of guaranteed performance with consistent indexing and durable quorum committed writes always.
682+
Yes, all attributes of an entity are indexed by default by Azure Cosmos DB. For more information, see [Azure Cosmos DB: Indexing policies](index-policy.md). You get benefits of guaranteed performance with consistent indexing and durable quorum committed writes always.
683683

684684
### Does this mean I do not have to create multiple indexes to satisfy the queries?
685-
Yes, Azure Cosmos DB provides automatic indexing of all attributes without any schema definition. This automation frees developers to focus on the application rather than on index creation and management. For more information, see [Azure Cosmos DB: Indexing policies](indexing-policies.md).
685+
Yes, Azure Cosmos DB provides automatic indexing of all attributes without any schema definition. This automation frees developers to focus on the application rather than on index creation and management. For more information, see [Azure Cosmos DB: Indexing policies](index-policy.md).
686686

687687
### Can I use the new Cassandra API SDK locally with the emulator?
688688
We plan to support this capability in future.

articles/cosmos-db/import-data.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -509,9 +509,7 @@ The policy templates the tool provides are:
509509
![Screenshot of Azure Cosmos DB Indexing Policy advanced options](./media/import-data/indexingpolicy2.png)
510510

511511
> [!NOTE]
512-
> If you do not specify an indexing policy, then the default policy is applied. For more information about indexing policies, see [Azure Cosmos DB indexing policies](indexing-policies.md).
513-
>
514-
>
512+
> If you do not specify an indexing policy, then the default policy is applied. For more information about indexing policies, see [Azure Cosmos DB indexing policies](index-policy.md).
515513
516514
## Export to JSON file
517515
The Azure Cosmos DB JSON exporter allows you to export any of the available source options to a JSON file that contains an array of JSON documents. The tool handles the export for you, or you can choose to view the resulting migration command and run the command yourself. The resulting JSON file may be stored locally or in Azure Blob storage.

articles/cosmos-db/use-metrics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ In Azure Cosmos DB, the total consumed storage is the combination of both the Da
5858
ResourceResponse<DocumentCollection> collectionInfo = await client.ReadDocumentCollectionAsync(UriFactory.CreateDocumentCollectionUri("db", "coll"));
5959
Console.WriteLine("Document size quota: {0}, usage: {1}", collectionInfo.DocumentQuota, collectionInfo.DocumentUsage);
6060
```
61-
If you would like to conserve index space, you can adjust the [indexing policy](./indexing-policies.md).
61+
If you would like to conserve index space, you can adjust the [indexing policy](index-policy.md).
6262

6363
## Debugging why queries are running slow
6464

articles/machine-learning/desktop-workbench/how-to-build-deploy-text-classification-models.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ Typically, you set the parameters before you fit a model.
433433

434434
The following code samples show you how to train the model using the default pipeline and model parameters.
435435

436-
To see what parameters are included for "text_word_ngrams", use [get_step_param_names_by_name](https://docs.microsoft.com/python/api/tatk.core.base_text_model.basetextmodel). This function returns the parameters such as lowercase, input_col, output_col and so on.
436+
To see what parameters are included for "text_word_ngrams", use [get_step_param_names_by_name](/python/api/msft-tatk/tatk.core.base_text_model.basetextmodel#get-step-param-names-by-name). This function returns the parameters such as lowercase, input_col, output_col and so on.
437437

438438
```python
439439
text_classifier.get_step_param_names_by_name("text_word_ngrams")
@@ -622,7 +622,7 @@ Apply the trained text classifier on the test dataset to generate class predicti
622622
</div>
623623

624624
## Evaluate model performance
625-
The [evaluation module](https://docs.microsoft.com/python/api/tatk.evaluation) evaluates the accuracy of the trained text classifier on the test dataset. The evaluate function generates a confusion matrix and provides a macro-F1 score.
625+
The [evaluation module](/python/api/msft-tatk/tatk.evaluation) evaluates the accuracy of the trained text classifier on the test dataset. The evaluate function generates a confusion matrix and provides a macro-F1 score.
626626

627627
```python
628628
text_classifier.evaluate(df_test)

articles/marketplace/cloud-partner-portal-orig/cloud-partner-portal-manage-publisher-profile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ on your publisher profile page.
6565
>[!NOTE]
6666
>Dev Center Account registration is mandatory for publishing paid market place SKU’s.
6767
68-
If you do not have a [Developer Center Account](https://docs.microsoft.com/azure/marketplace-publishing/marketplace-publishing-accounts-creation-registration.md),
68+
If you do not have a [Developer Center Account](~/articles/marketplace-publishing/marketplace-publishing-accounts-creation-registration.md),
6969
you can create one and add the registered email address as one of the
7070
owners on the Cloud Partner Portal for your offer. An owner can only add
7171
the registered email address to your publishing profile from the

articles/sql-data-warehouse/create-data-warehouse-powershell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ To see which subscription you are using, run [Get-AzureRmSubscription](/powershe
4040
Get-AzureRmSubscription
4141
```
4242

43-
If you need to use a different subscription than the default, run [Select-AzureRmSubscription](/powershell/module/azurerm.profile/select-azurermsubscription).
43+
If you need to use a different subscription than the default, run [Set-AzureRmContext](/powershell/module/azurerm.profile/set-azurermcontext).
4444

4545
```powershell
46-
Select-AzureRmSubscription -SubscriptionName "MySubscription"
46+
Set-AzureRmContext -SubscriptionName "MySubscription"
4747
```
4848

4949

articles/virtual-machine-scale-sets/quick-create-powershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Update-AzureRmVmss `
8181

8282
## Allow traffic to application
8383

84-
To allow access to the basic web application, create a network security group with [New-AzureRmNetworkSecurityRuleConfig](/powershell/module/azurerm.compute/new-azurermnetworksecurityruleconfig) and [New-AzureRmNetworkSecurityGroup](/powershell/module/azurerm.compute/new-azurermnetworksecuritygroup). For more information, see [Networking for Azure virtual machine scale sets](virtual-machine-scale-sets-networking.md).
84+
To allow access to the basic web application, create a network security group with [New-AzureRmNetworkSecurityRuleConfig](/powershell/module/azurerm.network/new-azurermnetworksecurityruleconfig) and [New-AzureRmNetworkSecurityGroup](/powershell/module/azurerm.network/new-azurermnetworksecuritygroup). For more information, see [Networking for Azure virtual machine scale sets](virtual-machine-scale-sets-networking.md).
8585

8686
```azurepowershell-interactive
8787
# Get information about the scale set

articles/virtual-network/create-peering-different-deployment-models.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ You can use the [Azure portal](#portal), the Azure [command-line interface](#cli
7777

7878
## <a name="cli"></a>Create peering - Azure CLI
7979

80-
Complete the following steps using the Azure classic CLI and the Azure CLI. You can complete the steps from the Azure Cloud Shell, by just selecting the **Try it** button in any of the following steps, or by installing the [classic CLI](/cli/azure/install-cli-version-1.0.md?toc=%2fazure%2fvirtual-network%2ftoc.json) and [CLI](/cli/azure/install-azure-cli.md?toc=%2fazure%2fvirtual-network%2ftoc.json) and running the commands on your local computer.
80+
Complete the following steps using the Azure classic CLI and the Azure CLI. You can complete the steps from the Azure Cloud Shell, by just selecting the **Try it** button in any of the following steps, or by installing the [classic CLI](/cli/azure/install-cli-version-1.0?toc=%2fazure%2fvirtual-network%2ftoc.json) and [CLI](/cli/azure/install-azure-cli?toc=%2fazure%2fvirtual-network%2ftoc.json) and running the commands on your local computer.
8181

8282
1. If using the Cloud Shell, skip to step 2, because the Cloud Shell automatically signs you in to Azure. Open a command session and sign in to Azure using the `azure login` command.
8383
2. Run the CLI in Service Management mode by entering the `azure config mode asm` command.

0 commit comments

Comments
 (0)