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/MacOSCompliancePolicyModel.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/MacOSCompliancePolicyModel.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/MacOSCompliancePolicyModel.go | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSCompliancePolicyModel.go b/vendor/github.com/yaegashi/msgraph.go/beta/MacOSCompliancePolicyModel.go deleted file mode 100644 index 4d505bff..00000000 --- a/vendor/github.com/yaegashi/msgraph.go/beta/MacOSCompliancePolicyModel.go +++ /dev/null @@ -1,49 +0,0 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. - -package msgraph - -// MacOSCompliancePolicy This class contains compliance settings for Mac OS. -type MacOSCompliancePolicy struct { - // DeviceCompliancePolicy is the base model of MacOSCompliancePolicy - DeviceCompliancePolicy - // PasswordRequired Whether or not to require a password. - PasswordRequired *bool `json:"passwordRequired,omitempty"` - // PasswordBlockSimple Indicates whether or not to block simple passwords. - PasswordBlockSimple *bool `json:"passwordBlockSimple,omitempty"` - // PasswordExpirationDays Number of days before the password expires. Valid values 1 to 65535 - PasswordExpirationDays *int `json:"passwordExpirationDays,omitempty"` - // PasswordMinimumLength Minimum length of password. Valid values 4 to 14 - PasswordMinimumLength *int `json:"passwordMinimumLength,omitempty"` - // PasswordMinutesOfInactivityBeforeLock Minutes of inactivity before a password is required. - PasswordMinutesOfInactivityBeforeLock *int `json:"passwordMinutesOfInactivityBeforeLock,omitempty"` - // PasswordPreviousPasswordBlockCount Number of previous passwords to block. Valid values 1 to 24 - PasswordPreviousPasswordBlockCount *int `json:"passwordPreviousPasswordBlockCount,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"` - // OsMinimumVersion Minimum MacOS version. - OsMinimumVersion *string `json:"osMinimumVersion,omitempty"` - // OsMaximumVersion Maximum MacOS version. - OsMaximumVersion *string `json:"osMaximumVersion,omitempty"` - // OsMinimumBuildVersion Minimum MacOS build version. - OsMinimumBuildVersion *string `json:"osMinimumBuildVersion,omitempty"` - // OsMaximumBuildVersion Maximum MacOS build version. - OsMaximumBuildVersion *string `json:"osMaximumBuildVersion,omitempty"` - // SystemIntegrityProtectionEnabled Require that devices have enabled system integrity protection. - SystemIntegrityProtectionEnabled *bool `json:"systemIntegrityProtectionEnabled,omitempty"` - // DeviceThreatProtectionEnabled Require that devices have enabled device threat protection. - DeviceThreatProtectionEnabled *bool `json:"deviceThreatProtectionEnabled,omitempty"` - // DeviceThreatProtectionRequiredSecurityLevel Require Mobile Threat Protection minimum risk level to report noncompliance. - DeviceThreatProtectionRequiredSecurityLevel *DeviceThreatProtectionLevel `json:"deviceThreatProtectionRequiredSecurityLevel,omitempty"` - // StorageRequireEncryption Require encryption on Mac OS devices. - StorageRequireEncryption *bool `json:"storageRequireEncryption,omitempty"` - // GatekeeperAllowedAppSource System and Privacy setting that determines which download locations apps can be run from on a macOS device. - GatekeeperAllowedAppSource *MacOSGatekeeperAppSources `json:"gatekeeperAllowedAppSource,omitempty"` - // FirewallEnabled Whether the firewall should be enabled or not. - FirewallEnabled *bool `json:"firewallEnabled,omitempty"` - // FirewallBlockAllIncoming Corresponds to the “Block all incoming connections” option. - FirewallBlockAllIncoming *bool `json:"firewallBlockAllIncoming,omitempty"` - // FirewallEnableStealthMode Corresponds to “Enable stealth mode.” - FirewallEnableStealthMode *bool `json:"firewallEnableStealthMode,omitempty"` -} |