GraphQL OBJECT
SecurityPolicy
Security policy.
link Definition
- type SecurityPolicy {
- # Unique ID of the security policy.
- Int! :
- # Name of the security policy.
- String! :
- # Minimum password length required.
- Int! :
- # Indicates if complex passwords are enforced.
- Boolean :
- # Number of days after which a password change is required.
- Int :
- # Number of previous passwords that cannot be reused.
- Int :
- # Indicates if the first password must be changed.
- Boolean :
- # Number of failed login attempts before account lockout.
- Int :
- # Duration of account lockout in minutes.
- Int :
- # Number of days after which inactive users are deactivated.
- Int :
- # Client to whose organization the security policy belongs.
- Client :
- # User accounts that refer to this security policy.
- UserAccount] : [
- # Clients that refer to this security policy.
- Client] : [
- }