Model/ContentMoveSPObject.ps1
# # Cloud Governance Api # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # Version: 1.0 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION No description available. .PARAMETER SiteId No description available. .PARAMETER SiteUrl No description available. .PARAMETER Id No description available. .PARAMETER Title No description available. .PARAMETER FullUrl No description available. .PARAMETER Type No description available. .OUTPUTS ContentMoveSPObject<PSCustomObject> #> function New-ContentMoveSPObject { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${SiteId}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [String] ${SiteUrl}, [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Id}, [Parameter(Position = 3, ValueFromPipelineByPropertyName = $true)] [String] ${Title}, [Parameter(Position = 4, ValueFromPipelineByPropertyName = $true)] [String] ${FullUrl}, [Parameter(Position = 5, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Type} ) Process { 'Creating object: Cloud.Governance.Client => ContentMoveSPObject' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "siteId" = ${SiteId} "siteUrl" = ${SiteUrl} "id" = ${Id} "title" = ${Title} "fullUrl" = ${FullUrl} "type" = ${Type} } return $PSO } } |