forked from jshiffer/matterbridge
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
16 lines
935 B
Go
16 lines
935 B
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
// BitLockerRemovableDrivePolicy undocumented
|
|
type BitLockerRemovableDrivePolicy struct {
|
|
// Object is the base model of BitLockerRemovableDrivePolicy
|
|
Object
|
|
// EncryptionMethod Select the encryption method for removable drives.
|
|
EncryptionMethod *BitLockerEncryptionMethod `json:"encryptionMethod,omitempty"`
|
|
// RequireEncryptionForWriteAccess Indicates whether to block write access to devices configured in another organization. If requireEncryptionForWriteAccess is false, this value does not affect.
|
|
RequireEncryptionForWriteAccess *bool `json:"requireEncryptionForWriteAccess,omitempty"`
|
|
// BlockCrossOrganizationWriteAccess This policy setting determines whether BitLocker protection is required for removable data drives to be writable on a computer.
|
|
BlockCrossOrganizationWriteAccess *bool `json:"blockCrossOrganizationWriteAccess,omitempty"`
|
|
}
|