Model/SPGroup.ps1
# # Cloud Governance Api # Contact: support@avepoint.com # <# SPGroup<PSCustomObject> #> function New-SPGroup { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Int32]] ${Id}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Name}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Description}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Owner}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject[]] ${Members}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String[]] ${PermissionLevels}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${SpGroupViewType}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${SpGroupEditType}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Boolean]] ${IsAllowJoinOrLeaveRequest}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Boolean]] ${AutoAcceptRequestToJoinLeave}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${RequestToJoinLeaveEmailSetting}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Boolean]] ${IsTemporaryGroup}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String[]] ${RoleID} ) Process { 'Creating PSCustomObject: Cloud.Governance.Client => SPGroup' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "Id" = ${Id} "Name" = ${Name} "Description" = ${Description} "Owner" = ${Owner} "Members" = ${Members} "PermissionLevels" = ${PermissionLevels} "SpGroupViewType" = ${SpGroupViewType} "SpGroupEditType" = ${SpGroupEditType} "IsAllowJoinOrLeaveRequest" = ${IsAllowJoinOrLeaveRequest} "AutoAcceptRequestToJoinLeave" = ${AutoAcceptRequestToJoinLeave} "RequestToJoinLeaveEmailSetting" = ${RequestToJoinLeaveEmailSetting} "IsTemporaryGroup" = ${IsTemporaryGroup} "RoleID" = ${RoleID} } return $PSO } } <# SPGroup<PSCustomObject> #> function ConvertFrom-JsonToSPGroup { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: Cloud.Governance.Client => SPGroup' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in SPGroup $AllProperties = $("Id", "Name", "Description", "Owner", "Members", "PermissionLevels", "SpGroupViewType", "SpGroupEditType", "IsAllowJoinOrLeaveRequest", "AutoAcceptRequestToJoinLeave", "RequestToJoinLeaveEmailSetting", "IsTemporaryGroup", "RoleID") 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 "Name"))) { #optional property not found $Name = $null } else { $Name = $JsonParameters.PSobject.Properties["Name"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "Description"))) { #optional property not found $Description = $null } else { $Description = $JsonParameters.PSobject.Properties["Description"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "Owner"))) { #optional property not found $Owner = $null } else { $Owner = $JsonParameters.PSobject.Properties["Owner"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "Members"))) { #optional property not found $Members = $null } else { $Members = $JsonParameters.PSobject.Properties["Members"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "PermissionLevels"))) { #optional property not found $PermissionLevels = $null } else { $PermissionLevels = $JsonParameters.PSobject.Properties["PermissionLevels"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "SpGroupViewType"))) { #optional property not found $SpGroupViewType = $null } else { $SpGroupViewType = $JsonParameters.PSobject.Properties["SpGroupViewType"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "SpGroupEditType"))) { #optional property not found $SpGroupEditType = $null } else { $SpGroupEditType = $JsonParameters.PSobject.Properties["SpGroupEditType"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "IsAllowJoinOrLeaveRequest"))) { #optional property not found $IsAllowJoinOrLeaveRequest = $null } else { $IsAllowJoinOrLeaveRequest = $JsonParameters.PSobject.Properties["IsAllowJoinOrLeaveRequest"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "AutoAcceptRequestToJoinLeave"))) { #optional property not found $AutoAcceptRequestToJoinLeave = $null } else { $AutoAcceptRequestToJoinLeave = $JsonParameters.PSobject.Properties["AutoAcceptRequestToJoinLeave"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "RequestToJoinLeaveEmailSetting"))) { #optional property not found $RequestToJoinLeaveEmailSetting = $null } else { $RequestToJoinLeaveEmailSetting = $JsonParameters.PSobject.Properties["RequestToJoinLeaveEmailSetting"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "IsTemporaryGroup"))) { #optional property not found $IsTemporaryGroup = $null } else { $IsTemporaryGroup = $JsonParameters.PSobject.Properties["IsTemporaryGroup"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "RoleID"))) { #optional property not found $RoleID = $null } else { $RoleID = $JsonParameters.PSobject.Properties["RoleID"].value } $PSO = [PSCustomObject]@{ "Id" = ${Id} "Name" = ${Name} "Description" = ${Description} "Owner" = ${Owner} "Members" = ${Members} "PermissionLevels" = ${PermissionLevels} "SpGroupViewType" = ${SpGroupViewType} "SpGroupEditType" = ${SpGroupEditType} "IsAllowJoinOrLeaveRequest" = ${IsAllowJoinOrLeaveRequest} "AutoAcceptRequestToJoinLeave" = ${AutoAcceptRequestToJoinLeave} "RequestToJoinLeaveEmailSetting" = ${RequestToJoinLeaveEmailSetting} "IsTemporaryGroup" = ${IsTemporaryGroup} "RoleID" = ${RoleID} } return $PSO } } |