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