v2/tests/Model/UpdateOrgSettingsRequest.Tests.ps1
# # SailPoint SaaS API # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # Version: 2.0.0 # Generated by OpenAPI Generator: https://openapi-generator.tech # Describe -tag 'PSSailpointV2' -name 'V2UpdateOrgSettingsRequest' { Context 'V2UpdateOrgSettingsRequest' { It 'Initialize-V2UpdateOrgSettingsRequest' { # a simple test to create an object #$NewObject = Initialize-V2UpdateOrgSettingsRequest -CountryCodes "TEST_VALUE" -EnableExternalPasswordChange "TEST_VALUE" -EnableAutomaticPasswordReplay "TEST_VALUE" -EnableAutomationGeneration "TEST_VALUE" -KbaReqAnswers "TEST_VALUE" -KbaReqForAuthn "TEST_VALUE" -LockoutAttemptThreshold "TEST_VALUE" -LockoutTimeMinutes "TEST_VALUE" -LoginUrl "TEST_VALUE" -Netmasks "TEST_VALUE" -NotifyAuthenticationSettingChange "TEST_VALUE" -PasswordReplayState "TEST_VALUE" -PreferredIdentityInviteTemplate "TEST_VALUE" -RedirectPatterns "TEST_VALUE" -SsoPartnerSource "TEST_VALUE" -SystemNotificationEmails "TEST_VALUE" -TrackAnalytics "TEST_VALUE" -UsageCertRequired "TEST_VALUE" -UsageCertText "TEST_VALUE" -UsernameEmptyText "TEST_VALUE" -UsernameLabel "TEST_VALUE" -WhiteList "TEST_VALUE" -ApprovalConfig "TEST_VALUE" #$NewObject | Should -BeOfType UpdateOrgSettingsRequest #$NewObject.property | Should -Be 0 } } } |