Skip to content

Commit 1385686

Browse files
Merge pull request #28773 from microsoftgraph/main
Merge to publish.
2 parents 206e6e2 + 2304861 commit 1385686

65 files changed

Lines changed: 2012 additions & 500 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
---
2+
title: "Delete customDataProvidedResourceUploadSession"
3+
description: "Delete a customDataProvidedResourceUploadSession object."
4+
author: "jaylenemartinez0"
5+
ms.date: 04/01/2026
6+
ms.localizationpriority: medium
7+
ms.subservice: "entra-id-governance"
8+
doc_type: apiPageType
9+
---
10+
11+
# Delete customDataProvidedResourceUploadSession
12+
13+
Namespace: microsoft.graph
14+
15+
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
16+
17+
Delete a [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md) object.
18+
19+
## Permissions
20+
21+
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).
22+
23+
<!-- {
24+
"blockType": "permissions",
25+
"name": "accesspackageresource-delete-uploadsessions-permissions"
26+
}
27+
-->
28+
[!INCLUDE [permissions-table](../includes/permissions/customdataprovidedresourceuploadsession-get-permissions.md)]
29+
30+
[!INCLUDE [rbac-entitlement-catalog-owner-write](../includes/rbac-for-apis/rbac-entitlement-management-catalog-owner-apis-write.md)]
31+
32+
## HTTP request
33+
34+
<!-- {
35+
"blockType": "ignored"
36+
}
37+
-->
38+
``` http
39+
DELETE /identityGovernance/catalogs/{catalogId}/accessPackageResources/{accessPackageResourceId}/uploadSessions/{customDataProvidedResourceUploadSessionId}
40+
```
41+
42+
## Request headers
43+
44+
|Name|Description|
45+
|:---|:---|
46+
|Authorization|Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts).|
47+
48+
## Request body
49+
50+
Don't supply a request body for this method.
51+
52+
## Response
53+
54+
If successful, this method returns a `204 No Content` response code.
55+
56+
## Examples
57+
58+
### Request
59+
60+
The following example shows a request.
61+
<!-- {
62+
"blockType": "request",
63+
"name": "delete_customdataprovidedresourceuploadsession"
64+
}
65+
-->
66+
``` http
67+
DELETE https://graph.microsoft.com/beta/identityGovernance/catalogs/{catalogId}/accessPackageResources/{accessPackageResourceId}/uploadSessions/{customDataProvidedResourceUploadSessionId}
68+
```
69+
70+
71+
### Response
72+
73+
The following example shows the response.
74+
<!-- {
75+
"blockType": "response",
76+
"truncated": true
77+
}
78+
-->
79+
``` http
80+
HTTP/1.1 204 No Content
81+
```
82+
Lines changed: 173 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,173 @@
1+
---
2+
title: "List customDataProvidedResourceUploadSession objects"
3+
description: "Get a list of the customDataProvidedResourceUploadSession objects and their properties."
4+
author: "jaylenemartinez0"
5+
ms.date: 04/01/2026
6+
ms.localizationpriority: medium
7+
ms.subservice: "entra-id-governance"
8+
doc_type: apiPageType
9+
---
10+
11+
# List customDataProvidedResourceUploadSession objects
12+
13+
Namespace: microsoft.graph
14+
15+
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
16+
17+
Get a list of the [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md) objects and their properties.
18+
19+
## Permissions
20+
21+
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).
22+
23+
<!-- {
24+
"blockType": "permissions",
25+
"name": "accesspackageresource-list-uploadsessions-permissions"
26+
}
27+
-->
28+
[!INCLUDE [permissions-table](../includes/permissions/customdataprovidedresourceuploadsession-get-permissions.md)]
29+
30+
[!INCLUDE [rbac-entitlement-catalog-owner-write](../includes/rbac-for-apis/rbac-entitlement-management-catalog-owner-apis-write.md)]
31+
32+
## HTTP request
33+
34+
<!-- {
35+
"blockType": "ignored"
36+
}
37+
-->
38+
``` http
39+
GET /identityGovernance/catalogs/{catalogId}/accessPackageResources/{accessPackageResourceId}/uploadSessions
40+
```
41+
42+
## Optional query parameters
43+
44+
This method supports the `$expand`, `$filter`, `$top`, `$skip`, `$orderby`, `$count` OData query parameters to help customize the response. For general information, see [OData query parameters](/graph/query-parameters).
45+
46+
** Example queries for nested `$filter` and `$orderby` supported for the **files** relationship of type **customDataProvidedResourceUploadSession**.
47+
48+
|Property|Operators|Example|
49+
|:---|:---|:---|
50+
|name|`eq`, `ne`|`$expand=files($filter=name eq 'building-a-access.csv')`|
51+
|size|`eq`, `ne`, `gt`, `ge`, `lt`, `le`|`$expand=files($filter=size gt 1000000)`|
52+
|uploadedDateTime|`eq`, `ne`, `gt`, `ge`, `lt`, `le`|`$expand=files($filter=uploadedDateTime ge 2026-01-01T00:00:00Z)`|
53+
54+
The **name**, **size**, and **uploadedDateTime** proeprties also support `$orderby` as shown in the following examples:
55+
56+
Get upload session with files sorted by **uploadedDateTime**:
57+
```http
58+
Get upload session with files sorted by **uploadedDateTime**:
59+
```http
60+
GET /identityGovernance/entitlementManagement/catalogs/{catalogId}/accessPackageResources/{resourceId}/uploadSessions/{sessionId}?$expand=files($orderby=uploadedDateTime desc)
61+
```
62+
63+
Get upload session with files filtered by **size** (larger than 1MB)@
64+
```http
65+
GET /identityGovernance/entitlementManagement/catalogs/{catalogId}/accessPackageResources/{resourceId}/uploadSessions/{sessionId}?$expand=files($filter=size gt 1000000)
66+
```
67+
68+
Get upload session with files sorted by **name**:
69+
```http
70+
GET /identityGovernance/entitlementManagement/catalogs/{catalogId}/accessPackageResources/{resourceId}/uploadSessions/{sessionId}?$expand=files($orderby=name asc)
71+
```
72+
73+
## Request headers
74+
75+
|Name|Description|
76+
|:---|:---|
77+
|Authorization|Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts).|
78+
79+
## Request body
80+
81+
Don't supply a request body for this method.
82+
83+
## Response
84+
85+
If successful, this method returns a `200 OK` response code and a collection of [customDataProvidedResourceUploadSession](../resources/customdataprovidedresourceuploadsession.md) objects in the response body.
86+
87+
## Examples
88+
89+
### Request
90+
91+
The following example shows a request.
92+
<!-- {
93+
"blockType": "request",
94+
"name": "list_customdataprovidedresourceuploadsession"
95+
}
96+
-->
97+
``` http
98+
GET https://graph.microsoft.com/beta/identityGovernance/catalogs/{catalogId}/accessPackageResources/{accessPackageResourceId}/uploadSessions
99+
```
100+
101+
102+
### Response
103+
104+
The following example shows the response.
105+
>**Note:** The response object shown here might be shortened for readability.
106+
<!-- {
107+
"blockType": "response",
108+
"truncated": true,
109+
"@odata.type": "microsoft.graph.customDataProvidedResourceUploadSession"
110+
}
111+
-->
112+
``` http
113+
HTTP/1.1 200 OK
114+
Content-Type: application/json
115+
116+
{
117+
"@odata.context": "https://graph.microsoft.com/beta/$metadata#identityGovernance/catalogs('3c9f2b1e-8a4d-4e7f-9d2a-6b3e1c7f5a9d')/accessPackageResources('15eeb4df-bd15-4d8b-9679-e75791dbc1d9')/uploadSessions",
118+
"value": [
119+
{
120+
"id": "2fa3bc17-de50-4f48-91f0-dd4aede5c424",
121+
"referenceId": "6ddffb12-922b-4825-93c3-9457dc2c1f81",
122+
"status": "complete",
123+
"isUploadDone": true,
124+
"createdDateTime": "2026-03-24T21:34:56.220345Z",
125+
"source": "BuildingAccessData",
126+
"type": "#microsoft.graph.accessReviewDataUploadTriggerCallbackData",
127+
"stats": {
128+
"filesUploaded": 1,
129+
"totalBytesUploaded": 10331
130+
},
131+
"data": {
132+
"@odata.type": "#microsoft.graph.accessReviewResourceDataUploadSessionContextData",
133+
"accessReviewId": "a89003b1-d457-4b8a-b060-42a3b6ad6c44",
134+
"accessReviewInstanceId": "6ddffb12-922b-4825-93c3-9457dc2c1f81"
135+
},
136+
"files": [
137+
{
138+
"id": "330667fd-c977-4367-99ea-2eb12c42c573",
139+
"name": "test-data.csv",
140+
"size": 10331,
141+
"uploadedDateTime": "2026-03-24T21:34:57.1713709Z"
142+
}
143+
]
144+
},
145+
{
146+
"id": "3717bbf7-6d72-4a6d-b83e-11e6038de8a1",
147+
"referenceId": "ec98588d-6de1-4f47-8a6b-0ad1b6192b6f",
148+
"status": "complete",
149+
"isUploadDone": true,
150+
"createdDateTime": "2026-03-27T21:02:25.0632085Z",
151+
"source": "CustomAccessData",
152+
"type": "#microsoft.graph.accessReviewDataUploadTriggerCallbackData",
153+
"stats": {
154+
"filesUploaded": 1,
155+
"totalBytesUploaded": 2415
156+
},
157+
"data": {
158+
"@odata.type": "#microsoft.graph.accessReviewResourceDataUploadSessionContextData",
159+
"accessReviewId": "170dc1f2-0622-4380-b44b-ee8bc58b975d",
160+
"accessReviewInstanceId": "ec98588d-6de1-4f47-8a6b-0ad1b6192b6f"
161+
},
162+
"files": [
163+
{
164+
"id": "2d66944b-6fa8-4604-a60e-d03ec4962d00",
165+
"name": "generated_test_data_20.csv",
166+
"size": 2415,
167+
"uploadedDateTime": "2026-03-27T21:02:58.9849683Z"
168+
}
169+
]
170+
}
171+
]
172+
}
173+
```

api-reference/beta/api/cloudpc-getcloudpclaunchinfo.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Namespace: microsoft.graph
1414
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
1515

1616
> [!CAUTION]
17-
> This API is deprecated and will stop returning data on October 30, 2026. Going forward, use the [retrieveCloudPcLaunchDetail](../api/cloudpc-retrievecloudpclaunchdetail.md) API.
17+
> The `/me/cloudPCs/{cloudPCId}/getCloudPcLaunchInfo` and `/users/{userId}/cloudPCs/{id}/getCloudPcLaunchInfo` endpoints are deprecated and will stop returning data on October 30, 2026. Going forward, use the [retrieveCloudPcLaunchDetail](../api/cloudpc-retrievecloudpclaunchdetail.md) API.
1818
1919
Get the [cloudPCLaunchInfo](../resources/cloudpclaunchinfo.md) for a specific [cloudPC](../resources/cloudpc.md) that belongs to the current signed-in user.
2020

@@ -47,7 +47,7 @@ GET /deviceManagement/virtualEndpoint/cloudPCs/{cloudPCId}/getCloudPcLaunchInfo
4747
```
4848

4949
> [!CAUTION]
50-
> The `/deviceManagement/virtualEndpoint/cloudPCs/{cloudPCId}/getCloudPcLaunchInfo` endpoint is deprecated and will stop returning data on October 30, 2025.
50+
> The `/deviceManagement/virtualEndpoint/cloudPCs/{cloudPCId}/getCloudPcLaunchInfo` endpoint is deprecated and stopped returning data on October 30, 2025.
5151
5252
## Request headers
5353
|Name|Description|

api-reference/beta/api/cloudpconpremisesconnection-updateaddomainpassword.md

Lines changed: 7 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Namespace: microsoft.graph
1313

1414
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
1515

16-
Update the Active Directory domain password for a [cloudPcOnPremisesConnection](../resources/cloudpconpremisesconnection.md) object. This API is supported when the type of the **cloudPcOnPremisesConnection** object is `hybridAzureADJoin`.
16+
Update the Active Directory domain password for a successful [cloudPcOnPremisesConnection](../resources/cloudpconpremisesconnection.md). This API is supported when the type of the **cloudPcOnPremisesConnection** object is `hybridAzureADJoin`.
1717

1818
[!INCLUDE [on-premise-rename-note](../../includes/on-premise-rename-note.md)]
1919

@@ -33,7 +33,7 @@ Choose the permission or permissions marked as least privileged for this API. Us
3333
}
3434
-->
3535
``` http
36-
POST /deviceManagement/virtualEndpoint/onPremisesConnections/{Id}/UpdateAdDomainPassword
36+
POST /deviceManagement/virtualEndpoint/onPremisesConnections/{id}/updateAdDomainPassword
3737
```
3838

3939
## Request headers
@@ -49,7 +49,7 @@ The following table shows the parameter that you can use with this action.
4949

5050
|Parameter|Type|Description|
5151
|:---|:---|:---|
52-
|adDomainPassword|String|The password associated with **adDomainUsername**.|
52+
|adDomainPassword|String|The password associated with the **adDomainUsername**.|
5353

5454

5555

@@ -63,48 +63,22 @@ If successful, this action returns a `204 No Content` response code.
6363

6464
The following example shows a request.
6565

66-
# [HTTP](#tab/http)
6766
<!-- {
6867
"blockType": "request",
69-
"name": "cloudpconpremisesconnection_updateaddomainpassword"
68+
"name": "cloudpconpremisesconnection_updateaddomainpassword",
69+
"sampleKeys": ["07f12770-a225-4957-9127-0d247cf4ffff"]
7070
}
7171
-->
7272

7373
``` http
74-
POST https://graph.microsoft.com/beta/deviceManagement/virtualEndpoint/onPremisesConnections/{Id}/UpdateAdDomainPassword
74+
POST https://graph.microsoft.com/beta/deviceManagement/virtualEndpoint/onPremisesConnections/07f12770-a225-4957-9127-0d247cf4ffff/updateAdDomainPassword
7575
Content-Type: application/json
7676
7777
{
78-
"adDomainPassword": "AdDomainPassword value"
78+
"adDomainPassword": "AdDomainPassword_XXXX"
7979
}
8080
```
8181

82-
# [C#](#tab/csharp)
83-
[!INCLUDE [sample-code](../includes/snippets/csharp/cloudpconpremisesconnection-updateaddomainpassword-csharp-snippets.md)]
84-
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
85-
86-
# [Go](#tab/go)
87-
[!INCLUDE [sample-code](../includes/snippets/go/cloudpconpremisesconnection-updateaddomainpassword-go-snippets.md)]
88-
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
89-
90-
# [Java](#tab/java)
91-
[!INCLUDE [sample-code](../includes/snippets/java/cloudpconpremisesconnection-updateaddomainpassword-java-snippets.md)]
92-
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
93-
94-
# [JavaScript](#tab/javascript)
95-
[!INCLUDE [sample-code](../includes/snippets/javascript/cloudpconpremisesconnection-updateaddomainpassword-javascript-snippets.md)]
96-
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
97-
98-
# [PHP](#tab/php)
99-
[!INCLUDE [sample-code](../includes/snippets/php/cloudpconpremisesconnection-updateaddomainpassword-php-snippets.md)]
100-
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
101-
102-
# [Python](#tab/python)
103-
[!INCLUDE [sample-code](../includes/snippets/python/cloudpconpremisesconnection-updateaddomainpassword-python-snippets.md)]
104-
[!INCLUDE [sdk-documentation](../includes/snippets/snippets-sdk-documentation-link.md)]
105-
106-
---
107-
10882
### Response
10983

11084
The following example shows the response.

0 commit comments

Comments
 (0)