-
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.
Added: Command to add a parent to an adb item
- Loading branch information
1 parent
0a9a670
commit 8251f14
Showing
3 changed files
with
65 additions
and
0 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,63 @@ | ||
<# | ||
.SYNOPSIS | ||
Add the parent item to the adb item. | ||
.DESCRIPTION | ||
... | ||
.INPUTS | ||
None | ||
.OUTPUTS | ||
None | ||
.EXAMPLE | ||
PS C:\> Add-AdbItemParent -Name 'myname' -Parent 'myparent' | ||
Add the parent myparent to the item myname. | ||
#> | ||
function Add-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 add to 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 += $Parent | ||
$parents = $parents | Select-Object -Unique | 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