beta/src/PSSailpointBeta/Model/SpConfigObject.ps1
# # IdentityNow Beta API # Use these APIs to interact with the IdentityNow 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 Response model for get object configuration. .PARAMETER ObjectType The object type this configuration is for. .PARAMETER ResolveByIdUrl No description available. .PARAMETER ResolveByNameUrl Url and query parameters to be used to resolve this type of object by name. .PARAMETER ExportUrl No description available. .PARAMETER ExportRight Rights needed by the invoker of sp-config/export in order to export this type of object. .PARAMETER ExportLimit Pagination limit imposed by the target service for this object type. .PARAMETER ImportUrl No description available. .PARAMETER ImportRight Rights needed by the invoker of sp-config/import in order to import this type of object. .PARAMETER ImportLimit Pagination limit imposed by the target service for this object type. .PARAMETER ReferenceExtractors List of json paths within an exported object of this type that represent references that need to be resolved. .PARAMETER SignatureRequired If true, this type of object will be JWS signed and cannot be modified before import. .OUTPUTS SpConfigObject<PSCustomObject> #> function Initialize-BetaSpConfigObject { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [String] ${ObjectType}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${ResolveByIdUrl}, [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)] [PSCustomObject[]] ${ResolveByNameUrl}, [Parameter(Position = 3, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${ExportUrl}, [Parameter(Position = 4, ValueFromPipelineByPropertyName = $true)] [String] ${ExportRight}, [Parameter(Position = 5, ValueFromPipelineByPropertyName = $true)] [System.Nullable[Int32]] ${ExportLimit}, [Parameter(Position = 6, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${ImportUrl}, [Parameter(Position = 7, ValueFromPipelineByPropertyName = $true)] [String] ${ImportRight}, [Parameter(Position = 8, ValueFromPipelineByPropertyName = $true)] [System.Nullable[Int32]] ${ImportLimit}, [Parameter(Position = 9, ValueFromPipelineByPropertyName = $true)] [String[]] ${ReferenceExtractors}, [Parameter(Position = 10, ValueFromPipelineByPropertyName = $true)] [System.Nullable[Boolean]] ${SignatureRequired} = $false ) Process { 'Creating PSCustomObject: PSSailpointBeta => BetaSpConfigObject' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "objectType" = ${ObjectType} "resolveByIdUrl" = ${ResolveByIdUrl} "resolveByNameUrl" = ${ResolveByNameUrl} "exportUrl" = ${ExportUrl} "exportRight" = ${ExportRight} "exportLimit" = ${ExportLimit} "importUrl" = ${ImportUrl} "importRight" = ${ImportRight} "importLimit" = ${ImportLimit} "referenceExtractors" = ${ReferenceExtractors} "signatureRequired" = ${SignatureRequired} } return $PSO } } <# .SYNOPSIS Convert from JSON to SpConfigObject<PSCustomObject> .DESCRIPTION Convert from JSON to SpConfigObject<PSCustomObject> .PARAMETER Json Json object .OUTPUTS SpConfigObject<PSCustomObject> #> function ConvertFrom-BetaJsonToSpConfigObject { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpointBeta => BetaSpConfigObject' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in BetaSpConfigObject $AllProperties = ("objectType", "resolveByIdUrl", "resolveByNameUrl", "exportUrl", "exportRight", "exportLimit", "importUrl", "importRight", "importLimit", "referenceExtractors", "signatureRequired") 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 "objectType"))) { #optional property not found $ObjectType = $null } else { $ObjectType = $JsonParameters.PSobject.Properties["objectType"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "resolveByIdUrl"))) { #optional property not found $ResolveByIdUrl = $null } else { $ResolveByIdUrl = $JsonParameters.PSobject.Properties["resolveByIdUrl"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "resolveByNameUrl"))) { #optional property not found $ResolveByNameUrl = $null } else { $ResolveByNameUrl = $JsonParameters.PSobject.Properties["resolveByNameUrl"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "exportUrl"))) { #optional property not found $ExportUrl = $null } else { $ExportUrl = $JsonParameters.PSobject.Properties["exportUrl"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "exportRight"))) { #optional property not found $ExportRight = $null } else { $ExportRight = $JsonParameters.PSobject.Properties["exportRight"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "exportLimit"))) { #optional property not found $ExportLimit = $null } else { $ExportLimit = $JsonParameters.PSobject.Properties["exportLimit"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "importUrl"))) { #optional property not found $ImportUrl = $null } else { $ImportUrl = $JsonParameters.PSobject.Properties["importUrl"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "importRight"))) { #optional property not found $ImportRight = $null } else { $ImportRight = $JsonParameters.PSobject.Properties["importRight"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "importLimit"))) { #optional property not found $ImportLimit = $null } else { $ImportLimit = $JsonParameters.PSobject.Properties["importLimit"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "referenceExtractors"))) { #optional property not found $ReferenceExtractors = $null } else { $ReferenceExtractors = $JsonParameters.PSobject.Properties["referenceExtractors"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "signatureRequired"))) { #optional property not found $SignatureRequired = $null } else { $SignatureRequired = $JsonParameters.PSobject.Properties["signatureRequired"].value } $PSO = [PSCustomObject]@{ "objectType" = ${ObjectType} "resolveByIdUrl" = ${ResolveByIdUrl} "resolveByNameUrl" = ${ResolveByNameUrl} "exportUrl" = ${ExportUrl} "exportRight" = ${ExportRight} "exportLimit" = ${ExportLimit} "importUrl" = ${ImportUrl} "importRight" = ${ImportRight} "importLimit" = ${ImportLimit} "referenceExtractors" = ${ReferenceExtractors} "signatureRequired" = ${SignatureRequired} } return $PSO } } |