Model/Jitaccessoperationrequest.ps1
|
# # Identity Security Cloud API - JIT Access # 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: v1 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION A single replace operation applied to JIT activation configuration. Only **replace** is supported. **path** must be one of the allowed JSON Pointer-style paths. .PARAMETER Op Operation type. Defaults to `replace` if omitted. .PARAMETER Path Path to replace. Only the following JSON Pointer-style paths are supported. .PARAMETER Value No description available. .OUTPUTS Jitaccessoperationrequest<PSCustomObject> #> function Initialize-Jitaccessoperationrequest { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [ValidateSet("replace")] [String] ${Op} = "replace", [Parameter(ValueFromPipelineByPropertyName = $true)] [ValidateSet("/entitlementIds", "/maxActivationPeriodMins", "/maxActivationPeriodExtensionMins", "/defaultMaxActivationPeriodMins", "/defaultMaxActivationPeriodExtensionMins", "/notificationRecipients", "/notificationTemplate", "/applyToFutureAssignments")] [String] ${Path}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Value} ) Process { 'Creating PSCustomObject: PSSailpoint.JitAccess => Jitaccessoperationrequest' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if (!$Path) { throw "invalid value for 'Path', 'Path' cannot be null." } $PSO = [PSCustomObject]@{ "op" = ${Op} "path" = ${Path} "value" = ${Value} } return $PSO } } <# .SYNOPSIS Convert from JSON to Jitaccessoperationrequest<PSCustomObject> .DESCRIPTION Convert from JSON to Jitaccessoperationrequest<PSCustomObject> .PARAMETER Json Json object .OUTPUTS Jitaccessoperationrequest<PSCustomObject> #> function ConvertFrom-JsonToJitaccessoperationrequest { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.JitAccess => Jitaccessoperationrequest' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in Jitaccessoperationrequest $AllProperties = ("op", "path", "value") 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 'path' missing." } 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"))) { throw "Error! JSON cannot be serialized due to the required property 'value' missing." } else { $Value = $JsonParameters.PSobject.Properties["value"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "op"))) { #optional property not found $Op = $null } else { $Op = $JsonParameters.PSobject.Properties["op"].value } $PSO = [PSCustomObject]@{ "op" = ${Op} "path" = ${Path} "value" = ${Value} } return $PSO } } |