v3/tests/Api/AccountsApi.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 'AccountsApi' { Context 'New-Account' { It 'Test New-Account' { #$TestResult = New-Account -AccountAttributesCreate "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Remove-Account' { It 'Test Remove-Account' { #$TestResult = Remove-Account -Id "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Disable-Account' { It 'Test Disable-Account' { #$TestResult = Disable-Account -Id "TEST_VALUE" -AccountToggleRequest "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Enable-Account' { It 'Test Enable-Account' { #$TestResult = Enable-Account -Id "TEST_VALUE" -AccountToggleRequest "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-Account' { It 'Test Get-Account' { #$TestResult = Get-Account -Id "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-AccountEntitlements' { It 'Test Get-AccountEntitlements' { #$TestResult = Get-AccountEntitlements -Id "TEST_VALUE" -Limit "TEST_VALUE" -Offset "TEST_VALUE" -Count "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-Accounts' { It 'Test Get-Accounts' { #$TestResult = Get-Accounts -Limit "TEST_VALUE" -Offset "TEST_VALUE" -Count "TEST_VALUE" -Filters "TEST_VALUE" -Sorters "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Send-Account' { It 'Test Send-Account' { #$TestResult = Send-Account -Id "TEST_VALUE" -AccountAttributes "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Invoke-ReloadAccount' { It 'Test Invoke-ReloadAccount' { #$TestResult = Invoke-ReloadAccount -Id "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Unlock-Account' { It 'Test Unlock-Account' { #$TestResult = Unlock-Account -Id "TEST_VALUE" -AccountUnlockRequest "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Update-Account' { It 'Test Update-Account' { #$TestResult = Update-Account -Id "TEST_VALUE" -JsonPatchOperation "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } } |