Skip to content

Commit 82f8d34

Browse files
authored
Merge pull request #131 from microsoftgraph/po/0.2.0Release
0.2.0 Release
2 parents b5b0858 + 82826fc commit 82f8d34

File tree

4,063 files changed

+3495284
-43528
lines changed

Some content is hidden

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

4,063 files changed

+3495284
-43528
lines changed

config/ModuleMetadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"projectUri": "https://github.com/microsoftgraph/msgraph-sdk-powershell",
99
"iconUri": "https://raw.githubusercontent.com/microsoftgraph/g-raph/master/g-raph.png",
1010
"tags": "MicrosoftGraph;Microsoft;Office365;Graph;PowerShell;GraphServiceClient;Outlook;OneDrive;AzureAD;GraphAPI;Productivity;SharePoint;Intune;SDK;",
11-
"releaseNotes": "Initial release of Microsoft.Graph module.",
11+
"releaseNotes": "See https://aka.ms/GraphPowerShell-Release.",
1212
"assemblyOriginatorKeyFile": "35MSSharedLib1024.snk",
1313
"version": "0.2.0"
1414
}

openApiDocs/Beta/Analytics.yml

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
openapi: 3.0.1
22
info:
33
title: Analytics
4-
version: v1.0-Beta
4+
version: v1.0-beta
55
servers:
6-
- url: https://graph.microsoft.com/Beta/
6+
- url: https://graph.microsoft.com/beta/
77
description: Core
88
paths:
99
/activitystatistics:
@@ -1452,14 +1452,17 @@ components:
14521452
type: array
14531453
items:
14541454
$ref: '#/components/schemas/microsoft.graph.trending'
1455+
description: Calculated relationship identifying trending documents. Trending documents can be stored in OneDrive or in SharePoint sites.
14551456
shared:
14561457
type: array
14571458
items:
14581459
$ref: '#/components/schemas/microsoft.graph.sharedInsight'
1460+
description: Calculated relationship identifying documents shared with a user. Documents can be shared as email attachments or as OneDrive for Business links sent in emails.
14591461
used:
14601462
type: array
14611463
items:
14621464
$ref: '#/components/schemas/microsoft.graph.usedInsight'
1465+
description: 'Calculated relationship identifying documents viewed and modified by a user. Includes documents the user used in OneDrive for Business, SharePoint, opened as email attachments, and as link attachments from sources like Box, DropBox and Google Drive.'
14631466
example:
14641467
id: string (identifier)
14651468
trending:
@@ -1508,6 +1511,7 @@ components:
15081511
properties:
15091512
id:
15101513
type: string
1514+
description: Read-only.
15111515
example:
15121516
id: string (identifier)
15131517
microsoft.graph.trending:
@@ -1518,6 +1522,7 @@ components:
15181522
properties:
15191523
weight:
15201524
type: number
1525+
description: 'Value indicating how much the document is currently trending. The larger the number, the more the document is currently trending around the user (the more relevant it is). Returned documents are sorted by this value.'
15211526
format: double
15221527
resourceVisualization:
15231528
$ref: '#/components/schemas/microsoft.graph.resourceVisualization'
@@ -1596,13 +1601,16 @@ components:
15961601
sharedDateTime:
15971602
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
15981603
type: string
1604+
description: 'The date and time the file was last shared. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: 2014-01-01T00:00:00Z. Read-only.'
15991605
format: date-time
16001606
nullable: true
16011607
sharingSubject:
16021608
type: string
1609+
description: The subject with which the document was shared.
16031610
nullable: true
16041611
sharingType:
16051612
type: string
1613+
description: 'Determines the way the document was shared, can be by a ''Link'', ''Attachment'', ''Group'', ''Site''.'
16061614
nullable: true
16071615
sharingReference:
16081616
$ref: '#/components/schemas/microsoft.graph.resourceReference'
@@ -1620,27 +1628,35 @@ components:
16201628
properties:
16211629
title:
16221630
type: string
1631+
description: The item's title text.
16231632
nullable: true
16241633
type:
16251634
type: string
1635+
description: The item's media type. Can be used for filtering for a specific file based on a specific type. See below for supported types.
16261636
nullable: true
16271637
mediaType:
16281638
type: string
1639+
description: The item's media type. Can be used for filtering for a specific type of file based on supported IANA Media Mime Types. Note that not all Media Mime Types are supported.
16291640
nullable: true
16301641
previewImageUrl:
16311642
type: string
1643+
description: A URL leading to the preview image for the item.
16321644
nullable: true
16331645
previewText:
16341646
type: string
1647+
description: A preview text for the item.
16351648
nullable: true
16361649
containerWebUrl:
16371650
type: string
1651+
description: A path leading to the folder in which the item is stored.
16381652
nullable: true
16391653
containerDisplayName:
16401654
type: string
1655+
description: 'A string describing where the item is stored. For example, the name of a SharePoint site or the user name identifying the owner of the OneDrive storing the item.'
16411656
nullable: true
16421657
containerType:
16431658
type: string
1659+
description: Can be used for filtering by the type of container in which the file is stored. Such as Site or OneDriveBusiness.
16441660
nullable: true
16451661
example:
16461662
title: string
@@ -1657,12 +1673,15 @@ components:
16571673
properties:
16581674
webUrl:
16591675
type: string
1676+
description: A URL leading to the referenced item.
16601677
nullable: true
16611678
id:
16621679
type: string
1680+
description: The item's unique identifier.
16631681
nullable: true
16641682
type:
16651683
type: string
1684+
description: 'A string value that can be used to classify the item, such as ''microsoft.graph.driveItem'''
16661685
nullable: true
16671686
example:
16681687
webUrl: string
@@ -1675,11 +1694,13 @@ components:
16751694
lastAccessedDateTime:
16761695
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
16771696
type: string
1697+
description: 'The date and time the resource was last accessed by the user. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: 2014-01-01T00:00:00Z. Read-only.'
16781698
format: date-time
16791699
nullable: true
16801700
lastModifiedDateTime:
16811701
pattern: '^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$'
16821702
type: string
1703+
description: 'The date and time the resource was last modified by the user. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: 2014-01-01T00:00:00Z. Read-only.'
16831704
format: date-time
16841705
nullable: true
16851706
example:
@@ -1698,12 +1719,15 @@ components:
16981719
properties:
16991720
displayName:
17001721
type: string
1722+
description: The display name of the user who shared the item.
17011723
nullable: true
17021724
id:
17031725
type: string
1726+
description: The id of the user who shared the item.
17041727
nullable: true
17051728
address:
17061729
type: string
1730+
description: The email address of the user who shared the item.
17071731
nullable: true
17081732
example:
17091733
displayName: string

openApiDocs/Beta/Bookings.yml

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
openapi: 3.0.1
22
info:
33
title: Bookings
4-
version: v1.0-Beta
4+
version: v1.0-beta
55
servers:
6-
- url: https://graph.microsoft.com/Beta/
6+
- url: https://graph.microsoft.com/beta/
77
description: Core
88
paths:
99
/bookingBusinesses:
@@ -1834,22 +1834,27 @@ components:
18341834
type: array
18351835
items:
18361836
$ref: '#/components/schemas/microsoft.graph.bookingAppointment'
1837+
description: All appointments in this business.
18371838
calendarView:
18381839
type: array
18391840
items:
18401841
$ref: '#/components/schemas/microsoft.graph.bookingAppointment'
1842+
description: A calendar view of appointments in this business.
18411843
customers:
18421844
type: array
18431845
items:
18441846
$ref: '#/components/schemas/microsoft.graph.bookingCustomer'
1847+
description: All customers of this business.
18451848
services:
18461849
type: array
18471850
items:
18481851
$ref: '#/components/schemas/microsoft.graph.bookingService'
1852+
description: All services offered by this business.
18491853
staffMembers:
18501854
type: array
18511855
items:
18521856
$ref: '#/components/schemas/microsoft.graph.bookingStaffMember'
1857+
description: All staff members that provides services in this business.
18531858
description: Represents a Microsot Bookings Business.
18541859
example:
18551860
id: string (identifier)
@@ -2145,18 +2150,23 @@ components:
21452150
nullable: true
21462151
street:
21472152
type: string
2153+
description: The street.
21482154
nullable: true
21492155
city:
21502156
type: string
2157+
description: The city.
21512158
nullable: true
21522159
state:
21532160
type: string
2161+
description: The state.
21542162
nullable: true
21552163
countryOrRegion:
21562164
type: string
2165+
description: 'The country or region. It''s a free-format string value, for example, ''United States''.'
21572166
nullable: true
21582167
postalCode:
21592168
type: string
2169+
description: The postal code.
21602170
nullable: true
21612171
example:
21622172
type:
@@ -2220,6 +2230,7 @@ components:
22202230
properties:
22212231
id:
22222232
type: string
2233+
description: Read-only.
22232234
example:
22242235
id: string (identifier)
22252236
microsoft.graph.location:
@@ -2228,21 +2239,25 @@ components:
22282239
properties:
22292240
displayName:
22302241
type: string
2242+
description: The name associated with the location.
22312243
nullable: true
22322244
locationEmailAddress:
22332245
type: string
2246+
description: Optional email address of the location.
22342247
nullable: true
22352248
address:
22362249
$ref: '#/components/schemas/microsoft.graph.physicalAddress'
22372250
coordinates:
22382251
$ref: '#/components/schemas/microsoft.graph.outlookGeoCoordinates'
22392252
locationUri:
22402253
type: string
2254+
description: Optional URI representing the location.
22412255
nullable: true
22422256
locationType:
22432257
$ref: '#/components/schemas/microsoft.graph.locationType'
22442258
uniqueId:
22452259
type: string
2260+
description: For internal use only.
22462261
nullable: true
22472262
uniqueIdType:
22482263
$ref: '#/components/schemas/microsoft.graph.locationUniqueIdType'
@@ -2265,8 +2280,10 @@ components:
22652280
properties:
22662281
dateTime:
22672282
type: string
2283+
description: 'A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000).'
22682284
timeZone:
22692285
type: string
2286+
description: 'Represents a time zone, for example, ''Pacific Standard Time''. See below for more possible values.'
22702287
nullable: true
22712288
example:
22722289
dateTime: string
@@ -2382,22 +2399,27 @@ components:
23822399
properties:
23832400
altitude:
23842401
type: number
2402+
description: The altitude of the location.
23852403
format: double
23862404
nullable: true
23872405
latitude:
23882406
type: number
2407+
description: The latitude of the location.
23892408
format: double
23902409
nullable: true
23912410
longitude:
23922411
type: number
2412+
description: The longitude of the location.
23932413
format: double
23942414
nullable: true
23952415
accuracy:
23962416
type: number
2417+
description: 'The accuracy of the latitude and longitude. As an example, the accuracy can be measured in meters, such as the latitude and longitude are accurate to within 50 meters.'
23972418
format: double
23982419
nullable: true
23992420
altitudeAccuracy:
24002421
type: number
2422+
description: The accuracy of the altitude.
24012423
format: double
24022424
nullable: true
24032425
example:

openApiDocs/Beta/DevicesApps.MobileAppManagement.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
openapi: 3.0.1
22
info:
33
title: DevicesApps.MobileAppManagement
4-
version: v1.0-Beta
4+
version: v1.0-beta
55
servers:
6-
- url: https://graph.microsoft.com/Beta/
6+
- url: https://graph.microsoft.com/beta/
77
description: Core
88
paths:
99
'/users/{user-id}/managedAppRegistrations':
@@ -427,14 +427,17 @@ components:
427427
type: array
428428
items:
429429
$ref: '#/components/schemas/microsoft.graph.managedAppPolicy'
430+
description: Zero or more policys already applied on the registered app when it last synchronized with managment service.
430431
intendedPolicies:
431432
type: array
432433
items:
433434
$ref: '#/components/schemas/microsoft.graph.managedAppPolicy'
435+
description: Zero or more policies admin intended for the app as of now.
434436
operations:
435437
type: array
436438
items:
437439
$ref: '#/components/schemas/microsoft.graph.managedAppOperation'
440+
description: Zero or more long running operations triggered on the app registration.
438441
description: The ManagedAppEntity is the base entity type for all other entity types under app management workflow.
439442
example:
440443
id: string (identifier)
@@ -508,6 +511,7 @@ components:
508511
properties:
509512
id:
510513
type: string
514+
description: Read-only.
511515
example:
512516
id: string (identifier)
513517
microsoft.graph.managedAppFlaggedReason:

openApiDocs/Beta/DevicesApps.OfficeConfiguration.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
openapi: 3.0.1
22
info:
33
title: DevicesApps.OfficeConfiguration
4-
version: v1.0-Beta
4+
version: v1.0-beta
55
servers:
6-
- url: https://graph.microsoft.com/Beta/
6+
- url: https://graph.microsoft.com/beta/
77
description: Core
88
paths:
99
/officeConfiguration:
@@ -606,6 +606,7 @@ components:
606606
properties:
607607
id:
608608
type: string
609+
description: Read-only.
609610
example:
610611
id: string (identifier)
611612
microsoft.graph.officeClientCheckinStatus:

0 commit comments

Comments
 (0)