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