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