GraphQL INPUT_OBJECT

UpdateSecurityPolicyInput

Input for update of security policy.

link Definition

  • input UpdateSecurityPolicyInput {
  • # Unique Id of the security policy.
  • id: Int!
  • # Name of the security policy.
  • name: String
  • # Minimum password length required.
  • minimumPasswordLength: Int
  • # Indicates if complex passwords are enforced.
  • enforceComplexPasswords: Boolean
  • # Number of days after which a password change is required.
  • passwordChangeIntervalDays: Int
  • # Number of previous passwords that cannot be reused.
  • passwordHistoryLength: Int
  • # Indicates if the first password must be changed.
  • mustChangeFirstPassword: Boolean
  • # Number of failed login attempts before account lockout.
  • failedLoginAttemptsThreshold: Int
  • # Duration of account lockout in minutes.
  • accountLockoutDurationMinutes: Int
  • # Number of days after which inactive users are deactivated.
  • inactiveUserDeactivationThresholdDays: Int
  • }

link Required by