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/Windows10MobileCompliancePolicyModel.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/Windows10MobileCompliancePolicyModel.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/Windows10MobileCompliancePolicyModel.go | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10MobileCompliancePolicyModel.go b/vendor/github.com/yaegashi/msgraph.go/beta/Windows10MobileCompliancePolicyModel.go deleted file mode 100644 index 09f34b27..00000000 --- a/vendor/github.com/yaegashi/msgraph.go/beta/Windows10MobileCompliancePolicyModel.go +++ /dev/null @@ -1,45 +0,0 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. - -package msgraph - -// Windows10MobileCompliancePolicy This class contains compliance settings for Windows 10 Mobile. -type Windows10MobileCompliancePolicy struct { - // DeviceCompliancePolicy is the base model of Windows10MobileCompliancePolicy - DeviceCompliancePolicy - // PasswordRequired Require a password to unlock Windows Phone device. - PasswordRequired *bool `json:"passwordRequired,omitempty"` - // PasswordBlockSimple Whether or not to block syncing the calendar. - PasswordBlockSimple *bool `json:"passwordBlockSimple,omitempty"` - // PasswordMinimumLength Minimum password length. Valid values 4 to 16 - PasswordMinimumLength *int `json:"passwordMinimumLength,omitempty"` - // PasswordMinimumCharacterSetCount The number of character sets required in the password. - PasswordMinimumCharacterSetCount *int `json:"passwordMinimumCharacterSetCount,omitempty"` - // PasswordRequiredType The required password type. - PasswordRequiredType *RequiredPasswordType `json:"passwordRequiredType,omitempty"` - // PasswordPreviousPasswordBlockCount The number of previous passwords to prevent re-use of. - PasswordPreviousPasswordBlockCount *int `json:"passwordPreviousPasswordBlockCount,omitempty"` - // PasswordExpirationDays Number of days before password expiration. Valid values 1 to 255 - PasswordExpirationDays *int `json:"passwordExpirationDays,omitempty"` - // PasswordMinutesOfInactivityBeforeLock Minutes of inactivity before a password is required. - PasswordMinutesOfInactivityBeforeLock *int `json:"passwordMinutesOfInactivityBeforeLock,omitempty"` - // PasswordRequireToUnlockFromIdle Require a password to unlock an idle device. - PasswordRequireToUnlockFromIdle *bool `json:"passwordRequireToUnlockFromIdle,omitempty"` - // OsMinimumVersion Minimum Windows Phone version. - OsMinimumVersion *string `json:"osMinimumVersion,omitempty"` - // OsMaximumVersion Maximum Windows Phone version. - OsMaximumVersion *string `json:"osMaximumVersion,omitempty"` - // EarlyLaunchAntiMalwareDriverEnabled Require devices to be reported as healthy by Windows Device Health Attestation - early launch antimalware driver is enabled. - EarlyLaunchAntiMalwareDriverEnabled *bool `json:"earlyLaunchAntiMalwareDriverEnabled,omitempty"` - // BitLockerEnabled Require devices to be reported healthy by Windows Device Health Attestation - bit locker is enabled - BitLockerEnabled *bool `json:"bitLockerEnabled,omitempty"` - // SecureBootEnabled Require devices to be reported as healthy by Windows Device Health Attestation - secure boot is enabled. - SecureBootEnabled *bool `json:"secureBootEnabled,omitempty"` - // CodeIntegrityEnabled Require devices to be reported as healthy by Windows Device Health Attestation. - CodeIntegrityEnabled *bool `json:"codeIntegrityEnabled,omitempty"` - // StorageRequireEncryption Require encryption on windows devices. - StorageRequireEncryption *bool `json:"storageRequireEncryption,omitempty"` - // ActiveFirewallRequired Require active firewall on Windows devices. - ActiveFirewallRequired *bool `json:"activeFirewallRequired,omitempty"` - // ValidOperatingSystemBuildRanges The valid operating system build ranges on Windows devices. This collection can contain a maximum of 10000 elements. - ValidOperatingSystemBuildRanges []OperatingSystemVersionRange `json:"validOperatingSystemBuildRanges,omitempty"` -} |