Skip to content

Commit 813778b

Browse files
github-actions[bot]Microsoft Graph DevX Tooling
andauthored
Weekly OpenApiDocs Download. [run ci] (#1520)
Co-authored-by: Microsoft Graph DevX Tooling <GraphTooling@service.microsoft.com>
1 parent dbabe88 commit 813778b

File tree

92 files changed

+127690
-59590
lines changed

Some content is hidden

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

92 files changed

+127690
-59590
lines changed

openApiDocs/beta/Applications.yml

Lines changed: 1642 additions & 346 deletions
Large diffs are not rendered by default.

openApiDocs/beta/Bookings.yml

Lines changed: 187 additions & 68 deletions
Large diffs are not rendered by default.

openApiDocs/beta/Calendar.yml

Lines changed: 3912 additions & 14241 deletions
Large diffs are not rendered by default.

openApiDocs/beta/ChangeNotifications.yml

Lines changed: 34 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ paths:
1212
- subscriptions.subscription
1313
summary: List subscriptions
1414
description: 'Retrieve a list of webhook subscriptions. The content of the response depends on the context in which the app is calling; for details, see the scenarios in the Permissions section.'
15+
externalDocs:
16+
description: Find more info here
17+
url: https://docs.microsoft.com/graph/api/subscription-list?view=graph-rest-1.0
1518
operationId: subscriptions.subscription_ListSubscription
1619
parameters:
1720
- $ref: '#/components/parameters/search'
@@ -56,6 +59,9 @@ paths:
5659
- subscriptions.subscription
5760
summary: Create subscription
5861
description: 'Subscribes a listener application to receive change notifications when the requested type of changes occur to the specified resource in Microsoft Graph. See the table in the Permissions section for the list of resources that support subscribing to change notifications. Some resources support the option to include encrypted resource data in change notifications. These resources include chatMessage, contact, event, message, onlineMeetings and presence. For more information, see Set up change notifications that include resource data and Change notifications for Outlook resources in Microsoft Graph.'
62+
externalDocs:
63+
description: Find more info here
64+
url: https://docs.microsoft.com/graph/api/subscription-post-subscriptions?view=graph-rest-1.0
5965
operationId: subscriptions.subscription_CreateSubscription
6066
requestBody:
6167
description: New entity
@@ -80,6 +86,9 @@ paths:
8086
- subscriptions.subscription
8187
summary: Get subscription
8288
description: Retrieve the properties and relationships of a subscription. See the table in the Permissions section for the list of resources that support subscribing to change notifications.
89+
externalDocs:
90+
description: Find more info here
91+
url: https://docs.microsoft.com/graph/api/subscription-get?view=graph-rest-1.0
8392
operationId: subscriptions.subscription_GetSubscription
8493
parameters:
8594
- name: subscription-id
@@ -135,6 +144,9 @@ paths:
135144
- subscriptions.subscription
136145
summary: Update subscription
137146
description: 'Renew a subscription by extending its expiry time. The table in the Permissions section lists the resources that support subscribing to change notifications. Subscriptions expire after a length of time that varies by resource type. In order to avoid missing change notifications, an app should renew its subscriptions well in advance of their expiry date. See subscription for maximum length of a subscription for each resource type.'
147+
externalDocs:
148+
description: Find more info here
149+
url: https://docs.microsoft.com/graph/api/subscription-update?view=graph-rest-1.0
138150
operationId: subscriptions.subscription_UpdateSubscription
139151
parameters:
140152
- name: subscription-id
@@ -163,6 +175,9 @@ paths:
163175
- subscriptions.subscription
164176
summary: Delete subscription
165177
description: 'Delete a subscription. For the list of resources that support subscribing to change notifications, see the table in the Permissions section.'
178+
externalDocs:
179+
description: Find more info here
180+
url: https://docs.microsoft.com/graph/api/subscription-delete?view=graph-rest-1.0
166181
operationId: subscriptions.subscription_DeleteSubscription
167182
parameters:
168183
- name: subscription-id
@@ -285,13 +300,16 @@ components:
285300
microsoft.graph.subscriptionCollectionResponse:
286301
title: Collection of subscription
287302
type: object
288-
properties:
289-
value:
290-
type: array
291-
items:
292-
$ref: '#/components/schemas/microsoft.graph.subscription'
293-
'@odata.nextLink':
294-
type: string
303+
allOf:
304+
- $ref: '#/components/schemas/BaseCollectionPaginationCountResponse'
305+
- type: object
306+
properties:
307+
value:
308+
type: array
309+
items:
310+
$ref: '#/components/schemas/microsoft.graph.subscription'
311+
additionalProperties:
312+
type: object
295313
additionalProperties:
296314
type: object
297315
microsoft.graph.ODataErrors.ODataError:
@@ -303,6 +321,15 @@ components:
303321
$ref: '#/components/schemas/microsoft.graph.ODataErrors.MainError'
304322
additionalProperties:
305323
type: object
324+
BaseCollectionPaginationCountResponse:
325+
title: Base collection pagination and count responses
326+
type: object
327+
properties:
328+
'@odata.nextLink':
329+
type: string
330+
nullable: true
331+
additionalProperties:
332+
type: object
306333
microsoft.graph.ODataErrors.MainError:
307334
required:
308335
- code

0 commit comments

Comments
 (0)