Skip to content

Commit 6889f68

Browse files
author
Caitlin Bales (MSFT)
authored
Merge pull request #169 from microsoftgraph/august-updates
August updates
2 parents 696a22d + eedf6d8 commit 6889f68

File tree

162 files changed

+3431
-44
lines changed

Some content is hidden

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

162 files changed

+3431
-44
lines changed

src/Microsoft.Graph.Core/Microsoft.Graph.Core.csproj

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,10 @@
1313
<PackageId>Microsoft.Graph.Core</PackageId>
1414
<PackageTags>Microsoft Office365;Graph;GraphServiceClient;Outlook;OneDrive;AzureAD;GraphAPI;Productivity;SharePoint;SDK</PackageTags>
1515
<PackageReleaseNotes>
16-
June 2017 Release Summary (version 1.5.0)
16+
August 2017 Release Summary (version 1.6.0)
1717

18-
New features
19-
20-
* Support for posting multipart content.
21-
22-
Bug fixes
23-
24-
* Boolean query string parameters are no longer emitted in upper case.
25-
26-
</PackageReleaseNotes>
18+
New Features
19+
* Added Intellisense file to package</PackageReleaseNotes>
2720
<PackageProjectUrl>https://graph.microsoft.io</PackageProjectUrl>
2821
<PackageLicenseUrl>http://aka.ms/devservicesagreement</PackageLicenseUrl>
2922
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
@@ -42,6 +35,7 @@
4235
<DelaySign>True</DelaySign>
4336
<AssemblyOriginatorKeyFile>35MSSharedLib1024.snk</AssemblyOriginatorKeyFile>
4437
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
38+
<Version>1.6.0</Version>
4539
</PropertyGroup>
4640
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard1.1|AnyCPU'">
4741
<DocumentationFile>bin\Release\netstandard1.1\Microsoft.Graph.Core.xml</DocumentationFile>

src/Microsoft.Graph.Core/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
//
2525
// You can specify all the values or you can default the Build and Revision Numbers
2626
// by using the '*' as shown below:
27-
[assembly: AssemblyVersion("1.5.0")]
28-
[assembly: AssemblyFileVersion("1.5.0.0")]
27+
[assembly: AssemblyVersion("1.6.0")]
28+
[assembly: AssemblyFileVersion("1.6.0.0")]
2929

3030
#if DEBUG
3131
[assembly: InternalsVisibleTo("Microsoft.Graph.Core.Test")]

src/Microsoft.Graph/Microsoft.Graph.csproj

Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,12 @@
1313
<AssemblyName>Microsoft.Graph</AssemblyName>
1414
<PackageId>Microsoft.Graph</PackageId>
1515
<PackageTags>Microsoft Office365;Graph;GraphServiceClient;Outlook;OneDrive;AzureAD;GraphAPI;Productivity;SharePoint;SDK</PackageTags>
16-
<PackageReleaseNotes>
17-
June 2017 Release Summary (version 1.4.0)
16+
<PackageReleaseNotes>August 2017 Release Summary (version 1.5.0)
1817

1918
New features
20-
21-
* OneNote
22-
* Open extensions
23-
* Schema extensions
24-
25-
Updates
26-
27-
* Provided example and tests for scenarios where Microsoft.Graph client library request builders don't support functionality. This way you can make use of the serializer and authentication provider.
28-
* The service metadata doesn't support GetByPath for getting SharePoint sites by relative path. Added functionality to enable this.
29-
* Added FindMeetingTimes test.
30-
31-
Bug fixes
32-
33-
* Large file uploads larger than 2GB is enabled.
34-
35-
</PackageReleaseNotes>
19+
* Access OneNote notebooks through SharePoint
20+
* New Groups functionality
21+
* Added Intellisense file</PackageReleaseNotes>
3622
<PackageProjectUrl>https://graph.microsoft.io</PackageProjectUrl>
3723
<PackageLicenseUrl>http://aka.ms/devservicesagreement</PackageLicenseUrl>
3824
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
@@ -51,6 +37,7 @@
5137
<DelaySign>True</DelaySign>
5238
<AssemblyOriginatorKeyFile>35MSSharedLib1024.snk</AssemblyOriginatorKeyFile>
5339
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
40+
<Version>1.5.0</Version>
5441
</PropertyGroup>
5542

5643
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard1.1|AnyCPU'">

src/Microsoft.Graph/Models/Generated/AssignedLicense.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,14 @@ public partial class AssignedLicense
2424

2525
/// <summary>
2626
/// Gets or sets disabledPlans.
27+
/// A collection of the unique identifiers for plans that have been disabled.
2728
/// </summary>
2829
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "disabledPlans", Required = Newtonsoft.Json.Required.Default)]
2930
public IEnumerable<Guid> DisabledPlans { get; set; }
3031

3132
/// <summary>
3233
/// Gets or sets skuId.
34+
/// The unique identifier for the SKU.
3335
/// </summary>
3436
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "skuId", Required = Newtonsoft.Json.Required.Default)]
3537
public Guid? SkuId { get; set; }

src/Microsoft.Graph/Models/Generated/AssignedPlan.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,24 +24,28 @@ public partial class AssignedPlan
2424

2525
/// <summary>
2626
/// Gets or sets assignedDateTime.
27+
/// The date and time at which the plan was assigned; for example: 2013-01-02T19:32:30Z. The Timestamp type 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'
2728
/// </summary>
2829
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "assignedDateTime", Required = Newtonsoft.Json.Required.Default)]
2930
public DateTimeOffset? AssignedDateTime { get; set; }
3031

3132
/// <summary>
3233
/// Gets or sets capabilityStatus.
34+
/// For example, “Enabled”.
3335
/// </summary>
3436
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "capabilityStatus", Required = Newtonsoft.Json.Required.Default)]
3537
public string CapabilityStatus { get; set; }
3638

3739
/// <summary>
3840
/// Gets or sets service.
41+
/// The name of the service; for example, “Exchange”.
3942
/// </summary>
4043
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "service", Required = Newtonsoft.Json.Required.Default)]
4144
public string Service { get; set; }
4245

4346
/// <summary>
4447
/// Gets or sets servicePlanId.
48+
/// A GUID that identifies the service plan.
4549
/// </summary>
4650
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "servicePlanId", Required = Newtonsoft.Json.Required.Default)]
4751
public Guid? ServicePlanId { get; set; }

src/Microsoft.Graph/Models/Generated/Attachment.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,30 +28,35 @@ protected internal Attachment()
2828

2929
/// <summary>
3030
/// Gets or sets last modified date time.
31+
/// The Timestamp type 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'
3132
/// </summary>
3233
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "lastModifiedDateTime", Required = Newtonsoft.Json.Required.Default)]
3334
public DateTimeOffset? LastModifiedDateTime { get; set; }
3435

3536
/// <summary>
3637
/// Gets or sets name.
38+
/// The attachment's file name.
3739
/// </summary>
3840
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "name", Required = Newtonsoft.Json.Required.Default)]
3941
public string Name { get; set; }
4042

4143
/// <summary>
4244
/// Gets or sets content type.
45+
/// The MIME type.
4346
/// </summary>
4447
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "contentType", Required = Newtonsoft.Json.Required.Default)]
4548
public string ContentType { get; set; }
4649

4750
/// <summary>
4851
/// Gets or sets size.
52+
/// The length of the attachment in bytes.
4953
/// </summary>
5054
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "size", Required = Newtonsoft.Json.Required.Default)]
5155
public Int32? Size { get; set; }
5256

5357
/// <summary>
5458
/// Gets or sets is inline.
59+
/// true if the attachment is an inline attachment; otherwise, false.
5560
/// </summary>
5661
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "isInline", Required = Newtonsoft.Json.Required.Default)]
5762
public bool? IsInline { get; set; }

src/Microsoft.Graph/Models/Generated/Attendee.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ public partial class Attendee : AttendeeBase
2323

2424
/// <summary>
2525
/// Gets or sets status.
26+
/// The attendee's response (none, accepted, declined, etc.) for the event and date-time that the response was sent.
2627
/// </summary>
2728
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "status", Required = Newtonsoft.Json.Required.Default)]
2829
public ResponseStatus Status { get; set; }

src/Microsoft.Graph/Models/Generated/AttendeeAvailability.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,14 @@ public partial class AttendeeAvailability
2424

2525
/// <summary>
2626
/// Gets or sets attendee.
27+
/// The type of attendee - whether it's a person or a resource, and whether required or optional if it's a person.
2728
/// </summary>
2829
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "attendee", Required = Newtonsoft.Json.Required.Default)]
2930
public AttendeeBase Attendee { get; set; }
3031

3132
/// <summary>
3233
/// Gets or sets availability.
34+
/// The availability status of the attendee. Possible values are: free, tentative, busy, oof, workingElsewhere, unknown.
3335
/// </summary>
3436
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "availability", Required = Newtonsoft.Json.Required.Default)]
3537
public FreeBusyStatus? Availability { get; set; }

src/Microsoft.Graph/Models/Generated/AttendeeBase.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ public partial class AttendeeBase : Recipient
2323

2424
/// <summary>
2525
/// Gets or sets type.
26+
/// The type of attendee. Possible values are: required, optional, resource. Currently if the attendee is a person, findMeetingTimes always considers the person is of the Required type.
2627
/// </summary>
2728
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "type", Required = Newtonsoft.Json.Required.Default)]
2829
public AttendeeType? Type { get; set; }

src/Microsoft.Graph/Models/Generated/Audio.cs

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,96 +24,112 @@ public partial class Audio
2424

2525
/// <summary>
2626
/// Gets or sets album.
27+
/// The title of the album for this audio file.
2728
/// </summary>
2829
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "album", Required = Newtonsoft.Json.Required.Default)]
2930
public string Album { get; set; }
3031

3132
/// <summary>
3233
/// Gets or sets albumArtist.
34+
/// The artist named on the album for the audio file.
3335
/// </summary>
3436
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "albumArtist", Required = Newtonsoft.Json.Required.Default)]
3537
public string AlbumArtist { get; set; }
3638

3739
/// <summary>
3840
/// Gets or sets artist.
41+
/// The performing artist for the audio file.
3942
/// </summary>
4043
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "artist", Required = Newtonsoft.Json.Required.Default)]
4144
public string Artist { get; set; }
4245

4346
/// <summary>
4447
/// Gets or sets bitrate.
48+
/// Bitrate expressed in kbps.
4549
/// </summary>
4650
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "bitrate", Required = Newtonsoft.Json.Required.Default)]
4751
public Int64? Bitrate { get; set; }
4852

4953
/// <summary>
5054
/// Gets or sets composers.
55+
/// The name of the composer of the audio file.
5156
/// </summary>
5257
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "composers", Required = Newtonsoft.Json.Required.Default)]
5358
public string Composers { get; set; }
5459

5560
/// <summary>
5661
/// Gets or sets copyright.
62+
/// Copyright information for the audio file.
5763
/// </summary>
5864
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "copyright", Required = Newtonsoft.Json.Required.Default)]
5965
public string Copyright { get; set; }
6066

6167
/// <summary>
6268
/// Gets or sets disc.
69+
/// The number of the disc this audio file came from.
6370
/// </summary>
6471
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "disc", Required = Newtonsoft.Json.Required.Default)]
6572
public Int16? Disc { get; set; }
6673

6774
/// <summary>
6875
/// Gets or sets discCount.
76+
/// The total number of discs in this album.
6977
/// </summary>
7078
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "discCount", Required = Newtonsoft.Json.Required.Default)]
7179
public Int16? DiscCount { get; set; }
7280

7381
/// <summary>
7482
/// Gets or sets duration.
83+
/// Duration of the audio file, expressed in milliseconds
7584
/// </summary>
7685
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "duration", Required = Newtonsoft.Json.Required.Default)]
7786
public Int64? Duration { get; set; }
7887

7988
/// <summary>
8089
/// Gets or sets genre.
90+
/// The genre of this audio file.
8191
/// </summary>
8292
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "genre", Required = Newtonsoft.Json.Required.Default)]
8393
public string Genre { get; set; }
8494

8595
/// <summary>
8696
/// Gets or sets hasDrm.
97+
/// Indicates if the file is protected with digital rights management.
8798
/// </summary>
8899
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "hasDrm", Required = Newtonsoft.Json.Required.Default)]
89100
public bool? HasDrm { get; set; }
90101

91102
/// <summary>
92103
/// Gets or sets isVariableBitrate.
104+
/// Indicates if the file is encoded with a variable bitrate.
93105
/// </summary>
94106
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "isVariableBitrate", Required = Newtonsoft.Json.Required.Default)]
95107
public bool? IsVariableBitrate { get; set; }
96108

97109
/// <summary>
98110
/// Gets or sets title.
111+
/// The title of the audio file.
99112
/// </summary>
100113
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "title", Required = Newtonsoft.Json.Required.Default)]
101114
public string Title { get; set; }
102115

103116
/// <summary>
104117
/// Gets or sets track.
118+
/// The number of the track on the original disc for this audio file.
105119
/// </summary>
106120
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "track", Required = Newtonsoft.Json.Required.Default)]
107121
public Int32? Track { get; set; }
108122

109123
/// <summary>
110124
/// Gets or sets trackCount.
125+
/// The total number of tracks on the original disc for this audio file.
111126
/// </summary>
112127
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "trackCount", Required = Newtonsoft.Json.Required.Default)]
113128
public Int32? TrackCount { get; set; }
114129

115130
/// <summary>
116131
/// Gets or sets year.
132+
/// The year the audio file was recorded.
117133
/// </summary>
118134
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "year", Required = Newtonsoft.Json.Required.Default)]
119135
public Int32? Year { get; set; }

0 commit comments

Comments
 (0)