Skip to content

Commit ae9f0a8

Browse files
Merge pull request #436 from microsoftgraph/beta/pipelinebuild/92671
Update generated files with build 92671 [skip ci]
2 parents f79ff09 + 14309ae commit ae9f0a8

File tree

197 files changed

+6460
-2952
lines changed

Some content is hidden

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

197 files changed

+6460
-2952
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,37 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Changed
1313

14+
## [0.60.0] - 2022-11-09
15+
16+
### Added
17+
18+
- ChatMessageActions model.
19+
- ChatMessageHistoryItem model.
20+
- CloudPcProvisioningType model.
21+
- OnPremisesAccidentalDeletionPrevention model.
22+
- UserExperienceAnalyticsDeviceScopeSummary model.
23+
- BrowserSharedCookie models and related requests.
24+
- BrowserSite models and related requests.
25+
- DeviceManagementConfigurationPolicyReorder models and related requests.
26+
- DeviceManagementPartnerTerminate models and related requests.
27+
- DeviceManagementReportsGetEncryptionReportForDevices models and related requests.
28+
- DeviceManagementReportsGetMobileApplicationManagementAppConfigurationReport models and related requests.
29+
- DeviceManagementUserExperienceAnalyticsSummarizedDeviceScopes models and related requests.
30+
- Edge model and related requests.
31+
- InternetExplorerMode model and related requests.
32+
- MacOSMicrosoftDefenderApp model and related requests.
33+
- ManagedDeviceEndRemoteHelpSession models and related requests.
34+
- ManagedDeviceInitiateMobileDeviceManagementKeyRecovery models and related requests.
35+
- OnPremisesDirectorySynchronization models and related requests.
36+
37+
### Changed
38+
39+
- Updated beta models and request builders generated using Typewriter, based on latest Beta-Metadata.
40+
- Models and requests referencing the newly added models and requests have been updated to reflect the removed models/requests.
41+
- Removed OrganizationalMessage models and related requests.
42+
- Removed DeviceManagement requests and models related to OrganizationalMessage.
43+
- Removed UserExperienceAnalyticsRegressionSummary models and related requests.
44+
1445
## [0.59.0] - 2022-11-03
1546

1647
### Added

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.59.0-SNAPSHOT'
23+
implementation 'com.microsoft.graph:microsoft-graph-beta:0.60.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.59.0-SNAPSHOT</version>
40+
<version>0.60.0-SNAPSHOT</version>
4141
</dependency>
4242
<dependency>
4343
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -195,5 +195,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
195195

196196

197197

198+
198199

199200

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

@@ -94,5 +94,6 @@ mavenCentralPublishingEnabled=false
9494

9595

9696

97+
9798

9899

src/main/java/com/microsoft/graph/identitygovernancenamespace/models/CustomTaskExtension.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public class CustomTaskExtension extends CustomCalloutExtension implements IJson
3838

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

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

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

6666
/**
6767
* The Last Modified By.
68-
* The unique identifier of the Azure AD user that modified the custom task extension last.
68+
* The unique identifier of the Azure AD user that modified the custom task extension last.Supports $filter(eq, ne) and $expand.
6969
*/
7070
@SerializedName(value = "lastModifiedBy", alternate = {"LastModifiedBy"})
7171
@Expose

src/main/java/com/microsoft/graph/identitygovernancenamespace/models/Run.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class Run extends Entity implements IJsonBackedObject {
3232

3333
/**
3434
* The Completed Date Time.
35-
* The date time that the run completed. Value is null if the workflow hasn't completed. Optional.
35+
* 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.
3636
*/
3737
@SerializedName(value = "completedDateTime", alternate = {"CompletedDateTime"})
3838
@Expose
@@ -41,7 +41,7 @@ public class Run extends Entity implements IJsonBackedObject {
4141

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

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

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

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

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

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

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

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

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

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

0 commit comments

Comments
 (0)