beta/src/PSSailpoint.Beta/Model/RecommendationConfigDto.ps1
# # Identity Security Cloud Beta API # Use these APIs to interact with the Identity Security Cloud platform to achieve repeatable, automated processes with greater scalability. These APIs are in beta and are subject to change. 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.1.0-beta # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION No description available. .PARAMETER RecommenderFeatures List of identity attributes to use for calculating certification recommendations .PARAMETER PeerGroupPercentageThreshold The percent value that the recommendation calculation must surpass to produce a YES recommendation .PARAMETER RunAutoSelectOnce If true, rulesRecommenderConfig will be refreshed with new programatically selected attribute and threshold values on the next pipeline run .PARAMETER OnlyTuneThreshold If true, rulesRecommenderConfig will be refreshed with new programatically selected threshold values on the next pipeline run .OUTPUTS RecommendationConfigDto<PSCustomObject> #> function Initialize-BetaRecommendationConfigDto { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [String[]] ${RecommenderFeatures}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Double]] ${PeerGroupPercentageThreshold}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Boolean]] ${RunAutoSelectOnce} = $false, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Boolean]] ${OnlyTuneThreshold} = $false ) Process { 'Creating PSCustomObject: PSSailpoint.Beta => BetaRecommendationConfigDto' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if ($PeerGroupPercentageThreshold -and $PeerGroupPercentageThreshold -gt 1.0) { throw "invalid value for 'PeerGroupPercentageThreshold', must be smaller than or equal to 1.0." } if ($PeerGroupPercentageThreshold -and $PeerGroupPercentageThreshold -lt 0.0) { throw "invalid value for 'PeerGroupPercentageThreshold', must be greater than or equal to 0.0." } $PSO = [PSCustomObject]@{ "recommenderFeatures" = ${RecommenderFeatures} "peerGroupPercentageThreshold" = ${PeerGroupPercentageThreshold} "runAutoSelectOnce" = ${RunAutoSelectOnce} "onlyTuneThreshold" = ${OnlyTuneThreshold} } return $PSO } } <# .SYNOPSIS Convert from JSON to RecommendationConfigDto<PSCustomObject> .DESCRIPTION Convert from JSON to RecommendationConfigDto<PSCustomObject> .PARAMETER Json Json object .OUTPUTS RecommendationConfigDto<PSCustomObject> #> function ConvertFrom-BetaJsonToRecommendationConfigDto { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.Beta => BetaRecommendationConfigDto' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in BetaRecommendationConfigDto $AllProperties = ("recommenderFeatures", "peerGroupPercentageThreshold", "runAutoSelectOnce", "onlyTuneThreshold") 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 "recommenderFeatures"))) { #optional property not found $RecommenderFeatures = $null } else { $RecommenderFeatures = $JsonParameters.PSobject.Properties["recommenderFeatures"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "peerGroupPercentageThreshold"))) { #optional property not found $PeerGroupPercentageThreshold = $null } else { $PeerGroupPercentageThreshold = $JsonParameters.PSobject.Properties["peerGroupPercentageThreshold"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "runAutoSelectOnce"))) { #optional property not found $RunAutoSelectOnce = $null } else { $RunAutoSelectOnce = $JsonParameters.PSobject.Properties["runAutoSelectOnce"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "onlyTuneThreshold"))) { #optional property not found $OnlyTuneThreshold = $null } else { $OnlyTuneThreshold = $JsonParameters.PSobject.Properties["onlyTuneThreshold"].value } $PSO = [PSCustomObject]@{ "recommenderFeatures" = ${RecommenderFeatures} "peerGroupPercentageThreshold" = ${PeerGroupPercentageThreshold} "runAutoSelectOnce" = ${RunAutoSelectOnce} "onlyTuneThreshold" = ${OnlyTuneThreshold} } return $PSO } } |