Model/DynamicExchangeResource.ps1

#
# Cloud Governance Api
# Contact: support@avepoint.com
#

<#
DynamicExchangeResource<PSCustomObject>
#>


function New-DynamicExchangeResource {
    [CmdletBinding()]
    Param (
        [Parameter(ValueFromPipelineByPropertyName = $true)]
        [String]
        ${GroupId},
        [Parameter(ValueFromPipelineByPropertyName = $true)]
        [String]
        ${OfficeTenantId},
        [Parameter(ValueFromPipelineByPropertyName = $true)]
        [String]
        ${GroupName},
        [Parameter(ValueFromPipelineByPropertyName = $true)]
        [String]
        ${Email},
        [Parameter(ValueFromPipelineByPropertyName = $true)]
        [PSCustomObject]
        ${ExchangeResourceType} = "SecurityGroup",
        [Parameter(ValueFromPipelineByPropertyName = $true)]
        [String]
        ${ActivityId}
    )

    Process {
        'Creating PSCustomObject: Cloud.Governance.Client => DynamicExchangeResource' | Write-Debug
        $PSBoundParameters | Out-DebugParameter | Write-Debug

        
        $PSO = [PSCustomObject]@{
            "GroupId" = ${GroupId}
            "OfficeTenantId" = ${OfficeTenantId}
            "GroupName" = ${GroupName}
            "Email" = ${Email}
            "ExchangeResourceType" = ${ExchangeResourceType}
            "ActivityId" = ${ActivityId}
        }

        return $PSO
    }
}

<#
DynamicExchangeResource<PSCustomObject>
#>

function ConvertFrom-JsonToDynamicExchangeResource {
    Param(
        [AllowEmptyString()]
        [string]$Json
    )

    Process {
        'Converting JSON to PSCustomObject: Cloud.Governance.Client => DynamicExchangeResource' | Write-Debug
        $PSBoundParameters | Out-DebugParameter | Write-Debug

        $JsonParameters = ConvertFrom-Json -InputObject $Json

        # check if Json contains properties not defined in DynamicExchangeResource
        $AllProperties = $("GroupId", "OfficeTenantId", "GroupName", "Email", "ExchangeResourceType", "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 "GroupId"))) { #optional property not found
            $GroupId = $null
        } else {
            $GroupId = $JsonParameters.PSobject.Properties["GroupId"].value
        }

        if (!([bool]($JsonParameters.PSobject.Properties.name -match "OfficeTenantId"))) { #optional property not found
            $OfficeTenantId = $null
        } else {
            $OfficeTenantId = $JsonParameters.PSobject.Properties["OfficeTenantId"].value
        }

        if (!([bool]($JsonParameters.PSobject.Properties.name -match "GroupName"))) { #optional property not found
            $GroupName = $null
        } else {
            $GroupName = $JsonParameters.PSobject.Properties["GroupName"].value
        }

        if (!([bool]($JsonParameters.PSobject.Properties.name -match "Email"))) { #optional property not found
            $Email = $null
        } else {
            $Email = $JsonParameters.PSobject.Properties["Email"].value
        }

        if (!([bool]($JsonParameters.PSobject.Properties.name -match "ExchangeResourceType"))) { #optional property not found
            $ExchangeResourceType = $null
        } else {
            $ExchangeResourceType = $JsonParameters.PSobject.Properties["ExchangeResourceType"].value
        }

        if (!([bool]($JsonParameters.PSobject.Properties.name -match "ActivityId"))) { #optional property not found
            $ActivityId = $null
        } else {
            $ActivityId = $JsonParameters.PSobject.Properties["ActivityId"].value
        }

        $PSO = [PSCustomObject]@{
            "GroupId" = ${GroupId}
            "OfficeTenantId" = ${OfficeTenantId}
            "GroupName" = ${GroupName}
            "Email" = ${Email}
            "ExchangeResourceType" = ${ExchangeResourceType}
            "ActivityId" = ${ActivityId}
        }

        return $PSO
    }

}