src/cmdlets/get-graphitem.ps1
# Copyright 2018, Adam Edwards # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. . (import-script Invoke-GraphRequest) . (import-script common/ItemResultHelper) function Get-GraphItem { [cmdletbinding(positionalbinding=$false, supportspaging=$true, supportsshouldprocess=$true)] param( [parameter(position=0,mandatory=$true)] [Uri[]] $ItemRelativeUri, [parameter(position=1)] [String] $Query = $null, [String] $ODataFilter = $null, [String] $Search = $null, [String[]] $Select = $null, [String[]] $Expand = $null, [Alias('Sort')] $OrderBy = $null, [Switch] $Descending, [parameter(parametersetname='MSGraphNewConnection')] [String[]] $ScopeNames = $null, [String] $Version = $null, [switch] $RawContent, [switch] $AbsoluteUri, [HashTable] $Headers = $null, [parameter(parametersetname='AADGraphNewConnection', mandatory=$true)] [switch] $AADGraph, [parameter(parametersetname='MSGraphNewConnection')] [GraphCloud] $Cloud = [GraphCloud]::Public, [parameter(parametersetname='ExistingConnection', mandatory=$true)] [PSCustomObject] $Connection = $null, [string] $ResultVariable = $null ) $requestArguments = @{ RelativeUri=$ItemRelativeUri Query = $Query ODataFilter = $ODataFilter Search = $Search Select = $Select Expand = $Expand OrderBy = $OrderBy Descending = $Descending Version=$Version RawContent=$RawContent AbsoluteUri=$AbsoluteUri Headers=$Headers First=$pscmdlet.pagingparameters.first Skip=$pscmdlet.pagingparameters.skip IncludeTotalCount=$pscmdlet.pagingparameters.includetotalcount } if ( $AADGraph.ispresent ) { $requestArguments['AADGraph'] = $AADGraph } elseif ($ScopeNames -ne $null) { $requestArguments['ScopeNames'] = $ScopeNames } if ( $Connection -ne $null ) { $requestArguments['Connection'] = $Connection } $localResult = $null $targetResultVariable = __GetResultVariable $ResultVariable Invoke-GraphRequest @requestArguments | tee -variable localResult $targetResultVariable.value = $localResult } |