Model/ContentMoveSPObjectMapping.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 Source No description available. .PARAMETER Destination No description available. .PARAMETER Action No description available. .OUTPUTS ContentMoveSPObjectMapping<PSCustomObject> #> function New-ContentMoveSPObjectMapping { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Source}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Destination}, [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Action} ) Process { 'Creating object: Cloud.Governance.Client => ContentMoveSPObjectMapping' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "source" = ${Source} "destination" = ${Destination} "action" = ${Action} } return $PSO } } |