Skip to content

Commit db7de00

Browse files
authored
Merge pull request #25855 from Saisang/sai-addmsdate20241205-13
[Auto Generated] Bulk add missing ms.date
2 parents ba4cf6b + e160739 commit db7de00

File tree

200 files changed

+219
-19
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

200 files changed

+219
-19
lines changed

api-reference/beta/api/dynamics-itemcategories-get.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ author: SusanneWindfeldPedersen
77
ms.localizationpriority: medium
88
ms.subservice: "d365-business-central"
99
doc_type: apiPageType
10+
ms.date: 04/05/2024
1011
---
1112

1213
# Get itemCategories

api-reference/beta/api/ediscovery-legalhold-delete.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ author: "mahage-msft"
55
ms.localizationpriority: medium
66
ms.subservice: "ediscovery"
77
doc_type: "apiPageType"
8+
ms.date: 06/11/2024
89
---
910

1011
# Delete legalHold

api-reference/beta/api/educationsynchronizationprofile-resume.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ author: "mmast-msft"
55
ms.localizationpriority: medium
66
ms.subservice: "education"
77
doc_type: apiPageType
8+
ms.date: 06/26/2024
89
---
910

1011
# Resume sync on an educationSynchronizationProfile (deprecated)

api-reference/beta/api/educationuser-list-schools.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ author: "mmast-msft"
55
ms.localizationpriority: medium
66
ms.subservice: "education"
77
doc_type: apiPageType
8+
ms.date: 04/05/2024
89
---
910

1011
# List schools

api-reference/beta/api/encryptedawsstoragebucketfinding-get.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ ms.reviewer: ciem_pm
66
ms.localizationpriority: medium
77
ms.subservice: entra-permissions-management
88
doc_type: apiPageType
9+
ms.date: 04/18/2024
910
---
1011

1112
# Get encryptedAwsStorageBucketFinding

api-reference/beta/api/event-delta.md

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
---
22
title: "event: delta"
3-
description: "Get a set of events that have been added, deleted, or updated in a **calendarView** (a range of events)"
3+
description: "Get a set of events that are added, deleted, or updated in a **calendarView** (a range of events)"
44
ms.localizationpriority: medium
55
author: "iamgirishck"
66
ms.subservice: "outlook"
77
doc_type: apiPageType
8+
ms.date: 06/22/2024
89
---
910

1011
# event: delta
@@ -13,18 +14,18 @@ Namespace: microsoft.graph
1314

1415
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
1516

16-
Get a set of [event](../resources/event.md) resources that have been added, deleted, or updated in one or more calendars.
17+
Get a set of [event](../resources/event.md) resources that are added, deleted, or updated in one or more calendars.
1718

18-
You can get specific types of these incremental changes in the events in all the calendars of a mailbox or in a specific calendar, or in an event collection of a **calendarView** (range of events defined by start and end dates) of a calendar. The calendar can be the default calendar or some other specified calendar of the user's. In the case of getting incremental changes on **calendarView**, the calendar can be a group calendar as well.
19+
You can get specific types of these incremental changes in the events in all the calendars of a mailbox or in a specific calendar, or in an event collection of a **calendarView** (range of events defined by start and end dates) of a calendar. The calendar can be the default calendar or some other specified calendar that belongs to the user. When getting incremental changes on **calendarView**, the calendar can be a group calendar as well.
1920

20-
Typically, synchronizing events in a calendar or **calendarView** in a local store entails a round of multiple **delta** function calls. The initial call is a full synchronization, and every subsequent **delta** call in the same round gets the incremental changes (additions, deletions, or updates). This allows you to maintain and synchronize a local store of events in the specified calendar, without having to fetch all the events of that calendar from the server every time.
21+
Typically, synchronizing events in a calendar or **calendarView** in a local store entails a round of multiple **delta** function calls. The initial call is a full synchronization, and every subsequent **delta** call in the same round gets the incremental changes (additions, deletions, or updates). Using deltas allows you to incrementally maintain and synchronize a local store of events in the specified calendar.
2122

2223
The following table lists the differences between the **delta** function on events and the **delta** function on a **calendarView** in a calendar.
2324

2425
| Delta function on events | Delta function on calendarView |
2526
|:--------------------------|:---------------------------------------------------------|
2627
| Gets incremental changes of all the events in a calendar not bounded by a start and end date range. Alternatively, you can get incremental changes of the events in a calendar bounded by a start time, starting on or after that date/time. | Gets incremental changes of events within the start and end date/time of the **calendarView**. |
27-
| Returns only a limited set of **event** properties for performance reasons. Client to subsequently use `GET /events/{id}` to expand any events. | Server-side expansion returns a fuller set of **event** properties. |
28+
| Returns only a limited set of **event** properties for performance reasons. Client to later use `GET /events/{id}` to expand any events. | Server-side expansion returns a fuller set of **event** properties. |
2829
| Response includes single instances and recurring series master. | Response includes single instances, and occurrences and exceptions of recurring series. |
2930
| Applies to events in user calendars but not group calendars. | Applies to events in user and group calendars. |
3031
| Currently available only in the beta version. | Available in the v1.0 and beta versions. |
@@ -39,12 +40,12 @@ Choose the permission or permissions marked as least privileged for this API. Us
3940

4041
## HTTP request
4142

42-
This section shows the HTTP request syntax for the initial **delta** function call to start a full synchronization that retrieves all the events in the specified calendar or calendar view. This syntax does not contain any [state tokens](/graph/delta-query-overview#state-tokens).
43+
This section shows the HTTP request syntax for the initial **delta** function call to start a full synchronization that retrieves all the events in the specified calendar or calendar view. This syntax doesn't contain any [state tokens](/graph/delta-query-overview#state-tokens).
4344

4445
The query URL returned in a `@odata.nextLink` or `@odata.deltaLink` of a successful response includes a state token. For any subsequent **delta** function call, use the query URL in a `@odata.nextLink` or `@odata.deltaLink` preceding it.
4546

4647
### Delta function on events in a user calendar (preview)
47-
Apply the **delta** function on all the events or events starting on or after a specific date/time, in the specified user calendar(s):
48+
Apply the **delta** function on all the events or events starting on or after a specific date/time, in the specified user calendar or calendars:
4849

4950
* To get incremental changes of all the events, or of events starting on or after the specified date/time _in the user's mailbox_:
5051
<!-- { "blockType": "ignored" } -->
@@ -131,18 +132,18 @@ Tracking changes incurs a round of one or more **delta** function calls. If you
131132
(other than `$deltatoken` and `$skiptoken`), you must specify
132133
it in the initial **delta** request. Microsoft Graph automatically encodes any specified parameters
133134
into the token portion of the `@odata.nextLink` or `@odata.deltaLink` URL provided in the response. You only need to specify any desired query parameters once upfront.
134-
In subsequent requests, simply copy and apply the `@odata.nextLink` or `@odata.deltaLink` URL from the previous response, as that URL already
135+
In subsequent requests, copy and apply the `@odata.nextLink` or `@odata.deltaLink` URL from the previous response, as that URL already
135136
includes the encoded, desired parameters.
136137

137138
| Query parameter | Type |Description|
138139
|:---------------|:--------|:----------|
139-
|startDateTime|String|The start date and time of the time range, represented in ISO 8601 format. For example, "2019-11-08T19:00:00-08:00". <br>The timezone is specified in the timezone offset portion of the parameter value, and is not impacted by the `Prefer: outlook.timezone` header if present. If no timezone offset is included in the value, it is interpreted as UTC.<br>Optional for **delta** on events in a calendar. <br>Required for **delta** on **calendarView**. |
140-
|endDateTime|String|The end date and time of the time range, represented in ISO 8601 format. For example, "2019-11-08T20:00:00-08:00". <br>The timezone is specified in the timezone offset portion of the parameter value, and is not impacted by the `Prefer: outlook.timezone` header if present. If no timezone offset is included in the value, it is interpreted as UTC.<br>_Not supported_ by **delta** on events in a calendar. <br>Required for **delta** on **calendarView**.|
140+
|startDateTime|String|The start date and time of the time range, represented in ISO 8601 format. For example, "2019-11-08T19:00:00-08:00". <br>The timezone is specified in the timezone offset portion of the parameter value, and isn't impacted by the `Prefer: outlook.timezone` header if present. If no timezone offset is included in the value, it's interpreted as UTC.<br>Optional for **delta** on events in a calendar. <br>Required for **delta** on **calendarView**. |
141+
|endDateTime|String|The end date and time of the time range, represented in ISO 8601 format. For example, "2019-11-08T20:00:00-08:00". <br>The timezone is specified in the timezone offset portion of the parameter value, and isn't affected by the `Prefer: outlook.timezone` header, if present. If no timezone offset is included in the value, it's interpreted as UTC.<br>_Not supported_ by **delta** on events in a calendar. <br>Required for **delta** on **calendarView**.|
141142
| $deltatoken | string | A [state token](/graph/delta-query-overview) returned in the `@odata.deltaLink` URL of the previous **delta** function call for the same calendar view, indicating the completion of that round of change tracking. Save and apply the entire `@odata.deltaLink` URL including this token in the first request of the next round of change tracking for that calendar view.|
142143
| $skiptoken | string | A [state token](/graph/delta-query-overview) returned in the `@odata.nextLink` URL of the previous **delta** function call, indicating there are further changes to be tracked in the same calendar view. |
143144

144145
### OData query parameters
145-
- Expect a **delta** function call on a **calendarView** to return the same properties you'd normally get from a `GET /calendarView` request. You cannot use `$select` to get only a subset of those properties.
146+
- Expect a **delta** function call on a **calendarView** to return the same properties you'd normally get from a `GET /calendarView` request. You can't use `$select` to get only a subset of those properties.
146147

147148
- The **delta** function doesn't support the following query parameters for events in a user calendar, or events in a **calendarView**: `$expand`, `$filter`,`$orderby`, `$search`, and `$select`.
148149

@@ -160,24 +161,24 @@ includes the encoded, desired parameters.
160161

161162
### Delta function on events (preview)
162163
If successful, this method returns a `200 OK` response code and an [event](../resources/event.md) collection in the response body. Each **event** in the response contains only
163-
the **id**, **type**, **start** and **end** properties for performance reasons. Use `GET /events/{id}` subsequently to expand any events from the response.
164+
the **id**, **type**, **start**, and **end** properties for performance reasons. Use `GET /events/{id}` later to expand any events from the response.
164165

165166
### Delta function on calendarView
166167
If successful, this method returns a `200 OK` response code and an [event](../resources/event.md) collection in the response body.
167168

168169
Expect to get all the properties you'd normally get from a `GET /calendarView` request.
169170

170-
Within a round of **delta** function calls bound by the date range of a **calendarView**, you may find a **delta** call returning two types of events under `@removed` with the reason `deleted`:
171-
- Events that are within the date range and that have been deleted since the previous **delta** call.
172-
- Events that are _outside_ the date range and that have been added, deleted, or updated since the the previous **delta** call.
171+
Within a round of **delta** function calls bound by the date range of a **calendarView**, you can sometimes find a **delta** call returning two types of events under `@removed` with the reason `deleted`:
172+
- Events that are within the date range and that were deleted since the previous **delta** call.
173+
- Events that are _outside_ the date range and that were added, deleted, or updated since the previous **delta** call.
173174

174175
Filter the events under `@removed` for the date range that your scenario requires.
175176

176177
## Examples
177178

178179
### Example 1: Delta function on events in a calendar (preview)
179180
#### Request
180-
The following example shows the initial sync request to get events in the signed-in user's default calendar, that occur on or after the specified `startDateTime` parameter. The initial request does not include any state token.
181+
The following example shows the initial sync request to get events in the signed-in user's default calendar, which occur on or after the specified `startDateTime` parameter. The initial request doesn't include any state token.
181182

182183
The request uses the `Prefer: odata.maxpagesize` header to limit the maximum number of events in each response to 1.
183184
Continue calling the `delta` function by using the query returned in `@odata.nextLink` until you get a `@odata.deltaLink` in the response.
@@ -247,7 +248,7 @@ Content-type: application/json
247248
### Example 2: Delta function on calendarView
248249
#### Request
249250

250-
The following example shows the initial sync request to get events in the specified calendar of the signed-in user, within the range of dates indicated by the **calendarView**. The initial request does not include any state token.
251+
The following example shows the initial sync request to get events in the specified calendar of the signed-in user, within the range of dates indicated by the **calendarView**. The initial request doesn't include any state token.
251252

252253
The request uses the `Prefer: odata.maxpagesize` header to limit the maximum number of events in each response to 2. Continue calling the `delta` function by using the query returned in `@odata.nextLink` until you get all the events in that calendar view, and a `@odata.deltaLink`
253254
in the response.
@@ -281,7 +282,7 @@ If the request is successful, the response includes a state token, which is eith
281282
Respectively, they indicate whether you should continue with the round or you have completed
282283
getting all the changes for that round.
283284

284-
The response below shows a _skipToken_ in an _\@odata.nextLink_ response header.
285+
The following response shows a _skipToken_ in an _\@odata.nextLink_ response header.
285286

286287
Note: The response object shown here might be shortened for readability.
287288
<!-- {

api-reference/beta/api/exchangeprotectionpolicy-list-mailboxprotectionunitsbulkadditionjobs.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ author: "neminbshah"
55
ms.localizationpriority: medium
66
ms.subservice: "m365-backup-storage"
77
doc_type: apiPageType
8+
ms.date: 10/22/2024
89
---
910

1011
# List mailboxProtectionUnitsBulkAdditionJobs

api-reference/beta/api/identitygovernance-workflowtemplate-get.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ author: "AlexFilipin"
55
ms.localizationpriority: medium
66
ms.subservice: "entra-id-governance"
77
doc_type: apiPageType
8+
ms.date: 04/05/2024
89
---
910

1011
# Get workflowTemplate

api-reference/beta/api/industrydata-securitygroupprovisioningflow-update.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ author: "cristobal-buenrostro"
55
ms.localizationpriority: medium
66
ms.subservice: "industry-data-etl"
77
doc_type: apiPageType
8+
ms.date: 06/22/2024
89
---
910

1011
# Update securityGroupProvisioningFlow

api-reference/beta/api/industrydata-sourcesystemdefinition-get.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ author: "mlafleur"
55
ms.localizationpriority: medium
66
ms.subservice: "industry-data-etl"
77
doc_type: apiPageType
8+
ms.date: 04/05/2024
89
---
910

1011
# Get sourceSystemDefinition

0 commit comments

Comments
 (0)