Skip to content

Commit

Permalink
Added beta from 10_23_2018
Browse files Browse the repository at this point in the history
  • Loading branch information
MIchaelMainer committed Nov 14, 2018
1 parent d7607bc commit 5dad04c
Show file tree
Hide file tree
Showing 6,591 changed files with 479,184 additions and 4,370 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
38 changes: 38 additions & 0 deletions src/Microsoft.Graph/Models/Generated/AccessAction.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
// ------------------------------------------------------------------------------
// 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.

// 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 AccessAction.
/// </summary>
[JsonObject(MemberSerialization = MemberSerialization.OptIn)]
[JsonConverter(typeof(DerivedTypeConverter))]
public partial class AccessAction
{

/// <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; }

}
}
42 changes: 42 additions & 0 deletions src/Microsoft.Graph/Models/Generated/AccessLevel.cs
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.

// Template Source: Templates\CSharp\Model\EnumType.cs.tt


namespace Microsoft.Graph
{
using Newtonsoft.Json;

/// <summary>
/// The enum AccessLevel.
/// </summary>
[JsonConverter(typeof(EnumConverter))]
public enum AccessLevel
{

/// <summary>
/// Everyone
/// </summary>
Everyone = 0,

/// <summary>
/// Invited
/// </summary>
Invited = 1,

/// <summary>
/// Locked
/// </summary>
Locked = 2,

/// <summary>
/// Same Enterprise
/// </summary>
SameEnterprise = 3,

}
}
110 changes: 110 additions & 0 deletions src/Microsoft.Graph/Models/Generated/AccessReview.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
// ------------------------------------------------------------------------------
// 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.

// Template Source: Templates\CSharp\Model\EntityType.cs.tt

namespace Microsoft.Graph
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Runtime.Serialization;
using Newtonsoft.Json;

/// <summary>
/// The type Access Review.
/// </summary>
[JsonObject(MemberSerialization = MemberSerialization.OptIn)]
public partial class AccessReview : Entity
{

/// <summary>
/// Gets or sets display name.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "displayName", Required = Newtonsoft.Json.Required.Default)]
public string DisplayName { get; set; }

/// <summary>
/// Gets or sets start date time.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "startDateTime", Required = Newtonsoft.Json.Required.Default)]
public DateTimeOffset? StartDateTime { get; set; }

/// <summary>
/// Gets or sets end date time.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "endDateTime", Required = Newtonsoft.Json.Required.Default)]
public DateTimeOffset? EndDateTime { get; set; }

/// <summary>
/// Gets or sets status.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "status", Required = Newtonsoft.Json.Required.Default)]
public string Status { get; set; }

/// <summary>
/// Gets or sets created by.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "createdBy", Required = Newtonsoft.Json.Required.Default)]
public UserIdentity CreatedBy { get; set; }

/// <summary>
/// Gets or sets business flow template id.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "businessFlowTemplateId", Required = Newtonsoft.Json.Required.Default)]
public string BusinessFlowTemplateId { get; set; }

/// <summary>
/// Gets or sets reviewer type.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "reviewerType", Required = Newtonsoft.Json.Required.Default)]
public string ReviewerType { get; set; }

/// <summary>
/// Gets or sets description.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "description", Required = Newtonsoft.Json.Required.Default)]
public string Description { get; set; }

/// <summary>
/// Gets or sets settings.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "settings", Required = Newtonsoft.Json.Required.Default)]
public AccessReviewSettings Settings { get; set; }

/// <summary>
/// Gets or sets reviewed entity.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "reviewedEntity", Required = Newtonsoft.Json.Required.Default)]
public Identity ReviewedEntity { get; set; }

/// <summary>
/// Gets or sets reviewers.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "reviewers", Required = Newtonsoft.Json.Required.Default)]
public IAccessReviewReviewersCollectionPage Reviewers { get; set; }

/// <summary>
/// Gets or sets decisions.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "decisions", Required = Newtonsoft.Json.Required.Default)]
public IAccessReviewDecisionsCollectionPage Decisions { get; set; }

/// <summary>
/// Gets or sets my decisions.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "myDecisions", Required = Newtonsoft.Json.Required.Default)]
public IAccessReviewMyDecisionsCollectionPage MyDecisions { get; set; }

/// <summary>
/// Gets or sets instances.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "instances", Required = Newtonsoft.Json.Required.Default)]
public IAccessReviewInstancesCollectionPage Instances { get; set; }

}
}

80 changes: 80 additions & 0 deletions src/Microsoft.Graph/Models/Generated/AccessReviewDecision.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
// ------------------------------------------------------------------------------
// 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.

// Template Source: Templates\CSharp\Model\EntityType.cs.tt

namespace Microsoft.Graph
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Runtime.Serialization;
using Newtonsoft.Json;

/// <summary>
/// The type Access Review Decision.
/// </summary>
[JsonObject(MemberSerialization = MemberSerialization.OptIn)]
public partial class AccessReviewDecision : Entity
{

/// <summary>
/// Gets or sets access review id.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "accessReviewId", Required = Newtonsoft.Json.Required.Default)]
public string AccessReviewId { get; set; }

/// <summary>
/// Gets or sets reviewed by.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "reviewedBy", Required = Newtonsoft.Json.Required.Default)]
public UserIdentity ReviewedBy { get; set; }

/// <summary>
/// Gets or sets reviewed date time.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "reviewedDateTime", Required = Newtonsoft.Json.Required.Default)]
public DateTimeOffset? ReviewedDateTime { get; set; }

/// <summary>
/// Gets or sets review result.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "reviewResult", Required = Newtonsoft.Json.Required.Default)]
public string ReviewResult { get; set; }

/// <summary>
/// Gets or sets justification.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "justification", Required = Newtonsoft.Json.Required.Default)]
public string Justification { get; set; }

/// <summary>
/// Gets or sets applied by.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "appliedBy", Required = Newtonsoft.Json.Required.Default)]
public UserIdentity AppliedBy { get; set; }

/// <summary>
/// Gets or sets applied date time.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "appliedDateTime", Required = Newtonsoft.Json.Required.Default)]
public DateTimeOffset? AppliedDateTime { get; set; }

/// <summary>
/// Gets or sets apply result.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "applyResult", Required = Newtonsoft.Json.Required.Default)]
public string ApplyResult { get; set; }

/// <summary>
/// Gets or sets access recommendation.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "accessRecommendation", Required = Newtonsoft.Json.Required.Default)]
public string AccessRecommendation { get; set; }

}
}

Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
// ------------------------------------------------------------------------------
// 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.

// 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 AccessReviewRecurrenceSettings.
/// </summary>
[JsonObject(MemberSerialization = MemberSerialization.OptIn)]
[JsonConverter(typeof(DerivedTypeConverter))]
public partial class AccessReviewRecurrenceSettings
{

/// <summary>
/// Gets or sets recurrenceType.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "recurrenceType", Required = Newtonsoft.Json.Required.Default)]
public string RecurrenceType { get; set; }

/// <summary>
/// Gets or sets recurrenceEndType.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "recurrenceEndType", Required = Newtonsoft.Json.Required.Default)]
public string RecurrenceEndType { get; set; }

/// <summary>
/// Gets or sets durationInDays.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "durationInDays", Required = Newtonsoft.Json.Required.Default)]
public Int32? DurationInDays { get; set; }

/// <summary>
/// Gets or sets recurrenceCount.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "recurrenceCount", Required = Newtonsoft.Json.Required.Default)]
public Int32? RecurrenceCount { 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; }

}
}
38 changes: 38 additions & 0 deletions src/Microsoft.Graph/Models/Generated/AccessReviewReviewer.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
// ------------------------------------------------------------------------------
// 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.

// Template Source: Templates\CSharp\Model\EntityType.cs.tt

namespace Microsoft.Graph
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Runtime.Serialization;
using Newtonsoft.Json;

/// <summary>
/// The type Access Review Reviewer.
/// </summary>
[JsonObject(MemberSerialization = MemberSerialization.OptIn)]
public partial class AccessReviewReviewer : Entity
{

/// <summary>
/// Gets or sets display name.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "displayName", Required = Newtonsoft.Json.Required.Default)]
public string DisplayName { get; set; }

/// <summary>
/// Gets or sets user principal name.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "userPrincipalName", Required = Newtonsoft.Json.Required.Default)]
public string UserPrincipalName { get; set; }

}
}

Loading

0 comments on commit 5dad04c

Please sign in to comment.