diff options
author | Wim <wim@42.be> | 2020-03-08 17:08:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-08 17:08:18 +0100 |
commit | 9785edd26366be8eb11c2435f50f90a5c8eea7fc (patch) | |
tree | e8e236b5b273e7535c607507cc059f3b957068a1 /vendor/github.com/yaegashi/msgraph.go/beta/KerberosSingleSignOnExtensionModel.go | |
parent | 2a0bc11b684f63305258e338c5f1d0e91eb24414 (diff) | |
download | matterbridge-msglm-9785edd26366be8eb11c2435f50f90a5c8eea7fc.tar.gz matterbridge-msglm-9785edd26366be8eb11c2435f50f90a5c8eea7fc.tar.bz2 matterbridge-msglm-9785edd26366be8eb11c2435f50f90a5c8eea7fc.zip |
Remove replace directives and use own fork to make go get work again (#1028)
See https://github.com/golang/go/issues/30354
go get doesn't honor the go.mod replace options.
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/KerberosSingleSignOnExtensionModel.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/KerberosSingleSignOnExtensionModel.go | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/KerberosSingleSignOnExtensionModel.go b/vendor/github.com/yaegashi/msgraph.go/beta/KerberosSingleSignOnExtensionModel.go deleted file mode 100644 index 12f18230..00000000 --- a/vendor/github.com/yaegashi/msgraph.go/beta/KerberosSingleSignOnExtensionModel.go +++ /dev/null @@ -1,49 +0,0 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. - -package msgraph - -// KerberosSingleSignOnExtension undocumented -type KerberosSingleSignOnExtension struct { - // SingleSignOnExtension is the base model of KerberosSingleSignOnExtension - SingleSignOnExtension - // Realm Gets or sets the case-sensitive realm name for this profile. - Realm *string `json:"realm,omitempty"` - // Domains Gets or sets a list of hosts or domain names for which the app extension performs SSO. - Domains []string `json:"domains,omitempty"` - // BlockAutomaticLogin Enables or disables Keychain usage. - BlockAutomaticLogin *bool `json:"blockAutomaticLogin,omitempty"` - // CacheName Gets or sets the Generic Security Services name of the Kerberos cache to use for this profile. - CacheName *string `json:"cacheName,omitempty"` - // CredentialBundleIDAccessControlList Gets or sets a list of app Bundle IDs allowed to access the Kerberos Ticket Granting Ticket. - CredentialBundleIDAccessControlList []string `json:"credentialBundleIdAccessControlList,omitempty"` - // DomainRealms Gets or sets a list of realms for custom domain-realm mapping. Realms are case sensitive. - DomainRealms []string `json:"domainRealms,omitempty"` - // IsDefaultRealm When true, this profile's realm will be selected as the default. Necessary if multiple Kerberos-type profiles are configured. - IsDefaultRealm *bool `json:"isDefaultRealm,omitempty"` - // PasswordBlockModification Enables or disables password changes. - PasswordBlockModification *bool `json:"passwordBlockModification,omitempty"` - // PasswordExpirationDays Overrides the default password expiration in days. For most domains, this value is calculated automatically. - PasswordExpirationDays *int `json:"passwordExpirationDays,omitempty"` - // PasswordExpirationNotificationDays Gets or sets the number of days until the user is notified that their password will expire (default is 15). - PasswordExpirationNotificationDays *int `json:"passwordExpirationNotificationDays,omitempty"` - // UserPrincipalName Gets or sets the principle user name to use for this profile. The realm name does not need to be included. - UserPrincipalName *string `json:"userPrincipalName,omitempty"` - // PasswordRequireActiveDirectoryComplexity Enables or disables whether passwords must meet Active Directory's complexity requirements. - PasswordRequireActiveDirectoryComplexity *bool `json:"passwordRequireActiveDirectoryComplexity,omitempty"` - // PasswordPreviousPasswordBlockCount Gets or sets the number of previous passwords to block. - PasswordPreviousPasswordBlockCount *int `json:"passwordPreviousPasswordBlockCount,omitempty"` - // PasswordMinimumLength Gets or sets the minimum length of a password. - PasswordMinimumLength *int `json:"passwordMinimumLength,omitempty"` - // PasswordMinimumAgeDays Gets or sets the minimum number of days until a user can change their password again. - PasswordMinimumAgeDays *int `json:"passwordMinimumAgeDays,omitempty"` - // PasswordRequirementsDescription Gets or sets a description of the password complexity requirements. - PasswordRequirementsDescription *string `json:"passwordRequirementsDescription,omitempty"` - // RequireUserPresence Gets or sets whether to require authentication via Touch ID, Face ID, or a passcode to access the keychain entry. - RequireUserPresence *bool `json:"requireUserPresence,omitempty"` - // ActiveDirectorySiteCode Gets or sets the Active Directory site. - ActiveDirectorySiteCode *string `json:"activeDirectorySiteCode,omitempty"` - // PasswordEnableLocalSync Enables or disables password syncing. This won't affect users logged in with a mobile account on macOS. - PasswordEnableLocalSync *bool `json:"passwordEnableLocalSync,omitempty"` - // BlockActiveDirectorySiteAutoDiscovery Enables or disables whether the Kerberos extension can automatically determine its site name. - BlockActiveDirectorySiteAutoDiscovery *bool `json:"blockActiveDirectorySiteAutoDiscovery,omitempty"` -} |