Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Az.SecurityInsights help files #15144

Merged
merged 2 commits into from
Jun 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ If you specify the *AlertRuleId* parameter, a single AlertRule object is returne
If you do not specify the *AlertRuleId* parameter, an array containing all of the Alert Rules in the specified workspace is returned.
You can use the AlertRule object to update the AlertRule. For example you can enable or disable the AlertRule. <br/>

*Note: An AlertRuleId is in the following format: c464bcd7-daee-47ff-ac58-1fbb73cf1d6b and can be found in the Azure Sentinel Analytics view under the rule details pane on your right in the field "Id"*
*Note: An AlertRuleId can be any string, as long as it is unique in your workspace and can be found in the Azure Sentinel Analytics view under the rule details pane on your right in the field "Id"*

## EXAMPLES

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ This example gets a specific **AlertRuleTemplate** in the specified workspace, a

### Example 3
```powershell
Get-AzSentinelAlertRuleTemplate @SentinelConnection | Where-Object {$_.Kind -eq "Azure Active Directory"}
Get-AzSentinelAlertRuleTemplate @SentinelConnection | Where-Object {$_.Kind -eq "Scheduled"}
```

This example (using a connection object) gets AlertRuleTemplates of the kind "Azure Active Directory"
This example (using a connection object) gets AlertRuleTemplates of the kind "Scheduled"

## PARAMETERS

Expand Down