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