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