-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8251f14
commit 5cb7c6d
Showing
4 changed files
with
130 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<# | ||
.SYNOPSIS | ||
Remove the parent item from the adb item. | ||
.DESCRIPTION | ||
... | ||
.INPUTS | ||
None | ||
.OUTPUTS | ||
None | ||
.EXAMPLE | ||
PS C:\> Remove-AdbItemParent -Name 'myname' -Parent 'myparent' | ||
Remove the parent myparent from the item myname. | ||
#> | ||
function Remove-AdbItemParent | ||
{ | ||
[CmdletBinding(SupportsShouldProcess = $true)] | ||
param | ||
( | ||
# The adb session. | ||
[Parameter(Mandatory = $false)] | ||
[PSTypeName('Adb.Session')] | ||
[System.Object] | ||
$Session, | ||
|
||
# The item name. | ||
[Parameter(Mandatory = $true)] | ||
[System.String] | ||
$Name, | ||
|
||
# The parent to remove from the item. | ||
[Parameter(Mandatory = $true)] | ||
[System.String] | ||
$Parent | ||
) | ||
|
||
$Session = Test-AdbSession -Session $Session | ||
|
||
$item = Get-AdbItem -Session $Session -Name $Name | ||
|
||
# Prepare the parent list | ||
$parents = [System.String[]] $item.parentsNames | ||
$parents = $parents | Where-Object { $_ -ne $Parent } | Sort-Object | ||
|
||
$item = [PSCustomObject] @{ | ||
name = $Name | ||
parentsNames = $parents | ||
} | ||
|
||
$requestSplat = Get-AdbSessionRequestSplat -Session $Session -Method 'Put' | ||
$requestSplat['Uri'] = '{0}/items/{1}' -f $Session.Uri, $Name | ||
$requestSplat['Body'] = $item | ConvertTo-Json -Compress -Depth 99 | ||
|
||
if ($PSCmdlet.ShouldProcess($requestSplat.Uri, $requestSplat.Method.ToUpper())) | ||
{ | ||
Write-Verbose ('{0} {1} {2}' -f $requestSplat.Method.ToUpper(), $requestSplat.Uri, $requestSplat.Body) | ||
Invoke-RestMethod @requestSplat -Verbose:$false -ErrorAction 'Stop' | Out-Null | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<# | ||
.SYNOPSIS | ||
Remove the template name from a the adb item. | ||
.DESCRIPTION | ||
This command will query all existing templates on the adb item, merge | ||
them with the spcified template name and then update the new template | ||
list. | ||
.INPUTS | ||
None | ||
.OUTPUTS | ||
None | ||
.EXAMPLE | ||
PS C:\> Remove-AdmItemTemplate -Name 'myname' -Template 'mytpl' | ||
Remove the template mytpl from the item myname. | ||
#> | ||
function Remove-AdbItemTemplate | ||
{ | ||
[CmdletBinding(SupportsShouldProcess = $true)] | ||
param | ||
( | ||
# The adb session. | ||
[Parameter(Mandatory = $false)] | ||
[PSTypeName('Adb.Session')] | ||
[System.Object] | ||
$Session, | ||
|
||
# The item name. | ||
[Parameter(Mandatory = $true)] | ||
[System.String] | ||
$Name, | ||
|
||
# The template to remove from the item. | ||
[Parameter(Mandatory = $true)] | ||
[System.String] | ||
$Template | ||
) | ||
|
||
$Session = Test-AdbSession -Session $Session | ||
|
||
$item = Get-AdbItem -Session $Session -Name $Name | ||
|
||
# Prepare the template list | ||
$templates = [System.String[]] $item.templatesNames | ||
$templates = $templates | Where-Object { $_ -ne $Template } | Sort-Object | ||
|
||
$item = [PSCustomObject] @{ | ||
name = $Name | ||
templatesNames = $templates | ||
} | ||
|
||
$requestSplat = Get-AdbSessionRequestSplat -Session $Session -Method 'Put' | ||
$requestSplat['Uri'] = '{0}/items/{1}' -f $Session.Uri, $Name | ||
$requestSplat['Body'] = $item | ConvertTo-Json -Compress -Depth 99 | ||
|
||
if ($PSCmdlet.ShouldProcess($requestSplat.Uri, $requestSplat.Method.ToUpper())) | ||
{ | ||
Write-Verbose ('{0} {1} {2}' -f $requestSplat.Method.ToUpper(), $requestSplat.Uri, $requestSplat.Body) | ||
Invoke-RestMethod @requestSplat -Verbose:$false -ErrorAction 'Stop' | Out-Null | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters