Skip to content

Commit 7acf01a

Browse files
committed
fix merge conflicts and pull down master
2 parents 2d48426 + 82a8cd1 commit 7acf01a

37 files changed

+112
-78
lines changed

.openpublishing.redirection.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5770,6 +5770,16 @@
57705770
"redirect_url": "/azure/cosmos-db/sql-api-get-started",
57715771
"redirect_document_id": false
57725772
},
5773+
{
5774+
"source_path": "articles/cosmos-db/sql-api-index.md",
5775+
"redirect_url": "/azure/cosmos-db/sql-api-introduction",
5776+
"redirect_document_id": false
5777+
},
5778+
{
5779+
"source_path": "articles/cosmos-db/mongodb-index.md",
5780+
"redirect_url": "/azure/cosmos-db/mongodb-introduction",
5781+
"redirect_document_id": false
5782+
},
57735783
{
57745784
"source_path": "articles/cosmos-db/documentdb-index.md",
57755785
"redirect_url": "/azure/cosmos-db/sql-api-index",
@@ -21980,6 +21990,11 @@
2198021990
"source_path": "articles/cognitive-services/LUIS/App-Dashboard.md",
2198121991
"redirect_url": "/azure/cognitive-services/LUIS/luis-how-to-use-dashboard",
2198221992
"redirect_document_id": true
21993+
},
21994+
{
21995+
"source_path": "articles/cognitive-services/LUIS/Add-entities.md",
21996+
"redirect_url": "/azure/cognitive-services/LUIS/luis-how-to-add-entities",
21997+
"redirect_document_id": true
2198321998
}
2198421999
]
2198522000
}

articles/active-directory/managed-service-identity/services-support-msi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The following Azure services support Managed Service Identity.
2626
| Azure Functions | Preview | September 2017 | [Azure portal](/azure/app-service/app-service-managed-service-identity#using-the-azure-portal)<br>[Azure Resource Manager template](/azure/app-service/app-service-managed-service-identity#using-an-azure-resource-manager-template) | [.NET](/azure/app-service/app-service-managed-service-identity#asal)<br>[REST](/azure/app-service/app-service-managed-service-identity#using-the-rest-protocol) |
2727
| Azure Data Factory V2 | Preview | November 2017 | [Azure portal](~/articles/data-factory/data-factory-service-identity.md#generate-service-identity)<br>[PowerShell](~/articles/data-factory/data-factory-service-identity.md#generate-service-identity-using-powershell)<br>[REST](~/articles/data-factory/data-factory-service-identity.md#generate-service-identity-using-rest-api)<br>[SDK](~/articles/data-factory/data-factory-service-identity.md#generate-service-identity-using-sdk) |
2828
| Azure API Management | Preview | October 2017 | [Azure Resource Manager template](/azure/api-management/api-management-howto-use-managed-service-identity) |
29-
| Azure Storage | Preview | May 2018 | [Azure portal](/azure/storage/common/storage-auth-aad.md)<br>[PowerShell](/azure/storage/common/storage-auth-aad.md)<br>[Azure CLI](/azure/storage/common/storage-auth-aad.md) | [REST](https://docs.microsoft.com/rest/api/storageservices/authenticate-with-azure-active-directory)<br>[.NET](/azure/storage/common/storage-auth-aad-app.md)<br>[Java](/azure/storage/common/storage-auth-aad.md)<br>[Python](/azure/storage/common/storage-auth-aad.md) |
29+
| Azure Storage | Preview | May 2018 | [Azure portal](/azure/storage/common/storage-auth-aad)<br>[PowerShell](/azure/storage/common/storage-auth-aad)<br>[Azure CLI](/azure/storage/common/storage-auth-aad) | [REST](https://docs.microsoft.com/rest/api/storageservices/authenticate-with-azure-active-directory)<br>[.NET](/azure/storage/common/storage-auth-aad-app)<br>[Java](/azure/storage/common/storage-auth-aad)<br>[Python](/azure/storage/common/storage-auth-aad) |
3030

3131
## Azure services that support Azure AD authentication
3232

articles/azure-functions/deployment-zip-push.md

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.devlang: multiple
1313
ms.topic: article
1414
ms.tgt_pltfrm: multiple
1515
ms.workload: na
16-
ms.date: 12/06/2017
16+
ms.date: 05/29/2018
1717
ms.author: glenga
1818

1919
---
@@ -45,15 +45,25 @@ The .zip file that you use for push deployment must contain all of the project f
4545

4646
When you are developing on a local computer, it's easy to create a .zip file of the function app project folder on your development computer.
4747

48-
However, you might have created your functions by using the editor in the Azure portal. To download your function app project from the portal:
48+
However, you might have created your functions by using the editor in the Azure portal. You can download an existing function app project in one of these ways:
4949

50-
1. Sign in to the [Azure portal](https://portal.azure.com), and then go to your function app.
50+
+ **From the Azure portal:**
5151

52-
2. On the **Overview** tab, select **Download app content**. Select your download options, and then select **Download**.
52+
1. Sign in to the [Azure portal](https://portal.azure.com), and then go to your function app.
5353

54-
![Download the function app project](./media/deployment-zip-push/download-project.png)
54+
2. On the **Overview** tab, select **Download app content**. Select your download options, and then select **Download**.
5555

56-
The downloaded .zip file is in the correct format to be republished to your function app by using .zip push deployment.
56+
![Download the function app project](./media/deployment-zip-push/download-project.png)
57+
58+
The downloaded .zip file is in the correct format to be republished to your function app by using .zip push deployment. The portal download can also add the files needed to open your function app directly in Visual Studio.
59+
60+
+ **Using REST APIs:**
61+
62+
Use the following deployment GET API to download the files from your `<function_app>` project:
63+
64+
https://<function_app>.scm.azurewebsites.net/api/zip/site/wwwroot/
65+
66+
Including `/site/wwwroot/` makes sure your zip file includes only the function app project files and not the entire site. If you are not already signed in to Azure, you will be asked to do so. Note that sending a POST request to the `api/zip/` API is discoraged in favor of the zip deployment method described in this topic.
5767

5868
You can also download a .zip file from a GitHub repository. Keep in mind that when you download a GitHub repository as a .zip file, GitHub adds an extra folder level for the branch. This extra folder level means that you can't deploy the .zip file directly as you downloaded it from GitHub. If you're using a GitHub repository to maintain your function app, you should use [continuous integration](functions-continuous-deployment.md) to deploy your app.
5969

articles/cognitive-services/LUIS/Add-example-utterances.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ms.author: v-geberr
1616

1717
Utterances are examples of user questions or commands. To teach Language Understanding (LUIS), you need to add [example utterances](luis-concept-utterance.md) to an [intent](luis-concept-intent.md).
1818

19-
Generally, you add an utterance first, and then you create entities and label utterances on the intent page. If you would rather create entities first, see [Add entities](Add-entities.md).
19+
Generally, you add an utterance first, and then you create entities and label utterances on the intent page. If you would rather create entities first, see [Add entities](luis-how-to-add-entities.md).
2020

2121
## Add an utterance
2222
On an intent page, enter a relevant utterance you expect from your users, such as `book 2 adult business tickets to Paris tomorrow on Air France` in the text box below the intent name, and then press Enter.
@@ -75,7 +75,7 @@ For example, if you wanted to create a list of types of drink and you selected t
7575

7676
![Screenshot of What type of entity do you want to create dialog box](./media/add-example-utterances/drink-list-ddl.png)
7777

78-
This list of drinks has only one drink type, water. You can add more drink types by labeling other utterances, or by editing the entity from the **Entities** in the left navigation. [Editing](add-entities.md#add-list-entities) the entities gives you the options of entering additional items with corresponding synonyms or [importing](add-entities.md#import-list-entity-values) a list.
78+
This list of drinks has only one drink type, water. You can add more drink types by labeling other utterances, or by editing the entity from the **Entities** in the left navigation. [Editing](luis-how-to-add-entities.md#add-list-entities) the entities gives you the options of entering additional items with corresponding synonyms or [importing](luis-how-to-add-entities.md#import-list-entity-values) a list.
7979

8080
See [Data Extraction](luis-concept-data-extraction.md#list-entity-data) to learn more about extracting list entities from the endpoint JSON query response. Try the [quickstart](luis-quickstart-intent-and-list-entity.md) to learn more about how to use a list entity.
8181

@@ -102,7 +102,7 @@ Composite entities are created from **Entities**. You can't create a composite e
102102

103103
Assuming the utterance, `book 2 tickets from Seattle to Cairo`, a composite utterance can return entity information of the count of tickets (2), the origin (Seattle), and destination (Cairo) locations in a single parent entity.
104104

105-
Follow these [steps](Add-entities.md#add-prebuilt-entity) to add the **number** prebuilt entity. After the entity is created, the `2` in the utterance is blue, indicating it is a labeled entity. Prebuilt entities are labeled by LUIS. You can't add or remove the prebuilt entity label from a single utterance. You can only add or remove all the prebuilt labels by adding or removing the prebuilt entity from the application.
105+
Follow these [steps](luis-how-to-add-entities.md#add-prebuilt-entity) to add the **number** prebuilt entity. After the entity is created, the `2` in the utterance is blue, indicating it is a labeled entity. Prebuilt entities are labeled by LUIS. You can't add or remove the prebuilt entity label from a single utterance. You can only add or remove all the prebuilt labels by adding or removing the prebuilt entity from the application.
106106

107107
Follow these [steps](#add-hierarchical-entity-and-label) to create a **Location** hierarchical entity. Label the origin and destination locations in the example utterance.
108108

@@ -161,16 +161,16 @@ To remove a machine-learned entity label from an utterance, select the entity in
161161
![Screenshot of Intents details page, with Remove Label highlighted](./media/add-example-utterances/remove-label.png)
162162

163163
## Add prebuilt entity label
164-
If you add the prebuilt entities to your LUIS app, you don't need to label utterances with these entities. To learn more about prebuilt entities and how to add them, see [Add entities](Add-entities.md#add-prebuilt-entity).
164+
If you add the prebuilt entities to your LUIS app, you don't need to label utterances with these entities. To learn more about prebuilt entities and how to add them, see [Add entities](luis-how-to-add-entities.md#add-prebuilt-entity).
165165

166166
## Add regular expression entity label
167-
If you add the regular expression entities to your LUIS app, you don't need to label utterances with these entities. To learn more about regular expression entities and how to add them, see [Add entities](Add-entities.md#add-regular-expression-entities).
167+
If you add the regular expression entities to your LUIS app, you don't need to label utterances with these entities. To learn more about regular expression entities and how to add them, see [Add entities](luis-how-to-add-entities.md#add-regular-expression-entities).
168168

169169
## Create a pattern from an utterance
170170
See [Add pattern from existing utterance on intent or entity page](luis-how-to-model-intent-pattern.md#add-pattern-from-existing-utterance-on-intent-or-entity-page).
171171

172172
## Add pattern.any entity label
173-
If you add the pattern.any entities to your LUIS app, you can't label utterances with these entities. They are only valid in patterns. To learn more about pattern.any entities and how to add them, see [Add entities](Add-entities.md#add-patternany-entities).
173+
If you add the pattern.any entities to your LUIS app, you can't label utterances with these entities. They are only valid in patterns. To learn more about pattern.any entities and how to add them, see [Add entities](luis-how-to-add-entities.md#add-patternany-entities).
174174

175175
<!--
176176
Fix this - moved to add-intents.md - how ?
@@ -190,4 +190,4 @@ After you add, edit, or remove utterances, [train](luis-how-to-train.md) and [pu
190190

191191
## Next steps
192192

193-
After labeling utterances in your intents, you can now create a [composite entity](Add-entities.md).
193+
After labeling utterances in your intents, you can now create a [composite entity](luis-how-to-add-entities.md).

articles/cognitive-services/LUIS/Home.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Create a [new LUIS app](LUIS-get-started-create-app.md).
128128
[flow]:https://docs.microsoft.com/connectors/luis/
129129
[entity-concept]:luis-concept-entity-types.md
130130
[add-intents]:Add-intents.md
131-
[add-entities]:Add-entities.md
131+
[add-entities]:luis-how-to-add-entities.md
132132
[authoring-apis]:https://aka.ms/luis-authoring-api
133133
[endpoint-apis]:https://aka.ms/luis-endpoint-apis
134134
[LUIS]:luis-reference-regions.md

articles/cognitive-services/LUIS/luis-concept-data-extraction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -704,6 +704,6 @@ The LUIS endpoint can discover the same data in different entities:
704704

705705
## Next steps
706706

707-
See [Add entities](Add-entities.md) to learn more about how to add entities to your LUIS app.
707+
See [Add entities](luis-how-to-add-entities.md) to learn more about how to add entities to your LUIS app.
708708

709709
[LUIS]:luis-reference-regions.md

articles/cognitive-services/LUIS/luis-concept-entity-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,6 @@ See [best practices](luis-concept-best-practices.md) for more information.
206206

207207
Learn concepts about good [utterances](luis-concept-utterance.md).
208208

209-
See [Add entities](Add-entities.md) to learn more about how to add entities to your LUIS app.
209+
See [Add entities](luis-how-to-add-entities.md) to learn more about how to add entities to your LUIS app.
210210

211211
[LUIS]:luis-reference-regions.md#luis-website

articles/cognitive-services/LUIS/luis-concept-prediction-score.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@ If your chat bot requires a specific LUIS score to indicate confidence in an int
5555

5656
## Next steps
5757

58-
See [Add entities](Add-entities.md) to learn more about how to add entities to your LUIS app.
58+
See [Add entities](luis-how-to-add-entities.md) to learn more about how to add entities to your LUIS app.
5959

6060
[LUIS]:luis-reference-regions.md

articles/cognitive-services/LUIS/luis-concept-roles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ The entity and role are surrounded in parentheses, `{}`. The entity and the role
3535

3636
## Next steps
3737

38-
* Learn how to add [roles](add-entities.md#add-role-to-pattern-based-entity)
38+
* Learn how to add [roles](luis-how-to-add-entities.md#add-role-to-pattern-based-entity)
File renamed without changes.

0 commit comments

Comments
 (0)