Model/SharedChannelName.ps1
# # Cloud Governance Api # Contact: support@avepoint.com # <# SharedChannelName<PSCustomObject> #> function New-SharedChannelName { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${NewSharedChannelDisplayName}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${OriginalSharedChannelDisplayName}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${ActivityId} ) Process { 'Creating PSCustomObject: Cloud.Governance.Client => SharedChannelName' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "NewSharedChannelDisplayName" = ${NewSharedChannelDisplayName} "OriginalSharedChannelDisplayName" = ${OriginalSharedChannelDisplayName} "ActivityId" = ${ActivityId} } return $PSO } } <# SharedChannelName<PSCustomObject> #> function ConvertFrom-JsonToSharedChannelName { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: Cloud.Governance.Client => SharedChannelName' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in SharedChannelName $AllProperties = $("NewSharedChannelDisplayName", "OriginalSharedChannelDisplayName", "ActivityId") foreach ($name in $JsonParameters.PsObject.Properties.Name) { if (!($AllProperties.Contains($name))) { throw "Error! JSON key '$name' not found in the properties: $($AllProperties)" } } if (!([bool]($JsonParameters.PSobject.Properties.name -match "NewSharedChannelDisplayName"))) { #optional property not found $NewSharedChannelDisplayName = $null } else { $NewSharedChannelDisplayName = $JsonParameters.PSobject.Properties["NewSharedChannelDisplayName"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "OriginalSharedChannelDisplayName"))) { #optional property not found $OriginalSharedChannelDisplayName = $null } else { $OriginalSharedChannelDisplayName = $JsonParameters.PSobject.Properties["OriginalSharedChannelDisplayName"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "ActivityId"))) { #optional property not found $ActivityId = $null } else { $ActivityId = $JsonParameters.PSobject.Properties["ActivityId"].value } $PSO = [PSCustomObject]@{ "NewSharedChannelDisplayName" = ${NewSharedChannelDisplayName} "OriginalSharedChannelDisplayName" = ${OriginalSharedChannelDisplayName} "ActivityId" = ${ActivityId} } return $PSO } } |