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
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,37 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

## [0.60.0] - 2022-11-09

### Added

- ChatMessageActions model.
- ChatMessageHistoryItem model.
- CloudPcProvisioningType model.
- OnPremisesAccidentalDeletionPrevention model.
- UserExperienceAnalyticsDeviceScopeSummary model.
- BrowserSharedCookie models and related requests.
- BrowserSite models and related requests.
- DeviceManagementConfigurationPolicyReorder models and related requests.
- DeviceManagementPartnerTerminate models and related requests.
- DeviceManagementReportsGetEncryptionReportForDevices models and related requests.
- DeviceManagementReportsGetMobileApplicationManagementAppConfigurationReport models and related requests.
- DeviceManagementUserExperienceAnalyticsSummarizedDeviceScopes models and related requests.
- Edge model and related requests.
- InternetExplorerMode model and related requests.
- MacOSMicrosoftDefenderApp model and related requests.
- ManagedDeviceEndRemoteHelpSession models and related requests.
- ManagedDeviceInitiateMobileDeviceManagementKeyRecovery models and related requests.
- OnPremisesDirectorySynchronization models and related requests.

### Changed

- Updated beta models and request builders generated using Typewriter, based on latest Beta-Metadata.
- Models and requests referencing the newly added models and requests have been updated to reflect the removed models/requests.
- Removed OrganizationalMessage models and related requests.
- Removed DeviceManagement requests and models related to OrganizationalMessage.
- Removed UserExperienceAnalyticsRegressionSummary models and related requests.

## [0.59.0] - 2022-11-03

### Added
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repositories {

dependencies {
// Include the sdk as a dependency
implementation 'com.microsoft.graph:microsoft-graph-beta:0.59.0-SNAPSHOT'
implementation 'com.microsoft.graph:microsoft-graph-beta:0.60.0-SNAPSHOT'
// 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 @@ -37,7 +37,7 @@ Add the dependency in `dependencies` in pom.xml
<!-- Include the sdk as a dependency -->
<groupId>com.microsoft.graph</groupId>
<artifactId>microsoft-graph-beta</artifactId>
<version>0.59.0-SNAPSHOT</version>
<version>0.60.0-SNAPSHOT</version>
</dependency>
<dependency>
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
Expand Down Expand Up @@ -195,5 +195,6 @@ 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-beta
mavenMajorVersion = 0
mavenMinorVersion = 59
mavenMinorVersion = 60
mavenPatchVersion = 0
mavenArtifactSuffix =

Expand Down Expand Up @@ -94,5 +94,6 @@ mavenCentralPublishingEnabled=false






Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class CustomTaskExtension extends CustomCalloutExtension implements IJson

/**
* The Created Date Time.
* When the custom task extension was created.
* When the custom task extension was created.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby.
*/
@SerializedName(value = "createdDateTime", alternate = {"CreatedDateTime"})
@Expose
Expand All @@ -47,7 +47,7 @@ public class CustomTaskExtension extends CustomCalloutExtension implements IJson

/**
* The Last Modified Date Time.
* When the custom extension was last modified.
* When the custom extension was last modified.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby.
*/
@SerializedName(value = "lastModifiedDateTime", alternate = {"LastModifiedDateTime"})
@Expose
Expand All @@ -56,7 +56,7 @@ public class CustomTaskExtension extends CustomCalloutExtension implements IJson

/**
* The Created By.
* The unique identifier of the Azure AD user that created the custom task extension.
* The unique identifier of the Azure AD user that created the custom task extension.Supports $filter(eq, ne) and $expand.
*/
@SerializedName(value = "createdBy", alternate = {"CreatedBy"})
@Expose
Expand All @@ -65,7 +65,7 @@ public class CustomTaskExtension extends CustomCalloutExtension implements IJson

/**
* The Last Modified By.
* The unique identifier of the Azure AD user that modified the custom task extension last.
* The unique identifier of the Azure AD user that modified the custom task extension last.Supports $filter(eq, ne) and $expand.
*/
@SerializedName(value = "lastModifiedBy", alternate = {"LastModifiedBy"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class Run extends Entity implements IJsonBackedObject {

/**
* The Completed Date Time.
* The date time that the run completed. Value is null if the workflow hasn't completed. Optional.
* The date time that the run completed. Value is null if the workflow hasn't completed.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby.
*/
@SerializedName(value = "completedDateTime", alternate = {"CompletedDateTime"})
@Expose
Expand All @@ -41,7 +41,7 @@ public class Run extends Entity implements IJsonBackedObject {

/**
* The Failed Tasks Count.
* The number of tasks that failed in the run execution. Required.
* The number of tasks that failed in the run execution.
*/
@SerializedName(value = "failedTasksCount", alternate = {"FailedTasksCount"})
@Expose
Expand All @@ -50,7 +50,7 @@ public class Run extends Entity implements IJsonBackedObject {

/**
* The Failed Users Count.
* The number of users that failed in the run execution. Required.
* The number of users that failed in the run execution.
*/
@SerializedName(value = "failedUsersCount", alternate = {"FailedUsersCount"})
@Expose
Expand All @@ -59,7 +59,7 @@ public class Run extends Entity implements IJsonBackedObject {

/**
* The Last Updated Date Time.
* The datetime that the run was last updated. Optional.
* The datetime that the run was last updated.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby.
*/
@SerializedName(value = "lastUpdatedDateTime", alternate = {"LastUpdatedDateTime"})
@Expose
Expand All @@ -68,7 +68,7 @@ public class Run extends Entity implements IJsonBackedObject {

/**
* The Processing Status.
* The run execution status. The possible values are: queued, inProgress, completed, completedWithErrors, canceled, failed, unknownFutureValue. Required.
* The run execution status. The possible values are: queued, inProgress, completed, completedWithErrors, canceled, failed, unknownFutureValue.Supports $filter(eq, ne) and $orderby.
*/
@SerializedName(value = "processingStatus", alternate = {"ProcessingStatus"})
@Expose
Expand All @@ -77,7 +77,7 @@ public class Run extends Entity implements IJsonBackedObject {

/**
* The Scheduled Date Time.
* The date time that the run is scheduled to be executed for a workflow. Required.
* The date time that the run is scheduled to be executed for a workflow.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby.
*/
@SerializedName(value = "scheduledDateTime", alternate = {"ScheduledDateTime"})
@Expose
Expand All @@ -86,7 +86,7 @@ public class Run extends Entity implements IJsonBackedObject {

/**
* The Started Date Time.
* The date time that the run execution started. Optional.
* The date time that the run execution started.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby.
*/
@SerializedName(value = "startedDateTime", alternate = {"StartedDateTime"})
@Expose
Expand All @@ -95,7 +95,7 @@ public class Run extends Entity implements IJsonBackedObject {

/**
* The Successful Users Count.
* The number of successfully completed users in the run. Required.
* The number of successfully completed users in the run.
*/
@SerializedName(value = "successfulUsersCount", alternate = {"SuccessfulUsersCount"})
@Expose
Expand All @@ -113,7 +113,7 @@ public class Run extends Entity implements IJsonBackedObject {

/**
* The Total Unprocessed Tasks Count.
* The total number of unprocessed tasks in the run execution. Required.
* The total number of unprocessed tasks in the run execution.
*/
@SerializedName(value = "totalUnprocessedTasksCount", alternate = {"TotalUnprocessedTasksCount"})
@Expose
Expand All @@ -122,7 +122,7 @@ public class Run extends Entity implements IJsonBackedObject {

/**
* The Total Users Count.
* The total number of users in the workflow execution. Required.
* The total number of users in the workflow execution.
*/
@SerializedName(value = "totalUsersCount", alternate = {"TotalUsersCount"})
@Expose
Expand All @@ -131,7 +131,7 @@ public class Run extends Entity implements IJsonBackedObject {

/**
* The Workflow Execution Type.
* The execution type of the workflows associated with the run. The possible values are: scheduled, onDemand, unknownFutureValue. Required.
* The execution type of the workflows associated with the run. The possible values are: scheduled, onDemand, unknownFutureValue.Supports $filter(eq, ne) and $orderby.
*/
@SerializedName(value = "workflowExecutionType", alternate = {"WorkflowExecutionType"})
@Expose
Expand Down
Loading