-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathCommandMap.ps1
32 lines (28 loc) · 1.09 KB
/
CommandMap.ps1
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
# ------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
# ------------------------------------------------------------------------------
Set-StrictMode -Version 5
class CommandMap {
[string] $Name = $null
[string] $TargetName = $null
[hashtable] $Parameters = $null
[hashtable] $Outputs = $null
[scriptblock] $CustomScript = $null
[bool] $SpecialMapping = $null
CommandMap($Name, $TargetName = $null, $Parameters = $null, $Outputs = $null){
$this.Name = $Name
$this.TargetName = $TargetName
$this.Parameters = $Parameters
$this.Outputs = $Outputs
$this.CustomScript = $null
$this.SpecialMapping = $false
}
CommandMap($Name, $CustomScript){
$this.Name = $Name
$this.TargetName = $null
$this.Parameters = $null
$this.Outputs = $null
$this.CustomScript = $CustomScript
$this.SpecialMapping = $true
}
}