Model/GroupLeasePeriodType.ps1
# # Cloud Governance Api # Contact: support@avepoint.com # <# GroupLeasePeriodType<PSCustomObject> #> function New-GroupLeasePeriodType { [CmdletBinding()] Param ( ) Process { 'Creating PSCustomObject: Cloud.Governance.Client => GroupLeasePeriodType' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ } return $PSO } } <# GroupLeasePeriodType<PSCustomObject> #> function ConvertFrom-JsonToGroupLeasePeriodType { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: Cloud.Governance.Client => GroupLeasePeriodType' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in GroupLeasePeriodType $AllProperties = $() foreach ($name in $JsonParameters.PsObject.Properties.Name) { if (!($AllProperties.Contains($name))) { throw "Error! JSON key '$name' not found in the properties: $($AllProperties)" } } $PSO = [PSCustomObject]@{ } return $PSO } } |