You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. To see your new policy, and to get the policy's **ObjectId**, run the following command:
250
256
251
257
```powershell
252
258
Get-AzureADPolicy -Id $policy.Id
253
259
```
254
260
255
-
2. Update the policy.
261
+
1. Update the policy.
256
262
257
263
You might decide that the first policy you set in this example is not as strict as your service requires. To set your Single-Factor Refresh Token to expire in two days, run the following command:
258
264
@@ -274,21 +280,21 @@ In this example, you create a policy that requires users to authenticate more fr
2. To see your new policy, and to get the policy **ObjectId**, run the following command:
283
+
1. To see your new policy, and to get the policy **ObjectId**, run the following command:
278
284
279
285
```powershell
280
286
Get-AzureADPolicy -Id $policy.Id
281
287
```
282
288
283
-
2. Assign the policy to your service principal. You also need to get the **ObjectId** of your service principal.
289
+
1. Assign the policy to your service principal. You also need to get the **ObjectId** of your service principal.
284
290
285
291
1. Use the [Get-AzureADServicePrincipal](/powershell/module/azuread/get-azureadserviceprincipal) cmdlet to see all your organization's service principals or a single service principal.
286
292
```powershell
287
293
# Get ID of the service principal
288
294
$sp = Get-AzureADServicePrincipal -Filter "DisplayName eq '<service principal display name>'"
289
295
```
290
296
291
-
2. When you have the service principal, run the following command:
297
+
1. When you have the service principal, run the following command:
2. To see your new policy, run the following command:
314
+
1. To see your new policy, run the following command:
309
315
310
316
```powershell
311
317
Get-AzureADPolicy -Id $policy.Id
312
318
```
313
319
314
-
2. Assign the policy to your web API. You also need to get the **ObjectId** of your application. Use the [Get-AzureADApplication](/powershell/module/azuread/get-azureadapplication) cmdlet to find your app's **ObjectId**, or use the [Azure portal](https://portal.azure.com/).
320
+
1. Assign the policy to your web API. You also need to get the **ObjectId** of your application. Use the [Get-AzureADApplication](/powershell/module/azuread/get-azureadapplication) cmdlet to find your app's **ObjectId**, or use the [Azure portal](https://portal.azure.com/).
315
321
316
322
Get the **ObjectId** of your app and assign the policy:
317
323
@@ -334,19 +340,19 @@ In this example, you create a few policies to learn how the priority system work
2. To see your new policy, run the following command:
343
+
1. To see your new policy, run the following command:
338
344
339
345
```powershell
340
346
Get-AzureADPolicy -Id $policy.Id
341
347
```
342
348
343
-
2. Assign the policy to a service principal.
349
+
1. Assign the policy to a service principal.
344
350
345
351
Now, you have a policy that applies to the entire organization. You might want to preserve this 30-day policy for a specific service principal, but change the organization default policy to the upper limit of "until-revoked."
346
352
347
353
1. To see all your organization's service principals, you use the [Get-AzureADServicePrincipal](/powershell/module/azuread/get-azureadserviceprincipal) cmdlet.
348
354
349
-
2. When you have the service principal, run the following command:
355
+
1. When you have the service principal, run the following command:
350
356
351
357
```powershell
352
358
# Get ID of the service principal
@@ -356,13 +362,13 @@ In this example, you create a few policies to learn how the priority system work
Copy file name to clipboardExpand all lines: articles/azure-app-configuration/quickstart-feature-flag-spring-boot.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: Add feature flags to Spring Boot apps and manage them using Azure A
4
4
author: lisaguthrie
5
5
ms.service: azure-app-configuration
6
6
ms.topic: quickstart
7
-
ms.date: 04/13/2020
7
+
ms.date: 04/18/2020
8
8
ms.author: lcozzens
9
9
10
10
#Customer intent: As an Spring Boot developer, I want to use feature flags to control feature availability quickly and confidently.
@@ -52,9 +52,9 @@ Use the [Spring Initializr](https://start.spring.io/) to create a new Spring Boo
52
52
53
53
1. After you extract the files on your local system, your Spring Boot application is ready for editing. Locate *pom.xml* in the root directory of your app.
54
54
55
-
1. Open the *pom.xml* file in a text editor and add the following to the list of `<dependencies>`.:
55
+
1. Open the *pom.xml* file in a text editor and add the following to the list of `<dependencies>`:
56
56
57
-
### Spring Cloud 1.1.x
57
+
**Spring Cloud 1.1.x**
58
58
59
59
```xml
60
60
<dependency>
@@ -73,7 +73,7 @@ Use the [Spring Initializr](https://start.spring.io/) to create a new Spring Boo
Copy file name to clipboardExpand all lines: articles/azure-app-configuration/quickstart-java-spring-app.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ manager: maiye
8
8
editor: ''
9
9
ms.service: azure-app-configuration
10
10
ms.topic: quickstart
11
-
ms.date: 12/17/2019
11
+
ms.date: 04/18/2020
12
12
ms.author: lcozzens
13
13
14
14
#Customer intent: As a Java Spring developer, I want to manage all my app settings in one place.
@@ -139,25 +139,25 @@ Use the [Spring Initializr](https://start.spring.io/) to create a new Spring Boo
139
139
1. Create a new file named `bootstrap.properties` under the resources directory of your app, and add the following lines to the file. Replace the sample values with the appropriate properties for your App Configuration store.
1. Set an environment variable named **APP_CONFIGURATION_CONNECTION_STRING**, and set it to the access key to your App Configuration store. At the command line, run the following command and restart the command prompt to allow the change to take effect:
In addition, free MOOCS (massive open online courses) on AI are offered online by academic institutions like Stanford and MIT, and other educational companies.
Copy file name to clipboardExpand all lines: articles/machine-learning/team-data-science-process/team-data-science-process-for-data-scientists.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ You can use the items in the following table to guide your own self-study. Read
55
55
| Use Azure Machine Learning to create a predictive solution |[Azure Machine Learning](../overview-what-is-azure-ml.md)| Microsoft Azure Machine Learning uses AI for data wrangling and feature engineering, manages experiments, and tracks model runs. All of this works in a single environment and most functions can run locally or in Azure. You can use the PyTorch, TensorFlow, and other frameworks to create your experiments. In this article, we focus on a complete example of this process, using everything you’ve learned so far. ||
56
56
| Use Power BI to visualize results | [Power BI](https://powerbi.microsoft.com/guided-learning/) | Power BI is Microsoft’s data visualization tool. It is available on multiple platforms from Web to mobile devices and desktop computers. In this article, you learn how to work with the output of the solution you’ve created by accessing the results from Azure storage and creating visualizations using Power BI. | [Complete this tutorial on Power BI.](https://powerbi.microsoft.com/documentation/powerbi-service-get-started/) Then connect Power BI to the Blob CSV created in an experiment run. |
57
57
| Monitor your Solution | [Application Insights](../../azure-monitor/app/app-insights-overview.md) | There are multiple tools you can use to monitor your end solution. Azure Application Insights makes it easy to integrate built-in monitoring into your solution. | [Set up Application Insights to monitor an Application](https://cmatskas.com/visual-studio-code-integration-with-azure-application-insights/). |
58
-
| | [Azure Monitor logs](../../log-analytics/log-analytics-overview.md) | Another method to monitor your application is to integrate it into your DevOps process. The Azure Monitor logs system provides a rich set of features to help you watch your analytic solutions after you deploy them. | [Complete this tutorial](https://docs.loganalytics.io/docs/Learn/Getting-Started/Getting-started-with-the-Analytics-portal) on using Azure Monitor logs. |
58
+
| | [Azure Monitor logs](../../log-analytics/log-analytics-overview.md) | Another method to monitor your application is to integrate it into your DevOps process. The Azure Monitor logs system provides a rich set of features to help you watch your analytic solutions after you deploy them. | [Complete this tutorial](https://docs.microsoft.com/azure/azure-monitor/log-query/get-started-queries) on using Azure Monitor logs. |
59
59
| Complete this Learning Path || Congratulations! You’ve completed this learning path. |
0 commit comments