github.com/yaegashi/msgraph.go@v0.1.4/beta/ModelKerberos.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // KerberosSingleSignOnExtension undocumented
     6  type KerberosSingleSignOnExtension struct {
     7  	// SingleSignOnExtension is the base model of KerberosSingleSignOnExtension
     8  	SingleSignOnExtension
     9  	// Realm Gets or sets the case-sensitive realm name for this profile.
    10  	Realm *string `json:"realm,omitempty"`
    11  	// Domains Gets or sets a list of hosts or domain names for which the app extension performs SSO.
    12  	Domains []string `json:"domains,omitempty"`
    13  	// BlockAutomaticLogin Enables or disables Keychain usage.
    14  	BlockAutomaticLogin *bool `json:"blockAutomaticLogin,omitempty"`
    15  	// CacheName Gets or sets the Generic Security Services name of the Kerberos cache to use for this profile.
    16  	CacheName *string `json:"cacheName,omitempty"`
    17  	// CredentialBundleIDAccessControlList Gets or sets a list of app Bundle IDs allowed to access the Kerberos Ticket Granting Ticket.
    18  	CredentialBundleIDAccessControlList []string `json:"credentialBundleIdAccessControlList,omitempty"`
    19  	// DomainRealms Gets or sets a list of realms for custom domain-realm mapping. Realms are case sensitive.
    20  	DomainRealms []string `json:"domainRealms,omitempty"`
    21  	// IsDefaultRealm When true, this profile's realm will be selected as the default. Necessary if multiple Kerberos-type profiles are configured.
    22  	IsDefaultRealm *bool `json:"isDefaultRealm,omitempty"`
    23  	// PasswordBlockModification Enables or disables password changes.
    24  	PasswordBlockModification *bool `json:"passwordBlockModification,omitempty"`
    25  	// PasswordExpirationDays Overrides the default password expiration in days. For most domains, this value is calculated automatically.
    26  	PasswordExpirationDays *int `json:"passwordExpirationDays,omitempty"`
    27  	// PasswordExpirationNotificationDays Gets or sets the number of days until the user is notified that their password will expire (default is 15).
    28  	PasswordExpirationNotificationDays *int `json:"passwordExpirationNotificationDays,omitempty"`
    29  	// UserPrincipalName Gets or sets the principle user name to use for this profile. The realm name does not need to be included.
    30  	UserPrincipalName *string `json:"userPrincipalName,omitempty"`
    31  	// PasswordRequireActiveDirectoryComplexity Enables or disables whether passwords must meet Active Directory's complexity requirements.
    32  	PasswordRequireActiveDirectoryComplexity *bool `json:"passwordRequireActiveDirectoryComplexity,omitempty"`
    33  	// PasswordPreviousPasswordBlockCount Gets or sets the number of previous passwords to block.
    34  	PasswordPreviousPasswordBlockCount *int `json:"passwordPreviousPasswordBlockCount,omitempty"`
    35  	// PasswordMinimumLength Gets or sets the minimum length of a password.
    36  	PasswordMinimumLength *int `json:"passwordMinimumLength,omitempty"`
    37  	// PasswordMinimumAgeDays Gets or sets the minimum number of days until a user can change their password again.
    38  	PasswordMinimumAgeDays *int `json:"passwordMinimumAgeDays,omitempty"`
    39  	// PasswordRequirementsDescription Gets or sets a description of the password complexity requirements.
    40  	PasswordRequirementsDescription *string `json:"passwordRequirementsDescription,omitempty"`
    41  	// RequireUserPresence Gets or sets whether to require authentication via Touch ID, Face ID, or a passcode to access the keychain entry.
    42  	RequireUserPresence *bool `json:"requireUserPresence,omitempty"`
    43  	// ActiveDirectorySiteCode Gets or sets the Active Directory site.
    44  	ActiveDirectorySiteCode *string `json:"activeDirectorySiteCode,omitempty"`
    45  	// PasswordEnableLocalSync Enables or disables password syncing. This won't affect users logged in with a mobile account on macOS.
    46  	PasswordEnableLocalSync *bool `json:"passwordEnableLocalSync,omitempty"`
    47  	// BlockActiveDirectorySiteAutoDiscovery Enables or disables whether the Kerberos extension can automatically determine its site name.
    48  	BlockActiveDirectorySiteAutoDiscovery *bool `json:"blockActiveDirectorySiteAutoDiscovery,omitempty"`
    49  }