-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update generated files with build 3117563
- Loading branch information
Microsoft Graph DevX Tooling
authored and
Microsoft Graph DevX Tooling
committed
Jun 16, 2020
1 parent
773e12d
commit 75ac3de
Showing
86 changed files
with
6,309 additions
and
4 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
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
33 changes: 33 additions & 0 deletions
33
src/Microsoft.Graph/Models/Generated/ApplicationEnforcedRestrictionsSessionControl.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,33 @@ | ||
// ------------------------------------------------------------------------------ | ||
// 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: Templates\CSharp\Model\ComplexType.cs.tt | ||
|
||
namespace Microsoft.Graph | ||
{ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Runtime.Serialization; | ||
using Newtonsoft.Json; | ||
|
||
/// <summary> | ||
/// The type ApplicationEnforcedRestrictionsSessionControl. | ||
/// </summary> | ||
[JsonObject(MemberSerialization = MemberSerialization.OptIn)] | ||
public partial class ApplicationEnforcedRestrictionsSessionControl : ConditionalAccessSessionControl | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="ApplicationEnforcedRestrictionsSessionControl"/> class. | ||
/// </summary> | ||
public ApplicationEnforcedRestrictionsSessionControl() | ||
{ | ||
this.ODataType = "microsoft.graph.applicationEnforcedRestrictionsSessionControl"; | ||
} | ||
|
||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
src/Microsoft.Graph/Models/Generated/CloudAppSecuritySessionControl.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,39 @@ | ||
// ------------------------------------------------------------------------------ | ||
// 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: Templates\CSharp\Model\ComplexType.cs.tt | ||
|
||
namespace Microsoft.Graph | ||
{ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Runtime.Serialization; | ||
using Newtonsoft.Json; | ||
|
||
/// <summary> | ||
/// The type CloudAppSecuritySessionControl. | ||
/// </summary> | ||
[JsonObject(MemberSerialization = MemberSerialization.OptIn)] | ||
public partial class CloudAppSecuritySessionControl : ConditionalAccessSessionControl | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="CloudAppSecuritySessionControl"/> class. | ||
/// </summary> | ||
public CloudAppSecuritySessionControl() | ||
{ | ||
this.ODataType = "microsoft.graph.cloudAppSecuritySessionControl"; | ||
} | ||
|
||
/// <summary> | ||
/// Gets or sets cloudAppSecurityType. | ||
/// </summary> | ||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "cloudAppSecurityType", Required = Newtonsoft.Json.Required.Default)] | ||
public CloudAppSecuritySessionControlType? CloudAppSecurityType { get; set; } | ||
|
||
} | ||
} |
43 changes: 43 additions & 0 deletions
43
src/Microsoft.Graph/Models/Generated/CloudAppSecuritySessionControlType.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: Templates\CSharp\Model\EnumType.cs.tt | ||
|
||
|
||
namespace Microsoft.Graph | ||
{ | ||
using Newtonsoft.Json; | ||
|
||
/// <summary> | ||
/// The enum CloudAppSecuritySessionControlType. | ||
/// </summary> | ||
[JsonConverter(typeof(EnumConverter))] | ||
public enum CloudAppSecuritySessionControlType | ||
{ | ||
|
||
/// <summary> | ||
/// Mcas Configured | ||
/// </summary> | ||
McasConfigured = 0, | ||
|
||
/// <summary> | ||
/// Monitor Only | ||
/// </summary> | ||
MonitorOnly = 1, | ||
|
||
/// <summary> | ||
/// Block Downloads | ||
/// </summary> | ||
BlockDownloads = 2, | ||
|
||
/// <summary> | ||
/// Unknown Future Value | ||
/// </summary> | ||
UnknownFutureValue = 3, | ||
|
||
} | ||
} |
64 changes: 64 additions & 0 deletions
64
src/Microsoft.Graph/Models/Generated/ConditionalAccessApplications.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,64 @@ | ||
// ------------------------------------------------------------------------------ | ||
// 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: Templates\CSharp\Model\ComplexType.cs.tt | ||
|
||
namespace Microsoft.Graph | ||
{ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Runtime.Serialization; | ||
using Newtonsoft.Json; | ||
|
||
/// <summary> | ||
/// The type ConditionalAccessApplications. | ||
/// </summary> | ||
[JsonObject(MemberSerialization = MemberSerialization.OptIn)] | ||
[JsonConverter(typeof(DerivedTypeConverter))] | ||
public partial class ConditionalAccessApplications | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="ConditionalAccessApplications"/> class. | ||
/// </summary> | ||
public ConditionalAccessApplications() | ||
{ | ||
this.ODataType = "microsoft.graph.conditionalAccessApplications"; | ||
} | ||
|
||
/// <summary> | ||
/// Gets or sets includeApplications. | ||
/// </summary> | ||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "includeApplications", Required = Newtonsoft.Json.Required.Default)] | ||
public IEnumerable<string> IncludeApplications { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets excludeApplications. | ||
/// </summary> | ||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "excludeApplications", Required = Newtonsoft.Json.Required.Default)] | ||
public IEnumerable<string> ExcludeApplications { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets includeUserActions. | ||
/// </summary> | ||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "includeUserActions", Required = Newtonsoft.Json.Required.Default)] | ||
public IEnumerable<string> IncludeUserActions { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets additional data. | ||
/// </summary> | ||
[JsonExtensionData(ReadData = true)] | ||
public IDictionary<string, object> AdditionalData { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets @odata.type. | ||
/// </summary> | ||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "@odata.type", Required = Newtonsoft.Json.Required.Default)] | ||
public string ODataType { get; set; } | ||
|
||
} | ||
} |
58 changes: 58 additions & 0 deletions
58
src/Microsoft.Graph/Models/Generated/ConditionalAccessClientApp.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,58 @@ | ||
// ------------------------------------------------------------------------------ | ||
// 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: Templates\CSharp\Model\EnumType.cs.tt | ||
|
||
|
||
namespace Microsoft.Graph | ||
{ | ||
using Newtonsoft.Json; | ||
|
||
/// <summary> | ||
/// The enum ConditionalAccessClientApp. | ||
/// </summary> | ||
[JsonConverter(typeof(EnumConverter))] | ||
public enum ConditionalAccessClientApp | ||
{ | ||
|
||
/// <summary> | ||
/// All | ||
/// </summary> | ||
All = 0, | ||
|
||
/// <summary> | ||
/// Browser | ||
/// </summary> | ||
Browser = 1, | ||
|
||
/// <summary> | ||
/// Mobile Apps And Desktop Clients | ||
/// </summary> | ||
MobileAppsAndDesktopClients = 2, | ||
|
||
/// <summary> | ||
/// Exchange Active Sync | ||
/// </summary> | ||
ExchangeActiveSync = 3, | ||
|
||
/// <summary> | ||
/// Eas Supported | ||
/// </summary> | ||
EasSupported = 4, | ||
|
||
/// <summary> | ||
/// Other | ||
/// </summary> | ||
Other = 5, | ||
|
||
/// <summary> | ||
/// Unknown Future Value | ||
/// </summary> | ||
UnknownFutureValue = 6, | ||
|
||
} | ||
} |
88 changes: 88 additions & 0 deletions
88
src/Microsoft.Graph/Models/Generated/ConditionalAccessConditionSet.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,88 @@ | ||
// ------------------------------------------------------------------------------ | ||
// 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: Templates\CSharp\Model\ComplexType.cs.tt | ||
|
||
namespace Microsoft.Graph | ||
{ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Runtime.Serialization; | ||
using Newtonsoft.Json; | ||
|
||
/// <summary> | ||
/// The type ConditionalAccessConditionSet. | ||
/// </summary> | ||
[JsonObject(MemberSerialization = MemberSerialization.OptIn)] | ||
[JsonConverter(typeof(DerivedTypeConverter))] | ||
public partial class ConditionalAccessConditionSet | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="ConditionalAccessConditionSet"/> class. | ||
/// </summary> | ||
public ConditionalAccessConditionSet() | ||
{ | ||
this.ODataType = "microsoft.graph.conditionalAccessConditionSet"; | ||
} | ||
|
||
/// <summary> | ||
/// Gets or sets applications. | ||
/// </summary> | ||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "applications", Required = Newtonsoft.Json.Required.Default)] | ||
public ConditionalAccessApplications Applications { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets users. | ||
/// </summary> | ||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "users", Required = Newtonsoft.Json.Required.Default)] | ||
public ConditionalAccessUsers Users { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets signInRiskLevels. | ||
/// </summary> | ||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "signInRiskLevels", Required = Newtonsoft.Json.Required.Default)] | ||
public IEnumerable<RiskLevel> SignInRiskLevels { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets platforms. | ||
/// </summary> | ||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "platforms", Required = Newtonsoft.Json.Required.Default)] | ||
public ConditionalAccessPlatforms Platforms { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets locations. | ||
/// </summary> | ||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "locations", Required = Newtonsoft.Json.Required.Default)] | ||
public ConditionalAccessLocations Locations { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets clientAppTypes. | ||
/// </summary> | ||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "clientAppTypes", Required = Newtonsoft.Json.Required.Default)] | ||
public IEnumerable<ConditionalAccessClientApp> ClientAppTypes { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets devices. | ||
/// </summary> | ||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "devices", Required = Newtonsoft.Json.Required.Default)] | ||
public ConditionalAccessDevices Devices { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets additional data. | ||
/// </summary> | ||
[JsonExtensionData(ReadData = true)] | ||
public IDictionary<string, object> AdditionalData { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets @odata.type. | ||
/// </summary> | ||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "@odata.type", Required = Newtonsoft.Json.Required.Default)] | ||
public string ODataType { get; set; } | ||
|
||
} | ||
} |
Oops, something went wrong.