Skip to content

Commit

Permalink
Update vimUserManagementTemplate.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
azurekid authored Sep 27, 2023
1 parent 5245acb commit 417f4f0
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions ASIM/dev/Parser YAML templates/vimUserManagementTemplate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,26 @@ Description: |
This ASIM parser supports normalizing the <product name> logs to the ASIM User Management activity normalized schema.
ParserName: <parser function name>
ParserParams:
- Name: starttime
Type: datetime
Default: datetime(null)
- Name: endtime
Type: datetime
Default: datetime(null)
- Name: disabled
Type: bool
Default: false
ParserQuery: |
let parser = (
disabled:bool = false
starttime:datetime = datetime(null)
, endtime:datetime = datetime(null)
, disabled:bool = false
)
{
<parser query body>
};
parser (disabled = disabled)
parser (
starttime = starttime
, endtime = endtime
, disabled = disabled
)

0 comments on commit 417f4f0

Please sign in to comment.