mailboxProtectionUnitsBulkAdditionJob 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 the properties of a mailboxProtectionUnitsBulkAdditionJob associated with a exchangeProtectionPolicy. It contains a list of email addresses and a list of directory object IDs to be added to the Exchange Protection Policy for backup.
Inherits from protectionUnitsBulkJobBase.
Methods
Method | Return type | Description |
---|---|---|
List | mailboxProtectionUnitsBulkAdditionJob collection | Get a list of mailboxProtectionUnitsBulkAdditionJob objects and their properties. |
Create | mailboxProtectionUnitsBulkAdditionJob | Create a new mailboxProtectionUnitsBulkAdditionJob. |
Get | mailboxProtectionUnitsBulkAdditionJob | Read the properties and relationships of a mailboxProtectionUnitsBulkAdditionJob. |
Properties
Property | Type | Description |
---|---|---|
createdBy | identitySet | The identity of the person who created the job. |
createdDateTime | DateTimeOffset | The date and time that the job was created. |
directoryObjectIds | Collection(String) | The list of Exchange directoryObjectIds to add to the Exchange protection policy. |
displayName | String | The name of the job. |
error | publicError | Contains error details if any email address resolution fails. |
id | String | The unique identifier of the job associated with the Exchange protection policy. |
lastModifiedBy | identitySet | Identity of the person who last modified the job. |
lastModifiedDateTime | DateTimeOffset | Timestamp of the last modification to the job. |
mailboxes | Collection(String) | The list of Exchange email addresses to add to the Exchange protection policy. |
status | protectionUnitsBulkJobStatus | Status of the job. The possible values are: unknown , active , completed , completedWithErrors , and unknownFutureValue . |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.mailboxProtectionUnitsBulkAdditionJob",
"id": "String (identifier)",
"displayName": "String",
"status": "String",
"createdDateTime": "String (timestamp)",
"createdBy": {
"@odata.type": "microsoft.graph.identitySet"
},
"lastModifiedDateTime": "String (timestamp)",
"lastModifiedBy": {
"@odata.type": "microsoft.graph.identitySet"
},
"error": {
"@odata.type": "microsoft.graph.publicError"
},
"mailboxes": [
"String"
],
"directoryObjectIds": [
"String"
]
}