Skip to content

Commit fab9ccf

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 77306
1 parent ed98c7e commit fab9ccf

29 files changed

+227
-119
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.26.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:5.27.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.26.0</version>
39+
<version>5.27.0</version>
4040
</dependency>
4141
<dependency>
4242
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -157,5 +157,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
157157

158158

159159

160+
160161

161162

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

@@ -80,5 +80,6 @@ mavenCentralPublishingEnabled=false
8080

8181

8282

83+
8384

8485

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

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

7474
/**
7575
* The Groups.
76-
* Read-only. Nullable.
76+
*
7777
*/
7878
@SerializedName(value = "groups", alternate = {"Groups"})
7979
@Expose
@@ -82,7 +82,7 @@ public class ExternalConnection extends Entity implements IJsonBackedObject {
8282

8383
/**
8484
* The Items.
85-
* Read-only. Nullable.
85+
*
8686
*/
8787
@SerializedName(value = "items", alternate = {"Items"})
8888
@Expose
@@ -91,7 +91,7 @@ public class ExternalConnection extends Entity implements IJsonBackedObject {
9191

9292
/**
9393
* The Operations.
94-
* Read-only. Nullable.
94+
*
9595
*/
9696
@SerializedName(value = "operations", alternate = {"Operations"})
9797
@Expose
@@ -100,7 +100,7 @@ public class ExternalConnection extends Entity implements IJsonBackedObject {
100100

101101
/**
102102
* The Schema.
103-
* Read-only. Nullable.
103+
*
104104
*/
105105
@SerializedName(value = "schema", alternate = {"Schema"})
106106
@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.26.0";
21+
public static final String VERSION_NAME = "5.27.0";
2222
}
2323

2424

@@ -57,5 +57,6 @@ private Constants() {
5757

5858

5959

60+
6061

6162

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

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

7777
/**
7878
* The Assignment Policies.
79-
* Read-only. Nullable.
79+
*
8080
*/
8181
@SerializedName(value = "assignmentPolicies", alternate = {"AssignmentPolicies"})
8282
@Expose
@@ -85,7 +85,7 @@ public class AccessPackage extends Entity implements IJsonBackedObject {
8585

8686
/**
8787
* The Catalog.
88-
* Read-only. Nullable.
88+
*
8989
*/
9090
@SerializedName(value = "catalog", alternate = {"Catalog"})
9191
@Expose

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

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
import com.microsoft.graph.models.AddIn;
1313
import com.microsoft.graph.models.ApiApplication;
1414
import com.microsoft.graph.models.AppRole;
15+
import com.microsoft.graph.models.Certification;
1516
import com.microsoft.graph.models.InformationalUrl;
1617
import com.microsoft.graph.models.KeyCredential;
1718
import com.microsoft.graph.models.OptionalClaims;
@@ -93,6 +94,15 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
9394
@Nullable
9495
public java.util.List<AppRole> appRoles;
9596

97+
/**
98+
* The Certification.
99+
* Specifies the certification status of the application.
100+
*/
101+
@SerializedName(value = "certification", alternate = {"Certification"})
102+
@Expose
103+
@Nullable
104+
public Certification certification;
105+
96106
/**
97107
* The Created Date Time.
98108
* The date and time the application was registered. 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. Read-only. Supports $filter (eq, ne, not, ge, le, in, and eq on null values) and $orderBy.
@@ -320,7 +330,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
320330

321331
/**
322332
* The Created On Behalf Of.
323-
* Read-only.
333+
*
324334
*/
325335
@SerializedName(value = "createdOnBehalfOf", alternate = {"CreatedOnBehalfOf"})
326336
@Expose

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

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

3737
/**
3838
* The Directory Audits.
39-
* Read-only. Nullable.
39+
*
4040
*/
4141
@SerializedName(value = "directoryAudits", alternate = {"DirectoryAudits"})
4242
@Expose
@@ -63,7 +63,7 @@ public class AuditLogRoot extends Entity implements IJsonBackedObject {
6363

6464
/**
6565
* The Sign Ins.
66-
* Read-only. Nullable.
66+
*
6767
*/
6868
@SerializedName(value = "signIns", alternate = {"SignIns"})
6969
@Expose

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ public class Call extends Entity implements IJsonBackedObject {
229229

230230
/**
231231
* The Audio Routing Groups.
232-
* Read-only. Nullable.
232+
*
233233
*/
234234
@SerializedName(value = "audioRoutingGroups", alternate = {"AudioRoutingGroups"})
235235
@Expose
@@ -238,7 +238,7 @@ public class Call extends Entity implements IJsonBackedObject {
238238

239239
/**
240240
* The Operations.
241-
* Read-only. Nullable.
241+
*
242242
*/
243243
@SerializedName(value = "operations", alternate = {"Operations"})
244244
@Expose
@@ -247,7 +247,7 @@ public class Call extends Entity implements IJsonBackedObject {
247247

248248
/**
249249
* The Participants.
250-
* Read-only. Nullable.
250+
*
251251
*/
252252
@SerializedName(value = "participants", alternate = {"Participants"})
253253
@Expose
Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
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+
12+
13+
import com.google.gson.JsonObject;
14+
import com.google.gson.annotations.SerializedName;
15+
import com.google.gson.annotations.Expose;
16+
import javax.annotation.Nullable;
17+
import javax.annotation.Nonnull;
18+
19+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
20+
21+
/**
22+
* The class for the Certification.
23+
*/
24+
public class Certification implements IJsonBackedObject {
25+
26+
/** the OData type of the object as returned by the service */
27+
@SerializedName("@odata.type")
28+
@Expose
29+
@Nullable
30+
public String oDataType;
31+
32+
private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);
33+
34+
@Override
35+
@Nonnull
36+
public final AdditionalDataManager additionalDataManager() {
37+
return additionalDataManager;
38+
}
39+
40+
/**
41+
* The Certification Details Url.
42+
* URL that shows certification details for the application.
43+
*/
44+
@SerializedName(value = "certificationDetailsUrl", alternate = {"CertificationDetailsUrl"})
45+
@Expose
46+
@Nullable
47+
public String certificationDetailsUrl;
48+
49+
/**
50+
* The Certification Expiration Date Time.
51+
* The timestamp when the current certification for the application will expire.
52+
*/
53+
@SerializedName(value = "certificationExpirationDateTime", alternate = {"CertificationExpirationDateTime"})
54+
@Expose
55+
@Nullable
56+
public java.time.OffsetDateTime certificationExpirationDateTime;
57+
58+
/**
59+
* The Is Certified By Microsoft.
60+
* Indicates whether the application is certified by Microsoft.
61+
*/
62+
@SerializedName(value = "isCertifiedByMicrosoft", alternate = {"IsCertifiedByMicrosoft"})
63+
@Expose
64+
@Nullable
65+
public Boolean isCertifiedByMicrosoft;
66+
67+
/**
68+
* The Is Publisher Attested.
69+
* Indicates whether the application has been self-attested by the application developer or the publisher.
70+
*/
71+
@SerializedName(value = "isPublisherAttested", alternate = {"IsPublisherAttested"})
72+
@Expose
73+
@Nullable
74+
public Boolean isPublisherAttested;
75+
76+
/**
77+
* The Last Certification Date Time.
78+
* The timestamp when the certification for the application was most recently added or updated.
79+
*/
80+
@SerializedName(value = "lastCertificationDateTime", alternate = {"LastCertificationDateTime"})
81+
@Expose
82+
@Nullable
83+
public java.time.OffsetDateTime lastCertificationDateTime;
84+
85+
86+
/**
87+
* Sets the raw JSON object
88+
*
89+
* @param serializer the serializer
90+
* @param json the JSON object to set this object to
91+
*/
92+
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
93+
94+
}
95+
}

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

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

8787
/**
8888
* The External Sponsors.
89-
* Nullable.
89+
*
9090
*/
9191
@SerializedName(value = "externalSponsors", alternate = {"ExternalSponsors"})
9292
@Expose
@@ -95,7 +95,7 @@ public class ConnectedOrganization extends Entity implements IJsonBackedObject {
9595

9696
/**
9797
* The Internal Sponsors.
98-
* Nullable.
98+
*
9999
*/
100100
@SerializedName(value = "internalSponsors", alternate = {"InternalSponsors"})
101101
@Expose

0 commit comments

Comments
 (0)