v3/tests/Api/ServiceDeskIntegrationApi.Tests.ps1
# # IdentityNow V3 API # Use these APIs to interact with the IdentityNow 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 # Describe -tag 'PSSailpoint' -name 'ServiceDeskIntegrationApi' { Context 'New-ServiceDeskIntegration' { It 'Test New-ServiceDeskIntegration' { #$TestResult = New-ServiceDeskIntegration -ServiceDeskIntegrationDto "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Remove-ServiceDeskIntegration' { It 'Test Remove-ServiceDeskIntegration' { #$TestResult = Remove-ServiceDeskIntegration -Id "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-ServiceDeskIntegration' { It 'Test Get-ServiceDeskIntegration' { #$TestResult = Get-ServiceDeskIntegration -Id "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-ServiceDeskIntegrationTemplate' { It 'Test Get-ServiceDeskIntegrationTemplate' { #$TestResult = Get-ServiceDeskIntegrationTemplate -ScriptName "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-ServiceDeskIntegrationTypes' { It 'Test Get-ServiceDeskIntegrationTypes' { #$TestResult = Get-ServiceDeskIntegrationTypes #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-ServiceDeskIntegrations' { It 'Test Get-ServiceDeskIntegrations' { #$TestResult = Get-ServiceDeskIntegrations -Offset "TEST_VALUE" -Limit "TEST_VALUE" -Sorters "TEST_VALUE" -Filters "TEST_VALUE" -Count "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-StatusCheckDetails' { It 'Test Get-StatusCheckDetails' { #$TestResult = Get-StatusCheckDetails #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Update-ServiceDeskIntegration' { It 'Test Update-ServiceDeskIntegration' { #$TestResult = Update-ServiceDeskIntegration -Id "TEST_VALUE" -JsonPatch "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Send-ServiceDeskIntegration' { It 'Test Send-ServiceDeskIntegration' { #$TestResult = Send-ServiceDeskIntegration -Id "TEST_VALUE" -ServiceDeskIntegrationDto "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Update-StatusCheckDetails' { It 'Test Update-StatusCheckDetails' { #$TestResult = Update-StatusCheckDetails -QueuedCheckConfigDetails "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } } |