nerm/tests/Api/NERMProfilesApi.Tests.ps1
|
# # NERM API # The NERM API accesss and modifies resources in your environment. # Version: 1.0.0 # Generated by OpenAPI Generator: https://openapi-generator.tech # Describe -tag 'PSSailpoint.NERM' -name 'NERMNERMProfilesApi' { Context 'New-NERMProfiles' { It 'Test New-NERMProfiles' { #$TestResult = New-NERMProfiles -CreateProfilesRequest "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Remove-NERMProfileById' { It 'Test Remove-NERMProfileById' { #$TestResult = Remove-NERMProfileById -Id "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Remove-NERMProfiles' { It 'Test Remove-NERMProfiles' { #$TestResult = Remove-NERMProfiles -CreateProfilesRequest "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-NERMProfileAvatar' { It 'Test Get-NERMProfileAvatar' { #$TestResult = Get-NERMProfileAvatar -Id "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-NERMProfileById' { It 'Test Get-NERMProfileById' { #$TestResult = Get-NERMProfileById -Id "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-NERMProfileUpload' { It 'Test Get-NERMProfileUpload' { #$TestResult = Get-NERMProfileUpload -Id "TEST_VALUE" -AttributeId "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-NERMProfiles' { It 'Test Get-NERMProfiles' { #$TestResult = Get-NERMProfiles -Limit "TEST_VALUE" -Offset "TEST_VALUE" -Order "TEST_VALUE" -ExcludeAttributes "TEST_VALUE" -Name "TEST_VALUE" -ProfileTypeId "TEST_VALUE" -Status "TEST_VALUE" -Metadata "TEST_VALUE" -AfterId "TEST_VALUE" -UpdatedAfter "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Update-NERMProfileById' { It 'Test Update-NERMProfileById' { #$TestResult = Update-NERMProfileById -Id "TEST_VALUE" -SubmitProfileRequest "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Update-NERMProfiles' { It 'Test Update-NERMProfiles' { #$TestResult = Update-NERMProfiles -CreateProfilesRequest "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Submit-NERMProfile' { It 'Test Submit-NERMProfile' { #$TestResult = Submit-NERMProfile -SubmitProfileRequest "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Submit-NERMProfileAvatar' { It 'Test Submit-NERMProfileAvatar' { #$TestResult = Submit-NERMProfileAvatar -Id "TEST_VALUE" -File "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Submit-NERMProfileUpload' { It 'Test Submit-NERMProfileUpload' { #$TestResult = Submit-NERMProfileUpload -Id "TEST_VALUE" -AttributeId "TEST_VALUE" -File "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } } |