Edit

siteExclusionUnitsBulkAdditionJob 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 an async job for bulk-adding site exclusion units to a SharePoint protection policy configured for full workload backup.

The initial status upon creation of the job is active. When all the sites are added to the corresponding SharePoint protection policy as exclusion units, the status of the job is completed. If any failures occur, the status of the job is completedWithErrors.

Inherits from exclusionUnitBulkAdditionJob.

Methods

Method Return type Description
List siteExclusionUnitsBulkAdditionJob collection Get a list of site exclusion units bulk addition jobs associated with a SharePoint protection policy.
Create siteExclusionUnitsBulkAdditionJob Create a site exclusion units bulk addition job for a SharePoint protection policy.
Get siteExclusionUnitsBulkAdditionJob Get a site exclusion units bulk addition job associated with a SharePoint protection policy.

Properties

Property Type Description
createdBy identitySet The identity of the person who created the bulk addition job. Inherited from exclusionUnitBulkAdditionJob.
createdDateTime DateTimeOffset The date and time when the bulk addition job was created. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Inherited from exclusionUnitBulkAdditionJob.
displayName String The display name of the bulk addition job. Inherited from exclusionUnitBulkAdditionJob.
error publicError Contains error details if the bulk addition job failed. Inherited from exclusionUnitBulkAdditionJob.
id String The unique identifier of the bulk addition job. Inherited from exclusionUnitBulkAdditionJob.
lastModifiedBy identitySet The identity of the person who last modified the bulk addition job. Inherited from exclusionUnitBulkAdditionJob.
lastModifiedDateTime DateTimeOffset The date and time when the bulk addition job was last modified. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Inherited from exclusionUnitBulkAdditionJob.
siteWebUrls String collection The URLs of SharePoint sites to be added as exclusion units to the protection policy.
status exclusionUnitBulkJobStatus The status of the bulk addition job. The possible values are: created, active, completed, completedWithErrors, unknownFutureValue. Inherited from exclusionUnitBulkAdditionJob.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.siteExclusionUnitsBulkAdditionJob",
  "createdBy": {"@odata.type": "microsoft.graph.identitySet"},
  "createdDateTime": "String (timestamp)",
  "displayName": "String",
  "error": {"@odata.type": "microsoft.graph.publicError"},
  "id": "String (identifier)",
  "lastModifiedBy": {"@odata.type": "microsoft.graph.identitySet"},
  "lastModifiedDateTime": "String (timestamp)",
  "siteWebUrls": ["String"],
  "status": "String"
}