Skip to content

Commit 04f1271

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 50950
1 parent 9056415 commit 04f1271

File tree

7 files changed

+27
-6
lines changed

7 files changed

+27
-6
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:3.7.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:3.8.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>3.7.0</version>
39+
<version>3.8.0</version>
4040
</dependency>
4141
<dependency>
4242
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -142,3 +142,4 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
142142

143143

144144

145+

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

@@ -51,3 +51,4 @@ mavenCentralPublishingEnabled=false
5151

5252

5353

54+

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

2424

@@ -28,3 +28,4 @@ private Constants() {
2828

2929

3030

31+

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,15 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
110110
@Nullable
111111
public String description;
112112

113+
/**
114+
* The Disabled By Microsoft Status.
115+
* Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement).
116+
*/
117+
@SerializedName(value = "disabledByMicrosoftStatus", alternate = {"DisabledByMicrosoftStatus"})
118+
@Expose
119+
@Nullable
120+
public String disabledByMicrosoftStatus;
121+
113122
/**
114123
* The Display Name.
115124
* The display name for the application.

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

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

222222
/**
223223
* The Hosted Contents.
224-
* Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.
224+
* Content in a message hosted by Microsoft Teams - for example, images or code snippets.
225225
*/
226226
@SerializedName(value = "hostedContents", alternate = {"HostedContents"})
227227
@Expose

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,15 @@ public class ServicePrincipal extends DirectoryObject implements IJsonBackedObje
149149
@Nullable
150150
public String description;
151151

152+
/**
153+
* The Disabled By Microsoft Status.
154+
* Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement).
155+
*/
156+
@SerializedName(value = "disabledByMicrosoftStatus", alternate = {"DisabledByMicrosoftStatus"})
157+
@Expose
158+
@Nullable
159+
public String disabledByMicrosoftStatus;
160+
152161
/**
153162
* The Display Name.
154163
* The display name for the service principal.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public class WorkforceIntegration extends ChangeTrackedEntity implements IJsonBa
6565

6666
/**
6767
* The Supported Entities.
68-
* This property will replace supports in v1.0. We recommend that you use this property instead of supports. The supports property will still be supported in beta for the time being. Possible values are none, shift, swapRequest, openshift, openShiftRequest, userShiftPreferences. If selecting more than one value, all values must start with the first letter in uppercase.
68+
* This property will replace supports in v1.0. We recommend that you use this property instead of supports. The supports property will still be supported in beta for the time being. Possible values are none, shift, swapRequest, openshift, openShiftRequest, userShiftPreferences, offerShiftRequest, timeCard, timeOffReason, timeOff, timeOffRequest and unknownFutureValue. If selecting more than one value, all values must start with the first letter in uppercase.
6969
*/
7070
@SerializedName(value = "supportedEntities", alternate = {"SupportedEntities"})
7171
@Expose

0 commit comments

Comments
 (0)