mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
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"`
|
||
|
}
|