Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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 upload session for access review scenarios on a customDataProvidedResource. Use this type when uploading external access data for access reviews via the Bring Your Own Data (BYOD) flow.
Inherits from customDataProvidedResourceUploadSession.
Methods
This derived type supports the same methods as the base customDataProvidedResourceUploadSession resource. For the list of supported operations, see the base type documentation.
Properties
| Property | Type | Description |
|---|---|---|
| createdDateTime | DateTimeOffset | DateTime when the upload session was created. Read-only. Supports $orderby. Inherited from customDataProvidedResourceUploadSession. |
| data | microsoft.graph.customDataProvidedResourcePayloads.data | An object containing the context for which this data is being uploaded. For access review upload sessions, this is of type microsoft.graph.customDataProvidedResourcePayloads.accessReviewContextData. Inherited from customDataProvidedResourceUploadSession. |
| id | String | Unique identifier of the upload session. Read-only. Inherited from entity. |
| isUploadDone | Boolean | Indicates if all the necessary files have been uploaded to this session. Inherited from customDataProvidedResourceUploadSession. |
| referenceId | String | The ID of the context for which data is being uploaded, for example, the access review instance ID. Supports $filter (eq). Inherited from customDataProvidedResourceUploadSession. |
| stats | customDataProvidedResourceUploadStats | Metadata about the files uploaded in this upload session thus far. Inherited from customDataProvidedResourceUploadSession. |
| status | microsoft.graph.identityGovernance.customDataProvidedResourceUploadStatus | Status of the upload session. The possible values are: active, complete, expired, unknownFutureValue. Supports $filter (eq). Inherited from customDataProvidedResourceUploadSession. |
Relationships
| Relationship | Type | Description |
|---|---|---|
| files | customDataProvidedResourceFile collection | The files uploaded during this upload session. Supports $expand and $expand with nested $filter and $orderby. Inherited from customDataProvidedResourceUploadSession. |
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.customDataProvidedResourceAccessReviewUploadSession",
"id": "String (identifier)",
"status": "String",
"isUploadDone": "Boolean",
"stats": {
"@odata.type": "microsoft.graph.customDataProvidedResourceUploadStats"
},
"createdDateTime": "String (timestamp)",
"referenceId": "String",
"data": {
"@odata.type": "microsoft.graph.customDataProvidedResourcePayloads.accessReviewContextData"
}
}