Skip to content

Commit 12e94cb

Browse files
authored
Merge pull request #26686 from microsoftgraph/main
Merge to publish.
2 parents ae5badb + 0d4f611 commit 12e94cb

7 files changed

+115
-19
lines changed

.acrolinx-config.edn

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If you need a scoring exception for content in this PR, add the *ready for conte
3636
- Escalate the exception request to the Acrolinx Review Team for review.
3737
- Approve the exception and work with the GitHub Admin Team to merge the PR to the default branch.
3838
39-
For more information about the exception criteria and exception process, see [Acrolinx for Microsoft Graph docs](https://aka.ms/msgo?pagePath=/Document%20APIs/Author%20content/Acrolinx).
39+
For more information about the exception criteria and exception process, see [Acrolinx for Microsoft Graph docs](https://eng.ms/cid/27dee76c-3a60-4e65-8fdf-08ea849b3498/fid/d80517923e291f07a0da8b5ce8e082ba680a55ddda65497a1061ca9f97c50290).
4040
4141
Select the scorecard links for each article to review the Acrolinx feedback on grammar, spelling, punctuation, writing style, and terminology:
4242
@@ -52,6 +52,6 @@ Select the scorecard links for each article to review the Acrolinx feedback on g
5252
"
5353
**More info about Acrolinx**
5454
55-
Use the Acrolinx extension, or sidebar, in Visual Studio Code to check spelling, grammar, style, tone, clarity, and key terminology when you're creating or updating content. For more information, see [Use the Visual Studio Code extension to run Acrolinx locally](https://review.docs.microsoft.com/office-authoring-guide/acrolinx-vscode?branch=main).
55+
Use the Acrolinx extension, or sidebar, in Visual Studio Code to check spelling, grammar, style, tone, clarity, and key terminology when you're creating or updating content. For more information, see [Use the Visual Studio Code extension to run Acrolinx locally](https://learn.microsoft.com/help/platform/acrolinx-vscode-setup) (you must sign in to access the page).
5656
"
5757
}

api-reference/beta/api/cloudpcprovisioningpolicy-retrievepolicyapplyschedule.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,10 @@ HTTP/1.1 200 OK
115115
{
116116
"@odata.type": "https://graph.microsoft.com/beta/$metadata#cloudPcPolicyScheduledApplyActionDetail",
117117
"reservePercentage": 50,
118-
"cronScheduleExpression": "0 0 0 20 * *"
118+
"cronScheduleExpression": "0 0 0 20 * *",
119+
"nextRunDateTime": "2025-03-20 08:00:00",
120+
"startDateTime": "2025-03-12 00:00:00",
121+
"endDateTime": null,
122+
"timezone": "cst"
119123
}
120124
```

api-reference/beta/api/cloudpcprovisioningpolicy-schedulepolicyapplytask.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ The following table shows the properties that can be supplied when you schedule
5353
|:---|:---|:---|
5454
|reservePercentage|Int32|For `Frontline shared` only. The percentage of Cloud PCs to keep available. Administrators can set this property to a value from 0 to 99. Cloud PCs are reprovisioned only when there are no active and connected Cloud PC users.|
5555
|cronScheduleExpression|String|Administrators can set a cron expression to define the scheduling rules for automatic regular apply. When auto provision is disabled, `cronScheduleExpression` is set to null, stopping the automatic task scheduling (ex. "0 0 0 20 * *" means schedules a job to run at midnight on the 20th of every month). Read-only.|
56+
|startDateTime|String|Indicates IT Admins can set a start date to define the first scheduler run after this time. If not set, default is current time. There are no time zone information at this time, it needs to be coordinated with `timezone`, for example, "2025-01-01 00:00:00" with "China Standard Time" means the scheduling rule will take effect after Jan 01 2025 00:00:00 GMT+0800 (China Standard Time).|
57+
|endDateTime|String|Indicates IT Admins can set an end date to define the last scheduler run before this time. If not set, the scheduler runs continuously. There are no time zone information at this time, it needs to be coordinated with `timezone`, for example, "2025-02-01 00:00:00" with "China Standard Time" means the scheduling rule will take effect before Feb 01 2025 00:00:00 GMT+0800 (China Standard Time).|
58+
|timezone|cloudPcPolicyTimezone|Indicates IT Admins can set a timezone to define the timezone of `nextRunDateTime`, `startDateTime`, `endDateTime`, default is `gmt`. Possible values are `gmt`, `bit`, `nut`, `hst`, `mit`, `akst`, `pst`, `mst`, `east`, `est`, `ast`, `nst`, `art`, `gst`, `azot`, `cet`, `cat`, `eat`, `get`, `pkt`, `ist`, `bst`, `tha`, `cst`, `jst`, `acst`, `pgt`, `sbt`, `fjt`, `tot`, `lint`, and `unknownFutureValue`.|
5659

5760
## Response
5861

@@ -76,7 +79,10 @@ POST https://graph.microsoft.com/beta/deviceManagement/virtualEndpoint/provision
7679
7780
{
7881
"reservePercentage": 50,
79-
"cronScheduleExpression": "0 0 0 20 * *"
82+
"cronScheduleExpression": "0 0 0 20 * *",
83+
"startDateTime": "2025-03-12 00:00:00",
84+
"endDateTime": null,
85+
"timezone": "cst"
8086
}
8187
8288
```

api-reference/beta/resources/cloudpcpolicyscheduledapplyactiondetail.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ author: "zhuangzhuang131419"
55
ms.localizationpriority: medium
66
ms.subservice: "cloud-pc"
77
doc_type: resourcePageType
8+
ms.date: 05/08/2025
89
---
910

1011
# cloudPcPolicyScheduledApplyActionDetail resource type
@@ -20,7 +21,11 @@ Represents a scheduled apply rule set on the policy. For `Frontline shared` only
2021
|Property|Type|Description|
2122
|:---|:---|:---|
2223
|reservePercentage|Int32|The percentage of Cloud PCs to keep available. Administrators can set this property to a value from 0 to 99. Cloud PCs are reprovisioned only when there are no active and connected Cloud PC users. `Frontline shared` only.|
23-
|cronScheduleExpression|String|An expression that specifies the cron schedule. (For example, "0 0 0 20 * *" means schedules a job to run at midnight on the 20th of every month) Administrators can set a cron expression to define the scheduling rules for automatic regular application. When auto-provision is disabled, `cronScheduleExpression` is set to null, stopping the automatic task scheduling. Read-Only.|
24+
|cronScheduleExpression|String|An expression that specifies the cron schedule. (For example, "0 0 0 20 * *" means schedules a job to run at midnight on the 20th of every month) Administrators can set a cron expression to define the scheduling rules for automatic regular application. When auto provision is disabled, `cronScheduleExpression` is set to null, stopping the automatic task scheduling. Read-Only.|
25+
|nextRunDateTime|String|Indicates IT Admins can see when the next automatic regular apply is executed. It needs to be coordinated with `timezone`, for example, "2025-01-01 00:00:00" with "China Standard Time" means the next task executes at Jan 01 2025 00:00:00 GMT+0800 (China Standard Time). Read-Only.|
26+
|startDateTime|String|Indicates IT Admins can set a start date to define the first scheduler run after this time. If not set, the default is the current time. There is no time zone information at this time, it needs to be coordinated with `timezone`, for example, "2025-01-01 00:00:00" with "China Standard Time" means the scheduling rule takes effect after Jan 01 2025 00:00:00 GMT+0800 (China Standard Time).|
27+
|endDateTime|String|Indicates IT Admins can set an end date to define the last scheduler run before this time. If not set, the scheduler runs continuously. There is no time zone information at this time; it needs to be coordinated with `timezone`, for example, "2025-02-01 00:00:00" with "China Standard Time" means the scheduling rule takes effect before Feb 01 2025 00:00:00 GMT+0800 (China Standard Time).|
28+
|timezone|cloudPcPolicyTimezone|Indicates IT Admins can set a timezone to define the timezone of `nextRunDateTime`, `startDateTime`, `endDateTime`, default is `gmt`. Possible values are `gmt`, `bit`, `nut`, `hst`, `mit`, `akst`, `pst`, `mst`, `east`, `est`, `ast`, `nst`, `art`, `gst`, `azot`, `cet`, `cat`, `eat`, `get`, `pkt`, `ist`, `bst`, `tha`, `cst`, `jst`, `acst`, `pgt`, `sbt`, `fjt`, `tot`, `lint`, and `unknownFutureValue`.|
2429

2530
## JSON representation
2631

@@ -38,6 +43,10 @@ The following JSON representation shows the resource type.
3843
{
3944
"@odata.type": "https://graph.microsoft.com/beta/$metadata#cloudPcPolicyScheduledApplyActionDetail",
4045
"reservePercentage": 50,
41-
"cronScheduleExpression": "0 0 0 20 * *"
46+
"cronScheduleExpression": "0 0 0 20 * *",
47+
"nextRunDateTime": "2025-03-20 08:00:00",
48+
"startDateTime": "2025-03-12 00:00:00",
49+
"endDateTime": null,
50+
"timezone": "cst"
4251
}
4352
```

api-reference/beta/resources/enums.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5227,3 +5227,40 @@ Possible values for user account types (group membership), per Windows definitio
52275227
|personal|
52285228
|persuasive|
52295229
|unknownFutureValue|
5230+
5231+
### cloudPcPolicyTimezone values
5232+
5233+
| Member | Value | Description |
5234+
| ------------------ | ----- | ------------------------------------------------------------------------------------------------------------- |
5235+
| gmt | 0 | Default. Indicates the time zone is associated with Greenwich Mean Time(UTC+00:00). |
5236+
| bit | 1 | Indicates the time zone is associated with Baker Island Time(UTC-12:00). |
5237+
| nut | 2 | Indicates the time zone is associated with Niue Time(UTC-11:00). |
5238+
| hst | 3 | Indicates the time zone is associated with Hawaii–Aleutian Standard Time(UTC-10:00). |
5239+
| mit | 4 | Indicates the time zone is associated with Marquesas Islands Time(UTC-09:30). |
5240+
| akst | 5 | Indicates the time zone is associated with Alaska Standard Time(UTC-09:00). |
5241+
| pst | 6 | Indicates the time zone is associated with Pacific Standard Time(UTC-08:00). |
5242+
| mst | 7 | Indicates the time zone is associated with Mountain Standard Time(UTC-07:00). |
5243+
| east | 8 | Indicates the time zone is associated with Easter Island Standard Time(UTC-06:00). |
5244+
| est | 9 | Indicates the time zone is associated with Eastern Standard Time(UTC-05:00). |
5245+
| ast | 10 | Indicates the time zone is associated with Atlantic Standard Time(UTC-04:00). |
5246+
| nst | 11 | Indicates the time zone is associated with Newfoundland Standard Time(UTC-03:30). |
5247+
| art | 12 | Indicates the time zone is associated with Argentina Time(UTC-03:00). |
5248+
| gst | 13 | Indicates the time zone is associated with South Georgia and the South Sandwich Islands Time(UTC-02:00). |
5249+
| azot | 14 | Indicates the time zone is associated with Azores Standard Time(UTC-01:00). |
5250+
| cet | 15 | Indicates the time zone is associated with Central European Time(UTC+01:00). |
5251+
| cat | 16 | Indicates the time zone is associated with Central Africa Time(UTC+02:00). |
5252+
| eat | 17 | Indicates the time zone is associated with East Africa Time(UTC+03:00). |
5253+
| get | 18 | Indicates the time zone is associated with Georgia Standard Time(UTC+04:00). |
5254+
| pkt | 19 | Indicates the time zone is associated with Pakistan Standard Time(UTC+05:00). |
5255+
| ist | 20 | Indicates the time zone is associated with India Standard Time(UTC+05:30). |
5256+
| bst | 21 | Indicates the time zone is associated with Bangladesh Standard Time(UTC+06:00). |
5257+
| tha | 22 | Indicates the time zone is associated with Thailand Standard Time(UTC+07:00). |
5258+
| cst | 23 | Indicates the time zone is associated with China Standard Time(UTC+08:00). |
5259+
| jst | 24 | Indicates the time zone is associated with Japan Standard Time(UTC+09:00). |
5260+
| acst | 25 | Indicates the time zone is associated with Australian Central Standard Time(UTC+09:30). |
5261+
| pgt | 26 | Indicates the time zone is associated with Papua New Guinea Time(UTC+10:00). |
5262+
| sbt | 27 | Indicates the time zone is associated with Solomon Islands Time(UTC+11:00). |
5263+
| fjt | 28 | Indicates the time zone is associated with Fiji Time(UTC+12:00). |
5264+
| tot | 29 | Indicates the time zone is associated with Tonga Time(UTC+13:00). |
5265+
| lint | 30 | Indicates the time zone is associated with Line Islands Time(UTC+14:00). |
5266+
| unknownFutureValue | 31 | Evolvable enumeration sentinel value. Do not use. |

changelog/Microsoft.CloudManagedDesktop.json

Lines changed: 52 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6819,6 +6819,56 @@
68196819
"CreatedDateTime": "2025-03-13T03:02:09.0363351Z",
68206820
"WorkloadArea": "Device and app management",
68216821
"SubArea": "Cloud PC"
6822-
}
6822+
},
6823+
{
6824+
"ChangeList": [
6825+
{
6826+
"Id": "6ca39a86-8ad0-475f-b102-37529b5ab803",
6827+
"ApiChange": "Enumeration",
6828+
"ChangedApiName": "cloudPcPolicyTimezone",
6829+
"ChangeType": "Addition",
6830+
"Description": "Added the **cloudPcPolicyTimezone** enumeration type.",
6831+
"Target": "cloudPcPolicyTimezone"
6832+
},
6833+
{
6834+
"Id": "6ca39a86-8ad0-475f-b102-37529b5ab803",
6835+
"ApiChange": "Property",
6836+
"ChangedApiName": "endDateTime",
6837+
"ChangeType": "Addition",
6838+
"Description": "Added the **endDateTime** property to the [cloudPcPolicyScheduledApplyActionDetail](https://learn.microsoft.com/en-us/graph/api/resources/intune-cloudPcPolicyScheduledApplyActionDetail?view=graph-rest-beta) resource.",
6839+
"Target": "cloudPcPolicyScheduledApplyActionDetail"
6840+
},
6841+
{
6842+
"Id": "6ca39a86-8ad0-475f-b102-37529b5ab803",
6843+
"ApiChange": "Property",
6844+
"ChangedApiName": "nextRunDateTime",
6845+
"ChangeType": "Addition",
6846+
"Description": "Added the **nextRunDateTime** property to the [cloudPcPolicyScheduledApplyActionDetail](https://learn.microsoft.com/en-us/graph/api/resources/intune-cloudPcPolicyScheduledApplyActionDetail?view=graph-rest-beta) resource.",
6847+
"Target": "cloudPcPolicyScheduledApplyActionDetail"
6848+
},
6849+
{
6850+
"Id": "6ca39a86-8ad0-475f-b102-37529b5ab803",
6851+
"ApiChange": "Property",
6852+
"ChangedApiName": "startDateTime",
6853+
"ChangeType": "Addition",
6854+
"Description": "Added the **startDateTime** property to the [cloudPcPolicyScheduledApplyActionDetail](https://learn.microsoft.com/en-us/graph/api/resources/intune-cloudPcPolicyScheduledApplyActionDetail?view=graph-rest-beta) resource.",
6855+
"Target": "cloudPcPolicyScheduledApplyActionDetail"
6856+
},
6857+
{
6858+
"Id": "6ca39a86-8ad0-475f-b102-37529b5ab803",
6859+
"ApiChange": "Property",
6860+
"ChangedApiName": "timezone",
6861+
"ChangeType": "Addition",
6862+
"Description": "Added the **timezone** property to the [cloudPcPolicyScheduledApplyActionDetail](https://learn.microsoft.com/en-us/graph/api/resources/intune-cloudPcPolicyScheduledApplyActionDetail?view=graph-rest-beta) resource.",
6863+
"Target": "cloudPcPolicyScheduledApplyActionDetail"
6864+
}
6865+
],
6866+
"Id": "6ca39a86-8ad0-475f-b102-37529b5ab803",
6867+
"Cloud": "Prod",
6868+
"Version": "beta",
6869+
"CreatedDateTime": "2025-05-16T03:20:14.2449804Z",
6870+
"WorkloadArea": "Devices and apps",
6871+
"SubArea": "Cloud PC"
6872+
}
68236873
]
6824-
}
6874+
}

concepts/connecting-external-content-api-limits.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,13 @@ author: mecampos
55
ms.localizationpriority: high
66
doc_type: conceptualPageType
77
ms.subservice: search
8-
ms.date: 11/07/2024
8+
ms.date: 05/15/2025
99
---
1010

1111
# Microsoft Graph connectors API limits
1212

1313
This article describes implementation and operational limits for Microsoft Graph connectors. Keep these limits in mind when designing connectors.
1414

15-
## Connection limits
16-
17-
| Limit type | Limit |
18-
| ---------- | ----- |
19-
| [Connection](/graph/api/resources/externalconnectors-externalconnection) resources per Microsoft 365 tenant | 30 |
20-
| [Items](/graph/api/resources/externalconnectors-externalitem) per connection | 5,000,000 |
21-
| Connection byte size | 500 GB |
22-
| Items per tenant | 50,000,000 |
23-
2415
## Schema limits
2516

2617
| Limit type | Limit |
@@ -39,7 +30,6 @@ This article describes implementation and operational limits for Microsoft Graph
3930

4031
| Limit type | Limit |
4132
| ---------- | ----- |
42-
| Throughput limit to ingest items through a connection | 25 items/sec |
4333
| Item size; this limit applies to the request body when [ingesting and indexing an item](/graph/api/externalconnectors-externalconnection-put-items) | 4 MB |
4434
| Number of [activities](/graph/api/resources/externalconnectors-externalactivity); this is the [throttling](#throttling) threshold per activities call | 20 activities |
4535
| Property size | N/A |

0 commit comments

Comments
 (0)