Skip to content

Commit ebc02ce

Browse files
committed
Merge branch 'master' of https://github.com/MicrosoftDocs/azure-docs-pr into ds-issue31198
2 parents e3fb7e3 + 92f1cab commit ebc02ce

File tree

62 files changed

+1043
-211
lines changed

Some content is hidden

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

62 files changed

+1043
-211
lines changed

articles/ansible/ansible-aks-configure-rbac.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ subjects:
151151
name: <your-aad-account>
152152
```
153153

154-
Replace the `&lt;your-aad-account>` placeholder with your Azure AD tenant [Object ID](#get-the-azure-ad-object-id).
154+
Replace the `<your-aad-account>` placeholder with your Azure AD tenant [Object ID](#get-the-azure-ad-object-id).
155155

156156
Save the following playbook - that deploys your new role to AKS - as `aks-kube-deploy.yml`:
157157

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ When running in a Premium plan, you can connect non-HTTP trigger functions to se
131131
You can also enable virtual network triggers using the following Azure CLI command:
132132

133133
```azurecli-interactive
134-
az resource update -g <resource_group> -n <premium_plan_name> --set properties.functionsRuntimeScaleMonitoringEnabled=1
134+
az resource update -g <resource_group> -n <function_app_name>/config/web --set properties.functionsRuntimeScaleMonitoringEnabled=1 --resource-type Microsoft.Web/sites
135135
```
136136

137137
Virtual network triggers are supported in version 2.x and above of the Functions runtime. The following non-HTTP trigger types are supported.

articles/cognitive-services/QnAMaker/Tutorials/create-publish-query-in-portal.md

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,8 @@
11
---
22
title: "Tutorial: Create, publish, and answer in QnA Maker"
3-
titleSuffix: Azure Cognitive Services
43
description: This tutorial shows how to create a new knowledge base with questions and answers from a public web-based FAQ. Save, train, and publish the knowledge base. After the knowledge base is published, send a question and receive an answer with a cURL command. Then create a bot, and test the bot with the same question.
5-
services: cognitive-services
6-
author: diberry
7-
manager: nitinme
8-
ms.custom: seodec18
9-
ms.service: cognitive-services
10-
ms.subservice: qna-maker
114
ms.topic: tutorial
12-
ms.date: 10/14/2019
13-
ms.author: diberry
5+
ms.date: 01/28/2020
146
#Customer intent: As an model designer, new to the QnA Maker service, I want to understand all the process requirements to create a knowledge base and generate an answer from that knowledge base.
157
---
168

@@ -41,7 +33,8 @@ This tutorial requires an existing [QnA Maker service](../How-To/set-up-qnamaker
4133

4234
1. Select **Create a knowledge base** from the top menu.
4335

44-
![Screenshot of QnA Maker portal](../media/qnamaker-tutorial-create-publish-query-in-portal/create-kb-step-1.png)
36+
> [!div class="mx-imgBorder"]
37+
> ![Screenshot of QnA Maker portal](../media/qnamaker-tutorial-create-publish-query-in-portal/create-kb-step-1.png)
4538
4639
1. Skip the first step, because you will use your existing QnA Maker service.
4740

@@ -52,32 +45,40 @@ This tutorial requires an existing [QnA Maker service](../How-To/set-up-qnamaker
5245
|Microsoft Azure Directory ID|This ID is associated with the account you use to sign into the Azure portal and the QnA Maker portal. |
5346
|Azure Subscription name|The billing account in which you created the QnA Maker resource.|
5447
|Azure QnA Service|Your existing QnA Maker resource.|
48+
|Language|Language used for all knowledge bases in service. Do not mix languages in a single resource. That will harm answer quality.|
5549

56-
![Screenshot of QnA Maker portal](../media/qnamaker-tutorial-create-publish-query-in-portal/create-kb-step-2.png)
50+
> [!div class="mx-imgBorder"]
51+
> ![Screenshot of QnA Maker portal](../media/qnamaker-tutorial-create-publish-query-in-portal/create-kb-step-2.png)
5752
5853
1. Enter your knowledge base name, `My Tutorial kb`.
5954

60-
![Screenshot of QnA Maker portal](../media/qnamaker-tutorial-create-publish-query-in-portal/create-kb-step-3.png)
55+
> [!div class="mx-imgBorder"]
56+
> ![Screenshot of QnA Maker portal](../media/qnamaker-tutorial-create-publish-query-in-portal/create-kb-step-3.png)
6157
6258
1. Populate your knowledge base with the following settings:
6359

6460
|Setting name|Setting value|Purpose|
6561
|--|--|--|
62+
|Enable multi-turn extraction|Checked|Allows for follow-up prompts.|
63+
|Default answer text|`No good answer was found.`|Returned when there is no match to the question.|
6664
|URL|`https://docs.microsoft.com/azure/cognitive-services/qnamaker/faqs` |The contents of the FAQ at that URL are formatted with a question followed by an answer. QnA Maker can interpret this format to extract questions and the associated answers.|
6765
|File |_not used in this tutorial_|This uploads files for questions and answers. |
6866
|Chit-chat personality|Friendly|This gives a friendly and casual [personality](../Concepts/best-practices.md#chit-chat) to common questions and answers. You can edit these questions and answers later. |
6967

70-
![Screenshot of QnA Maker portal](../media/qnamaker-tutorial-create-publish-query-in-portal/create-kb-step-4.png)
68+
> [!div class="mx-imgBorder"]
69+
> ![Screenshot of QnA Maker portal](../media/qnamaker-tutorial-create-publish-query-in-portal/create-kb-step-4.png)
7170
7271
1. Select **Create your KB** to finish the creation process.
7372

74-
![Screenshot of QnA Maker portal](../media/qnamaker-tutorial-create-publish-query-in-portal/create-kb-step-5.png)
73+
> [!div class="mx-imgBorder"]
74+
> ![Screenshot of QnA Maker portal](../media/qnamaker-tutorial-create-publish-query-in-portal/create-kb-step-5.png)
7575
7676
## Review, save, and train the knowledge base
7777

7878
1. Review the questions and answers. The first page is questions and answers from the URL.
7979

80-
![Screenshot of QnA Maker portal](../media/qnamaker-tutorial-create-publish-query-in-portal/save-and-train-kb.png)
80+
> [!div class="mx-imgBorder"]
81+
> ![Screenshot of QnA Maker portal](../media/qnamaker-tutorial-create-publish-query-in-portal/save-and-train-kb.png)
8182
8283
1. Select the last page of questions and answers from the bottom of the table. The page shows questions and answers from the Chit-chat personality.
8384

3.45 KB
Loading
-1.2 KB
Loading
229 Bytes
Loading
Loading
1.56 KB
Loading
Loading

articles/cost-management-billing/reservations/save-compute-costs-reservations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.author: banders
1111

1212
# What are Azure Reservations?
1313

14-
Azure Reservations help you save money by committing to one-year or three-years plans for virtual machines, Azure Blob storage or Azure Data Lake Storage Gen2, SQL Database compute capacity, Azure Cosmos DB throughput, or other Azure resources. Committing allows you to get a discount on the resources you use. Reservations can significantly reduce your resource costs up to 72% on pay-as-you-go prices. Reservations provide a billing discount and don't affect the runtime state of your resources.
14+
Azure Reservations help you save money by committing to one-year or three-years plans for virtual machines, Azure Blob storage or Azure Data Lake Storage Gen2, SQL Database compute capacity, Azure Disk Storage, Azure Cosmos DB throughput, or other Azure resources. Committing allows you to get a discount on the resources you use. Reservations can significantly reduce your resource costs up to 72% on pay-as-you-go prices. Reservations provide a billing discount and don't affect the runtime state of your resources.
1515

1616
You can pay for a reservation up front or monthly. The total cost of up-front and monthly reservations is the same and you don't pay any extra fees when you choose to pay monthly. Monthly payment is available for Azure reservations, not third party products.
1717

@@ -27,6 +27,7 @@ Service plans:
2727

2828
- **Reserved Virtual Machine Instance** - A reservation only covers the virtual machine compute costs. It doesn't cover additional software, networking, or storage charges.
2929
- **Azure Storage reserved capacity** - A reservation covers storage capacity for standard storage accounts for Blob storage or Azure Data Lake Gen2 storage. The reservation does not cover bandwidth or transaction rates.
30+
- **Azure Disk Storage reservations** - A reservation only covers premium SSDs of P30 size or greater. It does not cover any other disk types or sizes smaller than P30.
3031
- **Azure Cosmos DB reserved capacity** - A reservation covers throughput provisioned for your resources. It doesn't cover the storage and networking charges.
3132
- **SQL Database reserved vCore** - Only the compute costs are included with a reservation. The license is billed separately.
3233
- **SQL Data Warehouse** - A reservation covers cDWU usage. It doesn't cover storage or networking charges associated with the SQL Data Warehouse usage.
@@ -35,7 +36,6 @@ Service plans:
3536
- Azure Database for PostgreSQL
3637
- Azure Database for MariaDB
3738
- Azure Data Explorer
38-
- Premium SSD Managed Disks
3939

4040

4141
For Windows virtual machines and SQL Database, you can cover the licensing costs with [Azure Hybrid Benefit](https://azure.microsoft.com/pricing/hybrid-benefit/).

0 commit comments

Comments
 (0)