-
Notifications
You must be signed in to change notification settings - Fork 252
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1464 from microsoftgraph/v1.0/pipelinebuild/84225
Generated v1.0 models and request builders using Typewriter
- Loading branch information
Showing
25 changed files
with
998 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
src/Microsoft.Graph/Generated/model/AutoRestartNotificationDismissalMethod.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// ------------------------------------------------------------------------------ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
// ------------------------------------------------------------------------------ | ||
|
||
// **NOTE** This file was generated by a tool and any changes will be overwritten. | ||
// <auto-generated/> | ||
|
||
// Template Source: EnumType.cs.tt | ||
|
||
|
||
namespace Microsoft.Graph | ||
{ | ||
using System.Text.Json.Serialization; | ||
|
||
/// <summary> | ||
/// The enum AutoRestartNotificationDismissalMethod. | ||
/// </summary> | ||
[JsonConverter(typeof(JsonStringEnumConverter))] | ||
public enum AutoRestartNotificationDismissalMethod | ||
{ | ||
|
||
/// <summary> | ||
/// Not Configured | ||
/// </summary> | ||
NotConfigured = 0, | ||
|
||
/// <summary> | ||
/// Automatic | ||
/// </summary> | ||
Automatic = 1, | ||
|
||
/// <summary> | ||
/// User | ||
/// </summary> | ||
User = 2, | ||
|
||
/// <summary> | ||
/// Unknown Future Value | ||
/// </summary> | ||
UnknownFutureValue = 3, | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
78 changes: 78 additions & 0 deletions
78
src/Microsoft.Graph/Generated/model/DetectedAppPlatformType.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
// ------------------------------------------------------------------------------ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
// ------------------------------------------------------------------------------ | ||
|
||
// **NOTE** This file was generated by a tool and any changes will be overwritten. | ||
// <auto-generated/> | ||
|
||
// Template Source: EnumType.cs.tt | ||
|
||
|
||
namespace Microsoft.Graph | ||
{ | ||
using System.Text.Json.Serialization; | ||
|
||
/// <summary> | ||
/// The enum DetectedAppPlatformType. | ||
/// </summary> | ||
[JsonConverter(typeof(JsonStringEnumConverter))] | ||
public enum DetectedAppPlatformType | ||
{ | ||
|
||
/// <summary> | ||
/// Unknown | ||
/// </summary> | ||
Unknown = 0, | ||
|
||
/// <summary> | ||
/// Windows | ||
/// </summary> | ||
Windows = 1, | ||
|
||
/// <summary> | ||
/// Windows Mobile | ||
/// </summary> | ||
WindowsMobile = 2, | ||
|
||
/// <summary> | ||
/// Windows Holographic | ||
/// </summary> | ||
WindowsHolographic = 3, | ||
|
||
/// <summary> | ||
/// Ios | ||
/// </summary> | ||
Ios = 4, | ||
|
||
/// <summary> | ||
/// Mac OS | ||
/// </summary> | ||
MacOS = 5, | ||
|
||
/// <summary> | ||
/// Chrome OS | ||
/// </summary> | ||
ChromeOS = 6, | ||
|
||
/// <summary> | ||
/// Android OSP | ||
/// </summary> | ||
AndroidOSP = 7, | ||
|
||
/// <summary> | ||
/// Android Device Administrator | ||
/// </summary> | ||
AndroidDeviceAdministrator = 8, | ||
|
||
/// <summary> | ||
/// Android Work Profile | ||
/// </summary> | ||
AndroidWorkProfile = 9, | ||
|
||
/// <summary> | ||
/// Android Dedicated And Fully Managed | ||
/// </summary> | ||
AndroidDedicatedAndFullyManaged = 10, | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
src/Microsoft.Graph/Generated/model/PresenceSetUserPreferredPresenceRequestBody.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
// ------------------------------------------------------------------------------ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
// ------------------------------------------------------------------------------ | ||
|
||
// **NOTE** This file was generated by a tool and any changes will be overwritten. | ||
// <auto-generated/> | ||
|
||
// Template Source: MethodRequestBody.cs.tt | ||
|
||
namespace Microsoft.Graph | ||
{ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Text.Json.Serialization; | ||
|
||
/// <summary> | ||
/// The type PresenceSetUserPreferredPresenceRequestBody. | ||
/// </summary> | ||
public partial class PresenceSetUserPreferredPresenceRequestBody | ||
{ | ||
|
||
/// <summary> | ||
/// Gets or sets Availability. | ||
/// </summary> | ||
[JsonPropertyName("availability")] | ||
public string Availability { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets Activity. | ||
/// </summary> | ||
[JsonPropertyName("activity")] | ||
public string Activity { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets ExpirationDuration. | ||
/// </summary> | ||
[JsonPropertyName("expirationDuration")] | ||
public Duration ExpirationDuration { get; set; } | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.