v2025/src/PSSailpoint.V2025/Model/ParameterStorageJsonPatch.ps1
|
# # Identity Security Cloud V2025 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: v2025 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION RFC 6902 JSON Patch operation .PARAMETER Op The operation to perform (add, remove, replace, move, copy, test) .PARAMETER Path A JSON-Pointer describing the target location .PARAMETER Value The value to be used within the operations. Required for add/replace/test. .PARAMETER VarFrom A JSON-Pointer describing the source location for move/copy. .OUTPUTS ParameterStorageJsonPatch<PSCustomObject> #> function Initialize-V2025ParameterStorageJsonPatch { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [ValidateSet("add", "remove", "replace", "move", "copy", "test")] [String] ${Op}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Path}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Value}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${VarFrom} ) Process { 'Creating PSCustomObject: PSSailpoint.V2025 => V2025ParameterStorageJsonPatch' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if (!$Op) { throw "invalid value for 'Op', 'Op' cannot be null." } if (!$Path) { throw "invalid value for 'Path', 'Path' cannot be null." } $PSO = [PSCustomObject]@{ "op" = ${Op} "path" = ${Path} "value" = ${Value} "from" = ${VarFrom} } return $PSO } } <# .SYNOPSIS Convert from JSON to ParameterStorageJsonPatch<PSCustomObject> .DESCRIPTION Convert from JSON to ParameterStorageJsonPatch<PSCustomObject> .PARAMETER Json Json object .OUTPUTS ParameterStorageJsonPatch<PSCustomObject> #> function ConvertFrom-V2025JsonToParameterStorageJsonPatch { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.V2025 => V2025ParameterStorageJsonPatch' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in V2025ParameterStorageJsonPatch $AllProperties = ("op", "path", "value", "from") 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 'op' missing." } if (!([bool]($JsonParameters.PSobject.Properties.name -match "op"))) { throw "Error! JSON cannot be serialized due to the required property 'op' missing." } else { $Op = $JsonParameters.PSobject.Properties["op"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "path"))) { throw "Error! JSON cannot be serialized due to the required property 'path' missing." } else { $Path = $JsonParameters.PSobject.Properties["path"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "value"))) { #optional property not found $Value = $null } else { $Value = $JsonParameters.PSobject.Properties["value"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "from"))) { #optional property not found $VarFrom = $null } else { $VarFrom = $JsonParameters.PSobject.Properties["from"].value } $PSO = [PSCustomObject]@{ "op" = ${Op} "path" = ${Path} "value" = ${Value} "from" = ${VarFrom} } return $PSO } } |