You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions [only if your app requires it](/graph/permissions-overview#best-practices-for-using-microsoft-graph-permissions). For details about delegated and application permissions, see [Permission types](/graph/permissions-overview#permission-types). To learn more about these permissions, see the [permissions reference](/graph/permissions-reference).
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions [only if your app requires it](/graph/permissions-overview#best-practices-for-using-microsoft-graph-permissions). For details about delegated and application permissions, see [Permission types](/graph/permissions-overview#permission-types). To learn more about these permissions, see the [permissions reference](/graph/permissions-reference).
> When delegated permissions are used, only members who are assigned the `PrincipalOwner` or `Owner` role can call this method.
34
+
35
+
## HTTP request
36
+
37
+
```http
38
+
POST /storage/fileStorage/containers/{containerId}/unarchive
39
+
```
40
+
41
+
## Request body
42
+
43
+
Don't supply a request body for this method.
44
+
45
+
## Request headers
46
+
47
+
|Name|Description|
48
+
|:---|:---|
49
+
|Authorization|Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts).|
50
+
51
+
## Response
52
+
53
+
If successful, this method returns a `202 Accepted` response code. The response also contains a `Location` header, which contains the location of the container that is unarchived. To check the status of the unarchive operation, make a GET request to the location URL.
Copy file name to clipboardExpand all lines: api-reference/beta/resources/filestoragecontainer.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,10 +50,13 @@ Represents a location where multiple users or a group of users can store files a
50
50
|[Unlock](../api/filestoragecontainer-unlock.md)|None|Unlock a [fileStorageContainer](../resources/filestoragecontainer.md) for users and application-only identities to allow the addition, updating, and deletion of content.|
51
51
|[Create migration job](../api/filestoragecontainer-post-migrationjobs.md)|[sharePointMigrationJob](../resources/sharepointmigrationjob.md)|Create a new [sharePointMigrationJob](../resources/sharepointmigrationjob.md) object that is scheduled to run at a later time to migrate content from an intermediary storage to the target [fileStorageContainer](../resources/filestoragecontainer.md).|
52
52
|[Provision migration containers](../api/filestoragecontainer-provisionmigrationcontainers.md)|[sharePointMigrationContainerInfo](../resources/sharepointmigrationcontainerinfo.md)|Provision SharePoint-managed Azure blob containers as temporary storage for migration content and metadata.|
53
+
|[Archive](../api/filestoragecontainer-archive.md)|None|Archive an active [fileStorageContainer](../resources/filestoragecontainer.md).|
54
+
|[Unarchive](../api/filestoragecontainer-unarchive.md)|None|Unarchive an archived [fileStorageContainer](../resources/filestoragecontainer.md).|
53
55
54
56
## Properties
55
57
|Property|Type|Description|
56
58
|:---|:---|:---|
59
+
|archivalDetails|[siteArchivalDetails](../resources/sitearchivaldetails.md)|Archival details of the **fileStorageContainer**. Read-write.|
57
60
|assignedSensitivityLabel|[assignedLabel](../resources/assignedlabel.md)|Sensitivity label assigned to the **fileStorageContainer**. Read-write.|
58
61
|containerTypeId|GUID|Container type ID of the **fileStorageContainer**. Each container must have only one container type. Read-only.|
59
62
|createdDateTime|DateTimeOffset|Date and time of the **fileStorageContainer** creation. Read-only.|
@@ -121,7 +124,8 @@ The following JSON representation shows the resource type.
|archivedBy|[identitySet](../resources/identityset.md)| The user or application that archived the container. |
20
+
|archivedDateTime|DateTimeOffset| Time when the container was archived. 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`. |
19
21
| archiveStatus | siteArchiveStatus | Represents the current archive status of the site collection. Returned only on `$select`.|
20
22
21
23
### siteArchiveStatus values
@@ -25,7 +27,7 @@ Represents the archival details of a [siteCollection](../resources/sitecollectio
25
27
| recentlyArchived | The site collection was recently archived. |
26
28
| fullyArchived | The site collection is fully archived. |
27
29
| reactivating | The site collection is reactivating. |
28
-
| unknownFutureValue | Evolvable enumeration sentinel value. Do not use. |
Copy file name to clipboardExpand all lines: changelog/Microsoft.FileServices.json
+51-1Lines changed: 51 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,55 @@
1
1
{
2
2
"changelog": [
3
+
{
4
+
"ChangeList": [
5
+
{
6
+
"Id": "8ac5619f-4267-4d2d-b466-205c42c4ab6e",
7
+
"ApiChange": "Property",
8
+
"ChangedApiName": "archivalDetails",
9
+
"ChangeType": "Addition",
10
+
"Description": "Added the **archivalDetails** property to the [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/fileStorageContainer?view=graph-rest-beta) resource.",
11
+
"Target": "fileStorageContainer"
12
+
},
13
+
{
14
+
"Id": "8ac5619f-4267-4d2d-b466-205c42c4ab6e",
15
+
"ApiChange": "Method",
16
+
"ChangedApiName": "archive",
17
+
"ChangeType": "Addition",
18
+
"Description": "Added the [archive](https://learn.microsoft.com/en-us/graph/api/fileStorageContainer-archive?view=graph-rest-beta) method to the [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/fileStorageContainer?view=graph-rest-beta) resource.",
19
+
"Target": "fileStorageContainer"
20
+
},
21
+
{
22
+
"Id": "8ac5619f-4267-4d2d-b466-205c42c4ab6e",
23
+
"ApiChange": "Method",
24
+
"ChangedApiName": "unarchive",
25
+
"ChangeType": "Addition",
26
+
"Description": "Added the [unarchive](https://learn.microsoft.com/en-us/graph/api/fileStorageContainer-unarchive?view=graph-rest-beta) method to the [fileStorageContainer](https://learn.microsoft.com/en-us/graph/api/resources/fileStorageContainer?view=graph-rest-beta) resource.",
27
+
"Target": "fileStorageContainer"
28
+
},
29
+
{
30
+
"Id": "8ac5619f-4267-4d2d-b466-205c42c4ab6e",
31
+
"ApiChange": "Property",
32
+
"ChangedApiName": "archivedBy",
33
+
"ChangeType": "Addition",
34
+
"Description": "Added the **archivedBy** property to the [siteArchivalDetails](https://learn.microsoft.com/en-us/graph/api/resources/siteArchivalDetails?view=graph-rest-beta) resource.",
35
+
"Target": "siteArchivalDetails"
36
+
},
37
+
{
38
+
"Id": "8ac5619f-4267-4d2d-b466-205c42c4ab6e",
39
+
"ApiChange": "Property",
40
+
"ChangedApiName": "archivedDateTime",
41
+
"ChangeType": "Addition",
42
+
"Description": "Added the **archivedDateTime** property to the [siteArchivalDetails](https://learn.microsoft.com/en-us/graph/api/resources/siteArchivalDetails?view=graph-rest-beta) resource.",
Copy file name to clipboardExpand all lines: concepts/whats-new-overview.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,10 @@ Using the **signInAudience** and **signInAudienceRestrictions** properties to li
46
46
47
47
Added the `includeNewerItems` member as supported value for the **tags** property on [restorePoint](/graph/api/resources/restorepoint?view=graph-rest-beta&preserve-view=true) to get a restore point within a specified time period that includes any newer items created during that period.
48
48
49
+
### Files | File storage container
50
+
51
+
[Archive](/graph/api/filestoragecontainer-archive?view=graph-rest-beta&preserve-view=true) or [unarchive](/graph/api/filestoragecontainer-unarchive?view=graph-rest-beta&preserve-view=true) a SharePoint Embedded storage container.
52
+
49
53
### Identity and access | Governance
50
54
51
55
Added the [targetAgentIdentitySponsorsOrOwners](/graph/api/resources/targetagentidentitysponsorsorowners?view=graph-rest-beta&preserve-view=true) resource type that defines the sponsors or owners of a specific agent identity.
0 commit comments