Skip to content

Commit 172b54d

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 78356
1 parent c01552f commit 172b54d

16 files changed

+87
-76
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.28.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:5.29.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.28.0</version>
39+
<version>5.29.0</version>
4040
</dependency>
4141
<dependency>
4242
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -159,5 +159,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
159159

160160

161161

162+
162163

163164

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

@@ -82,5 +82,6 @@ mavenCentralPublishingEnabled=false
8282

8383

8484

85+
8586

8687

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

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

190190
/**
191191
* The Trace Route Hops.
192-
* List of network trace route hops collected for this media stream.
192+
* List of network trace route hops collected for this media stream.*
193193
*/
194194
@SerializedName(value = "traceRouteHops", alternate = {"TraceRouteHops"})
195195
@Expose

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

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

4040
/**
4141
* The Hop Count.
42-
* The network path count of this hop that was used to compute the RTT.
42+
* The network path count of this hop that was used to compute the round-trip time.
4343
*/
4444
@SerializedName(value = "hopCount", alternate = {"HopCount"})
4545
@Expose

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

2424

@@ -59,5 +59,6 @@ private Constants() {
5959

6060

6161

62+
6263

6364

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public class AdministrativeUnit extends DirectoryObject implements IJsonBackedOb
5151

5252
/**
5353
* The Visibility.
54-
* Controls whether the administrative unit and its members are hidden or public. Can be set to HiddenMembership. If not set (value is null), the default behavior is public. When set to HiddenMembership, only members of the administrative unit can list other members of the administrative unit.
54+
* Controls whether the administrative unit and its members are hidden or public. Can be set to HiddenMembership or Public. If not set, the default behavior is Public. When set to HiddenMembership, only members of the administrative unit can list other members of the administrative unit.
5555
*/
5656
@SerializedName(value = "visibility", alternate = {"Visibility"})
5757
@Expose

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

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -20,27 +20,27 @@
2020
import com.microsoft.graph.models.Calendar;
2121
import com.microsoft.graph.models.Event;
2222
import com.microsoft.graph.models.Conversation;
23-
import com.microsoft.graph.models.ProfilePhoto;
2423
import com.microsoft.graph.models.ConversationThread;
2524
import com.microsoft.graph.models.Drive;
2625
import com.microsoft.graph.models.Site;
2726
import com.microsoft.graph.models.Extension;
2827
import com.microsoft.graph.models.GroupLifecyclePolicy;
2928
import com.microsoft.graph.models.PlannerGroup;
3029
import com.microsoft.graph.models.Onenote;
30+
import com.microsoft.graph.models.ProfilePhoto;
3131
import com.microsoft.graph.models.Team;
3232
import com.microsoft.graph.requests.AppRoleAssignmentCollectionPage;
3333
import com.microsoft.graph.requests.DirectoryObjectCollectionPage;
3434
import com.microsoft.graph.requests.ResourceSpecificPermissionGrantCollectionPage;
3535
import com.microsoft.graph.requests.GroupSettingCollectionPage;
3636
import com.microsoft.graph.requests.EventCollectionPage;
3737
import com.microsoft.graph.requests.ConversationCollectionPage;
38-
import com.microsoft.graph.requests.ProfilePhotoCollectionPage;
3938
import com.microsoft.graph.requests.ConversationThreadCollectionPage;
4039
import com.microsoft.graph.requests.DriveCollectionPage;
4140
import com.microsoft.graph.requests.SiteCollectionPage;
4241
import com.microsoft.graph.requests.ExtensionCollectionPage;
4342
import com.microsoft.graph.requests.GroupLifecyclePolicyCollectionPage;
43+
import com.microsoft.graph.requests.ProfilePhotoCollectionPage;
4444

4545

4646
import com.google.gson.JsonObject;
@@ -520,24 +520,6 @@ public class Group extends DirectoryObject implements IJsonBackedObject {
520520
@Nullable
521521
public EventCollectionPage events;
522522

523-
/**
524-
* The Photo.
525-
* The group's profile photo.
526-
*/
527-
@SerializedName(value = "photo", alternate = {"Photo"})
528-
@Expose
529-
@Nullable
530-
public ProfilePhoto photo;
531-
532-
/**
533-
* The Photos.
534-
* The profile photos owned by the group. Read-only. Nullable.
535-
*/
536-
@SerializedName(value = "photos", alternate = {"Photos"})
537-
@Expose
538-
@Nullable
539-
public ProfilePhotoCollectionPage photos;
540-
541523
/**
542524
* The Rejected Senders.
543525
* The list of users or groups that are not allowed to create posts or calendar events in this group. Nullable
@@ -617,6 +599,24 @@ public class Group extends DirectoryObject implements IJsonBackedObject {
617599
@Nullable
618600
public Onenote onenote;
619601

602+
/**
603+
* The Photo.
604+
* The group's profile photo.
605+
*/
606+
@SerializedName(value = "photo", alternate = {"Photo"})
607+
@Expose
608+
@Nullable
609+
public ProfilePhoto photo;
610+
611+
/**
612+
* The Photos.
613+
* The profile photos owned by the group. Read-only. Nullable.
614+
*/
615+
@SerializedName(value = "photos", alternate = {"Photos"})
616+
@Expose
617+
@Nullable
618+
public ProfilePhotoCollectionPage photos;
619+
620620
/**
621621
* The Team.
622622
* The team associated with this group.
@@ -688,10 +688,6 @@ public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final J
688688
events = serializer.deserializeObject(json.get("events"), EventCollectionPage.class);
689689
}
690690

691-
if (json.has("photos")) {
692-
photos = serializer.deserializeObject(json.get("photos"), ProfilePhotoCollectionPage.class);
693-
}
694-
695691
if (json.has("rejectedSenders")) {
696692
rejectedSenders = serializer.deserializeObject(json.get("rejectedSenders"), DirectoryObjectCollectionPage.class);
697693
}
@@ -715,5 +711,9 @@ public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final J
715711
if (json.has("groupLifecyclePolicies")) {
716712
groupLifecyclePolicies = serializer.deserializeObject(json.get("groupLifecyclePolicies"), GroupLifecyclePolicyCollectionPage.class);
717713
}
714+
715+
if (json.has("photos")) {
716+
photos = serializer.deserializeObject(json.get("photos"), ProfilePhotoCollectionPage.class);
717+
}
718718
}
719719
}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public final AdditionalDataManager additionalDataManager() {
3939

4040
/**
4141
* The Display Name.
42-
* The display name of the identity. This property is read-only.
42+
* The identity's display name. Note that this may not always be available or up to date. For example, if a user changes their display name, the API may show the new value in a future response, but the items associated with the user won't show up as having changed when using delta.
4343
*/
4444
@SerializedName(value = "displayName", alternate = {"DisplayName"})
4545
@Expose
@@ -48,7 +48,7 @@ public final AdditionalDataManager additionalDataManager() {
4848

4949
/**
5050
* The Id.
51-
* The identifier of the identity. This property is read-only.
51+
* Unique identifier for the identity.
5252
*/
5353
@SerializedName(value = "id", alternate = {"Id"})
5454
@Expose

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,14 @@ public enum TeamsAsyncOperationType
3636
*/
3737
UNKNOWN_FUTURE_VALUE,
3838
/**
39+
* teamify Group
40+
*/
41+
TEAMIFY_GROUP,
42+
/**
43+
* create Channel
44+
*/
45+
CREATE_CHANNEL,
46+
/**
3947
* For TeamsAsyncOperationType values that were not expected from the service
4048
*/
4149
UNEXPECTED_VALUE

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

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

350350
/**
351351
* The Mail.
352-
* The SMTP address for the user, for example, [email protected]. Changes to this property will also update the user's proxyAddresses collection to include the value as an SMTP address. For Azure AD B2C accounts, this property can be updated up to only ten times with unique SMTP addresses. This property cannot contain accent characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith, and eq on null values).
352+
* The SMTP address for the user, for example, [email protected]. Changes to this property will also update the user's proxyAddresses collection to include the value as an SMTP address. This property cannot contain accent characters. NOTE: We do not recommend updating this property for Azure AD B2C user profiles. Use the otherMails property instead. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith, and eq on null values).
353353
*/
354354
@SerializedName(value = "mail", alternate = {"Mail"})
355355
@Expose

0 commit comments

Comments
 (0)