Skip to content

Commit 840f796

Browse files
authored
Merge branch 'MicrosoftDocs:main' into krkutser-ie-PRASID
2 parents 7d0467a + edbe426 commit 840f796

File tree

4 files changed

+37
-35
lines changed

4 files changed

+37
-35
lines changed

articles/automation/manage-runtime-environment.md

Lines changed: 12 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Manage Runtime Environment and Associated Runbooks in Azure Automation
33
description: This article tells how to manage runbooks in Runtime environment and associated runbooks Azure Automation
44
services: automation
55
ms.subservice: process-automation
6-
ms.date: 06/27/2025
6+
ms.date: 07/09/2025
77
ms.topic: how-to
88
ms.custom: references_regions
99
ms.service: azure-automation
@@ -95,7 +95,7 @@ In the **Runtime Environments** page, you can view the newly created Runtime en
9595

9696
You can create a new Runtime environment for PowerShell 7.4 with Az PowerShell module in the Automation.
9797

98-
```rest
98+
```REST
9999
PUT
100100
https://management.azure.com/subscriptions/<subscriptionId>/resourceGroups/<resourceGroup>/providers/Microsoft.Automation/automationAccounts/<accountName>/runtimeEnvironments/<runtimeEnvironmentName>?api-version=2024-10-23
101101
@@ -114,7 +114,7 @@ https://management.azure.com/subscriptions/<subscriptionId>/resourceGroups/<reso
114114
```
115115
Upload a package Az.Accounts to the Runtime environment.
116116

117-
```rest
117+
```REST
118118
PUT
119119
https://management.azure.com/subscriptions/<subscriptionId>/resourceGroups/<resourceGroup>/providers/Microsoft.Automation/automationAccounts/<accountName>/runtimeEnvironments/<runtimeEnvironmentName>/packages/Az.Accounts?api-version=2024-10-23
120120
@@ -131,17 +131,9 @@ https://management.azure.com/subscriptions/<subscriptionId>/resourceGroups/<reso
131131
### View Runtime environment
132132

133133
Get the Runtime environment properties from the Automation account.
134-
```rest
134+
```REST
135135
GET
136-
https://management.azure.com/subscriptions/<subscriptionId>/resourceGroups/<resourceGroup>/providers/Microsoft.Automation/automationAccounts/<accountName>/runtimeEnvironments/<runtimeEnvironmentName>?api-version=2023-05-15-preview
137-
```
138-
139-
### View Runtime environment
140-
141-
Get the Runtime environment properties from the Automation account.
142-
```rest
143-
GET
144-
https://management.azure.com/subscriptions/<subscriptionId>/resourceGroups/<resourceGroup>/providers/Microsoft.Automation/automationAccounts/<accountName>/runtimeEnvironments/<runtimeEnvironmentName>?api-version=2023-05-15-preview
136+
https://management.azure.com/subscriptions/<subscriptionId>/resourceGroups/<resourceGroup>/providers/Microsoft.Automation/automationAccounts/<accountName>/runtimeEnvironments/<runtimeEnvironmentName>?api-version=2024-10-23
145137
```
146138

147139
### List Runtime environments
@@ -156,7 +148,7 @@ To list all the Runtime environments from the Automation account, follow this st
156148

157149
#### [REST API](#tab/list-runtime-rest)
158150

159-
```rest
151+
```REST
160152
GET
161153
https://management.azure.com/subscriptions/<subscriptionId>/resourceGroups/<resourceGroup>/providers/Microsoft.Automation/automationAccounts/<accountName>/runtimeEnvironments?api-version=2024-10-23
162154
```
@@ -185,7 +177,7 @@ To delete the Runtime environment from the Automation account, follow these step
185177

186178
#### [REST API](#tab/delete-runtime-rest)
187179

188-
```rest
180+
```REST
189181
DELETE
190182
https://management.azure.com/subscriptions/<subscriptionId>/resourceGroups/<resourceGroup>/providers/Microsoft.Automation/automationAccounts/<accountName>/runtimeEnvironments/<runtimeEnvironmentName>?api-version=2024-10-23
191183
```
@@ -215,7 +207,7 @@ To update a Runtime environment, follow these steps:
215207

216208
Update the Az module version of an existing Runtime environment.
217209

218-
```rest
210+
```REST
219211
PATCH
220212
https://management.azure.com/subscriptions/<subscriptionId>/resourceGroups/<resourceGroup>/providers/Microsoft.Automation/automationAccounts/<accountName>/runtimeEnvironments/<runtimeEnvironmentName>?api-version=2024-10-23
221213
{
@@ -269,7 +261,7 @@ This runbook is linked to the selected Runtime environment. All the packages in
269261
**Prerequisite**
270262
- Configure a PowerShell Runtime environment and provide it as an input for runbook creation.
271263

272-
```rest
264+
```REST
273265
PUT
274266
https://management.azure.com/subscriptions/<subscriptionId>/resourceGroups/<resourceGroup>/providers/Microsoft.Automation/automationAccounts/<accountName>/runbooks/<runbookName>?api-version=2024-10-23
275267
@@ -316,7 +308,7 @@ Check if the runbook executes as expected after update. If the runbook fails to
316308

317309
Update Runtime environment linked to a runbook.
318310

319-
```rest
311+
```REST
320312
PATCH
321313
https://management.azure.com/subscriptions/<subscriptionId>/resourceGroups/<resourceGroup>/providers/Microsoft.Automation/automationAccounts/<accountName>/runbooks/<runbookName>?api-version=2024-10-23
322314
{
@@ -357,7 +349,7 @@ To test runbook execution before publishing Runtime environment changes, follow
357349

358350
Run a test job for a runbook with a different Runtime environment. This scenario is useful when a runbook needs to be tested with a Runtime environment before update.
359351

360-
```rest
352+
```REST
361353
PUT
362354
https://management.azure.com/subscriptions/<subscriptionId>/resourceGroups/<resourceGroup>/providers/Microsoft.Automation/automationAccounts/<accountName>/runbooks/<runbookName>/draft/testJob?api-version=2024-10-23
363355
{
@@ -378,7 +370,7 @@ You can execute runbooks linked to Runtime Environment both on Azure and Hybrid
378370
#### [REST API](#tab/create-cloud-job-rest)
379371
Jobs inherit the Runtime environment from the runbook. Run a cloud job for a published runbook.
380372

381-
```rest
373+
```REST
382374
PUT
383375
https://management.azure.com/subscriptions/<subscriptionId>/resourceGroups/<resourceGroup>/providers/Microsoft.Automation/automationAccounts/<accountName>/jobs/<jobName>?api-version=2024-10-23
384376
{

articles/automation/runtime-environment-overview.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ You can't edit these Runtime environments. However, any changes that are made in
8484
- Runtime environment can't be configured through Azure Automation extension for Visual Studio Code.
8585
- Deleted Runtime environments cannot be recovered.
8686
- This feature is currently supported through Azure portal and [REST API](/rest/api/automation/runtime-environments?view=rest-automation-2024-10-23&preserve-view=true).
87+
- Use [Packages: REST API](/rest/api/automation/package?view=rest-automation-2024-10-23) to upload custom packages.
8788
- Management of modules for Azure Automation State Configuration is not supported through Runtime environment experience. You can continue using the old experience for managing modules and packages for Azure Automation State Configuration.
8889

8990
## Switch between new and old experience

articles/sentinel/bookmarks.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ appliesto:
1010
- Microsoft Sentinel in the Microsoft Defender portal
1111
- Microsoft Sentinel in the Azure portal
1212

13-
1413
#Customer intent: As a security analyst, I want to create and manage hunting bookmarks so that I can preserve and collaborate on relevant threat investigation data.
1514

1615
---
@@ -19,16 +18,18 @@ appliesto:
1918

2019
Hunting bookmarks in Microsoft Sentinel helps you preserve the queries and query results that you deem relevant. You can also record your contextual observations and reference your findings by adding notes and tags. Bookmarked data is visible to you and your teammates for easy collaboration. For more information, see [Bookmarks](hunting.md#bookmarks-to-keep-track-of-data).
2120

21+
>[!NOTE]
22+
> Bookmarks can only be created in the Azure portal. While you can't add bookmarks in the Microsoft Defender portal, you can see bookmarks that were already created.
23+
2224
[!INCLUDE [unified-soc-preview](includes/unified-soc-preview.md)]
2325

24-
## Add a bookmark
26+
## Add a bookmark (Azure portal only)
2527

2628
Create a bookmark to preserve the queries, results, your observations, and findings.
2729

28-
1. For Microsoft Sentinel in the [Azure portal](https://portal.azure.com), under **Threat management** select **Hunting**.<br> For Microsoft Sentinel in the [Defender portal](https://security.microsoft.com/), select **Microsoft Sentinel** > **Threat management** > **Hunting**.
29-
1. From the **Hunting** tab, select a hunt.
30-
1. Select one of the hunting queries.
31-
1. In the hunting query details, select **Run Query**.
30+
1. Under **Threat management**, select **Hunting**.
31+
1. From the **Queries** tab, select one or more of the hunting queries.
32+
1. From the top command bar, select **Run selected queries**.
3233

3334
1. Select **View query results**. For example:
3435

@@ -38,7 +39,7 @@ Create a bookmark to preserve the queries, results, your observations, and findi
3839

3940
1. From the log query results list, use the checkboxes to select one or more rows that contain the information you find interesting.
4041

41-
1. Select **Add bookmark**:
42+
1. In Azure portal, select **Add bookmark**:
4243

4344
:::image type="content" source="media/bookmarks/add-hunting-bookmark.png" alt-text="Screenshot of adding hunting bookmark to query." lightbox="media/bookmarks/add-hunting-bookmark.png":::
4445

@@ -54,9 +55,9 @@ Create a bookmark to preserve the queries, results, your observations, and findi
5455

5556
To view the bookmark in the investigation graph, you must map at least one entity. Entity mappings to account, host, IP, and URL entity types you created are supported, preserving backwards compatibility.
5657

57-
1. Select **Save** to commit your changes and add the bookmark. All bookmarked data is shared with other analysts, and is a first step toward a collaborative investigation experience.
58+
1. Select **Create** to commit your changes and add the bookmark. All bookmarked data is shared with other analysts, and is a first step toward a collaborative investigation experience.
5859

59-
The log query results support bookmarks whenever this pane is opened from Microsoft Sentinel. For example, you select **General** > **Logs** from the navigation bar, select event links in the investigations graph, or select an alert ID from the full details of an incident. You can't create bookmarks when the **Logs** pane is opened from other locations, such as directly from Azure Monitor.
60+
The log query results support bookmarks whenever this pane is opened from Microsoft Sentinel. For example, if you select **General** > **Logs** from the navigation bar, select event links in the investigations graph, or select an alert ID from the full details of an incident. You can't create bookmarks when the **Logs** pane is opened from another location, such as directly from Azure Monitor.
6061

6162
## View and update bookmarks
6263

@@ -84,9 +85,9 @@ Visualize your bookmarked data by launching the investigation experience in whic
8485

8586
For instructions to use the investigation graph, see [Use the investigation graph to deep dive](investigate-cases.md#use-the-investigation-graph-to-deep-dive).
8687

87-
## Add bookmarks to a new or existing incident
88+
## Add bookmarks to a new or existing incident (Azure portal only)
8889

89-
Add bookmarks to an incident from the bookmarks tab on the **Hunting** page.
90+
Add bookmarks to an incident from the bookmarks tab on the **Hunting** page.
9091

9192
1. From the **Bookmarks** tab, select the bookmark or bookmarks you want to add to an incident.
9293

@@ -104,7 +105,6 @@ Add bookmarks to an incident from the bookmarks tab on the **Hunting** page.
104105
1. Select the incident with your bookmark and **View full details**.
105106
1. On the incident page, in the left pane, select the **Bookmarks**.
106107

107-
108108
## View bookmarked data in logs
109109

110110
View bookmarked queries, results, or their history.

articles/sentinel/ci-cd.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,20 @@ When creating custom content, you can manage it from your own Microsoft Sentinel
3030
Microsoft Sentinel currently supports connections to GitHub and Azure DevOps repositories. Before connecting your Microsoft Sentinel workspace to your source control repository, make sure that you have:
3131

3232
- An **Owner** role in the resource group that contains your Microsoft Sentinel workspace *or* a combination of **User Access Administrator** and **Sentinel Contributor** roles to create the connection
33-
- Collaborator access to your GitHub repository or Project Administrator access to your Azure DevOps repository
33+
- Ensure custom content files you want to deploy to your workspaces are in a supported format. For supported formats, see [Plan your repository content](ci-cd-custom-content.md#plan-your-repository-content).
34+
35+
### [GitHub prerequisites](#tab/github)
36+
37+
- Collaborator access to your GitHub repository
3438
- Actions enabled for GitHub and Pipelines enabled for Azure DevOps
39+
40+
### [Azure DevOps prerequisites](#tab/azure-devops)
41+
42+
- Project Administrator access to your Azure DevOps repository
3543
- Third-party application access via OAuth enabled for Azure DevOps [application connection policies](/azure/devops/organizations/accounts/change-application-access-policies#manage-a-policy).
36-
- An Azure DevOps connection must be in the same tenant as your Microsoft Sentinel workspace
37-
- Ensure custom content files you want to deploy to your workspaces are in a supported format. For supported formats, see [Plan your repository content](ci-cd-custom-content.md#plan-your-repository-content).
44+
- An Azure DevOps connection in the same tenant as your Microsoft Sentinel workspace
45+
46+
---
3847

3948
For more information on deployable content types, see [Validate your content](ci-cd-custom-content.md#validate-your-content).
4049

0 commit comments

Comments
 (0)