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