v3/tests/Api/WorkflowsApi.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 'WorkflowsApi' { Context 'Suspend-WorkflowExecution' { It 'Test Suspend-WorkflowExecution' { #$TestResult = Suspend-WorkflowExecution -Id "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'New-ExternalExecuteWorkflow' { It 'Test New-ExternalExecuteWorkflow' { #$TestResult = New-ExternalExecuteWorkflow -Id "TEST_VALUE" -CreateExternalExecuteWorkflowRequest "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'New-Workflow' { It 'Test New-Workflow' { #$TestResult = New-Workflow -CreateWorkflowRequest "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'New-WorkflowExternalTrigger' { It 'Test New-WorkflowExternalTrigger' { #$TestResult = New-WorkflowExternalTrigger -Id "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Remove-Workflow' { It 'Test Remove-Workflow' { #$TestResult = Remove-Workflow -Id "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-Workflow' { It 'Test Get-Workflow' { #$TestResult = Get-Workflow -Id "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-WorkflowExecution' { It 'Test Get-WorkflowExecution' { #$TestResult = Get-WorkflowExecution -Id "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-WorkflowExecutionHistory' { It 'Test Get-WorkflowExecutionHistory' { #$TestResult = Get-WorkflowExecutionHistory -Id "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-CompleteWorkflowLibrary' { It 'Test Get-CompleteWorkflowLibrary' { #$TestResult = Get-CompleteWorkflowLibrary -Limit "TEST_VALUE" -Offset "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-WorkflowExecutions' { It 'Test Get-WorkflowExecutions' { #$TestResult = Get-WorkflowExecutions -Id "TEST_VALUE" -Limit "TEST_VALUE" -Offset "TEST_VALUE" -Count "TEST_VALUE" -Filters "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-WorkflowLibraryActions' { It 'Test Get-WorkflowLibraryActions' { #$TestResult = Get-WorkflowLibraryActions -Limit "TEST_VALUE" -Offset "TEST_VALUE" -Filters "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-WorkflowLibraryOperators' { It 'Test Get-WorkflowLibraryOperators' { #$TestResult = Get-WorkflowLibraryOperators #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-WorkflowLibraryTriggers' { It 'Test Get-WorkflowLibraryTriggers' { #$TestResult = Get-WorkflowLibraryTriggers -Limit "TEST_VALUE" -Offset "TEST_VALUE" -Filters "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-Workflows' { It 'Test Get-Workflows' { #$TestResult = Get-Workflows #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Update-Workflow' { It 'Test Update-Workflow' { #$TestResult = Update-Workflow -Id "TEST_VALUE" -JsonPatchOperation "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Send-Workflow' { It 'Test Send-Workflow' { #$TestResult = Send-Workflow -Id "TEST_VALUE" -WorkflowBody "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Test-ExternalExecuteWorkflow' { It 'Test Test-ExternalExecuteWorkflow' { #$TestResult = Test-ExternalExecuteWorkflow -Id "TEST_VALUE" -TestExternalExecuteWorkflowRequest "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Test-Workflow' { It 'Test Test-Workflow' { #$TestResult = Test-Workflow -Id "TEST_VALUE" -TestWorkflowRequest "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } } |