Skip to content

Commit ff459ab

Browse files
authored
Merge pull request #630 from microsoftgraph/v1.0/pipelinebuild/38600
Update generated files with build 38600
2 parents b82bb62 + 8c14f20 commit ff459ab

File tree

178 files changed

+669
-552
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

+669
-552
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.5.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:2.6.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.5.0</version>
34+
<version>2.6.0</version>
3535
</dependency>
3636
```
3737

@@ -116,3 +116,4 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
116116

117117
[Third-party notices](THIRD%20PARTY%20NOTICES)
118118

119+

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

46+

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,6 +30,7 @@ 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.5.0";
33+
public static final String VERSION_NAME = "2.6.0";
3434
}
3535

36+

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 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.
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.
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-
*
71+
* The collection of open extensions defined for this Administrative Unit. Nullable.
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-
*
176+
* A collection of alertHistoryStates comprising an audit log of all updates made to an alert.
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-
*
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.
4040
*/
4141
@SerializedName(value = "appId", alternate = {"AppId"})
4242
@Expose
4343
public String appId;
4444

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

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

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

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

7777
/**
7878
* The Updated Date Time.
79-
*
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'
8080
*/
8181
@SerializedName(value = "updatedDateTime", alternate = {"UpdatedDateTime"})
8282
@Expose
8383
public java.util.Calendar updatedDateTime;
8484

8585
/**
8686
* The User.
87-
*
87+
* UPN of the signed-in user that updated the alert (taken from the bearer token - if in user/delegated auth mode).
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. When this property is configured, ManagedBrowserToOpenLinksRequired should be true.
31+
* Friendly name of the preferred custom browser to open weblink on Android.
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 the preferred custom browser to open weblink on Android. When this property is configured, ManagedBrowserToOpenLinksRequired should be true.
39+
* Unique identifier of a custom browser to open weblink on Android.
4040
*/
4141
@SerializedName(value = "customBrowserPackageId", alternate = {"CustomBrowserPackageId"})
4242
@Expose

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

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
import com.microsoft.graph.models.extensions.PasswordCredential;
1919
import com.microsoft.graph.models.extensions.PublicClientApplication;
2020
import com.microsoft.graph.models.extensions.RequiredResourceAccess;
21+
import com.microsoft.graph.models.extensions.SpaApplication;
2122
import com.microsoft.graph.models.extensions.WebApplication;
2223
import com.microsoft.graph.models.extensions.DirectoryObject;
2324
import com.microsoft.graph.models.extensions.ExtensionProperty;
@@ -45,7 +46,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
4546

4647
/**
4748
* The Add Ins.
48-
* Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Microsoft 365 call the application in the context of a document the user is working on.
49+
* Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on.
4950
*/
5051
@SerializedName(value = "addIns", alternate = {"AddIns"})
5152
@Expose
@@ -61,7 +62,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
6162

6263
/**
6364
* The App Id.
64-
* The unique identifier for the application that is assigned to an application by Azure AD. Not nullable. Read-only.
65+
* The unique identifier for the application that is assigned by Azure AD. Not nullable. Read-only.
6566
*/
6667
@SerializedName(value = "appId", alternate = {"AppId"})
6768
@Expose
@@ -77,7 +78,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
7778

7879
/**
7980
* The App Roles.
80-
* The collection of roles the application declares. With app role assignments, these roles can be assigned to users, groups, or other applications' service principals. Not nullable.
81+
* The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable.
8182
*/
8283
@SerializedName(value = "appRoles", alternate = {"AppRoles"})
8384
@Expose
@@ -109,23 +110,23 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
109110

110111
/**
111112
* The Group Membership Claims.
112-
* 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 will get 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 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.
113114
*/
114115
@SerializedName(value = "groupMembershipClaims", alternate = {"GroupMembershipClaims"})
115116
@Expose
116117
public String groupMembershipClaims;
117118

118119
/**
119120
* The Identifier Uris.
120-
* 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.
121122
*/
122123
@SerializedName(value = "identifierUris", alternate = {"IdentifierUris"})
123124
@Expose
124125
public java.util.List<String> identifierUris;
125126

126127
/**
127128
* The Info.
128-
* 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.
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.
129130
*/
130131
@SerializedName(value = "info", alternate = {"Info"})
131132
@Expose
@@ -141,15 +142,15 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
141142

142143
/**
143144
* The Is Fallback Public Client.
144-
* 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 web app. There are certain scenarios where Azure AD cannot determine the client application type (e.g. ROPC flow where it is configured without specifying a redirect URI). In those cases Azure AD will interpret 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 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.
145146
*/
146147
@SerializedName(value = "isFallbackPublicClient", alternate = {"IsFallbackPublicClient"})
147148
@Expose
148149
public Boolean isFallbackPublicClient;
149150

150151
/**
151152
* The Key Credentials.
152-
* The collection of key credentials associated with the application Not nullable.
153+
* The collection of key credentials associated with the application. Not nullable.
153154
*/
154155
@SerializedName(value = "keyCredentials", alternate = {"KeyCredentials"})
155156
@Expose
@@ -173,7 +174,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
173174

174175
/**
175176
* The Optional Claims.
176-
* Application developers can configure optional claims in their Azure AD apps to specify which claims they want in tokens sent to their application by the Microsoft security token service. See provide optional claims to your Azure AD app for more information.
177+
* Application developers can configure optional claims in their Azure AD applications to specify the claims that are sent to their application by the Microsoft security token service. For more information, see How to: Provide optional claims to your app.
177178
*/
178179
@SerializedName(value = "optionalClaims", alternate = {"OptionalClaims"})
179180
@Expose
@@ -213,20 +214,28 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
213214

214215
/**
215216
* The Required Resource Access.
216-
* Specifies resources that this application requires access to and the set of OAuth permission scopes and application roles that it needs under each of those resources. This pre-configuration of required resource access drives the consent experience. Not nullable.
217+
* Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable.
217218
*/
218219
@SerializedName(value = "requiredResourceAccess", alternate = {"RequiredResourceAccess"})
219220
@Expose
220221
public java.util.List<RequiredResourceAccess> requiredResourceAccess;
221222

222223
/**
223224
* The Sign In Audience.
224-
* 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.
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.
225226
*/
226227
@SerializedName(value = "signInAudience", alternate = {"SignInAudience"})
227228
@Expose
228229
public String signInAudience;
229230

231+
/**
232+
* The Spa.
233+
* Specifies settings for a single-page application, including sign out URLs and redirect URIs for authorization codes and access tokens.
234+
*/
235+
@SerializedName(value = "spa", alternate = {"Spa"})
236+
@Expose
237+
public SpaApplication spa;
238+
230239
/**
231240
* The Tags.
232241
* Custom strings that can be used to categorize and identify the application. Not nullable.
@@ -287,7 +296,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
287296

288297
/**
289298
* The Token Lifetime Policies.
290-
*
299+
* The tokenLifetimePolicies assigned to this application.
291300
*/
292301
public TokenLifetimePolicyCollectionPage tokenLifetimePolicies;
293302

0 commit comments

Comments
 (0)