Skip to content

Commit f8d3c76

Browse files
authored
Merge branch 'master' into fixwarn1
2 parents f0623fa + 971237e commit f8d3c76

27 files changed

+138
-114
lines changed

articles/active-directory/reports-monitoring/concept-sign-ins.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.topic: conceptual
1414
ms.tgt_pltfrm: na
1515
ms.workload: identity
1616
ms.subservice: report-monitor
17-
ms.date: 02/26/2020
17+
ms.date: 03/24/2020
1818
ms.author: markvi
1919
ms.reviewer: dhanyahk
2020

@@ -43,7 +43,11 @@ This article gives you an overview of the sign-ins report.
4343

4444
### What Azure AD license do you need to access sign-in activity?
4545

46-
* Your tenant must have an Azure AD Premium license associated with it to see the all up sign-in activity report. See [Getting started with Azure Active Directory Premium](../fundamentals/active-directory-get-started-premium.md) to upgrade your Azure Active Directory edition. It will take a couple of days for the data to show up in the reports after you upgrade to a premium license with no data activities before the upgrade.
46+
- The sign-in activity report is available in all editions of Azure AD.
47+
48+
- If you want to access the sign-in data using an API, your tenant must have an [Azure Active Directory Premium](../fundamentals/active-directory-get-started-premium.md) license associated with it.
49+
50+
4751

4852
## Sign-ins report
4953

articles/azure-databricks/TOC.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1769,16 +1769,16 @@
17691769
href: /azure/databricks/release-notes/runtime/supported
17701770
maintainContext: true
17711771
- name: Databricks Runtime 7.0 (Beta)
1772-
href: /azure/databricks/release-notes/runtime/7.0.md
1772+
href: /azure/databricks/release-notes/runtime/7.0
17731773
maintainContext: true
17741774
- name: Databricks Runtime 6.5 (Beta)
1775-
href: /azure/databricks/release-notes/runtime/6.5.md
1775+
href: /azure/databricks/release-notes/runtime/6.5
17761776
maintainContext: true
17771777
- name: Databricks Runtime 6.5 ML (Beta)
1778-
href: /azure/databricks/release-notes/runtime/6.5ml.md
1778+
href: /azure/databricks/release-notes/runtime/6.5ml
17791779
maintainContext: true
17801780
- name: Databricks Runtime 6.5 Genomics (Beta)
1781-
href: /azure/databricks/release-notes/runtime/6.5genomics.md
1781+
href: /azure/databricks/release-notes/runtime/6.5genomics
17821782
maintainContext: true
17831783
- name: Databricks Runtime 6.4
17841784
href: /azure/databricks/release-notes/runtime/6.4

articles/azure-functions/functions-monitoring.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -440,6 +440,8 @@ namespace functionapp0915
440440
}
441441
```
442442

443+
[GetMetric](../azure-monitor/app/api-custom-events-metrics.md#getmetric) is the currently recommended API for creating a metric.
444+
443445
### Version 1.x
444446

445447
```cs

articles/azure-resource-manager/templates/template-tutorial-create-encrypted-storage-accounts.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ ms.author: jgao
88
ms.custom: seodec18
99
---
1010

11-
# Tutorial: Utilize the Azure Resource Manager template reference
11+
# Tutorial: Utilize the ARM template reference
1212

13-
Learn how to find the template schema information, and use the information to create Azure Resource Manager templates.
13+
Learn how to find the template schema information, and use the information to create Azure Resource Manager (ARM) templates.
1414

1515
In this tutorial, you use a base template from Azure Quickstart templates. Using template reference documentation, you customize the template to create an encrypted Storage account.
1616

@@ -31,11 +31,11 @@ If you don't have an Azure subscription, [create a free account](https://azure.m
3131

3232
To complete this article, you need:
3333

34-
* Visual Studio Code with Resource Manager Tools extension. See [Use Visual Studio Code to create Azure Resource Manager templates](use-vs-code-to-create-template.md).
34+
* Visual Studio Code with Resource Manager Tools extension. See [Use Visual Studio Code to create ARM templates](use-vs-code-to-create-template.md).
3535

3636
## Open a Quickstart template
3737

38-
[Azure QuickStart Templates](https://azure.microsoft.com/resources/templates/) is a repository for Resource Manager templates. Instead of creating a template from scratch, you can find a sample template and customize it. The template used in this quickstart is called [Create a standard storage account](https://azure.microsoft.com/resources/templates/101-storage-account-create/). The template defines an Azure Storage account resource.
38+
[Azure QuickStart Templates](https://azure.microsoft.com/resources/templates/) is a repository for ARM templates. Instead of creating a template from scratch, you can find a sample template and customize it. The template used in this quickstart is called [Create a standard storage account](https://azure.microsoft.com/resources/templates/101-storage-account-create/). The template defines an Azure Storage account resource.
3939

4040
1. From Visual Studio Code, select **File**>**Open File**.
4141
2. In **File name**, paste the following URL:

articles/azure-resource-manager/templates/template-tutorial-create-linked-templates.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ ms.topic: tutorial
77
ms.author: jgao
88
---
99

10-
# Tutorial: Create linked Azure Resource Manager templates
10+
# Tutorial: Create linked ARM templates
1111

12-
Learn how to create linked Azure Resource Manager templates. Using linked templates, you can have one template call another template. It is great for modularizing templates. In this tutorial, you use the same template used in [Tutorial: Create Azure Resource Manager templates with dependent resources](./template-tutorial-create-templates-with-dependent-resources.md), which creates a virtual machine, a virtual network, and other dependent resource including a storage account. You separate the storage account resource creation to a linked template.
12+
Learn how to create linked Azure Resource Manager (ARM) templates. Using linked templates, you can have one template call another template. It is great for modularizing templates. In this tutorial, you use the same template used in [Tutorial: Create ARM templates with dependent resources](./template-tutorial-create-templates-with-dependent-resources.md), which creates a virtual machine, a virtual network, and other dependent resource including a storage account. You separate the storage account resource creation to a linked template.
1313

1414
Calling a linked template is like making a function call. You also learn how to pass parameter values to the linked template, and how to get "return values" from the linked template.
1515

@@ -34,18 +34,18 @@ If you don't have an Azure subscription, [create a free account](https://azure.m
3434

3535
To complete this article, you need:
3636

37-
* Visual Studio Code with Resource Manager Tools extension. See [Use Visual Studio Code to create Azure Resource Manager templates](use-vs-code-to-create-template.md).
37+
* Visual Studio Code with Resource Manager Tools extension. See [Use Visual Studio Code to create ARM templates](use-vs-code-to-create-template.md).
3838
* To increase security, use a generated password for the virtual machine administrator account. Here is a sample for generating a password:
3939

4040
```console
4141
openssl rand -base64 32
4242
```
4343

44-
Azure Key Vault is designed to safeguard cryptographic keys and other secrets. For more information, see [Tutorial: Integrate Azure Key Vault in Resource Manager Template deployment](./template-tutorial-use-key-vault.md). We also recommend you to update your password every three months.
44+
Azure Key Vault is designed to safeguard cryptographic keys and other secrets. For more information, see [Tutorial: Integrate Azure Key Vault in ARM template deployment](./template-tutorial-use-key-vault.md). We also recommend you to update your password every three months.
4545

4646
## Open a Quickstart template
4747

48-
Azure QuickStart Templates is a repository for Resource Manager templates. Instead of creating a template from scratch, you can find a sample template and customize it. The template used in this tutorial is called [Deploy a simple Windows VM](https://azure.microsoft.com/resources/templates/101-vm-simple-windows/). This is the same template used in [Tutorial: Create Azure Resource Manager templates with dependent resources](./template-tutorial-create-templates-with-dependent-resources.md). You save two copies of the same template to be used as:
48+
Azure QuickStart Templates is a repository for ARM templates. Instead of creating a template from scratch, you can find a sample template and customize it. The template used in this tutorial is called [Deploy a simple Windows VM](https://azure.microsoft.com/resources/templates/101-vm-simple-windows/). This is the same template used in [Tutorial: Create ARM templates with dependent resources](./template-tutorial-create-templates-with-dependent-resources.md). You save two copies of the same template to be used as:
4949

5050
* **The main template**: create all the resources except the storage account.
5151
* **The linked template**: create the storage account.
@@ -160,7 +160,7 @@ The linked template creates a storage account. The linked template can be used a
160160

161161
## Upload the linked template
162162

163-
The main template and the linked template need to be accessible from where you run the deployment. In this tutorial, you use the Cloud shell deployment method as you used in [Tutorial: Create Azure Resource Manager templates with dependent resources](./template-tutorial-create-templates-with-dependent-resources.md). The main template (azuredeploy.json) is uploaded to the shell. The linked template (linkedTemplate.json) must be shared somewhere securely. The following PowerShell script creates an Azure Storage account, uploads the template to the Storage account, and then generates a SAS token to grant limited access to the template file. To simplify the tutorial, the script downloads a completed linked template from a GitHub repository. If you want to use the linked template you created, you can use the [Cloud shell](https://shell.azure.com) to upload your linked template, and then modify the script to use your own linked template.
163+
The main template and the linked template need to be accessible from where you run the deployment. In this tutorial, you use the Cloud shell deployment method as you used in [Tutorial: Create ARM templates with dependent resources](./template-tutorial-create-templates-with-dependent-resources.md). The main template (azuredeploy.json) is uploaded to the shell. The linked template (linkedTemplate.json) must be shared somewhere securely. The following PowerShell script creates an Azure Storage account, uploads the template to the Storage account, and then generates a SAS token to grant limited access to the template file. To simplify the tutorial, the script downloads a completed linked template from a GitHub repository. If you want to use the linked template you created, you can use the [Cloud shell](https://shell.azure.com) to upload your linked template, and then modify the script to use your own linked template.
164164

165165
> [!NOTE]
166166
> The script limits the SAS token to be used within eight hours. If you need more time to complete this tutorial, increase the expiry time.
@@ -261,7 +261,7 @@ The main template is called azuredeploy.json.
261261

262262
## Configure dependency
263263

264-
Recall from [Tutorial: Create Azure Resource Manager templates with dependent resources](./template-tutorial-create-templates-with-dependent-resources.md), the virtual machine resource depends on the storage account:
264+
Recall from [Tutorial: Create ARM templates with dependent resources](./template-tutorial-create-templates-with-dependent-resources.md), the virtual machine resource depends on the storage account:
265265

266266
![Azure Resource Manager templates dependency diagram](./media/template-tutorial-create-linked-templates/resource-manager-template-visual-studio-code-dependency-diagram.png)
267267

articles/azure-resource-manager/templates/template-tutorial-create-multiple-instances.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ ms.topic: tutorial
77
ms.author: jgao
88
---
99

10-
# Tutorial: Create multiple resource instances with Resource Manager templates
10+
# Tutorial: Create multiple resource instances with ARM templates
1111

12-
Learn how to iterate in your Azure Resource Manager template to create multiple instances of an Azure resource. In this tutorial, you modify a template to create three storage account instances.
12+
Learn how to iterate in your Azure Resource Manager (ARM) template to create multiple instances of an Azure resource. In this tutorial, you modify a template to create three storage account instances.
1313

1414
![Azure Resource Manager creates multiple instances diagram](./media/template-tutorial-create-multiple-instances/resource-manager-template-create-multiple-instances-diagram.png)
1515

@@ -26,11 +26,11 @@ If you don't have an Azure subscription, [create a free account](https://azure.m
2626

2727
To complete this article, you need:
2828

29-
* Visual Studio Code with Resource Manager Tools extension. See [Use Visual Studio Code to create Azure Resource Manager templates](use-vs-code-to-create-template.md).
29+
* Visual Studio Code with Resource Manager Tools extension. See [Use Visual Studio Code to create ARM templates](use-vs-code-to-create-template.md).
3030

3131
## Open a Quickstart template
3232

33-
[Azure QuickStart Templates](https://azure.microsoft.com/resources/templates/) is a repository for Resource Manager templates. Instead of creating a template from scratch, you can find a sample template and customize it. The template used in this quickstart is called [Create a standard storage account](https://azure.microsoft.com/resources/templates/101-storage-account-create/). The template defines an Azure Storage account resource.
33+
[Azure QuickStart Templates](https://azure.microsoft.com/resources/templates/) is a repository for ARM templates. Instead of creating a template from scratch, you can find a sample template and customize it. The template used in this quickstart is called [Create a standard storage account](https://azure.microsoft.com/resources/templates/101-storage-account-create/). The template defines an Azure Storage account resource.
3434

3535
1. From Visual Studio Code, select **File**>**Open File**.
3636
2. In **File name**, paste the following URL:
@@ -103,7 +103,7 @@ The completed template looks like:
103103
}
104104
```
105105
106-
For more information about creating multiple instances, see [Deploy multiple instances of a resource or property in Azure Resource Manager Templates](./copy-resources.md)
106+
For more information about creating multiple instances, see [Deploy multiple instances of a resource or property in ARM templates](./copy-resources.md)
107107
108108
## Deploy the template
109109

articles/azure-resource-manager/templates/template-tutorial-create-templates-with-dependent-resources.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ ms.topic: tutorial
77
ms.author: jgao
88
---
99

10-
# Tutorial: Create Azure Resource Manager templates with dependent resources
10+
# Tutorial: Create ARM templates with dependent resources
1111

12-
Learn how to create an Azure Resource Manager template to deploy multiple resources and configure the deployment order. After you create the template, you deploy the template using the Cloud shell from the Azure portal.
12+
Learn how to create an Azure Resource Manager (ARM) template to deploy multiple resources and configure the deployment order. After you create the template, you deploy the template using the Cloud shell from the Azure portal.
1313

14-
In this tutorial, you create a storage account, a virtual machine, a virtual network, and some other dependent resources. Some of the resources cannot be deployed until another resource exists. For example, you can't create the virtual machine until its storage account and network interface exist. You define this relationship by making one resource as dependent on the other resources. Resource Manager evaluates the dependencies between resources, and deploys them in their dependent order. When resources aren't dependent on each other, Resource Manager deploys them in parallel. For more information, see [Define the order for deploying resources in Azure Resource Manager Templates](./define-resource-dependency.md).
14+
In this tutorial, you create a storage account, a virtual machine, a virtual network, and some other dependent resources. Some of the resources cannot be deployed until another resource exists. For example, you can't create the virtual machine until its storage account and network interface exist. You define this relationship by making one resource as dependent on the other resources. Resource Manager evaluates the dependencies between resources, and deploys them in their dependent order. When resources aren't dependent on each other, Resource Manager deploys them in parallel. For more information, see [Define the order for deploying resources in ARM templates](./define-resource-dependency.md).
1515

1616
![Resource Manager template dependent resources deployment order diagram](./media/template-tutorial-create-templates-with-dependent-resources/resource-manager-template-dependent-resources-diagram.png)
1717

@@ -28,17 +28,17 @@ If you don't have an Azure subscription, [create a free account](https://azure.m
2828

2929
To complete this article, you need:
3030

31-
* Visual Studio Code with Resource Manager Tools extension. See [Use Visual Studio Code to create Azure Resource Manager templates](use-vs-code-to-create-template.md).
31+
* Visual Studio Code with Resource Manager Tools extension. See [Use Visual Studio Code to create ARM templates](use-vs-code-to-create-template.md).
3232
* To increase security, use a generated password for the virtual machine administrator account. Here is a sample for generating a password:
3333

3434
```console
3535
openssl rand -base64 32
3636
```
37-
Azure Key Vault is designed to safeguard cryptographic keys and other secrets. For more information, see [Tutorial: Integrate Azure Key Vault in Resource Manager Template deployment](./template-tutorial-use-key-vault.md). We also recommend you to update your password every three months.
37+
Azure Key Vault is designed to safeguard cryptographic keys and other secrets. For more information, see [Tutorial: Integrate Azure Key Vault in ARM template deployment](./template-tutorial-use-key-vault.md). We also recommend you to update your password every three months.
3838

3939
## Open a Quickstart template
4040

41-
Azure QuickStart Templates is a repository for Resource Manager templates. Instead of creating a template from scratch, you can find a sample template and customize it. The template used in this tutorial is called [Deploy a simple Windows VM](https://azure.microsoft.com/resources/templates/101-vm-simple-windows/).
41+
Azure QuickStart Templates is a repository for ARM templates. Instead of creating a template from scratch, you can find a sample template and customize it. The template used in this tutorial is called [Deploy a simple Windows VM](https://azure.microsoft.com/resources/templates/101-vm-simple-windows/).
4242

4343
1. From Visual Studio Code, select **File**>**Open File**.
4444
2. In **File name**, paste the following URL:

0 commit comments

Comments
 (0)