Skip to content

Commit 3bf2636

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 50
1 parent ff459ab commit 3bf2636

File tree

178 files changed

+530
-527
lines changed

Some content is hidden

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

178 files changed

+530
-527
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:2.6.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:2.7.0'
2323
}
2424
```
2525

@@ -31,7 +31,7 @@ Add the dependency in `dependencies` in pom.xml
3131
<dependency>
3232
<groupId>com.microsoft.graph</groupId>
3333
<artifactId>microsoft-graph</artifactId>
34-
<version>2.6.0</version>
34+
<version>2.7.0</version>
3535
</dependency>
3636
```
3737

@@ -117,3 +117,4 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
117117
[Third-party notices](THIRD%20PARTY%20NOTICES)
118118

119119

120+

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 = 2
29-
mavenMinorVersion = 6
29+
mavenMinorVersion = 7
3030
mavenPatchVersion = 0
3131
mavenArtifactSuffix =
3232
nightliesUrl = http://dl.bintray.com/MicrosoftGraph/Maven
@@ -44,3 +44,4 @@ mavenCentralSnapshotArtifactSuffix = -SNAPSHOT
4444
mavenCentralPublishingEnabled=false
4545

4646

47+

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

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

9595
/**
9696
* The Version.
97-
* Monotonically increasing version of the call record. Higher version call records with the same ID includes additional data compared to the lower version.
97+
* Monotonically increasing version of the call record. Higher version call records with the same id includes additional data compared to the lower version.
9898
*/
9999
@SerializedName(value = "version", alternate = {"Version"})
100100
@Expose

src/main/java/com/microsoft/graph/core/Constants.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ private Constants() {
3030
public static final String PASSWORD = "password";
3131
public static final String TENANTID = "tenantid";
3232
public static final String CLIENTSECRET = "clientsecret";
33-
public static final String VERSION_NAME = "2.6.0";
33+
public static final String VERSION_NAME = "2.7.0";
3434
}
3535

3636

37+

src/main/java/com/microsoft/graph/models/extensions/AadUserConversationMember.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public class AadUserConversationMember extends ConversationMember implements IJs
3434

3535
/**
3636
* The User Id.
37-
* The GUID of the user.
37+
* The guid of the user.
3838
*/
3939
@SerializedName(value = "userId", alternate = {"UserId"})
4040
@Expose

src/main/java/com/microsoft/graph/models/extensions/AdministrativeUnit.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public class AdministrativeUnit extends DirectoryObject implements IJsonBackedOb
4646

4747
/**
4848
* The Visibility.
49-
* Controls whether the adminstrative unit and its members are hidden or public. Can be set to HiddenMembership or Public. If not set, default behavior is Public. When set to HiddenMembership, only members of the administrative unit can list other members of the adminstrative unit.
49+
* Controls whether the administrative unit and its members are hidden or public. Can be set to HiddenMembership or Public. If not set, default behavior is Public. When set to HiddenMembership, only members of the administrative unit can list other members of the adminstrative unit.
5050
*/
5151
@SerializedName(value = "visibility", alternate = {"Visibility"})
5252
@Expose
@@ -68,7 +68,7 @@ public class AdministrativeUnit extends DirectoryObject implements IJsonBackedOb
6868

6969
/**
7070
* The Extensions.
71-
* The collection of open extensions defined for this Administrative Unit. Nullable.
71+
*
7272
*/
7373
@SerializedName(value = "extensions", alternate = {"Extensions"})
7474
@Expose

src/main/java/com/microsoft/graph/models/extensions/Alert.java

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

174174
/**
175175
* The History States.
176-
* A collection of alertHistoryStates comprising an audit log of all updates made to an alert.
176+
*
177177
*/
178178
@SerializedName(value = "historyStates", alternate = {"HistoryStates"})
179179
@Expose

src/main/java/com/microsoft/graph/models/extensions/AlertHistoryState.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,55 +36,55 @@ public final AdditionalDataManager additionalDataManager() {
3636

3737
/**
3838
* The App Id.
39-
* The Application ID of the calling application that submitted an update (PATCH) to the alert. The appId should be extracted from the auth token and not entered manually by the calling application.
39+
*
4040
*/
4141
@SerializedName(value = "appId", alternate = {"AppId"})
4242
@Expose
4343
public String appId;
4444

4545
/**
4646
* The Assigned To.
47-
* UPN of user the alert was assigned to (note: alert.assignedTo only stores the last value/UPN).
47+
*
4848
*/
4949
@SerializedName(value = "assignedTo", alternate = {"AssignedTo"})
5050
@Expose
5151
public String assignedTo;
5252

5353
/**
5454
* The Comments.
55-
* Comment entered by signed-in user.
55+
*
5656
*/
5757
@SerializedName(value = "comments", alternate = {"Comments"})
5858
@Expose
5959
public java.util.List<String> comments;
6060

6161
/**
6262
* The Feedback.
63-
* Analyst feedback on the alert in this update. Possible values are: unknown, truePositive, falsePositive, benignPositive.
63+
*
6464
*/
6565
@SerializedName(value = "feedback", alternate = {"Feedback"})
6666
@Expose
6767
public AlertFeedback feedback;
6868

6969
/**
7070
* The Status.
71-
* Alert status value (if updated). Possible values are: unknown, newAlert, inProgress, resolved, dismissed.
71+
*
7272
*/
7373
@SerializedName(value = "status", alternate = {"Status"})
7474
@Expose
7575
public AlertStatus status;
7676

7777
/**
7878
* The Updated Date Time.
79-
* Date and time of the alert update. 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 would look like this: '2014-01-01T00:00:00Z'
79+
*
8080
*/
8181
@SerializedName(value = "updatedDateTime", alternate = {"UpdatedDateTime"})
8282
@Expose
8383
public java.util.Calendar updatedDateTime;
8484

8585
/**
8686
* The User.
87-
* UPN of the signed-in user that updated the alert (taken from the bearer token - if in user/delegated auth mode).
87+
*
8888
*/
8989
@SerializedName(value = "user", alternate = {"User"})
9090
@Expose

src/main/java/com/microsoft/graph/models/extensions/AndroidManagedAppProtection.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ public class AndroidManagedAppProtection extends TargetedManagedAppProtection im
2828

2929
/**
3030
* The Custom Browser Display Name.
31-
* Friendly name of the preferred custom browser to open weblink on Android.
31+
* Friendly name of the preferred custom browser to open weblink on Android. When this property is configured, ManagedBrowserToOpenLinksRequired should be true.
3232
*/
3333
@SerializedName(value = "customBrowserDisplayName", alternate = {"CustomBrowserDisplayName"})
3434
@Expose
3535
public String customBrowserDisplayName;
3636

3737
/**
3838
* The Custom Browser Package Id.
39-
* Unique identifier of a custom browser to open weblink on Android.
39+
* Unique identifier of the preferred custom browser to open weblink on Android. When this property is configured, ManagedBrowserToOpenLinksRequired should be true.
4040
*/
4141
@SerializedName(value = "customBrowserPackageId", alternate = {"CustomBrowserPackageId"})
4242
@Expose

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
6262

6363
/**
6464
* The App Id.
65-
* The unique identifier for the application that is assigned by Azure AD. Not nullable. Read-only.
65+
* The unique identifier for the application that is assigned to an application by Azure AD. Not nullable. Read-only.
6666
*/
6767
@SerializedName(value = "appId", alternate = {"AppId"})
6868
@Expose
@@ -110,23 +110,23 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
110110

111111
/**
112112
* The Group Membership Claims.
113-
* Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values:NoneSecurityGroup: For security groups and Azure AD rolesAll: This gets all of the security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of.
113+
* Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following valid string values:NoneSecurityGroup: For security groups and Azure AD rolesAll: This gets all of the security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of.
114114
*/
115115
@SerializedName(value = "groupMembershipClaims", alternate = {"GroupMembershipClaims"})
116116
@Expose
117117
public String groupMembershipClaims;
118118

119119
/**
120120
* The Identifier Uris.
121-
* The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable.
121+
* The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable.
122122
*/
123123
@SerializedName(value = "identifierUris", alternate = {"IdentifierUris"})
124124
@Expose
125125
public java.util.List<String> identifierUris;
126126

127127
/**
128128
* The Info.
129-
* Basic profile information of the application, such as it's marketing, support, terms of service, and privacy statement URLs. The terms of service and privacy statement are surfaced to users through the user consent experience. For more information, see How to: Add Terms of service and privacy statement for registered Azure AD apps.
129+
* Basic profile information of the application such as app's marketing, support, terms of service and privacy statement URLs. The terms of service and privacy statement are surfaced to users through the user consent experience. For more info, see How to: Add Terms of service and privacy statement for registered Azure AD apps.
130130
*/
131131
@SerializedName(value = "info", alternate = {"Info"})
132132
@Expose
@@ -142,7 +142,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
142142

143143
/**
144144
* The Is Fallback Public Client.
145-
* Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property.
145+
* Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where it is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property.
146146
*/
147147
@SerializedName(value = "isFallbackPublicClient", alternate = {"IsFallbackPublicClient"})
148148
@Expose
@@ -206,7 +206,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
206206

207207
/**
208208
* The Publisher Domain.
209-
* The verified publisher domain for the application. Read-only.
209+
* The verified publisher domain for the application. Read-only. For more information, see How to: Configure an application's publisher domain.
210210
*/
211211
@SerializedName(value = "publisherDomain", alternate = {"PublisherDomain"})
212212
@Expose
@@ -222,15 +222,15 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
222222

223223
/**
224224
* The Sign In Audience.
225-
* Specifies the Microsoft accounts that are supported for the current application. Supported values are:AzureADMyOrg: Users with a Microsoft work or school account in my organization’s Azure AD tenant (single-tenant).AzureADMultipleOrgs: Users with a Microsoft work or school account in any organization’s Azure AD tenant (multi-tenant).AzureADandPersonalMicrosoftAccount: Users with a personal Microsoft account, or a work or school account in any organization’s Azure AD tenant.PersonalMicrosoftAccount: Users with a personal Microsoft account only.
225+
* Specifies the Microsoft accounts that are supported for the current application. Supported values are:AzureADMyOrg: Users with a Microsoft work or school account in my organization’s Azure AD tenant (single tenant)AzureADMultipleOrgs: Users with a Microsoft work or school account in any organization’s Azure AD tenant (multi-tenant).AzureADandPersonalMicrosoftAccount: Users with a personal Microsoft account, or a work or school account in any organization’s Azure AD tenant.PersonalMicrosoftAccount: Users with a personal Microsoft account only.For authenticating users with Azure AD B2C user flows, use AzureADandPersonalMicrosoftAccount. This value allows for the widest set of user identities including local accounts and user identities from Microsoft, Facebook, Google, Twitter, or any OpenID Connect provider.
226226
*/
227227
@SerializedName(value = "signInAudience", alternate = {"SignInAudience"})
228228
@Expose
229229
public String signInAudience;
230230

231231
/**
232232
* The Spa.
233-
* Specifies settings for a single-page application, including sign out URLs and redirect URIs for authorization codes and access tokens.
233+
*
234234
*/
235235
@SerializedName(value = "spa", alternate = {"Spa"})
236236
@Expose
@@ -296,7 +296,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
296296

297297
/**
298298
* The Token Lifetime Policies.
299-
* The tokenLifetimePolicies assigned to this application.
299+
*
300300
*/
301301
public TokenLifetimePolicyCollectionPage tokenLifetimePolicies;
302302

0 commit comments

Comments
 (0)