Skip to content

Commit 3d44fb4

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 62445
1 parent e55ecd0 commit 3d44fb4

File tree

154 files changed

+9623
-58
lines changed

Some content is hidden

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

154 files changed

+9623
-58
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.9.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:5.10.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.9.0</version>
39+
<version>5.10.0</version>
4040
</dependency>
4141
<dependency>
4242
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -143,3 +143,4 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
143143

144144

145145

146+

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 = 9
29+
mavenMinorVersion = 10
3030
mavenPatchVersion = 0
3131
mavenArtifactSuffix =
3232

@@ -64,5 +64,6 @@ mavenCentralPublishingEnabled=false
6464

6565

6666

67+
6768

6869

src/main/java/com/microsoft/graph/callrecords/models/ProductFamily.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ public enum ProductFamily
3232
*/
3333
UNKNOWN_FUTURE_VALUE,
3434
/**
35+
* azure Communication Services
36+
*/
37+
AZURE_COMMUNICATION_SERVICES,
38+
/**
3539
* For ProductFamily values that were not expected from the service
3640
*/
3741
UNEXPECTED_VALUE

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.9.0";
21+
public static final String VERSION_NAME = "5.10.0";
2222
}
2323

2424

@@ -41,5 +41,6 @@ private Constants() {
4141

4242

4343

44+
4445

4546

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public class AccessPackage extends Entity implements IJsonBackedObject {
4646

4747
/**
4848
* The Display Name.
49-
* The display name of the access package.
49+
* The display name of the access package. Supports $filter (eq, contains).
5050
*/
5151
@SerializedName(value = "displayName", alternate = {"DisplayName"})
5252
@Expose

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public class AccessPackageAssignment extends Entity implements IJsonBackedObject
4949

5050
/**
5151
* The State.
52-
* The state of the access package assignment. The possible values are: delivering, partiallyDelivered, delivered, expired, deliveryFailed, unknownFutureValue. Read-only.
52+
* The state of the access package assignment. The possible values are: delivering, partiallyDelivered, delivered, expired, deliveryFailed, unknownFutureValue. Read-only. Supports $filter (eq).
5353
*/
5454
@SerializedName(value = "state", alternate = {"State"})
5555
@Expose
@@ -67,7 +67,7 @@ public class AccessPackageAssignment extends Entity implements IJsonBackedObject
6767

6868
/**
6969
* The Access Package.
70-
* Read-only. Nullable.
70+
* Read-only. Nullable. Supports $filter (eq) on the id property and $expand query parameters.
7171
*/
7272
@SerializedName(value = "accessPackage", alternate = {"AccessPackage"})
7373
@Expose
@@ -76,7 +76,7 @@ public class AccessPackageAssignment extends Entity implements IJsonBackedObject
7676

7777
/**
7878
* The Target.
79-
* The subject of the access package assignment. Read-only. Nullable.
79+
* The subject of the access package assignment. Read-only. Nullable. Supports $expand. Supports $filter (eq) on objectId.
8080
*/
8181
@SerializedName(value = "target", alternate = {"Target"})
8282
@Expose

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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@
1111
import com.microsoft.graph.http.BaseCollectionPage;
1212
import com.microsoft.graph.models.AccessReviewReviewerScope;
1313
import com.microsoft.graph.models.AccessReviewScope;
14+
import com.microsoft.graph.models.AccessReviewReviewer;
1415
import com.microsoft.graph.models.AccessReviewInstanceDecisionItem;
1516
import com.microsoft.graph.models.Entity;
17+
import com.microsoft.graph.requests.AccessReviewReviewerCollectionPage;
1618
import com.microsoft.graph.requests.AccessReviewInstanceDecisionItemCollectionPage;
1719

1820

@@ -84,6 +86,15 @@ public class AccessReviewInstance extends Entity implements IJsonBackedObject {
8486
@Nullable
8587
public String status;
8688

89+
/**
90+
* The Contacted Reviewers.
91+
* Returns the collection of reviewers who were contacted to complete this review. While the reviewers and fallbackReviewers properties of the accessReviewScheduleDefinition might specify group owners or managers as reviewers, contactedReviewers returns their individual identities. Supports $select. Read-only.
92+
*/
93+
@SerializedName(value = "contactedReviewers", alternate = {"ContactedReviewers"})
94+
@Expose
95+
@Nullable
96+
public AccessReviewReviewerCollectionPage contactedReviewers;
97+
8798
/**
8899
* The Decisions.
89100
* Each principal reviewed in an accessReviewInstance has a decision item representing if they were approved, denied, or not yet reviewed.
@@ -103,6 +114,10 @@ public class AccessReviewInstance extends Entity implements IJsonBackedObject {
103114
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
104115

105116

117+
if (json.has("contactedReviewers")) {
118+
contactedReviewers = serializer.deserializeObject(json.get("contactedReviewers"), AccessReviewReviewerCollectionPage.class);
119+
}
120+
106121
if (json.has("decisions")) {
107122
decisions = serializer.deserializeObject(json.get("decisions"), AccessReviewInstanceDecisionItemCollectionPage.class);
108123
}
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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+
import com.microsoft.graph.models.AccessReviewInstanceDecisionItemResource;
12+
13+
14+
import com.google.gson.JsonObject;
15+
import com.google.gson.annotations.SerializedName;
16+
import com.google.gson.annotations.Expose;
17+
import javax.annotation.Nullable;
18+
import javax.annotation.Nonnull;
19+
20+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
21+
22+
/**
23+
* The class for the Access Review Instance Decision Item Access Package Assignment Policy Resource.
24+
*/
25+
public class AccessReviewInstanceDecisionItemAccessPackageAssignmentPolicyResource extends AccessReviewInstanceDecisionItemResource implements IJsonBackedObject {
26+
27+
28+
/**
29+
* The Access Package Display Name.
30+
*
31+
*/
32+
@SerializedName(value = "accessPackageDisplayName", alternate = {"AccessPackageDisplayName"})
33+
@Expose
34+
@Nullable
35+
public String accessPackageDisplayName;
36+
37+
/**
38+
* The Access Package Id.
39+
*
40+
*/
41+
@SerializedName(value = "accessPackageId", alternate = {"AccessPackageId"})
42+
@Expose
43+
@Nullable
44+
public String accessPackageId;
45+
46+
47+
/**
48+
* Sets the raw JSON object
49+
*
50+
* @param serializer the serializer
51+
* @param json the JSON object to set this object to
52+
*/
53+
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
54+
55+
}
56+
}
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
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+
import com.microsoft.graph.models.AccessReviewInstanceDecisionItemResource;
12+
13+
14+
import com.google.gson.JsonObject;
15+
import com.google.gson.annotations.SerializedName;
16+
import com.google.gson.annotations.Expose;
17+
import javax.annotation.Nullable;
18+
import javax.annotation.Nonnull;
19+
20+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
21+
22+
/**
23+
* The class for the Access Review Instance Decision Item Azure Role Resource.
24+
*/
25+
public class AccessReviewInstanceDecisionItemAzureRoleResource extends AccessReviewInstanceDecisionItemResource implements IJsonBackedObject {
26+
27+
28+
/**
29+
* The Scope.
30+
*
31+
*/
32+
@SerializedName(value = "scope", alternate = {"Scope"})
33+
@Expose
34+
@Nullable
35+
public AccessReviewInstanceDecisionItemResource scope;
36+
37+
38+
/**
39+
* Sets the raw JSON object
40+
*
41+
* @param serializer the serializer
42+
* @param json the JSON object to set this object to
43+
*/
44+
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
45+
46+
}
47+
}
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
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+
import com.microsoft.graph.models.AccessReviewInstanceDecisionItemResource;
12+
13+
14+
import com.google.gson.JsonObject;
15+
import com.google.gson.annotations.SerializedName;
16+
import com.google.gson.annotations.Expose;
17+
import javax.annotation.Nullable;
18+
import javax.annotation.Nonnull;
19+
20+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
21+
22+
/**
23+
* The class for the Access Review Instance Decision Item Service Principal Resource.
24+
*/
25+
public class AccessReviewInstanceDecisionItemServicePrincipalResource extends AccessReviewInstanceDecisionItemResource implements IJsonBackedObject {
26+
27+
28+
/**
29+
* The App Id.
30+
*
31+
*/
32+
@SerializedName(value = "appId", alternate = {"AppId"})
33+
@Expose
34+
@Nullable
35+
public String appId;
36+
37+
38+
/**
39+
* Sets the raw JSON object
40+
*
41+
* @param serializer the serializer
42+
* @param json the JSON object to set this object to
43+
*/
44+
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
45+
46+
}
47+
}

0 commit comments

Comments
 (0)