Skip to content
This repository was archived by the owner on Feb 21, 2023. It is now read-only.

Add support for Create Detector #14

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
21 changes: 21 additions & 0 deletions src/classes.clients.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,27 @@ class SFxClientApi : SFxClient {

return $this.delimiter
}

[object] Invoke() {

$parameters = @{
Uri = $this.Uri
Headers = $this.Headers
ContentType = 'application/json'
Method = $this.Method
}

if ($this.Body.Count -gt 0) {
$parameters["Body"] = $this.Body | ConvertTo-Json
}

#try {
return Invoke-RestMethod @parameters# -ErrorAction Stop
#} catch {
# Throw ("StatusCode: {0}{1}StatusDescription: {2}" -f $_.Exception.Response.StatusCode.value__, [Environment]::NewLine, $_.Exception.Message )
# return $null
#}
}
}

class SFxClientIngest : SFxClient {
Expand Down
152 changes: 152 additions & 0 deletions src/classes.detector.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,155 @@ class SFxQueryDetector : SFxClientApi {
return $this
}
}

class SFxDetectorNotification {}
class SFxDetectorEmailNotification : SFxDetectorNotification{
[string]$email = [string]::Empty
[string]$type

SFxDetectorEmailNotification() {
$this.type = 'Email'
}
}

class SFxDetectorRule {
[string]$description = [string]::Empty
[string]$detectLabel = [string]::Empty
[bool]$disabled
[SFxDetectorNotification[]]$notifications
[string]$parameterizedBody = [string]::Empty
[string]$parameterizedSubject = [string]::Empty
[string]$runbookUrl = [string]::Empty
[string]$severity = [string]::Empty

[void] Critical() {
$this.severity = 'Critical'
}

[void] Warning() {
$this.severity = 'Warning'
}

[void] Major() {
$this.severity = 'Major'
}

[void] Minor() {
$this.severity = 'Minor'
}

[void] Info() {
$this.severity = 'Info'
}

SFxDetectorRule() {
$this.notifications += [SFxDetectorEmailNotification]::new()
$this.Critical()
}


}

class SFxTime {
[int64]$end
[int64]$range
[int64]$start
[string]$type

SFxTime() {
$this.end = 0
$this.range = 0
$this.start = 0
$this.type = 'relative'
}

[void] Absolute() {
$this.Type = 'absolute'
}

[void] Relative() {
$this.Type = 'relative'
}
}
class SFxDetectorVisualizationOptions {
[bool]$disableSampling
[bool]$showDataMarkers
[bool]$showEventLines
[SFxTime]$time

SFxDetectorVisualizationOptions() {
$this.disableSampling = $false
$this.showDataMarkers = $false
$this.showEventLines = $false
$this.time = [SFxTime]::new()
}
}

class SFxDetector {
[string]$name = [string]::Empty
[string]$programText = [string]::Empty
[string]$description = [string]::Empty
[int]$maxDelay

[hashtable] $authorizedWriters = @{}
[hashtable]$customProperties = @{}

#[hashtable]$labelResolution = @{}


[string]$packageSpecifications = [string]::Empty

[SFxDetectorRule[]]$rules
[string[]]$tags = @([string]::Empty)
[string[]]$teams = @()
[string]$timezone

SFxDetector([string]$name, [string]$programText) {
$this.authorizedWriters.Add('teams',@())
$this.authorizedWriters.Add('users',@())
$this.timezone = 'UTC'
$this.name = $name
$this.programText = $programText
$this.rules = [SFxDetectorRule]::new()
}

[void] AddAuthorizedTeam($id) {
$this.authorizedWriters['teams'] += $id
}

[void] AddAuthorizedUser($id) {
$this.authorizedWriters['users'] += $id
}

[void] AddLabelResoltion([string]$property, [int]$value) {
$this.labelResolution.Add($property, $value)
}
}

class SFxNewDetector : SFxClientApi {
hidden [SFxDetector]$Body

SFxNewDetector([string]$name, [string]$programText) :base('detector', 'POST') {
$this.Body = [SFxDetector]::new($name, $programText)

}

[SFxNewDetector] AddAuthorizedWriterTeam([string[]]$id) {
foreach ($i in $id) {
$this.Body.authorizedWriters['teams'] += $i
}
return $this
}

[SFxNewDetector] AddAuthorizedWriterUser([string[]]$id) {
foreach ($i in $id) {
$this.Body.authorizedWriters['users'] += $i
}
return $this
}

[SFxNewDetector] SetDescription([string]$description) {
$this.Body.description = $description
return $this
}
}