Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repositories {

dependencies {
// Include the sdk as a dependency
implementation 'com.microsoft.graph:microsoft-graph:3.7.0'
implementation 'com.microsoft.graph:microsoft-graph:3.8.0'
// Uncomment the line below if you are building an android application
//implementation 'com.google.guava:guava:30.1.1-android'
// This dependency is only needed if you are using the TokenCrendentialAuthProvider
Expand All @@ -36,7 +36,7 @@ Add the dependency in `dependencies` in pom.xml
<!-- Include the sdk as a dependency -->
<groupId>com.microsoft.graph</groupId>
<artifactId>microsoft-graph</artifactId>
<version>3.7.0</version>
<version>3.8.0</version>
</dependency>
<dependency>
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
Expand Down Expand Up @@ -142,3 +142,4 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI




3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ org.gradle.caching=true
mavenGroupId = com.microsoft.graph
mavenArtifactId = microsoft-graph
mavenMajorVersion = 3
mavenMinorVersion = 7
mavenMinorVersion = 8
mavenPatchVersion = 0
mavenArtifactSuffix =

Expand All @@ -51,3 +51,4 @@ mavenCentralPublishingEnabled=false




3 changes: 2 additions & 1 deletion src/main/java/com/microsoft/graph/info/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ private Constants() {
/** The client secret to use for unit testing */
public static final String CLIENTSECRET = "clientsecret";
/** The SDK version */
public static final String VERSION_NAME = "3.7.0";
public static final String VERSION_NAME = "3.8.0";
}


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




9 changes: 9 additions & 0 deletions src/main/java/com/microsoft/graph/models/Application.java
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,15 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
@Nullable
public String description;

/**
* The Disabled By Microsoft Status.
* 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).
*/
@SerializedName(value = "disabledByMicrosoftStatus", alternate = {"DisabledByMicrosoftStatus"})
@Expose
@Nullable
public String disabledByMicrosoftStatus;

/**
* The Display Name.
* The display name for the application.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/microsoft/graph/models/ChatMessage.java
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ public class ChatMessage extends Entity implements IJsonBackedObject {

/**
* The Hosted Contents.
* Content in a message hosted by Microsoft Teams e.g., images, code snippets etc.
* Content in a message hosted by Microsoft Teams - for example, images or code snippets.
*/
@SerializedName(value = "hostedContents", alternate = {"HostedContents"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,15 @@ public class ServicePrincipal extends DirectoryObject implements IJsonBackedObje
@Nullable
public String description;

/**
* The Disabled By Microsoft Status.
* 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).
*/
@SerializedName(value = "disabledByMicrosoftStatus", alternate = {"DisabledByMicrosoftStatus"})
@Expose
@Nullable
public String disabledByMicrosoftStatus;

/**
* The Display Name.
* The display name for the service principal.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public class WorkforceIntegration extends ChangeTrackedEntity implements IJsonBa

/**
* The Supported Entities.
* 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.
* 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.
*/
@SerializedName(value = "supportedEntities", alternate = {"SupportedEntities"})
@Expose
Expand Down
2 changes: 2 additions & 0 deletions typeSummary.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6609,6 +6609,7 @@
property createdOnBehalfOf : com.microsoft.graph.models.DirectoryObject
property deletedDateTime : java.time.OffsetDateTime
property description : java.lang.String
property disabledByMicrosoftStatus : java.lang.String
property displayName : java.lang.String
property extensionProperties : com.microsoft.graph.requests.ExtensionPropertyCollectionPage
property groupMembershipClaims : java.lang.String
Expand Down Expand Up @@ -18335,6 +18336,7 @@
property delegatedPermissionClassifications : com.microsoft.graph.requests.DelegatedPermissionClassificationCollectionPage
property deletedDateTime : java.time.OffsetDateTime
property description : java.lang.String
property disabledByMicrosoftStatus : java.lang.String
property displayName : java.lang.String
property endpoints : com.microsoft.graph.requests.EndpointCollectionPage
property homeRealmDiscoveryPolicies : com.microsoft.graph.requests.HomeRealmDiscoveryPolicyCollectionPage
Expand Down