Skip to content

Commit 98cd79d

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 105144
1 parent 229270f commit 98cd79d

File tree

126 files changed

+6652
-44
lines changed

Some content is hidden

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

126 files changed

+6652
-44
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.45.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:5.46.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.45.0</version>
39+
<version>5.46.0</version>
4040
</dependency>
4141
<dependency>
4242
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -176,5 +176,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
176176

177177

178178

179+
179180

180181

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

@@ -99,5 +99,6 @@ mavenCentralPublishingEnabled=false
9999

100100

101101

102+
102103

103104

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

2424

@@ -76,5 +76,6 @@ private Constants() {
7676

7777

7878

79+
7980

8081

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import com.microsoft.graph.models.ParentalControlSettings;
2020
import com.microsoft.graph.models.PasswordCredential;
2121
import com.microsoft.graph.models.PublicClientApplication;
22+
import com.microsoft.graph.models.RequestSignatureVerification;
2223
import com.microsoft.graph.models.RequiredResourceAccess;
2324
import com.microsoft.graph.models.SpaApplication;
2425
import com.microsoft.graph.models.VerifiedPublisher;
@@ -261,6 +262,15 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
261262
@Nullable
262263
public String publisherDomain;
263264

265+
/**
266+
* The Request Signature Verification.
267+
*
268+
*/
269+
@SerializedName(value = "requestSignatureVerification", alternate = {"RequestSignatureVerification"})
270+
@Expose
271+
@Nullable
272+
public RequestSignatureVerification requestSignatureVerification;
273+
264274
/**
265275
* The Required Resource Access.
266276
* Specifies the resources that the application needs to access. This property also specifies the set of delegated permissions and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. No more than 50 resource services (APIs) can be configured. Beginning mid-October 2021, the total number of required permissions must not exceed 400. For more information, see Limits on requested permissions per app. Not nullable. Supports $filter (eq, not, ge, le).

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class AttachmentBase extends Entity implements IJsonBackedObject {
2727

2828
/**
2929
* The Content Type.
30-
*
30+
* The MIME type.
3131
*/
3232
@SerializedName(value = "contentType", alternate = {"ContentType"})
3333
@Expose
@@ -36,7 +36,7 @@ public class AttachmentBase extends Entity implements IJsonBackedObject {
3636

3737
/**
3838
* The Last Modified Date Time.
39-
*
39+
* 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.
4040
*/
4141
@SerializedName(value = "lastModifiedDateTime", alternate = {"LastModifiedDateTime"})
4242
@Expose
@@ -45,7 +45,7 @@ public class AttachmentBase extends Entity implements IJsonBackedObject {
4545

4646
/**
4747
* The Name.
48-
*
48+
* The display name of the attachment. This does not need to be the actual file name.
4949
*/
5050
@SerializedName(value = "name", alternate = {"Name"})
5151
@Expose
@@ -54,7 +54,7 @@ public class AttachmentBase extends Entity implements IJsonBackedObject {
5454

5555
/**
5656
* The Size.
57-
*
57+
* The length of the attachment in bytes.
5858
*/
5959
@SerializedName(value = "size", alternate = {"Size"})
6060
@Expose

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

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

4141
/**
4242
* The Attachment Type.
43-
*
43+
* The type of the attachment. The possible values are: file, item, reference. Required.
4444
*/
4545
@SerializedName(value = "attachmentType", alternate = {"AttachmentType"})
4646
@Expose
@@ -49,7 +49,7 @@ public final AdditionalDataManager additionalDataManager() {
4949

5050
/**
5151
* The Content Type.
52-
*
52+
* The nature of the data in the attachment. Optional.
5353
*/
5454
@SerializedName(value = "contentType", alternate = {"ContentType"})
5555
@Expose
@@ -58,7 +58,7 @@ public final AdditionalDataManager additionalDataManager() {
5858

5959
/**
6060
* The Name.
61-
*
61+
* The display name of the attachment. This can be a descriptive string and does not have to be the actual file name. Required.
6262
*/
6363
@SerializedName(value = "name", alternate = {"Name"})
6464
@Expose
@@ -67,7 +67,7 @@ public final AdditionalDataManager additionalDataManager() {
6767

6868
/**
6969
* The Size.
70-
*
70+
* The length of the attachment in bytes. Required.
7171
*/
7272
@SerializedName(value = "size", alternate = {"Size"})
7373
@Expose

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

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

2929
/**
3030
* The Expiration Date Time.
31-
*
31+
* The date and time in UTC when the upload session will expire. The complete file must be uploaded before this expiration time is reached.
3232
*/
3333
@SerializedName(value = "expirationDateTime", alternate = {"ExpirationDateTime"})
3434
@Expose
@@ -37,7 +37,7 @@ public class AttachmentSession extends Entity implements IJsonBackedObject {
3737

3838
/**
3939
* The Next Expected Ranges.
40-
*
40+
* Indicates a single value {start} that represents the location in the file where the next upload should begin.
4141
*/
4242
@SerializedName(value = "nextExpectedRanges", alternate = {"NextExpectedRanges"})
4343
@Expose

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

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

8585
/**
8686
* The Teams App Id.
87-
*
87+
* The ID of the Teams app that is associated with the attachment. The property is specifically used to attribute a Teams message card to the specified app.
8888
*/
8989
@SerializedName(value = "teamsAppId", alternate = {"TeamsAppId"})
9090
@Expose
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
// Template Source: BaseEntity.java.tt
2+
// ------------------------------------------------------------------------------
3+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
4+
// ------------------------------------------------------------------------------
5+
6+
package com.microsoft.graph.models;
7+
import com.microsoft.graph.serializer.ISerializer;
8+
import com.microsoft.graph.serializer.IJsonBackedObject;
9+
import com.microsoft.graph.serializer.AdditionalDataManager;
10+
import java.util.EnumSet;
11+
import com.microsoft.graph.models.DelegatedAdminAccessContainer;
12+
import com.microsoft.graph.models.DelegatedAdminAccessDetails;
13+
import com.microsoft.graph.models.DelegatedAdminAccessAssignmentStatus;
14+
import com.microsoft.graph.models.Entity;
15+
16+
17+
import com.google.gson.JsonObject;
18+
import com.google.gson.annotations.SerializedName;
19+
import com.google.gson.annotations.Expose;
20+
import javax.annotation.Nullable;
21+
import javax.annotation.Nonnull;
22+
23+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
24+
25+
/**
26+
* The class for the Delegated Admin Access Assignment.
27+
*/
28+
public class DelegatedAdminAccessAssignment extends Entity implements IJsonBackedObject {
29+
30+
31+
/**
32+
* The Access Container.
33+
* The access container through which members are assigned access. For example, a security group.
34+
*/
35+
@SerializedName(value = "accessContainer", alternate = {"AccessContainer"})
36+
@Expose
37+
@Nullable
38+
public DelegatedAdminAccessContainer accessContainer;
39+
40+
/**
41+
* The Access Details.
42+
* The access details containing the identifiers of the administrative roles that the partner is assigned in the customer tenant.
43+
*/
44+
@SerializedName(value = "accessDetails", alternate = {"AccessDetails"})
45+
@Expose
46+
@Nullable
47+
public DelegatedAdminAccessDetails accessDetails;
48+
49+
/**
50+
* The Created Date Time.
51+
* The date and time in ISO 8601 format and in UTC time when the access assignment was created. Read-only.
52+
*/
53+
@SerializedName(value = "createdDateTime", alternate = {"CreatedDateTime"})
54+
@Expose
55+
@Nullable
56+
public java.time.OffsetDateTime createdDateTime;
57+
58+
/**
59+
* The Last Modified Date Time.
60+
* The date and time in ISO 8601 and in UTC time when this access assignment was last modified. Read-only.
61+
*/
62+
@SerializedName(value = "lastModifiedDateTime", alternate = {"LastModifiedDateTime"})
63+
@Expose
64+
@Nullable
65+
public java.time.OffsetDateTime lastModifiedDateTime;
66+
67+
/**
68+
* The Status.
69+
* The status of the access assignment. Read-only. The possible values are: pending, active, deleting, deleted, error, unknownFutureValue.
70+
*/
71+
@SerializedName(value = "status", alternate = {"Status"})
72+
@Expose
73+
@Nullable
74+
public DelegatedAdminAccessAssignmentStatus status;
75+
76+
77+
/**
78+
* Sets the raw JSON object
79+
*
80+
* @param serializer the serializer
81+
* @param json the JSON object to set this object to
82+
*/
83+
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
84+
85+
}
86+
}
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
// Template Source: Enum.java.tt
2+
// ------------------------------------------------------------------------------
3+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
4+
// ------------------------------------------------------------------------------
5+
6+
package com.microsoft.graph.models;
7+
8+
9+
/**
10+
* The Enum Delegated Admin Access Assignment Status.
11+
*/
12+
public enum DelegatedAdminAccessAssignmentStatus
13+
{
14+
/**
15+
* pending
16+
*/
17+
PENDING,
18+
/**
19+
* active
20+
*/
21+
ACTIVE,
22+
/**
23+
* deleting
24+
*/
25+
DELETING,
26+
/**
27+
* deleted
28+
*/
29+
DELETED,
30+
/**
31+
* error
32+
*/
33+
ERROR,
34+
/**
35+
* unknown Future Value
36+
*/
37+
UNKNOWN_FUTURE_VALUE,
38+
/**
39+
* For DelegatedAdminAccessAssignmentStatus values that were not expected from the service
40+
*/
41+
UNEXPECTED_VALUE
42+
}

0 commit comments

Comments
 (0)