Skip to content

Commit

Permalink
Create vimDhcpTemplate.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
azurekid authored Sep 27, 2023
1 parent b9f16f4 commit 18c2714
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions ASIM/dev/Parser YAML templates/vimDhcpTemplate.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
Parser:
Title: ASIM Dhcp filtering parser for <product name>
Version: '<parser version>'
LastUpdated: <parser update date>
Product:
Name: <product name>
Normalization:
Schema: Dhcp
Version: '<current schema version>'
References:
- Title: ASIM Dhcp Schema
Link: https://aka.ms/ASimDhcpDoc
- Title: ASIM
Link: https:/aka.ms/AboutASIM
Description: |
This ASIM parser supports filtering and normalizing the <product name> logs to the ASIM authentication normalized schema.
ParserName: <parser function name>
ParserParams:
- Name: starttime
Type: datetime
Default: datetime(null)
- Name: endtime
Type: datetime
Default: datetime(null)
- Name: targetusername_has
Type: string
Default: '*'
- Name: disabled
Type: bool
Default: false
ParserQuery: |
let parser = (
starttime:datetime = datetime(null)
, endtime:datetime = datetime(null)
, disabled:bool = false
)
{
<parser query body>
};
parser (
starttime = starttime
, endtime = endtime
, disabled = disabled
)

0 comments on commit 18c2714

Please sign in to comment.