Skip to content

Commit a370f2c

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 49915 [skip ci]
1 parent ec8c7ea commit a370f2c

16 files changed

+295
-14
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-beta:0.15.0-SNAPSHOT'
22+
implementation 'com.microsoft.graph:microsoft-graph-beta:0.16.0-SNAPSHOT'
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-beta</artifactId>
39-
<version>0.15.0-SNAPSHOT</version>
39+
<version>0.16.0-SNAPSHOT</version>
4040
</dependency>
4141
<dependency>
4242
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -155,3 +155,4 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
155155

156156

157157

158+

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

@@ -54,3 +54,4 @@ mavenCentralPublishingEnabled=false
5454

5555

5656

57+

src/main/java/com/microsoft/graph/ediscovery/requests/NoncustodialDataSourceRequestBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public DataSourceRequestBuilder dataSource() {
8484
*/
8585
@Nonnull
8686
public NoncustodialDataSourceReleaseRequestBuilder release() {
87-
return new NoncustodialDataSourceReleaseRequestBuilder(getRequestUrlWithAdditionalSegment("microsoft.graph.ediscovery.Release"), getClient(), null);
87+
return new NoncustodialDataSourceReleaseRequestBuilder(getRequestUrlWithAdditionalSegment("microsoft.graph.ediscovery.release"), getClient(), null);
8888
}
8989

9090
/**
@@ -93,6 +93,6 @@ public NoncustodialDataSourceReleaseRequestBuilder release() {
9393
*/
9494
@Nonnull
9595
public NoncustodialDataSourceUpdateIndexRequestBuilder updateIndex() {
96-
return new NoncustodialDataSourceUpdateIndexRequestBuilder(getRequestUrlWithAdditionalSegment("microsoft.graph.ediscovery.UpdateIndex"), getClient(), null);
96+
return new NoncustodialDataSourceUpdateIndexRequestBuilder(getRequestUrlWithAdditionalSegment("microsoft.graph.ediscovery.updateIndex"), getClient(), null);
9797
}
9898
}

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

2424

@@ -29,3 +29,4 @@ private Constants() {
2929

3030

3131

32+

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class AuthenticationContextClassReference extends Entity implements IJson
2727

2828
/**
2929
* The Description.
30-
*
30+
* A short explanation of the policies that are enforced by authenticationContextClassReference. This value should be used to provide secondary text to describe the authentication context class reference when building user facing admin experiences. For example, selection UX.
3131
*/
3232
@SerializedName(value = "description", alternate = {"Description"})
3333
@Expose
@@ -36,7 +36,7 @@ public class AuthenticationContextClassReference extends Entity implements IJson
3636

3737
/**
3838
* The Display Name.
39-
*
39+
* The display name is the friendly name of the authenticationContextClassReference. This value should be used to identify the authentication context class reference when building user facing admin experiences. For example, selection UX.
4040
*/
4141
@SerializedName(value = "displayName", alternate = {"DisplayName"})
4242
@Expose
@@ -45,7 +45,7 @@ public class AuthenticationContextClassReference extends Entity implements IJson
4545

4646
/**
4747
* The Is Available.
48-
*
48+
* Indicates whether the authenticationContextClassReference has been published by the security admin and is ready for use by apps. When it is set to false it should not be shown in admin UX experiences because the value is not currently available for selection.
4949
*/
5050
@SerializedName(value = "isAvailable", alternate = {"IsAvailable"})
5151
@Expose
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
// Template Source: BaseMethodParameterSet.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+
import com.google.gson.annotations.Expose;
10+
import com.google.gson.annotations.SerializedName;
11+
import javax.annotation.Nonnull;
12+
import javax.annotation.Nullable;
13+
import com.google.gson.JsonObject;
14+
import java.util.EnumSet;
15+
import java.util.ArrayList;
16+
17+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
18+
19+
/**
20+
* The class for the Education Submission Set Up Resources Folder Parameter Set.
21+
*/
22+
public class EducationSubmissionSetUpResourcesFolderParameterSet {
23+
24+
/**
25+
* Instiaciates a new EducationSubmissionSetUpResourcesFolderParameterSet
26+
*/
27+
public EducationSubmissionSetUpResourcesFolderParameterSet() {}
28+
/**
29+
* Instiaciates a new EducationSubmissionSetUpResourcesFolderParameterSet
30+
* @param builder builder bearing the parameters to initialize from
31+
*/
32+
protected EducationSubmissionSetUpResourcesFolderParameterSet(@Nonnull final EducationSubmissionSetUpResourcesFolderParameterSetBuilder builder) {
33+
}
34+
/**
35+
* Gets a new builder for the body
36+
* @return a new builder
37+
*/
38+
@Nonnull
39+
public static EducationSubmissionSetUpResourcesFolderParameterSetBuilder newBuilder() {
40+
return new EducationSubmissionSetUpResourcesFolderParameterSetBuilder();
41+
}
42+
/**
43+
* Fluent builder for the EducationSubmissionSetUpResourcesFolderParameterSet
44+
*/
45+
public static final class EducationSubmissionSetUpResourcesFolderParameterSetBuilder {
46+
/**
47+
* Instanciates a new EducationSubmissionSetUpResourcesFolderParameterSetBuilder
48+
*/
49+
@Nullable
50+
protected EducationSubmissionSetUpResourcesFolderParameterSetBuilder(){}
51+
/**
52+
* Buils the resulting body object to be passed to the request
53+
* @return the body object to pass to the request
54+
*/
55+
@Nonnull
56+
public EducationSubmissionSetUpResourcesFolderParameterSet build() {
57+
return new EducationSubmissionSetUpResourcesFolderParameterSet(this);
58+
}
59+
}
60+
/**
61+
* Gets the functions options from the properties that have been set
62+
* @return a list of function options for the request
63+
*/
64+
@Nonnull
65+
public java.util.List<com.microsoft.graph.options.FunctionOption> getFunctionOptions() {
66+
final ArrayList<com.microsoft.graph.options.FunctionOption> result = new ArrayList<>();
67+
return result;
68+
}
69+
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public class Fido2AuthenticationMethod extends AuthenticationMethod implements I
6565

6666
/**
6767
* The Creation Date Time.
68-
* The timestamp when this key was registered to the user.
68+
*
6969
* @deprecated The creationDateTime property is deprecated and will stop returning data on December 31, 2020. Please use the createdDateTime property.
7070
*/
7171
@Deprecated

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

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

3737
/**
3838
* The Consent Type.
39-
* Indicates if authorization is granted for the client application to impersonate all users or only a specific user. AllPrincipals indicates authorization to impersonate all users. Principal indicates authorization to impersonate a specific user. Consent on behalf of all users can be granted by an administrator. Non-admin users may be authorized to consent on behalf of themselves in some cases, for some delegated permissions. Required. Supports $filter (eq only).
39+
* Indicates whether authorization is granted for the client application to impersonate all users or only a specific user. AllPrincipals indicates authorization to impersonate all users. Principal indicates authorization to impersonate a specific user. Consent on behalf of all users can be granted by an administrator. Non-admin users may be authorized to consent on behalf of themselves in some cases, for some delegated permissions. Required. Supports $filter (eq only).
4040
*/
4141
@SerializedName(value = "consentType", alternate = {"ConsentType"})
4242
@Expose

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

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,13 @@ public class OrgContact extends DirectoryObject implements IJsonBackedObject {
186186
@Nullable
187187
public DirectoryObjectCollectionPage transitiveMemberOf;
188188

189+
/**
190+
* The Transitive Reports.
191+
*
192+
*/
193+
@Nullable
194+
public DirectoryObjectCollectionPage transitiveReports;
195+
189196

190197
/**
191198
* Sets the raw JSON object
@@ -207,5 +214,9 @@ public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final J
207214
if (json.has("transitiveMemberOf")) {
208215
transitiveMemberOf = serializer.deserializeObject(json.get("transitiveMemberOf"), DirectoryObjectCollectionPage.class);
209216
}
217+
218+
if (json.has("transitiveReports")) {
219+
transitiveReports = serializer.deserializeObject(json.get("transitiveReports"), DirectoryObjectCollectionPage.class);
220+
}
210221
}
211222
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public class UnifiedRoleEligibilityScheduleRequest extends Request implements IJ
6060

6161
/**
6262
* The Is Validation Only.
63-
* Boolean
63+
* A boolean that determines whether the call is a validation or an actual call. Only set this property if you want to check whether an activation is subject to additional rules like MFA before actually submitting the request.
6464
*/
6565
@SerializedName(value = "isValidationOnly", alternate = {"IsValidationOnly"})
6666
@Expose

0 commit comments

Comments
 (0)