Skip to content

Commit d05b651

Browse files
Microsoft Graph DevX Toolingbaywet
authored andcommitted
Update generated files with build 54427
1 parent ccdfffa commit d05b651

File tree

74 files changed

+4480
-16
lines changed

Some content is hidden

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

74 files changed

+4480
-16
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ repositories {
1919
2020
dependencies {
2121
// Include the sdk as a dependency
22-
implementation 'com.microsoft.graph:microsoft-graph:5.0.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:5.1.0'
2323
// Uncomment the line below if you are building an android application
2424
//implementation 'com.google.guava:guava:30.1.1-android'
2525
// This dependency is only needed if you are using the TokenCrendentialAuthProvider
@@ -36,7 +36,7 @@ Add the dependency in `dependencies` in pom.xml
3636
<!-- Include the sdk as a dependency -->
3737
<groupId>com.microsoft.graph</groupId>
3838
<artifactId>microsoft-graph</artifactId>
39-
<version>5.0.0</version>
39+
<version>5.1.0</version>
4040
</dependency>
4141
<dependency>
4242
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -135,3 +135,4 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
135135
## 9. Third-party notices
136136

137137
[Third-party notices](THIRD%20PARTY%20NOTICES)
138+

gradle.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ org.gradle.caching=true
2626
mavenGroupId = com.microsoft.graph
2727
mavenArtifactId = microsoft-graph
2828
mavenMajorVersion = 5
29-
mavenMinorVersion = 0
29+
mavenMinorVersion = 1
3030
mavenPatchVersion = 0
3131
mavenArtifactSuffix =
3232

@@ -57,3 +57,4 @@ mavenCentralPublishingEnabled=false
5757

5858

5959

60+

src/main/java/com/microsoft/graph/info/Constants.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ private Constants() {
1818
/** The client secret to use for unit testing */
1919
public static final String CLIENTSECRET = "clientsecret";
2020
/** The SDK version */
21-
public static final String VERSION_NAME = "5.0.0";
21+
public static final String VERSION_NAME = "5.1.0";
2222
}
2323

2424

@@ -34,3 +34,4 @@ private Constants() {
3434

3535

3636

37+

src/main/java/com/microsoft/graph/models/AccessReviewInstance.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public class AccessReviewInstance extends Entity implements IJsonBackedObject {
4141

4242
/**
4343
* The Fallback Reviewers.
44-
*
44+
* 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.
4545
*/
4646
@SerializedName(value = "fallbackReviewers", alternate = {"FallbackReviewers"})
4747
@Expose
@@ -50,7 +50,7 @@ public class AccessReviewInstance extends Entity implements IJsonBackedObject {
5050

5151
/**
5252
* The Reviewers.
53-
*
53+
* This collection of access review scopes is used to define who the reviewers are. Supports $select. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API.
5454
*/
5555
@SerializedName(value = "reviewers", alternate = {"Reviewers"})
5656
@Expose

src/main/java/com/microsoft/graph/models/AccessReviewScheduleDefinition.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public class AccessReviewScheduleDefinition extends Entity implements IJsonBacke
115115

116116
/**
117117
* The Scope.
118-
* Defines scope of resources to review. For supported scopes, see accessReviewScope. Required on create. Supports $select and $filter (contains only). For examples of options for configuring scope, see Configure the scope of your access review definition using the Microsoft Graph API.
118+
* Defines the entities whose access is reviewed. For supported scopes, see accessReviewScope. Required on create. Supports $select and $filter (contains only). For examples of options for configuring scope, see Configure the scope of your access review definition using the Microsoft Graph API.
119119
*/
120120
@SerializedName(value = "scope", alternate = {"Scope"})
121121
@Expose

src/main/java/com/microsoft/graph/models/AuthenticationMethodTarget.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class AuthenticationMethodTarget extends Entity implements IJsonBackedObj
3737

3838
/**
3939
* The Target Type.
40-
* Possible values are: user, group.
40+
* Possible values are: user, group, and unknownFutureValue.
4141
*/
4242
@SerializedName(value = "targetType", alternate = {"TargetType"})
4343
@Expose
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
// Template Source: BaseEntity.java.tt
2+
// ------------------------------------------------------------------------------
3+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
4+
// ------------------------------------------------------------------------------
5+
6+
package com.microsoft.graph.models;
7+
import com.microsoft.graph.serializer.ISerializer;
8+
import com.microsoft.graph.serializer.IJsonBackedObject;
9+
import com.microsoft.graph.serializer.AdditionalDataManager;
10+
import java.util.EnumSet;
11+
12+
13+
import com.google.gson.JsonObject;
14+
import com.google.gson.annotations.SerializedName;
15+
import com.google.gson.annotations.Expose;
16+
import javax.annotation.Nullable;
17+
import javax.annotation.Nonnull;
18+
19+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
20+
21+
/**
22+
* The class for the Compliance.
23+
*/
24+
public class Compliance implements IJsonBackedObject {
25+
26+
/** the OData type of the object as returned by the service */
27+
@SerializedName("@odata.type")
28+
@Expose
29+
@Nullable
30+
public String oDataType;
31+
32+
private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);
33+
34+
@Override
35+
@Nonnull
36+
public final AdditionalDataManager additionalDataManager() {
37+
return additionalDataManager;
38+
}
39+
40+
41+
/**
42+
* Sets the raw JSON object
43+
*
44+
* @param serializer the serializer
45+
* @param json the JSON object to set this object to
46+
*/
47+
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
48+
49+
}
50+
}

src/main/java/com/microsoft/graph/models/ConditionalAccessApplications.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,15 @@ public final AdditionalDataManager additionalDataManager() {
5656
@Nullable
5757
public java.util.List<String> includeApplications;
5858

59+
/**
60+
* The Include Authentication Context Class References.
61+
* Authentication context class references include. Supported values are c1 through c25.
62+
*/
63+
@SerializedName(value = "includeAuthenticationContextClassReferences", alternate = {"IncludeAuthenticationContextClassReferences"})
64+
@Expose
65+
@Nullable
66+
public java.util.List<String> includeAuthenticationContextClassReferences;
67+
5968
/**
6069
* The Include User Actions.
6170
* User actions to include. Supported values are urn:user:registersecurityinfo and urn:user:registerdevice

src/main/java/com/microsoft/graph/models/EducationAssignmentResource.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class EducationAssignmentResource extends Entity implements IJsonBackedOb
2828

2929
/**
3030
* The Distribute For Student Work.
31-
* Indicates whether this resource should be copied to each student submission for modification and submission.
31+
* Indicates whether this resource should be copied to each student submission for modification and submission. Required
3232
*/
3333
@SerializedName(value = "distributeForStudentWork", alternate = {"DistributeForStudentWork"})
3434
@Expose

src/main/java/com/microsoft/graph/models/Group.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject {
140140

141141
/**
142142
* The Is Assignable To Role.
143-
* Indicates whether this group can be assigned to an Azure Active Directory role.This property can only be set while creating the group and is immutable. If set to true, the securityEnabled property must also be set to true and the group cannot be a dynamic group (that is, groupTypes cannot contain DynamicMembership). Only callers in Global administrator and Privileged role administrator roles can set this property. The caller must also be assigned the Directory.AccessAsUser.All permission to set this property. For more, see Using a group to manage Azure AD role assignmentsReturned by default. Supports $filter (eq, ne, NOT).
143+
* Indicates whether this group can be assigned to an Azure Active Directory role.This property can only be set while creating the group and is immutable. If set to true, the securityEnabled property must also be set to true and the group cannot be a dynamic group (that is, groupTypes cannot contain DynamicMembership). Only callers in Global administrator and Privileged role administrator roles can set this property. The caller must be assigned the RoleManagement.ReadWrite.Directory permission to set this property or update the membership of such groups. For more, see Using a group to manage Azure AD role assignmentsReturned by default. Supports $filter (eq, ne, NOT).
144144
*/
145145
@SerializedName(value = "isAssignableToRole", alternate = {"IsAssignableToRole"})
146146
@Expose

0 commit comments

Comments
 (0)