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