-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathSqlScriptQueryRule.psm1
More file actions
69 lines (64 loc) · 1.6 KB
/
SqlScriptQueryRule.psm1
File metadata and controls
69 lines (64 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
using module .\..\Common\Common.psm1
using module .\..\Rule\Rule.psm1
#header
<#
.SYNOPSIS
An Account Policy Rule object
.DESCRIPTION
The SqlScriptQueryRule class is used to maange the Account Policy Settings.
.PARAMETER GetScript
The Get script content
.PARAMETER TestScript
The test script content
.PARAMETER SetScript
The set script content
#>
class SqlScriptQueryRule : Rule
{
[string] $GetScript
[string] $TestScript
[string] $SetScript <#(ExceptionValue)#>
[string[]] $Variable
[String[]] $VariableValue
[string] $QueryId
<#
.SYNOPSIS
Default constructor to support the AsRule cast method
#>
SqlScriptQueryRule ()
{
}
<#
.SYNOPSIS
Used to load PowerSTIG data from the processed data directory
.PARAMETER Rule
The STIG rule to load
#>
SqlScriptQueryRule ([xml.xmlelement] $Rule) : base ($Rule)
{
}
<#
.SYNOPSIS
The Convert child class constructor
.PARAMETER Rule
The STIG rule to convert
.PARAMETER Convert
A simple bool flag to create a unique constructor signature
#>
SqlScriptQueryRule ([xml.xmlelement] $Rule, [switch] $Convert) : base ($Rule, $Convert)
{
}
<#
.SYNOPSIS
Creates class specifc help content
#>
[PSObject] GetExceptionHelp()
{
return @{
Value = "15"
Notes = $null
}
}
}