Skip to content

Commit 84db0c4

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 55850
1 parent 7bcdf16 commit 84db0c4

File tree

245 files changed

+1286
-548
lines changed

Some content is hidden

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

245 files changed

+1286
-548
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.2.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:5.3.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.2.0</version>
39+
<version>5.3.0</version>
4040
</dependency>
4141
<dependency>
4242
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -136,3 +136,4 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
136136
[Third-party notices](THIRD%20PARTY%20NOTICES)
137137

138138

139+

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

@@ -59,3 +59,4 @@ mavenCentralPublishingEnabled=false
5959

6060

6161

62+

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

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

8888
/**
8989
* The Start Date Time.
90-
* UTC time when the first user joined the call. The DatetimeOffset 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
90+
* UTC time when the first user joined the call. The DatetimeOffset 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.
9191
*/
9292
@SerializedName(value = "startDateTime", alternate = {"StartDateTime"})
9393
@Expose
@@ -105,7 +105,7 @@ public class CallRecord extends Entity implements IJsonBackedObject {
105105

106106
/**
107107
* The Version.
108-
* Monotonically increasing version of the call record. Higher version call records with the same ID includes additional data compared to the lower version.
108+
* Monotonically increasing version of the call record. Higher version call records with the same id includes additional data compared to the lower version.
109109
*/
110110
@SerializedName(value = "version", alternate = {"Version"})
111111
@Expose

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

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

7979
/**
8080
* The Start Date Time.
81-
* UTC fime when the first user joined the session. The DateTimeOffset 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
81+
* UTC time when the first user joined the session. The DateTimeOffset 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
8282
*/
8383
@SerializedName(value = "startDateTime", alternate = {"StartDateTime"})
8484
@Expose

src/main/java/com/microsoft/graph/externalconnectors/models/Acl.java

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

4242
/**
4343
* The Access Type.
44-
* The access granted to the identity. Possible values are: grant, deny.
44+
* The access granted to the identity. Possible values are: grant, deny, unknownFutureValue.
4545
*/
4646
@SerializedName(value = "accessType", alternate = {"AccessType"})
4747
@Expose
@@ -50,7 +50,7 @@ public final AdditionalDataManager additionalDataManager() {
5050

5151
/**
5252
* The Type.
53-
* The type of identity. Possible values are: user, group, everyone, everyoneExceptGuests if the identitySource is azureActiveDirectory and just group if the identitySource is external.
53+
* The type of identity. Possible values are: user, group, everyone, everyoneExceptGuests, externalGroup, unknownFutureValue.
5454
*/
5555
@SerializedName(value = "type", alternate = {"Type"})
5656
@Expose
@@ -59,7 +59,7 @@ public final AdditionalDataManager additionalDataManager() {
5959

6060
/**
6161
* The Value.
62-
* The unique identifer of the identity. In case of Azure Active Directory identities, value is set to the object identifier of the user, group or tenant for types user, group and everyone (and everyoneExceptGuests) respectively. In case of external groups value is set to the ID of the externalGroup.
62+
* The unique identifer of the identity. In case of Azure Active Directory identities, value is set to the object identifier of the user, group or tenant for types user, group and everyone (and everyoneExceptGuests) respectively. In case of external groups value is set to the ID of the externalGroup
6363
*/
6464
@SerializedName(value = "value", alternate = {"Value"})
6565
@Expose

src/main/java/com/microsoft/graph/externalconnectors/models/ConnectionOperation.java

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

3939
/**
4040
* The Status.
41-
* Indicates the status of the asynchronous operation. Possible values are: unspecified, inprogress, completed, failed.
41+
* Indicates the status of the asynchronous operation. Possible values are: unspecified, inprogress, completed, failed, unknownFutureValue.
4242
*/
4343
@SerializedName(value = "status", alternate = {"Status"})
4444
@Expose

src/main/java/com/microsoft/graph/externalconnectors/models/ExternalConnection.java

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

6565
/**
6666
* The State.
67-
* Indicates the current state of the connection. Possible values are draft, ready, obsolete, and limitExceeded. Required.
67+
* Indicates the current state of the connection. Possible values are: draft, ready, obsolete, limitExceeded, unknownFutureValue.
6868
*/
6969
@SerializedName(value = "state", alternate = {"State"})
7070
@Expose

src/main/java/com/microsoft/graph/externalconnectors/models/ExternalGroup.java

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

4949
/**
5050
* The Members.
51-
* A member added to an externalGroup. You can add Azure Active Directory users, Azure Active Directory groups, or other externalGroups as members.
51+
* A member added to an externalGroup. You can add Azure Active Directory users, Azure Active Directory groups, or an externalGroup as members.
5252
*/
5353
@SerializedName(value = "members", alternate = {"Members"})
5454
@Expose

src/main/java/com/microsoft/graph/externalconnectors/models/ExternalItemContent.java

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

4141
/**
4242
* The Type.
43-
* The type of content in the value property. Possible values are text and html. Required.
43+
* The type of content in the value property. Possible values are: text, html, unknownFutureValue.
4444
*/
4545
@SerializedName(value = "type", alternate = {"Type"})
4646
@Expose

src/main/java/com/microsoft/graph/externalconnectors/models/Property.java

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

7979
/**
8080
* The Is Searchable.
81-
* Specifies if the property is searchable. Only properties of type string or stringCollection can be searchable. Non-searchable properties are not added to the search index. Optional.
81+
* Specifies if the property is searchable. Only properties of type String or StringCollection can be searchable. Non-searchable properties are not added to the search index. Optional.
8282
*/
8383
@SerializedName(value = "isSearchable", alternate = {"IsSearchable"})
8484
@Expose
@@ -87,7 +87,7 @@ public final AdditionalDataManager additionalDataManager() {
8787

8888
/**
8989
* The Labels.
90-
* Specifies one or more well-known tags added against a property. Labels help Microsoft Search understand the semantics of the data in the connection. Adding appropriate labels would result in an enhanced search experience (e.g. better relevance). Optional.The possible values are: title, url, createdBy, lastModifiedBy, authors, createdDateTime, lastModifiedDateTime, fileName, fileExtension, unknownFutureValue, iconUrl, containerName, containerUrl. Note that you must use the Prefer: include-unknown-enum-members request header to get the following values in this evolvable enum: iconUrl, containerName, containerUrl.
90+
* Specifies one or more well-known tags added against a property. Labels help Microsoft Search understand the semantics of the data in the connection. Adding appropriate labels would result in an enhanced search experience (e.g. better relevance). The possible values are: title, url, createdBy, lastModifiedBy, authors, createdDateTime, lastModifiedDateTime, fileName, fileExtension, unknownFutureValue. Optional.
9191
*/
9292
@SerializedName(value = "labels", alternate = {"Labels"})
9393
@Expose
@@ -105,7 +105,7 @@ public final AdditionalDataManager additionalDataManager() {
105105

106106
/**
107107
* The Type.
108-
* The data type of the property. Possible values are: string, int64, double, dateTime, boolean, stringCollection, int64Collection, doubleCollection, dateTimeCollection, unknownFutureValue. Required.
108+
* The data type of the property. Possible values are: string, int64, double, dateTime, boolean, stringCollection, int64Collection, doubleCollection, dateTimeCollection, unknownFutureValue.
109109
*/
110110
@SerializedName(value = "type", alternate = {"Type"})
111111
@Expose

0 commit comments

Comments
 (0)