Skip to content

Commit 6ccfc9f

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 56709
1 parent 054fee3 commit 6ccfc9f

File tree

69 files changed

+2668
-457
lines changed

Some content is hidden

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

69 files changed

+2668
-457
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ repositories {
2020
2121
dependencies {
2222
// Include the sdk as a dependency
23-
implementation 'com.microsoft.graph:microsoft-graph-beta:0.30.0-SNAPSHOT'
23+
implementation 'com.microsoft.graph:microsoft-graph-beta:0.31.0-SNAPSHOT'
2424
// Uncomment the line below if you are building an android application
2525
//implementation 'com.google.guava:guava:30.1.1-android'
2626
// This dependency is only needed if you are using the TokenCrendentialAuthProvider
@@ -37,7 +37,7 @@ Add the dependency in `dependencies` in pom.xml
3737
<!-- Include the sdk as a dependency -->
3838
<groupId>com.microsoft.graph</groupId>
3939
<artifactId>microsoft-graph-beta</artifactId>
40-
<version>0.30.0-SNAPSHOT</version>
40+
<version>0.31.0-SNAPSHOT</version>
4141
</dependency>
4242
<dependency>
4343
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -168,5 +168,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
168168

169169

170170

171+
171172

172173

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-beta
2828
mavenMajorVersion = 0
29-
mavenMinorVersion = 30
29+
mavenMinorVersion = 31
3030
mavenPatchVersion = 0
3131
mavenArtifactSuffix =
3232

@@ -67,5 +67,6 @@ mavenCentralPublishingEnabled=false
6767

6868

6969

70+
7071

7172

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

2424

@@ -42,5 +42,6 @@ private Constants() {
4242

4343

4444

45+
4546

4647

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,15 @@ public final AdditionalDataManager additionalDataManager() {
4747
@Nullable
4848
public String id;
4949

50+
/**
51+
* The Is Answer Editable.
52+
*
53+
*/
54+
@SerializedName(value = "isAnswerEditable", alternate = {"IsAnswerEditable"})
55+
@Expose
56+
@Nullable
57+
public Boolean isAnswerEditable;
58+
5059
/**
5160
* The Is Required.
5261
* Whether the requestor is required to supply an answer or not.

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

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,24 @@ public final AdditionalDataManager additionalDataManager() {
7575
@Nullable
7676
public String id;
7777

78+
/**
79+
* The Is Editable.
80+
*
81+
*/
82+
@SerializedName(value = "isEditable", alternate = {"IsEditable"})
83+
@Expose
84+
@Nullable
85+
public Boolean isEditable;
86+
87+
/**
88+
* The Is Persisted On Assignment Removal.
89+
*
90+
*/
91+
@SerializedName(value = "isPersistedOnAssignmentRemoval", alternate = {"IsPersistedOnAssignmentRemoval"})
92+
@Expose
93+
@Nullable
94+
public Boolean isPersistedOnAssignmentRemoval;
95+
7896

7997
/**
8098
* Sets the raw JSON object
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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 Access Review Timeout Behavior.
11+
*/
12+
public enum AccessReviewTimeoutBehavior
13+
{
14+
/**
15+
* keep Access
16+
*/
17+
KEEP_ACCESS,
18+
/**
19+
* remove Access
20+
*/
21+
REMOVE_ACCESS,
22+
/**
23+
* accept Access Recommendation
24+
*/
25+
ACCEPT_ACCESS_RECOMMENDATION,
26+
/**
27+
* unknown Future Value
28+
*/
29+
UNKNOWN_FUTURE_VALUE,
30+
/**
31+
* For AccessReviewTimeoutBehavior values that were not expected from the service
32+
*/
33+
UNEXPECTED_VALUE
34+
}

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

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

9191
/**
9292
* The Default Redirect Uri.
93-
*
93+
* The default redirect URI. If specified and there is no explicit redirect URI in the sign-in request for SAML and OIDC flows, Azure AD sends the token to this redirect URI. Azure AD also sends the token to this default URI in SAML IdP-initiated single sign-on. The value must match one of the configured redirect URIs for the application.
9494
*/
9595
@SerializedName(value = "defaultRedirectUri", alternate = {"DefaultRedirectUri"})
9696
@Expose

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

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
import com.microsoft.graph.serializer.AdditionalDataManager;
1010
import java.util.EnumSet;
1111
import com.microsoft.graph.http.BaseCollectionPage;
12+
import com.microsoft.graph.models.AccessReviewTimeoutBehavior;
1213
import com.microsoft.graph.models.UserSet;
1314

1415

@@ -39,6 +40,15 @@ public final AdditionalDataManager additionalDataManager() {
3940
return additionalDataManager;
4041
}
4142

43+
/**
44+
* The Access Review Timeout Behavior.
45+
*
46+
*/
47+
@SerializedName(value = "accessReviewTimeoutBehavior", alternate = {"AccessReviewTimeoutBehavior"})
48+
@Expose
49+
@Nullable
50+
public AccessReviewTimeoutBehavior accessReviewTimeoutBehavior;
51+
4252
/**
4353
* The Duration In Days.
4454
* The number of days to allow input from reviewers.
@@ -48,6 +58,24 @@ public final AdditionalDataManager additionalDataManager() {
4858
@Nullable
4959
public Integer durationInDays;
5060

61+
/**
62+
* The Is Access Recommendation Enabled.
63+
*
64+
*/
65+
@SerializedName(value = "isAccessRecommendationEnabled", alternate = {"IsAccessRecommendationEnabled"})
66+
@Expose
67+
@Nullable
68+
public Boolean isAccessRecommendationEnabled;
69+
70+
/**
71+
* The Is Approval Justification Required.
72+
*
73+
*/
74+
@SerializedName(value = "isApprovalJustificationRequired", alternate = {"IsApprovalJustificationRequired"})
75+
@Expose
76+
@Nullable
77+
public Boolean isApprovalJustificationRequired;
78+
5179
/**
5280
* The Is Enabled.
5381
* If true, access reviews are required for assignments from this policy.

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,15 @@ public class BookingAppointment extends Entity implements IJsonBackedObject {
9494
@Nullable
9595
public String customerPhone;
9696

97+
/**
98+
* The Customer Time Zone.
99+
*
100+
*/
101+
@SerializedName(value = "customerTimeZone", alternate = {"CustomerTimeZone"})
102+
@Expose
103+
@Nullable
104+
public String customerTimeZone;
105+
97106
/**
98107
* The Duration.
99108
* The length of the appointment, denoted in ISO8601 format.
@@ -166,6 +175,15 @@ public class BookingAppointment extends Entity implements IJsonBackedObject {
166175
@Nullable
167176
public Boolean isLocationOnline;
168177

178+
/**
179+
* The Join Web Url.
180+
*
181+
*/
182+
@SerializedName(value = "joinWebUrl", alternate = {"JoinWebUrl"})
183+
@Expose
184+
@Nullable
185+
public String joinWebUrl;
186+
169187
/**
170188
* The Online Meeting Url.
171189
*
@@ -274,6 +292,15 @@ public class BookingAppointment extends Entity implements IJsonBackedObject {
274292
@Nullable
275293
public String serviceNotes;
276294

295+
/**
296+
* The Sms Notifications Enabled.
297+
*
298+
*/
299+
@SerializedName(value = "smsNotificationsEnabled", alternate = {"SmsNotificationsEnabled"})
300+
@Expose
301+
@Nullable
302+
public Boolean smsNotificationsEnabled;
303+
277304
/**
278305
* The Staff Member Ids.
279306
* The ID of each bookingStaffMember who is scheduled in this appointment.

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

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
import com.microsoft.graph.serializer.IJsonBackedObject;
99
import com.microsoft.graph.serializer.AdditionalDataManager;
1010
import java.util.EnumSet;
11+
import com.microsoft.graph.http.BaseCollectionPage;
12+
import com.microsoft.graph.models.PhysicalAddress;
13+
import com.microsoft.graph.models.Phone;
1114
import com.microsoft.graph.models.BookingPerson;
1215

1316

@@ -25,6 +28,24 @@
2528
public class BookingCustomer extends BookingPerson implements IJsonBackedObject {
2629

2730

31+
/**
32+
* The Addresses.
33+
*
34+
*/
35+
@SerializedName(value = "addresses", alternate = {"Addresses"})
36+
@Expose
37+
@Nullable
38+
public java.util.List<PhysicalAddress> addresses;
39+
40+
/**
41+
* The Phones.
42+
*
43+
*/
44+
@SerializedName(value = "phones", alternate = {"Phones"})
45+
@Expose
46+
@Nullable
47+
public java.util.List<Phone> phones;
48+
2849

2950
/**
3051
* Sets the raw JSON object

0 commit comments

Comments
 (0)