Model/TeamOwners.ps1
# # Cloud Governance Api # Contact: support@avepoint.com # <# TeamOwners<PSCustomObject> #> function New-TeamOwners { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject[]] ${Owners}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject[]] ${PredefinedOwners}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${ActivityId} ) Process { 'Creating PSCustomObject: Cloud.Governance.Client => TeamOwners' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "Owners" = ${Owners} "PredefinedOwners" = ${PredefinedOwners} "ActivityId" = ${ActivityId} } return $PSO } } <# TeamOwners<PSCustomObject> #> function ConvertFrom-JsonToTeamOwners { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: Cloud.Governance.Client => TeamOwners' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in TeamOwners $AllProperties = $("Owners", "PredefinedOwners", "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 "Owners"))) { #optional property not found $Owners = $null } else { $Owners = $JsonParameters.PSobject.Properties["Owners"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "PredefinedOwners"))) { #optional property not found $PredefinedOwners = $null } else { $PredefinedOwners = $JsonParameters.PSobject.Properties["PredefinedOwners"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "ActivityId"))) { #optional property not found $ActivityId = $null } else { $ActivityId = $JsonParameters.PSobject.Properties["ActivityId"].value } $PSO = [PSCustomObject]@{ "Owners" = ${Owners} "PredefinedOwners" = ${PredefinedOwners} "ActivityId" = ${ActivityId} } return $PSO } } |