Microsoft Graph · Schema

bitLockerRemovableDrivePolicy

BitLocker Removable Drive Policies.

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
blockCrossOrganizationWriteAccess boolean This policy setting determines whether BitLocker protection is required for removable data drives to be writable on a computer.
encryptionMethod object Select the encryption method for removable drives. The possible values are: aesCbc128, aesCbc256, xtsAes128, xtsAes256.
requireEncryptionForWriteAccess boolean Indicates whether to block write access to devices configured in another organization. If requireEncryptionForWriteAccess is false, this value does not affect.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphbitlockerremovabledrivepolicy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.bitLockerRemovableDrivePolicy",
  "title": "bitLockerRemovableDrivePolicy",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "blockCrossOrganizationWriteAccess": {
      "type": "boolean",
      "description": "This policy setting determines whether BitLocker protection is required for removable data drives to be writable on a computer."
    },
    "encryptionMethod": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.bitLockerEncryptionMethod"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Select the encryption method for removable  drives. The possible values are: aesCbc128, aesCbc256, xtsAes128, xtsAes256."
    },
    "requireEncryptionForWriteAccess": {
      "type": "boolean",
      "description": "Indicates whether to block write access to devices configured in another organization.  If requireEncryptionForWriteAccess is false, this value does not affect."
    },
    "@odata.type": {
      "type": "string"
    }
  },
  "description": "BitLocker Removable Drive Policies."
}