Skip to content

Commit 16203df

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 110434
1 parent 8ce08aa commit 16203df

14 files changed

+222
-10
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.49.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:5.50.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.49.0</version>
39+
<version>5.50.0</version>
4040
</dependency>
4141
<dependency>
4242
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -180,5 +180,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
180180

181181

182182

183+
183184

184185

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

@@ -103,5 +103,6 @@ mavenCentralPublishingEnabled=false
103103

104104

105105

106+
106107

107108

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

2424

@@ -80,5 +80,6 @@ private Constants() {
8080

8181

8282

83+
8384

8485

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,15 @@ public class AuthorizationPolicy extends PolicyBase implements IJsonBackedObject
6363
@Nullable
6464
public AllowInvitesFrom allowInvitesFrom;
6565

66+
/**
67+
* The Allow User Consent For Risky Apps.
68+
*
69+
*/
70+
@SerializedName(value = "allowUserConsentForRiskyApps", alternate = {"AllowUserConsentForRiskyApps"})
71+
@Expose
72+
@Nullable
73+
public Boolean allowUserConsentForRiskyApps;
74+
6675
/**
6776
* The Block Msol Power Shell.
6877
* To disable the use of MSOL PowerShell set this property to true. This will also disable user-based access to the legacy service endpoint used by MSOL PowerShell. This does not affect Azure AD Connect or Microsoft Graph.

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

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

3030
/**
3131
* The Channels.
32-
*
32+
* The channels that are either shared with this deleted team or created in this deleted team.
3333
*/
3434
@SerializedName(value = "channels", alternate = {"Channels"})
3535
@Expose

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

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

4040
/**
4141
* The Deleted Teams.
42-
*
42+
* The deleted team.
4343
*/
4444
@SerializedName(value = "deletedTeams", alternate = {"DeletedTeams"})
4545
@Expose

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

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

3131
/**
3232
* The Description.
33-
* The description of the tag as it will appear to the user in Microsoft Teams.
33+
* The description of the tag as it will appear to the user in Microsoft Teams. A teamworkTag can't have more than 200 teamworkTagMembers.
3434
*/
3535
@SerializedName(value = "description", alternate = {"Description"})
3636
@Expose

src/main/java/com/microsoft/graph/requests/AdministrativeUnitCollectionRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import com.microsoft.graph.http.IRequestBuilder;
99
import com.microsoft.graph.core.ClientException;
10-
import com.microsoft.graph.models.Directory;
10+
import com.microsoft.graph.models.OrgContact;
1111
import com.microsoft.graph.models.AdministrativeUnit;
1212
import com.microsoft.graph.models.DirectoryObject;
1313
import com.microsoft.graph.models.ExtensionProperty;

src/main/java/com/microsoft/graph/requests/AdministrativeUnitCollectionRequestBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import com.microsoft.graph.http.IRequestBuilder;
99
import com.microsoft.graph.core.ClientException;
10-
import com.microsoft.graph.models.Directory;
10+
import com.microsoft.graph.models.OrgContact;
1111
import com.microsoft.graph.models.AdministrativeUnit;
1212
import com.microsoft.graph.models.DirectoryObject;
1313
import com.microsoft.graph.models.ExtensionProperty;
@@ -41,7 +41,7 @@
4141
public class AdministrativeUnitCollectionRequestBuilder extends BaseCollectionRequestBuilder<AdministrativeUnit, AdministrativeUnitRequestBuilder, AdministrativeUnitCollectionResponse, AdministrativeUnitCollectionPage, AdministrativeUnitCollectionRequest> {
4242

4343
/**
44-
* The request builder for this collection of Directory
44+
* The request builder for this collection of OrgContact
4545
*
4646
* @param requestUrl the request URL
4747
* @param client the service client

src/main/java/com/microsoft/graph/requests/DeviceRequestBuilder.java

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,26 @@ public com.microsoft.graph.requests.GroupCollectionRequestBuilder memberOfAsGrou
102102
public com.microsoft.graph.requests.GroupRequestBuilder memberOfAsGroup(@Nonnull final String id) {
103103
return new com.microsoft.graph.requests.GroupRequestBuilder(getRequestUrlWithAdditionalSegment("memberOf") + "/" + id + "/microsoft.graph.group", getClient(), null);
104104
}
105+
/**
106+
* Gets a request builder for the AdministrativeUnit collection
107+
*
108+
* @return the collection request builder
109+
*/
110+
@Nonnull
111+
public com.microsoft.graph.requests.AdministrativeUnitCollectionRequestBuilder memberOfAsAdministrativeUnit() {
112+
return new com.microsoft.graph.requests.AdministrativeUnitCollectionRequestBuilder(getRequestUrlWithAdditionalSegment("memberOf") + "/microsoft.graph.administrativeUnit", getClient(), null);
113+
}
114+
115+
/**
116+
* Gets a request builder for the AdministrativeUnit item
117+
*
118+
* @return the request builder
119+
* @param id the item identifier
120+
*/
121+
@Nonnull
122+
public com.microsoft.graph.requests.AdministrativeUnitRequestBuilder memberOfAsAdministrativeUnit(@Nonnull final String id) {
123+
return new com.microsoft.graph.requests.AdministrativeUnitRequestBuilder(getRequestUrlWithAdditionalSegment("memberOf") + "/" + id + "/microsoft.graph.administrativeUnit", getClient(), null);
124+
}
105125
/**
106126
* Gets a request builder for the DirectoryObject collection
107127
*
@@ -342,6 +362,26 @@ public com.microsoft.graph.requests.GroupCollectionRequestBuilder transitiveMemb
342362
public com.microsoft.graph.requests.GroupRequestBuilder transitiveMemberOfAsGroup(@Nonnull final String id) {
343363
return new com.microsoft.graph.requests.GroupRequestBuilder(getRequestUrlWithAdditionalSegment("transitiveMemberOf") + "/" + id + "/microsoft.graph.group", getClient(), null);
344364
}
365+
/**
366+
* Gets a request builder for the AdministrativeUnit collection
367+
*
368+
* @return the collection request builder
369+
*/
370+
@Nonnull
371+
public com.microsoft.graph.requests.AdministrativeUnitCollectionRequestBuilder transitiveMemberOfAsAdministrativeUnit() {
372+
return new com.microsoft.graph.requests.AdministrativeUnitCollectionRequestBuilder(getRequestUrlWithAdditionalSegment("transitiveMemberOf") + "/microsoft.graph.administrativeUnit", getClient(), null);
373+
}
374+
375+
/**
376+
* Gets a request builder for the AdministrativeUnit item
377+
*
378+
* @return the request builder
379+
* @param id the item identifier
380+
*/
381+
@Nonnull
382+
public com.microsoft.graph.requests.AdministrativeUnitRequestBuilder transitiveMemberOfAsAdministrativeUnit(@Nonnull final String id) {
383+
return new com.microsoft.graph.requests.AdministrativeUnitRequestBuilder(getRequestUrlWithAdditionalSegment("transitiveMemberOf") + "/" + id + "/microsoft.graph.administrativeUnit", getClient(), null);
384+
}
345385
/**
346386
* Gets a request builder for the Extension collection
347387
*

0 commit comments

Comments
 (0)