CoreOps/HostGroupMapping/New-SDPHostGroupMapping.ps1
function New-SDPHostGroupMapping { param( [parameter(Mandatory,ValueFromPipelineByPropertyName)] [Alias('pipeName')] [string] $hostGroupName, [parameter()] [string] $volumeName, [parameter()] [string] $snapshotName, [parameter()] [string] $k2context = 'k2rfconnection' ) <# .SYNOPSIS Map a host group to an existing volume. .EXAMPLE New-SDPHostGroupMapping -hostGroupName HG01 -volumeName Vol01 .EXAMPLE Get-SDPHostGroup -name HG01 | New-SDPHostGroupMapping -volumeName Vol01 .DESCRIPTION This function will map a host group to any qualifying volume. Accepts piped into from Get-SDPHostGroup .NOTES Authored by J.R. Phillips (GitHub: JayAreP) .LINK https://www.github.com/JayAreP/K2RF/ #> begin { $endpoint = 'mappings' } process{ ## Special Ops $hostGroupid = Get-SDPHostGroup -name $hostGroupName -k2context $k2context $hostPath = ConvertTo-SDPObjectPrefix -ObjectPath "host_groups" -ObjectID $hostGroupid.id -nestedObject if ($volumeName) { $volumeid = Get-SDPVolume -name $volumeName -k2context $k2context -k2context $k2context $volumePath = ConvertTo-SDPObjectPrefix -ObjectPath "volumes" -ObjectID $volumeid.id -nestedObject } elseif ($snapshotName) { $volumeid = Get-SDPVolumeGroupSnapshot -name $snapshotName -k2context $k2context $volumePath = ConvertTo-SDPObjectPrefix -ObjectPath "snapshots" -ObjectID $volumeid.id -nestedObject } else { $message = "Please supply either a -volumeName or -snapshotName" return $message | Write-error } $o = New-Object psobject $o | Add-Member -MemberType NoteProperty -Name "host" -Value $hostPath $o | Add-Member -MemberType NoteProperty -Name "volume" -Value $volumePath $body = $o ## Make the call try { Invoke-SDPRestCall -endpoint $endpoint -method POST -body $body -k2context $k2context -erroraction silentlycontinue } catch { return $Error[0] } return $body } } |