Model/NonEmployeeSourceRequestBody.ps1
# # Identity Security Cloud V3 API # Use these APIs to interact with the Identity Security Cloud platform to achieve repeatable, automated processes with greater scalability. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs. # Version: 3.0.0 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION No description available. .PARAMETER Name Name of non-employee source. .PARAMETER Description Description of non-employee source. .PARAMETER Owner No description available. .PARAMETER ManagementWorkgroup The ID for the management workgroup that contains source sub-admins .PARAMETER Approvers List of approvers. .PARAMETER AccountManagers List of account managers. .OUTPUTS NonEmployeeSourceRequestBody<PSCustomObject> #> function Initialize-NonEmployeeSourceRequestBody { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Name}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Description}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Owner}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${ManagementWorkgroup}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject[]] ${Approvers}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject[]] ${AccountManagers} ) Process { 'Creating PSCustomObject: PSSailpoint.V3 => NonEmployeeSourceRequestBody' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if (!$Name) { throw "invalid value for 'Name', 'Name' cannot be null." } if (!$Description) { throw "invalid value for 'Description', 'Description' cannot be null." } if (!$Owner) { throw "invalid value for 'Owner', 'Owner' cannot be null." } if (!$Approvers -and $Approvers.length -gt 3) { throw "invalid value for 'Approvers', number of items must be less than or equal to 3." } if (!$AccountManagers -and $AccountManagers.length -gt 10) { throw "invalid value for 'AccountManagers', number of items must be less than or equal to 10." } $PSO = [PSCustomObject]@{ "name" = ${Name} "description" = ${Description} "owner" = ${Owner} "managementWorkgroup" = ${ManagementWorkgroup} "approvers" = ${Approvers} "accountManagers" = ${AccountManagers} } return $PSO } } <# .SYNOPSIS Convert from JSON to NonEmployeeSourceRequestBody<PSCustomObject> .DESCRIPTION Convert from JSON to NonEmployeeSourceRequestBody<PSCustomObject> .PARAMETER Json Json object .OUTPUTS NonEmployeeSourceRequestBody<PSCustomObject> #> function ConvertFrom-JsonToNonEmployeeSourceRequestBody { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.V3 => NonEmployeeSourceRequestBody' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in NonEmployeeSourceRequestBody $AllProperties = ("name", "description", "owner", "managementWorkgroup", "approvers", "accountManagers") foreach ($name in $JsonParameters.PsObject.Properties.Name) { if (!($AllProperties.Contains($name))) { throw "Error! JSON key '$name' not found in the properties: $($AllProperties)" } } If ([string]::IsNullOrEmpty($Json) -or $Json -eq "{}") { # empty json throw "Error! Empty JSON cannot be serialized due to the required property 'name' missing." } if (!([bool]($JsonParameters.PSobject.Properties.name -match "name"))) { throw "Error! JSON cannot be serialized due to the required property 'name' missing." } else { $Name = $JsonParameters.PSobject.Properties["name"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "description"))) { throw "Error! JSON cannot be serialized due to the required property 'description' missing." } else { $Description = $JsonParameters.PSobject.Properties["description"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "owner"))) { throw "Error! JSON cannot be serialized due to the required property 'owner' missing." } else { $Owner = $JsonParameters.PSobject.Properties["owner"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "managementWorkgroup"))) { #optional property not found $ManagementWorkgroup = $null } else { $ManagementWorkgroup = $JsonParameters.PSobject.Properties["managementWorkgroup"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "approvers"))) { #optional property not found $Approvers = $null } else { $Approvers = $JsonParameters.PSobject.Properties["approvers"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "accountManagers"))) { #optional property not found $AccountManagers = $null } else { $AccountManagers = $JsonParameters.PSobject.Properties["accountManagers"].value } $PSO = [PSCustomObject]@{ "name" = ${Name} "description" = ${Description} "owner" = ${Owner} "managementWorkgroup" = ${ManagementWorkgroup} "approvers" = ${Approvers} "accountManagers" = ${AccountManagers} } return $PSO } } |