Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions 5 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repositories {

dependencies {
// Include the sdk as a dependency
implementation 'com.microsoft.graph:microsoft-graph:3.9.0'
implementation 'com.microsoft.graph:microsoft-graph:3.10.0'
// Uncomment the line below if you are building an android application
//implementation 'com.google.guava:guava:30.1.1-android'
// This dependency is only needed if you are using the TokenCrendentialAuthProvider
Expand All @@ -36,7 +36,7 @@ Add the dependency in `dependencies` in pom.xml
<!-- Include the sdk as a dependency -->
<groupId>com.microsoft.graph</groupId>
<artifactId>microsoft-graph</artifactId>
<version>3.9.0</version>
<version>3.10.0</version>
</dependency>
<dependency>
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
Expand Down Expand Up @@ -144,3 +144,4 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI




3 changes: 2 additions & 1 deletion 3 gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ org.gradle.caching=true
mavenGroupId = com.microsoft.graph
mavenArtifactId = microsoft-graph
mavenMajorVersion = 3
mavenMinorVersion = 9
mavenMinorVersion = 10
mavenPatchVersion = 0
mavenArtifactSuffix =

Expand All @@ -53,3 +53,4 @@ mavenCentralPublishingEnabled=false




Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public class CallRecord extends Entity implements IJsonBackedObject {

/**
* The Start Date Time.
* UTC time when the first user joined the call. The DatetimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
* UTC time when the first user joined the call. The DatetimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
*/
@SerializedName(value = "startDateTime", alternate = {"StartDateTime"})
@Expose
Expand All @@ -105,7 +105,7 @@ public class CallRecord extends Entity implements IJsonBackedObject {

/**
* The Version.
* Monotonically increasing version of the call record. Higher version call records with the same ID includes additional data compared to the lower version.
* Monotonically increasing version of the call record. Higher version call records with the same id includes additional data compared to the lower version.
*/
@SerializedName(value = "version", alternate = {"Version"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public class Session extends Entity implements IJsonBackedObject {

/**
* The Start Date Time.
* UTC fime when the first user joined the session. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
* UTC time when the first user joined the session. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
*/
@SerializedName(value = "startDateTime", alternate = {"StartDateTime"})
@Expose
Expand Down
3 changes: 2 additions & 1 deletion 3 src/main/java/com/microsoft/graph/info/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ private Constants() {
/** The client secret to use for unit testing */
public static final String CLIENTSECRET = "clientsecret";
/** The SDK version */
public static final String VERSION_NAME = "3.9.0";
public static final String VERSION_NAME = "3.10.0";
}


Expand All @@ -30,3 +30,4 @@ private Constants() {




Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class AadUserConversationMember extends ConversationMember implements IJs

/**
* The User Id.
* The GUID of the user.
* The guid of the user.
*/
@SerializedName(value = "userId", alternate = {"UserId"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class AccessReviewInstance extends Entity implements IJsonBackedObject {

/**
* The End Date Time.
* DateTime when review instance is scheduled to end.The DatetimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
* DateTime when review instance is scheduled to end.The DatetimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Supports $select. Read-only.
*/
@SerializedName(value = "endDateTime", alternate = {"EndDateTime"})
@Expose
Expand All @@ -40,7 +40,7 @@ public class AccessReviewInstance extends Entity implements IJsonBackedObject {

/**
* The Scope.
* Created based on scope and instanceEnumerationScope at the accessReviewScheduleDefinition level. Defines the scope of users reviewed in a group. In the case of a single-group review, the scope defined at the accessReviewScheduleDefinition level applies to all instances. In the case of all groups review, scope may be different for each group. Read-only.
* Created based on scope and instanceEnumerationScope at the accessReviewScheduleDefinition level. Defines the scope of users reviewed in a group. Supports $select and $filter (contains only). Read-only.
*/
@SerializedName(value = "scope", alternate = {"Scope"})
@Expose
Expand All @@ -49,7 +49,7 @@ public class AccessReviewInstance extends Entity implements IJsonBackedObject {

/**
* The Start Date Time.
* DateTime when review instance is scheduled to start. May be in the future. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
* DateTime when review instance is scheduled to start. May be in the future. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Supports $select. Read-only.
*/
@SerializedName(value = "startDateTime", alternate = {"StartDateTime"})
@Expose
Expand All @@ -58,7 +58,7 @@ public class AccessReviewInstance extends Entity implements IJsonBackedObject {

/**
* The Status.
* Specifies the status of an accessReview. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Read-only.
* Specifies the status of an accessReview. Possible values: Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $select, $orderby, and $filter (eq only). Read-only.
*/
@SerializedName(value = "status", alternate = {"Status"})
@Expose
Expand All @@ -67,7 +67,7 @@ public class AccessReviewInstance extends Entity implements IJsonBackedObject {

/**
* The Decisions.
* Each user reviewed in an accessReviewInstance has a decision item representing if their access was approved, denied, or not yet reviewed.
* Each principal reviewed in an accessReviewInstance has a decision item representing if they were approved, denied, or not yet reviewed.
*/
@SerializedName(value = "decisions", alternate = {"Decisions"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class AccessReviewInstanceDecisionItem extends Entity implements IJsonBac

/**
* The Access Review Id.
* The identifier of the accessReviewInstance parent.
* The identifier of the accessReviewInstance parent. Supports $select. Read-only.
*/
@SerializedName(value = "accessReviewId", alternate = {"AccessReviewId"})
@Expose
Expand All @@ -39,7 +39,7 @@ public class AccessReviewInstanceDecisionItem extends Entity implements IJsonBac

/**
* The Applied By.
* The identifier of the user who applied the decision.
* The identifier of the user who applied the decision. Read-only.
*/
@SerializedName(value = "appliedBy", alternate = {"AppliedBy"})
@Expose
Expand All @@ -48,7 +48,7 @@ public class AccessReviewInstanceDecisionItem extends Entity implements IJsonBac

/**
* The Applied Date Time.
* The timestamp when the approval decision was applied. The DatetimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
* The timestamp when the approval decision was applied. The DatetimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Supports $select. Read-only.
*/
@SerializedName(value = "appliedDateTime", alternate = {"AppliedDateTime"})
@Expose
Expand All @@ -57,7 +57,7 @@ public class AccessReviewInstanceDecisionItem extends Entity implements IJsonBac

/**
* The Apply Result.
* The result of applying the decision. Possible values: NotApplied, Success, Failed, NotFound, or NotSupported.
* The result of applying the decision. Possible values: New, AppliedSuccessfully, AppliedWithUnknownFailure, AppliedSuccessfullyButObjectNotFound and ApplyNotSupported. Supports $select, $orderby, and $filter (eq only). Read-only.
*/
@SerializedName(value = "applyResult", alternate = {"ApplyResult"})
@Expose
Expand All @@ -66,7 +66,7 @@ public class AccessReviewInstanceDecisionItem extends Entity implements IJsonBac

/**
* The Decision.
* Result of the review. Possible values: Approve, Deny, NotReviewed, or DontKnow.
* Result of the review. Possible values: Approve, Deny, NotReviewed, or DontKnow. Supports $select, $orderby, and $filter (eq only).
*/
@SerializedName(value = "decision", alternate = {"Decision"})
@Expose
Expand All @@ -75,7 +75,7 @@ public class AccessReviewInstanceDecisionItem extends Entity implements IJsonBac

/**
* The Justification.
* The review decision justification.
* Justification left by the reviewer when they made the decision.
*/
@SerializedName(value = "justification", alternate = {"Justification"})
@Expose
Expand All @@ -84,7 +84,7 @@ public class AccessReviewInstanceDecisionItem extends Entity implements IJsonBac

/**
* The Principal.
* Every decision item in an access review represents a principal's access to a resource. This property represents details of the principal. For example, if a decision item represents access of User 'Bob' to Group 'Sales' - The principal is 'Bob' and the resource is 'Sales'. Principals can be of two types - userIdentity and servicePrincipalIdentity.
* Every decision item in an access review represents a principal's access to a resource. This property represents details of the principal. For example, if a decision item represents access of User 'Bob' to Group 'Sales' - The principal is 'Bob' and the resource is 'Sales'. Principals can be of two types - userIdentity and servicePrincipalIdentity. Supports $select. Read-only.
*/
@SerializedName(value = "principal", alternate = {"Principal"})
@Expose
Expand All @@ -93,7 +93,7 @@ public class AccessReviewInstanceDecisionItem extends Entity implements IJsonBac

/**
* The Principal Link.
*
* A link to the principal object. For example, https://graph.microsoft.com/v1.0/users/a6c7aecb-cbfd-4763-87ef-e91b4bd509d9. Read-only.
*/
@SerializedName(value = "principalLink", alternate = {"PrincipalLink"})
@Expose
Expand All @@ -102,7 +102,7 @@ public class AccessReviewInstanceDecisionItem extends Entity implements IJsonBac

/**
* The Recommendation.
* A system-generated recommendation for the approval decision. Possible values: Approve, Deny, or NotAvailable.
* A system-generated recommendation for the approval decision based off last interactive sign-in to tenant. Recommend approve if sign-in is within thirty days of start of review. Recommend deny if sign-in is greater than thirty days of start of review. Recommendation not available otherwise. Possible values: Approve, Deny, or NoInfoAvailable. Supports $select, $orderby, and $filter (eq only). Read-only.
*/
@SerializedName(value = "recommendation", alternate = {"Recommendation"})
@Expose
Expand All @@ -111,7 +111,7 @@ public class AccessReviewInstanceDecisionItem extends Entity implements IJsonBac

/**
* The Resource.
* Every decision item in an access review represents a principal's access to a resource. This property represents details of the resource. For example, if a decision item represents access of User 'Bob' to Group 'Sales' - The principal is Bob and the resource is 'Sales'. Resources can be of multiple types. See accessReviewInstanceDecisionItemResource
* Every decision item in an access review represents a principal's access to a resource. This property represents details of the resource. For example, if a decision item represents access of User 'Bob' to Group 'Sales' - The principal is Bob and the resource is 'Sales'. Resources can be of multiple types. See accessReviewInstanceDecisionItemResource. Read-only.
*/
@SerializedName(value = "resource", alternate = {"Resource"})
@Expose
Expand All @@ -120,7 +120,7 @@ public class AccessReviewInstanceDecisionItem extends Entity implements IJsonBac

/**
* The Resource Link.
*
* A link to the resource. For example, 'https://graph.microsoft.com/v1.0/servicePrincipals/c86300f3-8695-4320-9f6e-32a2555f5ff8'. Supports $select. Read-only.
*/
@SerializedName(value = "resourceLink", alternate = {"ResourceLink"})
@Expose
Expand All @@ -129,7 +129,7 @@ public class AccessReviewInstanceDecisionItem extends Entity implements IJsonBac

/**
* The Reviewed By.
* The identifier of the reviewer.
* The identifier of the reviewer. Supports $select. Read-only.
*/
@SerializedName(value = "reviewedBy", alternate = {"ReviewedBy"})
@Expose
Expand All @@ -138,7 +138,7 @@ public class AccessReviewInstanceDecisionItem extends Entity implements IJsonBac

/**
* The Reviewed Date Time.
* The timestamp when the review occurred.
* The timestamp when the review decision occurred. Supports $select. Read-only.
*/
@SerializedName(value = "reviewedDateTime", alternate = {"ReviewedDateTime"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public final AdditionalDataManager additionalDataManager() {

/**
* The Id.
* Resource ID
* Identifier of the resource
*/
@SerializedName(value = "id", alternate = {"Id"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class AccessReviewScheduleDefinition extends Entity implements IJsonBacke

/**
* The Created By.
* User who created this review.
* User who created this review. Read-only.
*/
@SerializedName(value = "createdBy", alternate = {"CreatedBy"})
@Expose
Expand All @@ -43,7 +43,7 @@ public class AccessReviewScheduleDefinition extends Entity implements IJsonBacke

/**
* The Created Date Time.
* Timestamp when the access review series was created. Supports $select.
* Timestamp when the access review series was created. Supports $select and $orderBy. Read-only.
*/
@SerializedName(value = "createdDateTime", alternate = {"CreatedDateTime"})
@Expose
Expand All @@ -70,7 +70,7 @@ public class AccessReviewScheduleDefinition extends Entity implements IJsonBacke

/**
* The Display Name.
* Name of the access review series. Required on create. Supports $select.
* Name of the access review series. Supports $select and $orderBy. Required on create.
*/
@SerializedName(value = "displayName", alternate = {"DisplayName"})
@Expose
Expand All @@ -79,7 +79,7 @@ public class AccessReviewScheduleDefinition extends Entity implements IJsonBacke

/**
* The Fallback Reviewers.
* This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user's manager does not exist. Supports $select.
* This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user's manager does not exist. See accessReviewReviewerScope. Replaces backupReviewers. Supports $select.
*/
@SerializedName(value = "fallbackReviewers", alternate = {"FallbackReviewers"})
@Expose
Expand All @@ -97,7 +97,7 @@ public class AccessReviewScheduleDefinition extends Entity implements IJsonBacke

/**
* The Last Modified Date Time.
* Timestamp when the access review series was last modified. Supports $select.
* Timestamp when the access review series was last modified. Supports $select. Read-only.
*/
@SerializedName(value = "lastModifiedDateTime", alternate = {"LastModifiedDateTime"})
@Expose
Expand All @@ -106,7 +106,7 @@ public class AccessReviewScheduleDefinition extends Entity implements IJsonBacke

/**
* The Reviewers.
* This collection of access review scopes is used to define who are the reviewers. Required on create. Supports $select. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API.
* This collection of access review scopes is used to define who are the reviewers. The reviewers property is only updatable if individual users are assigned as reviewers. Required on create. Supports $select. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API.
*/
@SerializedName(value = "reviewers", alternate = {"Reviewers"})
@Expose
Expand All @@ -124,7 +124,7 @@ public class AccessReviewScheduleDefinition extends Entity implements IJsonBacke

/**
* The Settings.
* The settings for an access review series, see type definition below. Supports $select.
* The settings for an access review series, see type definition below. Supports $select. Required on create.
*/
@SerializedName(value = "settings", alternate = {"Settings"})
@Expose
Expand All @@ -133,7 +133,7 @@ public class AccessReviewScheduleDefinition extends Entity implements IJsonBacke

/**
* The Status.
* This read-only field specifies the status of an access review. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $select, $orderby, and $filter (eq only).
* This read-only field specifies the status of an access review. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $select, $orderby, and $filter (eq only). Read-only.
*/
@SerializedName(value = "status", alternate = {"Status"})
@Expose
Expand All @@ -142,7 +142,7 @@ public class AccessReviewScheduleDefinition extends Entity implements IJsonBacke

/**
* The Instances.
* Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there is an instance for each recurrence.
* If the accessReviewScheduleDefinition is a recurring access review, instances represent each recurrence. A review that does not recur will have exactly one instance. Instances also represent each unique resource under review in the accessReviewScheduleDefinition. If a review has multiple resources and multiple instances, each resource will have a unique instance for each recurrence.
*/
@SerializedName(value = "instances", alternate = {"Instances"})
@Expose
Expand Down
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.