Skip to content

Commit 27c51d1

Browse files
committed
Revert help changes
1 parent c7d6533 commit 27c51d1

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

src/SecurityInsights/SecurityInsights/help/Get-AzSentinelEntity.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ This command gets an Entity.
6767

6868
### Example 3: Get a Entity by object Id
6969
```powershell
70-
$Entitys = Get-AzSentinelEntity -ResourceGroupName "myResourceGroupName" -workspaceName "myWorkspaceName"
71-
$Entitys[0] | Get-AzSentinelEntity
70+
$Entities = Get-AzSentinelEntity -ResourceGroupName "myResourceGroupName" -workspaceName "myWorkspaceName"
71+
$Entities[0] | Get-AzSentinelEntity
7272
```
7373

7474
```output

src/SecurityInsights/SecurityInsights/help/Get-AzSentinelEntityActivity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ $Entity = Get-AzSentinelEntity -ResourceGroupName "myResourceGroupName" -workspa
5050
$Entity | Get-AzSentinelEntityActivity
5151
```
5252

53-
This command gets insights and activies for an Entity by object
53+
This command gets insights and activities for an Entity by object
5454

5555
## PARAMETERS
5656

src/SecurityInsights/SecurityInsights/help/Get-AzSentinelEntityInsight.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ This command gets insights for an Entity for a given time range.
4545
```powershell
4646
$startTime = (Get-Date).AddDays(-7).ToUniversalTime() | Get-Date -Format "yyyy-MM-ddThh:00:00.000Z"
4747
$endTime = (Get-Date).ToUniversalTime() | Get-Date -Format "yyyy-MM-ddThh:00:00.000Z"
48-
$Entity = Get-AzSentinelEntity -ResourceGroupName "myResourceGroupName" -workspaceName "myWorkspaceName" -EntityId "8d036a2d-f37d-e936-6cca-4e172687cb79"
48+
$Entity = Get-AzSentinelEntity -ResourceGroupName "myResourceGroupName" -workspaceName "myWorkspaceName" -EntityId "00001111-aaaa-2222-bbbb-3333cccc4444"
4949
$Entity | Get-AzSentinelEntityInsight -EndTime $endTime -StartTime $startTime
5050
```
5151

src/SecurityInsights/SecurityInsights/help/New-AzSentinelAlertRule.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ This command creates an Alert Rule of the MicrosoftSecurityIncidentCreation kind
9696

9797
### Example 5: Create a Scheduled Alert Rule
9898
```powershell
99-
New-AzSentinelAlertRule -ResourceGroupName "myResourceGroup" -WorkspaceName "myWorkspaceName" -Kind Scheduled -Enabled -DisplayName "Powershell Exection Alert (Several Times per Hour)" -Severity Low -Query "SecurityEvent | where EventId == 4688" -QueryFrequency (New-TimeSpan -Hours 1) -QueryPeriod (New-TimeSpan -Hours 1) -TriggerThreshold 10
99+
New-AzSentinelAlertRule -ResourceGroupName "myResourceGroup" -WorkspaceName "myWorkspaceName" -Kind Scheduled -Enabled -DisplayName "Powershell Execution Alert (Several Times per Hour)" -Severity Low -Query "SecurityEvent | where EventID == 4688" -QueryFrequency (New-TimeSpan -Hours 1) -QueryPeriod (New-TimeSpan -Hours 1) -TriggerThreshold 10 -TriggerOperator "GreaterThan"
100100
```
101101

102102
This command creates an Alert Rule of the Scheduled kind.

src/SecurityInsights/SecurityInsights/help/New-AzSentinelIncidentTeam.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ $incident = Get-AzSentinelIncident -ResourceGroupName "myResourceGroup" -Workspa
4242
Description :
4343
Name : Incident : NewIncident3
4444
PrimaryChannelUrl : https://teams.microsoft.com/l/team/19:vYoGjeGlZmTEDmu0gTbrk9T_eDS4pKIkEU7UuM1IyZk1%40thread.tacv2/conversations?groupId=3c637cc5-caf1-46c7-93ac-069c6
45-
4b05395&tenantId=8f21ced5-2eff-4f8d-aff1-4dbb4cee8e3d
45+
4b05395&tenantId=00001111-aaaa-2222-bbbb-3333cccc4444
4646
TeamCreationTimeUtc : 2/4/2022 3:02:03 PM
4747
TeamId : 3c637cc5-caf1-46c7-93ac-069c64b05395
4848
```

0 commit comments

Comments
 (0)