Skip to content

Commit 41cf2c8

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 55850
1 parent d0dd698 commit 41cf2c8

File tree

45 files changed

+1863
-54
lines changed

Some content is hidden

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

45 files changed

+1863
-54
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.27.0-SNAPSHOT'
23+
implementation 'com.microsoft.graph:microsoft-graph-beta:0.28.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.27.0-SNAPSHOT</version>
40+
<version>0.28.0-SNAPSHOT</version>
4141
</dependency>
4242
<dependency>
4343
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -166,4 +166,5 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
166166

167167

168168

169+
169170

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

@@ -64,5 +64,6 @@ mavenCentralPublishingEnabled=false
6464

6565

6666

67+
6768

6869

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

2424

@@ -39,5 +39,6 @@ private Constants() {
3939

4040

4141

42+
4243

4344

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public class AccessReviewScheduleDefinition extends Entity implements IJsonBacke
8080

8181
/**
8282
* The Description For Reviewers.
83-
* Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. Supports $select.
83+
* Description provided by review creators to provide more context of the review to reviewers. Reviewers will see this description in the email sent to them requesting their review. Email notifications support up to 256 characters. Supports $select.
8484
*/
8585
@SerializedName(value = "descriptionForReviewers", alternate = {"DescriptionForReviewers"})
8686
@Expose

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

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

106106
/**
107107
* The Recommendation Look Back Duration.
108-
* Optional field. Indicates the time period of inactivity (with respect to the start date of the review instance) that recommendations will be configured from. The recommendation will be to deny if the user is inactive during the look back duration. Supported durations are 30, 60, or 90 days.
108+
* Optional field. Indicates the time period of inactivity (with respect to the start date of the review instance) that recommendations will be configured from. The recommendation will be to deny if the user is inactive during the look back duration. If not specified, the duration is 30 days.
109109
*/
110110
@SerializedName(value = "recommendationLookBackDuration", alternate = {"RecommendationLookBackDuration"})
111111
@Expose

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

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

5050
/**
5151
* The Field.
52-
* Specifies the field in the schema of the specified entity type that aggregation should be computed on. Required.
52+
* Computes aggregation on the field while the field exists in current entity type. Required.
5353
*/
5454
@SerializedName(value = "field", alternate = {"Field"})
5555
@Expose
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 Authentication Protocol.
11+
*/
12+
public enum AuthenticationProtocol
13+
{
14+
/**
15+
* ws Fed
16+
*/
17+
WS_FED,
18+
/**
19+
* saml
20+
*/
21+
SAML,
22+
/**
23+
* unknown Future Value
24+
*/
25+
UNKNOWN_FUTURE_VALUE,
26+
/**
27+
* For AuthenticationProtocol values that were not expected from the service
28+
*/
29+
UNEXPECTED_VALUE
30+
}
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
// Template Source: BaseEntity.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+
import com.microsoft.graph.serializer.ISerializer;
8+
import com.microsoft.graph.serializer.IJsonBackedObject;
9+
import com.microsoft.graph.serializer.AdditionalDataManager;
10+
import java.util.EnumSet;
11+
import com.microsoft.graph.models.Entity;
12+
13+
14+
import com.google.gson.JsonObject;
15+
import com.google.gson.annotations.SerializedName;
16+
import com.google.gson.annotations.Expose;
17+
import javax.annotation.Nullable;
18+
import javax.annotation.Nonnull;
19+
20+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
21+
22+
/**
23+
* The class for the Cloud Pc Supported Region.
24+
*/
25+
public class CloudPcSupportedRegion extends Entity implements IJsonBackedObject {
26+
27+
28+
/**
29+
* The Display Name.
30+
*
31+
*/
32+
@SerializedName(value = "displayName", alternate = {"DisplayName"})
33+
@Expose
34+
@Nullable
35+
public String displayName;
36+
37+
38+
/**
39+
* Sets the raw JSON object
40+
*
41+
* @param serializer the serializer
42+
* @param json the JSON object to set this object to
43+
*/
44+
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
45+
46+
}
47+
}

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

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

6262
/**
6363
* The Disable Resilience Defaults.
64-
*
64+
* Session control that determines whether it is acceptable for Azure AD to extend existing sessions based on information collected prior to an outage or not.
6565
*/
6666
@SerializedName(value = "disableResilienceDefaults", alternate = {"DisableResilienceDefaults"})
6767
@Expose

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,15 @@ public class ContinuousAccessEvaluationPolicy extends Entity implements IJsonBac
6262
@Nullable
6363
public Boolean isEnabled;
6464

65+
/**
66+
* The Migrate.
67+
*
68+
*/
69+
@SerializedName(value = "migrate", alternate = {"Migrate"})
70+
@Expose
71+
@Nullable
72+
public Boolean migrate;
73+
6574
/**
6675
* The Users.
6776
* The collection of user identifiers in scope for evaluation. All users are in scope when the collection is empty.

0 commit comments

Comments
 (0)