Skip to content

Commit 5c5761c

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 73348
1 parent 398595d commit 5c5761c

15 files changed

+319
-12
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.21.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:5.22.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.20.0</version>
39+
<version>5.22.0</version>
4040
</dependency>
4141
<dependency>
4242
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -153,4 +153,5 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
153153

154154

155155

156+
156157

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

@@ -75,5 +75,6 @@ mavenCentralPublishingEnabled=false
7575

7676

7777

78+
7879

7980

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

2424

@@ -52,5 +52,6 @@ private Constants() {
5252

5353

5454

55+
5556

5657

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public class AccessReviewHistoryDefinition extends Entity implements IJsonBacked
8989

9090
/**
9191
* The Schedule Settings.
92-
* The settings for a recurring access review history definition series. Only required if reviewHistoryPeriodStartDateTime or reviewHistoryPeriodEndDateTime are not defined.
92+
* The settings for a recurring access review history definition series. Only required if reviewHistoryPeriodStartDateTime or reviewHistoryPeriodEndDateTime are not defined. Not supported yet.
9393
*/
9494
@SerializedName(value = "scheduleSettings", alternate = {"ScheduleSettings"})
9595
@Expose

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

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

6868
/**
6969
* The Call Options.
70-
*
70+
* Contains the optional features for the call.
7171
*/
7272
@SerializedName(value = "callOptions", alternate = {"CallOptions"})
7373
@Expose

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

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

9696
/**
9797
* The Operation Type.
98-
*
98+
* Indicates the type of operation that was performed. The possible values include but are not limited to the following: Add, Assign, Update, Unassign, and Delete.
9999
*/
100100
@SerializedName(value = "operationType", alternate = {"OperationType"})
101101
@Expose

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public final AdditionalDataManager additionalDataManager() {
5050

5151
/**
5252
* The Recurrence.
53-
* For recurring access. Not used at present.
53+
* For recurring access reviews. Not used in access requests.
5454
*/
5555
@SerializedName(value = "recurrence", alternate = {"Recurrence"})
5656
@Expose

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

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

620620
/**
621621
* The Team.
622-
*
622+
* The team associated with this group.
623623
*/
624624
@SerializedName(value = "team", alternate = {"Team"})
625625
@Expose

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

Lines changed: 171 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,96 @@ public final AdditionalDataManager additionalDataManager() {
4646
@Nullable
4747
public String category1;
4848

49+
/**
50+
* The Category10.
51+
* The label associated with Category 10
52+
*/
53+
@SerializedName(value = "category10", alternate = {"Category10"})
54+
@Expose
55+
@Nullable
56+
public String category10;
57+
58+
/**
59+
* The Category11.
60+
* The label associated with Category 11
61+
*/
62+
@SerializedName(value = "category11", alternate = {"Category11"})
63+
@Expose
64+
@Nullable
65+
public String category11;
66+
67+
/**
68+
* The Category12.
69+
* The label associated with Category 12
70+
*/
71+
@SerializedName(value = "category12", alternate = {"Category12"})
72+
@Expose
73+
@Nullable
74+
public String category12;
75+
76+
/**
77+
* The Category13.
78+
* The label associated with Category 13
79+
*/
80+
@SerializedName(value = "category13", alternate = {"Category13"})
81+
@Expose
82+
@Nullable
83+
public String category13;
84+
85+
/**
86+
* The Category14.
87+
* The label associated with Category 14
88+
*/
89+
@SerializedName(value = "category14", alternate = {"Category14"})
90+
@Expose
91+
@Nullable
92+
public String category14;
93+
94+
/**
95+
* The Category15.
96+
* The label associated with Category 15
97+
*/
98+
@SerializedName(value = "category15", alternate = {"Category15"})
99+
@Expose
100+
@Nullable
101+
public String category15;
102+
103+
/**
104+
* The Category16.
105+
* The label associated with Category 16
106+
*/
107+
@SerializedName(value = "category16", alternate = {"Category16"})
108+
@Expose
109+
@Nullable
110+
public String category16;
111+
112+
/**
113+
* The Category17.
114+
* The label associated with Category 17
115+
*/
116+
@SerializedName(value = "category17", alternate = {"Category17"})
117+
@Expose
118+
@Nullable
119+
public String category17;
120+
121+
/**
122+
* The Category18.
123+
* The label associated with Category 18
124+
*/
125+
@SerializedName(value = "category18", alternate = {"Category18"})
126+
@Expose
127+
@Nullable
128+
public String category18;
129+
130+
/**
131+
* The Category19.
132+
* The label associated with Category 19
133+
*/
134+
@SerializedName(value = "category19", alternate = {"Category19"})
135+
@Expose
136+
@Nullable
137+
public String category19;
138+
49139
/**
50140
* The Category2.
51141
* The label associated with Category 2
@@ -55,6 +145,60 @@ public final AdditionalDataManager additionalDataManager() {
55145
@Nullable
56146
public String category2;
57147

148+
/**
149+
* The Category20.
150+
* The label associated with Category 20
151+
*/
152+
@SerializedName(value = "category20", alternate = {"Category20"})
153+
@Expose
154+
@Nullable
155+
public String category20;
156+
157+
/**
158+
* The Category21.
159+
* The label associated with Category 21
160+
*/
161+
@SerializedName(value = "category21", alternate = {"Category21"})
162+
@Expose
163+
@Nullable
164+
public String category21;
165+
166+
/**
167+
* The Category22.
168+
* The label associated with Category 22
169+
*/
170+
@SerializedName(value = "category22", alternate = {"Category22"})
171+
@Expose
172+
@Nullable
173+
public String category22;
174+
175+
/**
176+
* The Category23.
177+
* The label associated with Category 23
178+
*/
179+
@SerializedName(value = "category23", alternate = {"Category23"})
180+
@Expose
181+
@Nullable
182+
public String category23;
183+
184+
/**
185+
* The Category24.
186+
* The label associated with Category 24
187+
*/
188+
@SerializedName(value = "category24", alternate = {"Category24"})
189+
@Expose
190+
@Nullable
191+
public String category24;
192+
193+
/**
194+
* The Category25.
195+
* The label associated with Category 25
196+
*/
197+
@SerializedName(value = "category25", alternate = {"Category25"})
198+
@Expose
199+
@Nullable
200+
public String category25;
201+
58202
/**
59203
* The Category3.
60204
* The label associated with Category 3
@@ -91,6 +235,33 @@ public final AdditionalDataManager additionalDataManager() {
91235
@Nullable
92236
public String category6;
93237

238+
/**
239+
* The Category7.
240+
* The label associated with Category 7
241+
*/
242+
@SerializedName(value = "category7", alternate = {"Category7"})
243+
@Expose
244+
@Nullable
245+
public String category7;
246+
247+
/**
248+
* The Category8.
249+
* The label associated with Category 8
250+
*/
251+
@SerializedName(value = "category8", alternate = {"Category8"})
252+
@Expose
253+
@Nullable
254+
public String category8;
255+
256+
/**
257+
* The Category9.
258+
* The label associated with Category 9
259+
*/
260+
@SerializedName(value = "category9", alternate = {"Category9"})
261+
@Expose
262+
@Nullable
263+
public String category9;
264+
94265

95266
/**
96267
* Sets the raw JSON object
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// Template Source: Enum.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+
8+
9+
/**
10+
* The Enum Planner Container Type.
11+
*/
12+
public enum PlannerContainerType
13+
{
14+
/**
15+
* group
16+
*/
17+
GROUP,
18+
/**
19+
* unknown Future Value
20+
*/
21+
UNKNOWN_FUTURE_VALUE,
22+
/**
23+
* roster
24+
*/
25+
ROSTER,
26+
/**
27+
* For PlannerContainerType values that were not expected from the service
28+
*/
29+
UNEXPECTED_VALUE
30+
}

0 commit comments

Comments
 (0)