github.com/yaegashi/msgraph.go@v0.1.4/v1.0/ModelBit.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // BitLockerRemovableDrivePolicy undocumented
     6  type BitLockerRemovableDrivePolicy struct {
     7  	// Object is the base model of BitLockerRemovableDrivePolicy
     8  	Object
     9  	// EncryptionMethod Select the encryption method for removable  drives.
    10  	EncryptionMethod *BitLockerEncryptionMethod `json:"encryptionMethod,omitempty"`
    11  	// RequireEncryptionForWriteAccess Indicates whether to block write access to devices configured in another organization.  If requireEncryptionForWriteAccess is false, this value does not affect.
    12  	RequireEncryptionForWriteAccess *bool `json:"requireEncryptionForWriteAccess,omitempty"`
    13  	// BlockCrossOrganizationWriteAccess This policy setting determines whether BitLocker protection is required for removable data drives to be writable on a computer.
    14  	BlockCrossOrganizationWriteAccess *bool `json:"blockCrossOrganizationWriteAccess,omitempty"`
    15  }