Skip to content

Commit a5ca73c

Browse files
Microsoft Graph DevX Toolingbaywet
authored andcommitted
Update generated files with build 61672
1 parent 79faa18 commit a5ca73c

39 files changed

+225
-177
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:5.8.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:5.9.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>5.8.0</version>
39+
<version>5.9.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 = 5
29-
mavenMinorVersion = 8
29+
mavenMinorVersion = 9
3030
mavenPatchVersion = 0
3131
mavenArtifactSuffix =
3232

@@ -63,5 +63,6 @@ mavenCentralPublishingEnabled=false
6363

6464

6565

66+
6667

6768

src/main/java/com/microsoft/graph/callrecords/models/ClientUserAgent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public class ClientUserAgent extends UserAgent implements IJsonBackedObject {
3838

3939
/**
4040
* The Product Family.
41-
* Identifies the family of application software used by this endpoint. Possible values are: unknown, teams, skypeForBusiness, lync, unknownFutureValue.
41+
* Identifies the family of application software used by this endpoint. Possible values are: unknown, teams, skypeForBusiness, lync, unknownFutureValue, azureCommunicationServices. Note that you must use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: azureCommunicationServices.
4242
*/
4343
@SerializedName(value = "productFamily", alternate = {"ProductFamily"})
4444
@Expose

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

2424

@@ -40,5 +40,6 @@ private Constants() {
4040

4141

4242

43+
4344

4445

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

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

7474
/**
7575
* The Catalog.
76-
*
76+
* Read-only. Nullable.
7777
*/
7878
@SerializedName(value = "catalog", alternate = {"Catalog"})
7979
@Expose

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class AccessPackageAssignment extends Entity implements IJsonBackedObject
3131

3232
/**
3333
* The Expired Date Time.
34-
* The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
34+
* The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
3535
*/
3636
@SerializedName(value = "expiredDateTime", alternate = {"ExpiredDateTime"})
3737
@Expose
@@ -49,7 +49,7 @@ public class AccessPackageAssignment extends Entity implements IJsonBackedObject
4949

5050
/**
5151
* The State.
52-
*
52+
* The state of the access package assignment. The possible values are: delivering, partiallyDelivered, delivered, expired, deliveryFailed, unknownFutureValue. Read-only.
5353
*/
5454
@SerializedName(value = "state", alternate = {"State"})
5555
@Expose
@@ -58,7 +58,7 @@ public class AccessPackageAssignment extends Entity implements IJsonBackedObject
5858

5959
/**
6060
* The Status.
61-
*
61+
* More information about the assignment lifecycle. Possible values include Delivering, Delivered, NearExpiry1DayNotificationTriggered, or ExpiredNotificationTriggered. Read-only.
6262
*/
6363
@SerializedName(value = "status", alternate = {"Status"})
6464
@Expose

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public class AccessPackageAssignmentRequest extends Entity implements IJsonBacke
5151

5252
/**
5353
* The Request Type.
54-
* One of UserAdd, UserRemove, AdminAdd, AdminRemove or SystemRemove. A request from the user themselves would have requestType of UserAdd or UserRemove. Read-only.
54+
* The type of the request. The possible values are: notSpecified, userAdd, userUpdate, userRemove, adminAdd, adminUpdate, adminRemove, systemAdd, systemUpdate, systemRemove, onBehalfAdd, unknownFutureValue. A request from the user themselves would have requestType of UserAdd or UserRemove. This property cannot be changed once set.
5555
*/
5656
@SerializedName(value = "requestType", alternate = {"RequestType"})
5757
@Expose
@@ -60,7 +60,7 @@ public class AccessPackageAssignmentRequest extends Entity implements IJsonBacke
6060

6161
/**
6262
* The Schedule.
63-
* The range of dates that access is to be assigned to the requestor. Read-only.
63+
* The range of dates that access is to be assigned to the requestor. This property cannot be changed once set.
6464
*/
6565
@SerializedName(value = "schedule", alternate = {"Schedule"})
6666
@Expose
@@ -69,7 +69,7 @@ public class AccessPackageAssignmentRequest extends Entity implements IJsonBacke
6969

7070
/**
7171
* The State.
72-
*
72+
* The state of the request. The possible values are: submitted, pendingApproval, delivering, delivered, deliveryFailed, denied, scheduled, canceled, partiallyDelivered, unknownFutureValue. Read-only.
7373
*/
7474
@SerializedName(value = "state", alternate = {"State"})
7575
@Expose
@@ -78,7 +78,7 @@ public class AccessPackageAssignmentRequest extends Entity implements IJsonBacke
7878

7979
/**
8080
* The Status.
81-
*
81+
* More information on the request processing status. Read-only.
8282
*/
8383
@SerializedName(value = "status", alternate = {"Status"})
8484
@Expose
@@ -96,7 +96,7 @@ public class AccessPackageAssignmentRequest extends Entity implements IJsonBacke
9696

9797
/**
9898
* The Assignment.
99-
*
99+
* For a requestType of UserAdd or AdminAdd, this is an access package assignment requested to be created. For a requestType of UserRemove, AdminRemove or SystemRemove, this has the id property of an existing assignment to be removed. Supports $expand.
100100
*/
101101
@SerializedName(value = "assignment", alternate = {"Assignment"})
102102
@Expose

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public final AdditionalDataManager additionalDataManager() {
4040

4141
/**
4242
* The Allow Custom Assignment Schedule.
43-
*
43+
* Indicates whether the requestor is allowed to set a custom schedule.
4444
*/
4545
@SerializedName(value = "allowCustomAssignmentSchedule", alternate = {"AllowCustomAssignmentSchedule"})
4646
@Expose
@@ -49,7 +49,7 @@ public final AdditionalDataManager additionalDataManager() {
4949

5050
/**
5151
* The Is Approval Required For Add.
52-
*
52+
* Indicates whether a request to add must be approved by an approver.
5353
*/
5454
@SerializedName(value = "isApprovalRequiredForAdd", alternate = {"IsApprovalRequiredForAdd"})
5555
@Expose
@@ -58,7 +58,7 @@ public final AdditionalDataManager additionalDataManager() {
5858

5959
/**
6060
* The Is Approval Required For Update.
61-
*
61+
* Indicates whether a request to update must be approved by an approver.
6262
*/
6363
@SerializedName(value = "isApprovalRequiredForUpdate", alternate = {"IsApprovalRequiredForUpdate"})
6464
@Expose

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

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

3333
/**
3434
* The Catalog Type.
35-
* One of UserManaged or ServiceDefault.
35+
* Whether the catalog is created by a user or entitlement management. The possible values are: userManaged, serviceDefault, serviceManaged, unknownFutureValue.
3636
*/
3737
@SerializedName(value = "catalogType", alternate = {"CatalogType"})
3838
@Expose
@@ -86,7 +86,7 @@ public class AccessPackageCatalog extends Entity implements IJsonBackedObject {
8686

8787
/**
8888
* The State.
89-
*
89+
* Has the value published if the access packages are available for management. The possible values are: unpublished, published, unknownFutureValue.
9090
*/
9191
@SerializedName(value = "state", alternate = {"State"})
9292
@Expose

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public class AccessPackageSubject extends Entity implements IJsonBackedObject {
5656

5757
/**
5858
* The On Premises Security Identifier.
59-
*
59+
* A string representation of the principal's security identifier, if known, or null if the subject does not have a security identifier.
6060
*/
6161
@SerializedName(value = "onPremisesSecurityIdentifier", alternate = {"OnPremisesSecurityIdentifier"})
6262
@Expose
@@ -74,7 +74,7 @@ public class AccessPackageSubject extends Entity implements IJsonBackedObject {
7474

7575
/**
7676
* The Subject Type.
77-
*
77+
* The resource type of the subject. The possible values are: notSpecified, user, servicePrincipal, unknownFutureValue.
7878
*/
7979
@SerializedName(value = "subjectType", alternate = {"SubjectType"})
8080
@Expose

0 commit comments

Comments
 (0)