Edit

crossTenantMigrationTask resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Represents a crossTenantMigrationTask, which is a component of a crossTenantMigrationJob. A crossTenantMigrationTask is scoped to a particular unit to be migrated, such as a User.

Inherits from entity.

Methods

Method Return type Description
List crossTenantMigrationTask collection Get a list of the crossTenantMigrationTask objects and their properties.
Get crossTenantMigrationTask Read the properties and relationships of crossTenantMigrationTask object.
cancel crossTenantMigrationCancelResponse Cancel the migration task for this resource

Properties

Property Type Description
currentStatus crossTenantMigrationServiceStatusDetails collection Most recent status of this migration task
ID String ID (GUID) of the resource being migrated with this task
lastUpdatedDateTime DateTimeOffset Time the task was last updated
taskType String Type of migration task. Only Users are supported at this time.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.crossTenantMigrationTask",
  "id": "String (identifier)",
  "taskType": "String",
  "lastUpdatedDateTime": "String (timestamp)",
  "currentStatus": [
    {
      "@odata.type": "microsoft.graph.crossTenantMigrationServiceStatusDetails"
    }
  ]
}