Skip to content

Commit 5c0654e

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 50574
1 parent 174d873 commit 5c0654e

30 files changed

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

142142

143143

144+

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

@@ -50,3 +50,4 @@ mavenCentralPublishingEnabled=false
5050

5151

5252

53+

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

2424

@@ -27,3 +27,4 @@ private Constants() {
2727

2828

2929

30+

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class AccessReviewInactiveUsersQueryScope extends AccessReviewQueryScope
2727

2828
/**
2929
* The Inactive Duration.
30-
* Defines the length of the duration period of inactivity. Inactivity is based on the last sign in date of the user.
30+
* Defines the duration of inactivity. Inactivity is based on the last sign in date of the user compared to the access review instance's start date. If this property is not specified, it's assigned the default value PT0S.
3131
*/
3232
@SerializedName(value = "inactiveDuration", alternate = {"InactiveDuration"})
3333
@Expose

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class AccessReviewQueryScope extends AccessReviewScope implements IJsonBa
2727

2828
/**
2929
* The Query.
30-
* The query representing what will be reviewed in an access review. Examples of this include /groups/{id}/members?$filter=…
30+
* The query representing what will be reviewed in an access review.
3131
*/
3232
@SerializedName(value = "query", alternate = {"Query"})
3333
@Expose

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

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

4949
/**
5050
* The Query Root.
51-
* In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query (i.e., ./manager) is specified.
51+
* In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query, for example, ./manager, is specified. Possible value: decisions.
5252
*/
5353
@SerializedName(value = "queryRoot", alternate = {"QueryRoot"})
5454
@Expose

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public class AccessReviewScheduleDefinition extends Entity implements IJsonBacke
4343

4444
/**
4545
* The Created Date Time.
46-
* Timestamp when review series was created.
46+
* Timestamp when the access review series was created. Supports $select.
4747
*/
4848
@SerializedName(value = "createdDateTime", alternate = {"CreatedDateTime"})
4949
@Expose
@@ -52,7 +52,7 @@ public class AccessReviewScheduleDefinition extends Entity implements IJsonBacke
5252

5353
/**
5454
* The Description For Admins.
55-
* Description provided by review creators to provide more context of the review to admins.
55+
* Description provided by review creators to provide more context of the review to admins. Supports $select.
5656
*/
5757
@SerializedName(value = "descriptionForAdmins", alternate = {"DescriptionForAdmins"})
5858
@Expose
@@ -61,7 +61,7 @@ public class AccessReviewScheduleDefinition extends Entity implements IJsonBacke
6161

6262
/**
6363
* The Description For Reviewers.
64-
* 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.
64+
* 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.
6565
*/
6666
@SerializedName(value = "descriptionForReviewers", alternate = {"DescriptionForReviewers"})
6767
@Expose
@@ -70,7 +70,7 @@ public class AccessReviewScheduleDefinition extends Entity implements IJsonBacke
7070

7171
/**
7272
* The Display Name.
73-
* Name of access review series. Required on create.
73+
* Name of the access review series. Required on create. Supports $select.
7474
*/
7575
@SerializedName(value = "displayName", alternate = {"DisplayName"})
7676
@Expose
@@ -79,7 +79,7 @@ public class AccessReviewScheduleDefinition extends Entity implements IJsonBacke
7979

8080
/**
8181
* The Fallback Reviewers.
82-
*
82+
* This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers will be notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner does not exist, or manager is specified as reviewer but a user's manager does not exist. Supports $select.
8383
*/
8484
@SerializedName(value = "fallbackReviewers", alternate = {"FallbackReviewers"})
8585
@Expose
@@ -88,7 +88,7 @@ public class AccessReviewScheduleDefinition extends Entity implements IJsonBacke
8888

8989
/**
9090
* The Instance Enumeration Scope.
91-
* In the case of a review of guest users across all Microsoft 365 groups, this determines the scope of which groups will be reviewed. Each group will become a unique accessReviewInstance of the access review series. For supported scopes, see accessReviewScope.
91+
* This property is required when scoping a review to guest users' access across all Microsoft 365 groups and determines which Microsoft 365 groups are reviewed. Each group will become a unique accessReviewInstance of the access review series. For supported scopes, see accessReviewScope. Supports $select. For examples of options for configuring instanceEnumerationScope, see Configure the scope of your access review definition using the Microsoft Graph API.
9292
*/
9393
@SerializedName(value = "instanceEnumerationScope", alternate = {"InstanceEnumerationScope"})
9494
@Expose
@@ -97,7 +97,7 @@ public class AccessReviewScheduleDefinition extends Entity implements IJsonBacke
9797

9898
/**
9999
* The Last Modified Date Time.
100-
* Timestamp when review series was last modified.
100+
* Timestamp when the access review series was last modified. Supports $select.
101101
*/
102102
@SerializedName(value = "lastModifiedDateTime", alternate = {"LastModifiedDateTime"})
103103
@Expose
@@ -106,7 +106,7 @@ public class AccessReviewScheduleDefinition extends Entity implements IJsonBacke
106106

107107
/**
108108
* The Reviewers.
109-
* This collection of access review scopes is used to define who are the reviewers. See accessReviewReviewerScope. Required on create.
109+
* This collection of access review scopes is used to define who are the reviewers. Required on create. Supports $select. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API.
110110
*/
111111
@SerializedName(value = "reviewers", alternate = {"Reviewers"})
112112
@Expose
@@ -115,7 +115,7 @@ public class AccessReviewScheduleDefinition extends Entity implements IJsonBacke
115115

116116
/**
117117
* The Scope.
118-
* Defines scope of users reviewed. For supported scopes, see accessReviewScope. Required on create.
118+
* Defines scope of resources to review. For supported scopes, see accessReviewScope. Required on create. Supports $select and $filter (contains only). For examples of options for configuring scope, see Configure the scope of your access review definition using the Microsoft Graph API.
119119
*/
120120
@SerializedName(value = "scope", alternate = {"Scope"})
121121
@Expose
@@ -124,7 +124,7 @@ public class AccessReviewScheduleDefinition extends Entity implements IJsonBacke
124124

125125
/**
126126
* The Settings.
127-
* The settings for an access review series, see type definition below.
127+
* The settings for an access review series, see type definition below. Supports $select.
128128
*/
129129
@SerializedName(value = "settings", alternate = {"Settings"})
130130
@Expose
@@ -133,7 +133,7 @@ public class AccessReviewScheduleDefinition extends Entity implements IJsonBacke
133133

134134
/**
135135
* The Status.
136-
* This read-only field specifies the status of an accessReview. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed.
136+
* This read-only field specifies the status of an access review. The typical states include Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $select, $orderby, and $filter (eq only).
137137
*/
138138
@SerializedName(value = "status", alternate = {"Status"})
139139
@Expose
@@ -142,7 +142,7 @@ public class AccessReviewScheduleDefinition extends Entity implements IJsonBacke
142142

143143
/**
144144
* The Instances.
145-
* Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there will be an instance for each recurrence.
145+
* Set of access reviews instances for this access review series. Access reviews that do not recur will only have one instance; otherwise, there is an instance for each recurrence.
146146
*/
147147
@SerializedName(value = "instances", alternate = {"Instances"})
148148
@Expose

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public final AdditionalDataManager additionalDataManager() {
5151

5252
/**
5353
* The Auto Apply Decisions Enabled.
54-
* Flag to indicate whether auto-apply feature is enabled.
54+
* Indicates whether decisions are automatically applied. When set to false, a user must apply the decisions manually once the reviewer completes the access review. When set to true, decisions are applied automatically after the access review instance duration ends, whether or not the reviewers have responded. Default value is false.
5555
*/
5656
@SerializedName(value = "autoApplyDecisionsEnabled", alternate = {"AutoApplyDecisionsEnabled"})
5757
@Expose
@@ -60,7 +60,7 @@ public final AdditionalDataManager additionalDataManager() {
6060

6161
/**
6262
* The Default Decision.
63-
* Decision chosen if defaultDecisionEnabled is enabled. Can be one of 'Approve', 'Deny', or 'Recommendation'.
63+
* Decision chosen if defaultDecisionEnabled is enabled. Can be one of Approve, Deny, or Recommendation.
6464
*/
6565
@SerializedName(value = "defaultDecision", alternate = {"DefaultDecision"})
6666
@Expose
@@ -69,7 +69,7 @@ public final AdditionalDataManager additionalDataManager() {
6969

7070
/**
7171
* The Default Decision Enabled.
72-
* Flag to indicate whether default decision is enabled/disabled when reviewers do not respond.
72+
* Indicates whether the default decision is enabled or disabled when reviewers do not respond. Default value is false.
7373
*/
7474
@SerializedName(value = "defaultDecisionEnabled", alternate = {"DefaultDecisionEnabled"})
7575
@Expose
@@ -87,7 +87,7 @@ public final AdditionalDataManager additionalDataManager() {
8787

8888
/**
8989
* The Justification Required On Approval.
90-
* Flag to indicate whether reviewers are required to provide justification with their decision.
90+
* Indicates whether reviewers are required to provide justification with their decision. Default value is false.
9191
*/
9292
@SerializedName(value = "justificationRequiredOnApproval", alternate = {"JustificationRequiredOnApproval"})
9393
@Expose
@@ -96,7 +96,7 @@ public final AdditionalDataManager additionalDataManager() {
9696

9797
/**
9898
* The Mail Notifications Enabled.
99-
* Flag to indicate whether emails are enabled/disabled.
99+
* Indicates whether emails are enabled or disabled. Default value is false.
100100
*/
101101
@SerializedName(value = "mailNotificationsEnabled", alternate = {"MailNotificationsEnabled"})
102102
@Expose
@@ -105,7 +105,7 @@ public final AdditionalDataManager additionalDataManager() {
105105

106106
/**
107107
* The Recommendations Enabled.
108-
* Flag to indicate whether decision recommendations are enabled/disabled.
108+
* Indicates whether decision recommendations are enabled/disabled.
109109
*/
110110
@SerializedName(value = "recommendationsEnabled", alternate = {"RecommendationsEnabled"})
111111
@Expose
@@ -114,7 +114,7 @@ public final AdditionalDataManager additionalDataManager() {
114114

115115
/**
116116
* The Recurrence.
117-
* Detailed settings for recurrence. Using standard Outlook recurrence object. Note that dayOfMonth is not supported - use property startDate on recurrenceRange to determine the day the review will start on.
117+
* Detailed settings for recurrence using the standard Outlook recurrence object. Only weekly and absoluteMonthly on recurrencePattern are supported. Use the property startDate on recurrenceRange to determine the day the review starts.
118118
*/
119119
@SerializedName(value = "recurrence", alternate = {"Recurrence"})
120120
@Expose
@@ -123,7 +123,7 @@ public final AdditionalDataManager additionalDataManager() {
123123

124124
/**
125125
* The Reminder Notifications Enabled.
126-
* Flag to indicate whether reminders are enabled/disabled.
126+
* Indicates whether reminders are enabled or disabled. Default value is false.
127127
*/
128128
@SerializedName(value = "reminderNotificationsEnabled", alternate = {"ReminderNotificationsEnabled"})
129129
@Expose

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ public class ApplePushNotificationCertificate extends Entity implements IJsonBac
4343
@Nullable
4444
public String certificate;
4545

46+
/**
47+
* The Certificate Serial Number.
48+
* Certificate serial number. This property is read-only.
49+
*/
50+
@SerializedName(value = "certificateSerialNumber", alternate = {"CertificateSerialNumber"})
51+
@Expose
52+
@Nullable
53+
public String certificateSerialNumber;
54+
4655
/**
4756
* The Expiration Date Time.
4857
* The expiration date and time for Apple push notification certificate.

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class AuthenticationMethodsPolicy extends Entity implements IJsonBackedOb
3030

3131
/**
3232
* The Description.
33-
*
33+
* A description of the policy.
3434
*/
3535
@SerializedName(value = "description", alternate = {"Description"})
3636
@Expose
@@ -39,7 +39,7 @@ public class AuthenticationMethodsPolicy extends Entity implements IJsonBackedOb
3939

4040
/**
4141
* The Display Name.
42-
*
42+
* The name of the policy.
4343
*/
4444
@SerializedName(value = "displayName", alternate = {"DisplayName"})
4545
@Expose
@@ -48,7 +48,7 @@ public class AuthenticationMethodsPolicy extends Entity implements IJsonBackedOb
4848

4949
/**
5050
* The Last Modified Date Time.
51-
*
51+
* The date and time of the last update to the policy.
5252
*/
5353
@SerializedName(value = "lastModifiedDateTime", alternate = {"LastModifiedDateTime"})
5454
@Expose
@@ -57,7 +57,7 @@ public class AuthenticationMethodsPolicy extends Entity implements IJsonBackedOb
5757

5858
/**
5959
* The Policy Version.
60-
*
60+
* The version of the policy in use.
6161
*/
6262
@SerializedName(value = "policyVersion", alternate = {"PolicyVersion"})
6363
@Expose
@@ -75,7 +75,7 @@ public class AuthenticationMethodsPolicy extends Entity implements IJsonBackedOb
7575

7676
/**
7777
* The Authentication Method Configurations.
78-
*
78+
* Represents the settings for each authentication method.
7979
*/
8080
@SerializedName(value = "authenticationMethodConfigurations", alternate = {"AuthenticationMethodConfigurations"})
8181
@Expose

0 commit comments

Comments
 (0)