diff --git a/README.md b/README.md index 773952c0ee5..bce9b307a26 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ repositories { dependencies { // Include the sdk as a dependency - implementation 'com.microsoft.graph:microsoft-graph:2.6.0' + implementation 'com.microsoft.graph:microsoft-graph:2.7.0' } ``` @@ -31,7 +31,7 @@ Add the dependency in `dependencies` in pom.xml com.microsoft.graph microsoft-graph - 2.6.0 + 2.7.0 ``` @@ -117,3 +117,4 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI [Third-party notices](THIRD%20PARTY%20NOTICES) + diff --git a/gradle.properties b/gradle.properties index 58a76aa403c..236505e063c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -26,7 +26,7 @@ org.gradle.caching=true mavenGroupId = com.microsoft.graph mavenArtifactId = microsoft-graph mavenMajorVersion = 2 -mavenMinorVersion = 6 +mavenMinorVersion = 7 mavenPatchVersion = 0 mavenArtifactSuffix = nightliesUrl = http://dl.bintray.com/MicrosoftGraph/Maven @@ -44,3 +44,4 @@ mavenCentralSnapshotArtifactSuffix = -SNAPSHOT mavenCentralPublishingEnabled=false + diff --git a/src/main/java/com/microsoft/graph/callrecords/models/extensions/CallRecord.java b/src/main/java/com/microsoft/graph/callrecords/models/extensions/CallRecord.java index ff03342c0c7..61d70392e68 100644 --- a/src/main/java/com/microsoft/graph/callrecords/models/extensions/CallRecord.java +++ b/src/main/java/com/microsoft/graph/callrecords/models/extensions/CallRecord.java @@ -94,7 +94,7 @@ public class CallRecord extends Entity implements IJsonBackedObject { /** * The Version. - * Monotonically increasing version of the call record. Higher version call records with the same ID includes additional data compared to the lower version. + * Monotonically increasing version of the call record. Higher version call records with the same id includes additional data compared to the lower version. */ @SerializedName(value = "version", alternate = {"Version"}) @Expose diff --git a/src/main/java/com/microsoft/graph/core/Constants.java b/src/main/java/com/microsoft/graph/core/Constants.java index 0284cd1bef5..52ba7baae9e 100644 --- a/src/main/java/com/microsoft/graph/core/Constants.java +++ b/src/main/java/com/microsoft/graph/core/Constants.java @@ -30,7 +30,8 @@ private Constants() { public static final String PASSWORD = "password"; public static final String TENANTID = "tenantid"; public static final String CLIENTSECRET = "clientsecret"; - public static final String VERSION_NAME = "2.6.0"; + public static final String VERSION_NAME = "2.7.0"; } + diff --git a/src/main/java/com/microsoft/graph/models/extensions/AadUserConversationMember.java b/src/main/java/com/microsoft/graph/models/extensions/AadUserConversationMember.java index cc596001c2c..3e516c4524b 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/AadUserConversationMember.java +++ b/src/main/java/com/microsoft/graph/models/extensions/AadUserConversationMember.java @@ -34,7 +34,7 @@ public class AadUserConversationMember extends ConversationMember implements IJs /** * The User Id. - * The GUID of the user. + * The guid of the user. */ @SerializedName(value = "userId", alternate = {"UserId"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/AdministrativeUnit.java b/src/main/java/com/microsoft/graph/models/extensions/AdministrativeUnit.java index 08b84d66503..101d6bd9b62 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/AdministrativeUnit.java +++ b/src/main/java/com/microsoft/graph/models/extensions/AdministrativeUnit.java @@ -46,7 +46,7 @@ public class AdministrativeUnit extends DirectoryObject implements IJsonBackedOb /** * The Visibility. - * 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. + * 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. */ @SerializedName(value = "visibility", alternate = {"Visibility"}) @Expose @@ -68,7 +68,7 @@ public class AdministrativeUnit extends DirectoryObject implements IJsonBackedOb /** * The Extensions. - * The collection of open extensions defined for this Administrative Unit. Nullable. + * */ @SerializedName(value = "extensions", alternate = {"Extensions"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Alert.java b/src/main/java/com/microsoft/graph/models/extensions/Alert.java index b1ca3faefc3..5947f1a48be 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Alert.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Alert.java @@ -173,7 +173,7 @@ public class Alert extends Entity implements IJsonBackedObject { /** * The History States. - * A collection of alertHistoryStates comprising an audit log of all updates made to an alert. + * */ @SerializedName(value = "historyStates", alternate = {"HistoryStates"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/AlertHistoryState.java b/src/main/java/com/microsoft/graph/models/extensions/AlertHistoryState.java index 77c234761c3..34b1f4752bc 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/AlertHistoryState.java +++ b/src/main/java/com/microsoft/graph/models/extensions/AlertHistoryState.java @@ -36,7 +36,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The App Id. - * 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. + * */ @SerializedName(value = "appId", alternate = {"AppId"}) @Expose @@ -44,7 +44,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Assigned To. - * UPN of user the alert was assigned to (note: alert.assignedTo only stores the last value/UPN). + * */ @SerializedName(value = "assignedTo", alternate = {"AssignedTo"}) @Expose @@ -52,7 +52,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Comments. - * Comment entered by signed-in user. + * */ @SerializedName(value = "comments", alternate = {"Comments"}) @Expose @@ -60,7 +60,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Feedback. - * Analyst feedback on the alert in this update. Possible values are: unknown, truePositive, falsePositive, benignPositive. + * */ @SerializedName(value = "feedback", alternate = {"Feedback"}) @Expose @@ -68,7 +68,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Status. - * Alert status value (if updated). Possible values are: unknown, newAlert, inProgress, resolved, dismissed. + * */ @SerializedName(value = "status", alternate = {"Status"}) @Expose @@ -76,7 +76,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Updated Date Time. - * 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' + * */ @SerializedName(value = "updatedDateTime", alternate = {"UpdatedDateTime"}) @Expose @@ -84,7 +84,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The User. - * UPN of the signed-in user that updated the alert (taken from the bearer token - if in user/delegated auth mode). + * */ @SerializedName(value = "user", alternate = {"User"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/AndroidManagedAppProtection.java b/src/main/java/com/microsoft/graph/models/extensions/AndroidManagedAppProtection.java index 7bee6c82fb0..20d66fa61d2 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/AndroidManagedAppProtection.java +++ b/src/main/java/com/microsoft/graph/models/extensions/AndroidManagedAppProtection.java @@ -28,7 +28,7 @@ public class AndroidManagedAppProtection extends TargetedManagedAppProtection im /** * The Custom Browser Display Name. - * Friendly name of the preferred custom browser to open weblink on Android. + * Friendly name of the preferred custom browser to open weblink on Android. When this property is configured, ManagedBrowserToOpenLinksRequired should be true. */ @SerializedName(value = "customBrowserDisplayName", alternate = {"CustomBrowserDisplayName"}) @Expose @@ -36,7 +36,7 @@ public class AndroidManagedAppProtection extends TargetedManagedAppProtection im /** * The Custom Browser Package Id. - * Unique identifier of a custom browser to open weblink on Android. + * Unique identifier of the preferred custom browser to open weblink on Android. When this property is configured, ManagedBrowserToOpenLinksRequired should be true. */ @SerializedName(value = "customBrowserPackageId", alternate = {"CustomBrowserPackageId"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Application.java b/src/main/java/com/microsoft/graph/models/extensions/Application.java index f1281a2c4bf..d01a4cbaa59 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Application.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Application.java @@ -62,7 +62,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject { /** * The App Id. - * The unique identifier for the application that is assigned by Azure AD. Not nullable. Read-only. + * The unique identifier for the application that is assigned to an application by Azure AD. Not nullable. Read-only. */ @SerializedName(value = "appId", alternate = {"AppId"}) @Expose @@ -110,7 +110,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject { /** * The Group Membership Claims. - * 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. + * 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. */ @SerializedName(value = "groupMembershipClaims", alternate = {"GroupMembershipClaims"}) @Expose @@ -118,7 +118,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject { /** * The Identifier Uris. - * 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. + * 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. */ @SerializedName(value = "identifierUris", alternate = {"IdentifierUris"}) @Expose @@ -126,7 +126,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject { /** * The Info. - * 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. + * 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. */ @SerializedName(value = "info", alternate = {"Info"}) @Expose @@ -142,7 +142,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject { /** * The Is Fallback Public Client. - * 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. + * 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. */ @SerializedName(value = "isFallbackPublicClient", alternate = {"IsFallbackPublicClient"}) @Expose @@ -206,7 +206,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject { /** * The Publisher Domain. - * The verified publisher domain for the application. Read-only. + * The verified publisher domain for the application. Read-only. For more information, see How to: Configure an application's publisher domain. */ @SerializedName(value = "publisherDomain", alternate = {"PublisherDomain"}) @Expose @@ -222,7 +222,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject { /** * The Sign In Audience. - * 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. + * 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. */ @SerializedName(value = "signInAudience", alternate = {"SignInAudience"}) @Expose @@ -230,7 +230,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject { /** * The Spa. - * Specifies settings for a single-page application, including sign out URLs and redirect URIs for authorization codes and access tokens. + * */ @SerializedName(value = "spa", alternate = {"Spa"}) @Expose @@ -296,7 +296,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject { /** * The Token Lifetime Policies. - * The tokenLifetimePolicies assigned to this application. + * */ public TokenLifetimePolicyCollectionPage tokenLifetimePolicies; diff --git a/src/main/java/com/microsoft/graph/models/extensions/Attachment.java b/src/main/java/com/microsoft/graph/models/extensions/Attachment.java index 2ba1174d886..84270e34f8e 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Attachment.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Attachment.java @@ -49,7 +49,7 @@ public class Attachment extends Entity implements IJsonBackedObject { /** * The Name. - * The display name of the attachment. This does not need to be the actual file name. + * The attachment's file name. */ @SerializedName(value = "name", alternate = {"Name"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/AttendeeAvailability.java b/src/main/java/com/microsoft/graph/models/extensions/AttendeeAvailability.java index f75679c1dbd..499ae946b0a 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/AttendeeAvailability.java +++ b/src/main/java/com/microsoft/graph/models/extensions/AttendeeAvailability.java @@ -44,7 +44,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Availability. - * The availability status of the attendee. Possible values are: free, tentative, busy, oof, workingElsewhere, unknown. + * The availability status of the attendee. The possible values are: free, tentative, busy, oof, workingElsewhere, unknown. */ @SerializedName(value = "availability", alternate = {"Availability"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/AttendeeBase.java b/src/main/java/com/microsoft/graph/models/extensions/AttendeeBase.java index 4ad549a29c0..40c0191876c 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/AttendeeBase.java +++ b/src/main/java/com/microsoft/graph/models/extensions/AttendeeBase.java @@ -26,7 +26,7 @@ public class AttendeeBase extends Recipient implements IJsonBackedObject { /** * The Type. - * The type of attendee. Possible values are: required, optional, resource. Currently if the attendee is a person, findMeetingTimes always considers the person is of the Required type. + * The type of attendee. The possible values are: required, optional, resource. Currently if the attendee is a person, findMeetingTimes always considers the person is of the Required type. */ @SerializedName(value = "type", alternate = {"Type"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/AutomaticRepliesSetting.java b/src/main/java/com/microsoft/graph/models/extensions/AutomaticRepliesSetting.java index 78ffc8b24b6..17a3b883e49 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/AutomaticRepliesSetting.java +++ b/src/main/java/com/microsoft/graph/models/extensions/AutomaticRepliesSetting.java @@ -37,7 +37,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The External Audience. - * The set of audience external to the signed-in user's organization who will receive the ExternalReplyMessage, if Status is AlwaysEnabled or Scheduled. Possible values are: none, contactsOnly, all. + * The set of audience external to the signed-in user's organization who will receive the ExternalReplyMessage, if Status is AlwaysEnabled or Scheduled. The possible values are: none, contactsOnly, all. */ @SerializedName(value = "externalAudience", alternate = {"ExternalAudience"}) @Expose @@ -77,7 +77,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Status. - * Configurations status for automatic replies. Possible values are: disabled, alwaysEnabled, scheduled. + * Configurations status for automatic replies. The possible values are: disabled, alwaysEnabled, scheduled. */ @SerializedName(value = "status", alternate = {"Status"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Calendar.java b/src/main/java/com/microsoft/graph/models/extensions/Calendar.java index 234343fbe33..2ac3d96c998 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Calendar.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Calendar.java @@ -44,7 +44,7 @@ public class Calendar extends Entity implements IJsonBackedObject { /** * The Can Edit. - * True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access, through an Outlook client or the corresponding calendarPermission resource. Read-only. + * True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access. */ @SerializedName(value = "canEdit", alternate = {"CanEdit"}) @Expose @@ -52,7 +52,7 @@ public class Calendar extends Entity implements IJsonBackedObject { /** * The Can Share. - * True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. Read-only. + * True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it. */ @SerializedName(value = "canShare", alternate = {"CanShare"}) @Expose @@ -60,7 +60,7 @@ public class Calendar extends Entity implements IJsonBackedObject { /** * The Can View Private Items. - * True if the user can read calendar items that have been marked private, false otherwise. This property is set through an Outlook client or the corresponding calendarPermission resource. Read-only. + * True if the user can read calendar items that have been marked private, false otherwise. */ @SerializedName(value = "canViewPrivateItems", alternate = {"CanViewPrivateItems"}) @Expose @@ -92,7 +92,7 @@ public class Calendar extends Entity implements IJsonBackedObject { /** * The Hex Color. - * The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty. + * The calendar color, expressed in a hex color code of three hexidecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty. Read-only. */ @SerializedName(value = "hexColor", alternate = {"HexColor"}) @Expose @@ -132,7 +132,7 @@ public class Calendar extends Entity implements IJsonBackedObject { /** * The Owner. - * If set, this represents the user who created or added the calendar. For a calendar that the user created or added, the owner property is set to the user. For a calendar shared with the user, the owner property is set to the person who shared that calendar with the user. Read-only. + * If set, this represents the user who created or added the calendar. For a calendar that the user created or added, the owner property is set to the user. For a calendar shared with the user, the owner property is set to the person who shared that calendar with the user. */ @SerializedName(value = "owner", alternate = {"Owner"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Call.java b/src/main/java/com/microsoft/graph/models/extensions/Call.java index 70779999eae..48947093eb0 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Call.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Call.java @@ -76,7 +76,7 @@ public class Call extends Entity implements IJsonBackedObject { /** * The Chat Info. - * The chat information. Required information for meeting scenarios. + * The chat information. Required information for joining a meeting. */ @SerializedName(value = "chatInfo", alternate = {"ChatInfo"}) @Expose @@ -92,7 +92,7 @@ public class Call extends Entity implements IJsonBackedObject { /** * The Incoming Context. - * The context associated with an incoming call. Read-only. Server generated. + * */ @SerializedName(value = "incomingContext", alternate = {"IncomingContext"}) @Expose @@ -100,7 +100,7 @@ public class Call extends Entity implements IJsonBackedObject { /** * The Media Config. - * The media configuration. Required information for creating peer to peer calls or joining meetings. + * The media configuration. Required. */ @SerializedName(value = "mediaConfig", alternate = {"MediaConfig"}) @Expose @@ -116,7 +116,7 @@ public class Call extends Entity implements IJsonBackedObject { /** * The Meeting Info. - * The meeting information. Required information for meeting scenarios. + * The meeting information that's required for joining a meeting. */ @SerializedName(value = "meetingInfo", alternate = {"MeetingInfo"}) @Expose @@ -196,7 +196,7 @@ public class Call extends Entity implements IJsonBackedObject { /** * The Transcription. - * The transcription information for the call. Read-only. + * */ @SerializedName(value = "transcription", alternate = {"Transcription"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/ChangeNotification.java b/src/main/java/com/microsoft/graph/models/extensions/ChangeNotification.java index cadab57e2c9..5619d5be45d 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/ChangeNotification.java +++ b/src/main/java/com/microsoft/graph/models/extensions/ChangeNotification.java @@ -46,7 +46,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Client State. - * Value of the clientState property sent specified in the subscription request (if any). The maximum length is 255 characters. The client can check whether the change notification came from the service by comparing the values of the clientState property. The value of the clientState property sent with the subscription is compared with the value of the clientState property received with each change notification. Optional. + * Value of the clientState property sent in the subscription request (if any). The maximum length is 255 characters. The client can check whether the change notification came from the service by comparing the values of the clientState property. The value of the clientState property sent with the subscription is compared with the value of the clientState property received with each change notification. Optional. */ @SerializedName(value = "clientState", alternate = {"ClientState"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Channel.java b/src/main/java/com/microsoft/graph/models/extensions/Channel.java index afae0878ad5..542f4c23f0f 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Channel.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Channel.java @@ -65,7 +65,7 @@ public class Channel extends Entity implements IJsonBackedObject { /** * The Membership Type. - * The type of the channel. Can be set during creation and cannot be changed. Default: standard. + * The type of the channel. Can be set during creation and cannot be changed. Possible values are: standard - Channel inherits the list of members of the parent team; private - Channel can have members that are a subset of all the members on the parent team. */ @SerializedName(value = "membershipType", alternate = {"MembershipType"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/ChatInfo.java b/src/main/java/com/microsoft/graph/models/extensions/ChatInfo.java index 197431a3531..366e9124872 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/ChatInfo.java +++ b/src/main/java/com/microsoft/graph/models/extensions/ChatInfo.java @@ -34,7 +34,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Message Id. - * The unique identifier for a message in a Microsoft Teams channel. + * The unique identifier of a message in a Microsoft Teams channel. */ @SerializedName(value = "messageId", alternate = {"MessageId"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/ChatMessage.java b/src/main/java/com/microsoft/graph/models/extensions/ChatMessage.java index 73048034c2c..6d672a1b207 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/ChatMessage.java +++ b/src/main/java/com/microsoft/graph/models/extensions/ChatMessage.java @@ -93,7 +93,7 @@ public class ChatMessage extends Entity implements IJsonBackedObject { /** * The Last Edited Date Time. - * Read only. Timestamp when edits to the chat message were made. Triggers an 'Edited' flag in the Teams UI. If no edits are made the value is null. + * Read only. Timestamp when edits to the chat message were made. Triggers an 'Edited' flag in the Microsoft Teams UI. If no edits are made the value is null. */ @SerializedName(value = "lastEditedDateTime", alternate = {"LastEditedDateTime"}) @Expose @@ -101,7 +101,7 @@ public class ChatMessage extends Entity implements IJsonBackedObject { /** * The Last Modified Date Time. - * Read only. Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed. + * Read only. Timestamp when the chat message is created (initial setting) or edited, including when a reaction is added or removed. */ @SerializedName(value = "lastModifiedDateTime", alternate = {"LastModifiedDateTime"}) @Expose @@ -141,7 +141,7 @@ public class ChatMessage extends Entity implements IJsonBackedObject { /** * The Reactions. - * Reactions for this chat message (for example, Like). + * */ @SerializedName(value = "reactions", alternate = {"Reactions"}) @Expose @@ -149,7 +149,7 @@ public class ChatMessage extends Entity implements IJsonBackedObject { /** * The Reply To Id. - * Read-only. ID of the parent chat message or root chat message of the thread. (Only applies to chat messages in channels, not chats.) + * Read-only. Id of the parent chat message or root chat message of the thread. (Only applies to chat messages in channels not chats) */ @SerializedName(value = "replyToId", alternate = {"ReplyToId"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/ChatMessageAttachment.java b/src/main/java/com/microsoft/graph/models/extensions/ChatMessageAttachment.java index 41a98d2ce2e..795d193de6e 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/ChatMessageAttachment.java +++ b/src/main/java/com/microsoft/graph/models/extensions/ChatMessageAttachment.java @@ -42,7 +42,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Content Type. - * The media type of the content attachment. It can have the following values: reference: Attachment is a link to another file. Populate the contentURL with the link to the object.Any contentTypes supported by the Bot Framework's Attachment objectapplication/vnd.microsoft.card.codesnippet: A code snippet. application/vnd.microsoft.card.announcement: An announcement header. + * The media type of the content attachment. It can have the following values: reference: Attachment is a link to another file. Populate the contentURL with the link to the object.file: Raw file attachment. Populate the contenturl field with the base64 encoding of the file in data: format.image/: Image type with the type of the image specified ex: image/png, image/jpeg, image/gif. Populate the contentUrl field with the base64 encoding of the file in data: format.video/: Video type with the format specified. Ex: video/mp4. Populate the contentUrl field with the base64 encoding of the file in data: format.audio/: Audio type with the format specified. Ex: audio/wmw. Populate the contentUrl field with the base64 encoding of the file in data: format.application/card type: Rich card attachment type with the card type specifying the exact card format to use. Set content with the json format of the card. Supported values for card type include:application/vnd.microsoft.card.adaptive: A rich card that can contain any combination of text, speech, images,,buttons, and input fields. Set the content property to,an AdaptiveCard object.application/vnd.microsoft.card.animation: A rich card that plays animation. Set the content property,to an AnimationCardobject.application/vnd.microsoft.card.audio: A rich card that plays audio files. Set the content property,to an AudioCard object.application/vnd.microsoft.card.video: A rich card that plays videos. Set the content property,to a VideoCard object.application/vnd.microsoft.card.hero: A Hero card. Set the content property to a HeroCard object.application/vnd.microsoft.card.thumbnail: A Thumbnail card. Set the content property to a ThumbnailCard object.application/vnd.microsoft.com.card.receipt: A Receipt card. Set the content property to a ReceiptCard object.application/vnd.microsoft.com.card.signin: A user Sign In card. Set the content property to a SignInCard object. */ @SerializedName(value = "contentType", alternate = {"ContentType"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/ChatMessageReaction.java b/src/main/java/com/microsoft/graph/models/extensions/ChatMessageReaction.java index 4af28f25ef4..ac23c26996a 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/ChatMessageReaction.java +++ b/src/main/java/com/microsoft/graph/models/extensions/ChatMessageReaction.java @@ -35,7 +35,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Created Date Time. - * 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' + * */ @SerializedName(value = "createdDateTime", alternate = {"CreatedDateTime"}) @Expose @@ -43,7 +43,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Reaction Type. - * Supported values are like, angry, sad, laugh, heart, surprised. + * */ @SerializedName(value = "reactionType", alternate = {"ReactionType"}) @Expose @@ -51,7 +51,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The User. - * The user who reacted to the message. + * */ @SerializedName(value = "user", alternate = {"User"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/CloudAppSecuritySessionControl.java b/src/main/java/com/microsoft/graph/models/extensions/CloudAppSecuritySessionControl.java index 54d11a1b0ce..a2048ea4e68 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/CloudAppSecuritySessionControl.java +++ b/src/main/java/com/microsoft/graph/models/extensions/CloudAppSecuritySessionControl.java @@ -26,7 +26,7 @@ public class CloudAppSecuritySessionControl extends ConditionalAccessSessionCont /** * The Cloud App Security Type. - * Possible values are: mcasConfigured, monitorOnly, blockDownloads. Learn more about these values here: https://docs.microsoft.com/cloud-app-security/proxy-deployment-aad#step-1-create-an-azure-ad-conditional-access-test-policy- + * Possible values are: mcasConfigured, monitorOnly, blockDownloads, unknownFutureValue. For more information, see Deploy Conditional Access App Control for featured apps. */ @SerializedName(value = "cloudAppSecurityType", alternate = {"CloudAppSecurityType"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/ConditionalAccessApplications.java b/src/main/java/com/microsoft/graph/models/extensions/ConditionalAccessApplications.java index 2a342602d55..cd89bdf19a5 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/ConditionalAccessApplications.java +++ b/src/main/java/com/microsoft/graph/models/extensions/ConditionalAccessApplications.java @@ -50,7 +50,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Include User Actions. - * User actions to include. Supported values are urn:user:registersecurityinfo and urn:user:registerdevice + * User actions to include. For example, urn:user:registersecurityinfo */ @SerializedName(value = "includeUserActions", alternate = {"IncludeUserActions"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/ConditionalAccessConditionSet.java b/src/main/java/com/microsoft/graph/models/extensions/ConditionalAccessConditionSet.java index b5da5f1bc8f..ce154efe4c7 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/ConditionalAccessConditionSet.java +++ b/src/main/java/com/microsoft/graph/models/extensions/ConditionalAccessConditionSet.java @@ -80,7 +80,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The User Risk Levels. - * User risk levels included in the policy. Possible values are: low, medium, high, none. + * User risk levels included in the policy. Possible values are: low, medium, high. */ @SerializedName(value = "userRiskLevels", alternate = {"UserRiskLevels"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/ConditionalAccessGrantControls.java b/src/main/java/com/microsoft/graph/models/extensions/ConditionalAccessGrantControls.java index ead9fd51c93..5e413ef239f 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/ConditionalAccessGrantControls.java +++ b/src/main/java/com/microsoft/graph/models/extensions/ConditionalAccessGrantControls.java @@ -43,7 +43,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Custom Authentication Factors. - * List of custom controls IDs required by the policy. Learn more about custom controls here: https://docs.microsoft.com/azure/active-directory/conditional-access/controls#custom-controls-preview + * List of custom controls IDs required by the policy. For more information, see Custom controls. */ @SerializedName(value = "customAuthenticationFactors", alternate = {"CustomAuthenticationFactors"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/ConditionalAccessPlatforms.java b/src/main/java/com/microsoft/graph/models/extensions/ConditionalAccessPlatforms.java index f65045e24d1..cfb57d2a880 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/ConditionalAccessPlatforms.java +++ b/src/main/java/com/microsoft/graph/models/extensions/ConditionalAccessPlatforms.java @@ -35,7 +35,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Exclude Platforms. - * Possible values are: android, iOS, windows, windowsPhone, macOS. + * Possible values are: android, iOS, windows, windowsPhone, macOS, unknownFutureValue. */ @SerializedName(value = "excludePlatforms", alternate = {"ExcludePlatforms"}) @Expose @@ -43,7 +43,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Include Platforms. - * Possible values are: android, iOS, windows, windowsPhone, macOS, all. + * Possible values are: android, iOS, windows, windowsPhone, macOS, all, unknownFutureValue. */ @SerializedName(value = "includePlatforms", alternate = {"IncludePlatforms"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/ConditionalAccessPolicy.java b/src/main/java/com/microsoft/graph/models/extensions/ConditionalAccessPolicy.java index 54386894fef..4e59712fce1 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/ConditionalAccessPolicy.java +++ b/src/main/java/com/microsoft/graph/models/extensions/ConditionalAccessPolicy.java @@ -45,7 +45,7 @@ public class ConditionalAccessPolicy extends Entity implements IJsonBackedObject /** * The Description. - * Not used. + * */ @SerializedName(value = "description", alternate = {"Description"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Contact.java b/src/main/java/com/microsoft/graph/models/extensions/Contact.java index c70e54aad76..1d489fa36d6 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Contact.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Contact.java @@ -298,7 +298,7 @@ public class Contact extends OutlookItem implements IJsonBackedObject { /** * The Extensions. - * The collection of open extensions defined for the contact. Nullable. + * The collection of open extensions defined for the contact. Read-only. Nullable. */ @SerializedName(value = "extensions", alternate = {"Extensions"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/DateTimeTimeZone.java b/src/main/java/com/microsoft/graph/models/extensions/DateTimeTimeZone.java index df708ffcf44..b24d237d5b4 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/DateTimeTimeZone.java +++ b/src/main/java/com/microsoft/graph/models/extensions/DateTimeTimeZone.java @@ -34,7 +34,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Date Time. - * A single point of time in a combined date and time representation ({date}T{time}). For example, '2019-04-16T09:00:00'. + * A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). */ @SerializedName(value = "dateTime", alternate = {"DateTime"}) @Expose @@ -42,7 +42,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Time Zone. - * Represents a time zone, for example, 'Pacific Standard Time'. See below for possible values. + * Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. */ @SerializedName(value = "timeZone", alternate = {"TimeZone"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/DelegatedPermissionClassification.java b/src/main/java/com/microsoft/graph/models/extensions/DelegatedPermissionClassification.java index cc73d36aed2..7899aa73379 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/DelegatedPermissionClassification.java +++ b/src/main/java/com/microsoft/graph/models/extensions/DelegatedPermissionClassification.java @@ -34,7 +34,7 @@ public class DelegatedPermissionClassification extends Entity implements IJsonBa /** * The Permission Id. - * The unique identifier (id) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Required on create. Does not support $filter. + * The unique identifier (id) for the delegated permission listed in the oauth2PermissionScopes collection of the servicePrincipal. Required on create. Does not support $filter. */ @SerializedName(value = "permissionId", alternate = {"PermissionId"}) @Expose @@ -42,7 +42,7 @@ public class DelegatedPermissionClassification extends Entity implements IJsonBa /** * The Permission Name. - * The claim value (value) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Does not support $filter. + * The claim value (value) for the delegated permission listed in the oauth2PermissionScopes collection of the servicePrincipal. Does not support $filter. */ @SerializedName(value = "permissionName", alternate = {"PermissionName"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Device.java b/src/main/java/com/microsoft/graph/models/extensions/Device.java index f6b8d49880f..dec09dd4b9f 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Device.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Device.java @@ -29,7 +29,7 @@ public class Device extends DirectoryObject implements IJsonBackedObject { /** * The Account Enabled. - * true if the account is enabled; otherwise, false. default is true. + * true if the account is enabled; otherwise, false. Required. */ @SerializedName(value = "accountEnabled", alternate = {"AccountEnabled"}) @Expose @@ -141,7 +141,7 @@ public class Device extends DirectoryObject implements IJsonBackedObject { /** * The Operating System Version. - * Operating system version of the device. Required. + * The version of the operating system on the device. Required. */ @SerializedName(value = "operatingSystemVersion", alternate = {"OperatingSystemVersion"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/DeviceComplianceActionItem.java b/src/main/java/com/microsoft/graph/models/extensions/DeviceComplianceActionItem.java index 6ad78621640..7d06fe6d284 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/DeviceComplianceActionItem.java +++ b/src/main/java/com/microsoft/graph/models/extensions/DeviceComplianceActionItem.java @@ -26,7 +26,7 @@ public class DeviceComplianceActionItem extends Entity implements IJsonBackedObj /** * The Action Type. - * What action to take. Possible values are: noAction, notification, block, retire, wipe, removeResourceAccessProfiles, pushNotification, remoteLock. + * What action to take. Possible values are: noAction, notification, block, retire, wipe, removeResourceAccessProfiles, pushNotification. */ @SerializedName(value = "actionType", alternate = {"ActionType"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/DeviceCompliancePolicySettingStateSummary.java b/src/main/java/com/microsoft/graph/models/extensions/DeviceCompliancePolicySettingStateSummary.java index fe9558ce005..51fed3fd17c 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/DeviceCompliancePolicySettingStateSummary.java +++ b/src/main/java/com/microsoft/graph/models/extensions/DeviceCompliancePolicySettingStateSummary.java @@ -68,7 +68,7 @@ public class DeviceCompliancePolicySettingStateSummary extends Entity implements /** * The Platform Type. - * Setting platform. Possible values are: android, androidForWork, iOS, macOS, windowsPhone81, windows81AndLater, windows10AndLater, androidWorkProfile, windows10XProfile, all. + * Setting platform. Possible values are: android, iOS, macOS, windowsPhone81, windows81AndLater, windows10AndLater, androidWorkProfile, all. */ @SerializedName(value = "platformType", alternate = {"PlatformType"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/DeviceDetail.java b/src/main/java/com/microsoft/graph/models/extensions/DeviceDetail.java index d754e3671b5..ca975801b41 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/DeviceDetail.java +++ b/src/main/java/com/microsoft/graph/models/extensions/DeviceDetail.java @@ -34,7 +34,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Browser. - * Indicates the browser information of the used for signing-in. + * Indicates the browser information of the used for signing in. */ @SerializedName(value = "browser", alternate = {"Browser"}) @Expose @@ -42,7 +42,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Device Id. - * Refers to the UniqueID of the device used for signing-in. + * Refers to the UniqueID of the device used for signing in. */ @SerializedName(value = "deviceId", alternate = {"DeviceId"}) @Expose @@ -50,7 +50,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Display Name. - * Refers to the name of the device used for signing-in. + * Refers to the name of the device used for signing in. */ @SerializedName(value = "displayName", alternate = {"DisplayName"}) @Expose @@ -58,7 +58,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Is Compliant. - * Indicates whether the device is compliant or not. + * Indicates whether the device is compliant. */ @SerializedName(value = "isCompliant", alternate = {"IsCompliant"}) @Expose @@ -66,7 +66,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Is Managed. - * Indicates if the device is managed or not. + * Indicates whether the device is managed. */ @SerializedName(value = "isManaged", alternate = {"IsManaged"}) @Expose @@ -74,7 +74,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Operating System. - * Indicates the OS name and version used for signing-in. + * Indicates the operating system name and version used for signing in. */ @SerializedName(value = "operatingSystem", alternate = {"OperatingSystem"}) @Expose @@ -82,7 +82,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Trust Type. - * Indicates information on whether the signed-in device is Workplace Joined, AzureAD Joined, Domain Joined. + * Provides information about whether the signed-in device is Workplace Joined, AzureAD Joined, Domain Joined. */ @SerializedName(value = "trustType", alternate = {"TrustType"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/DeviceEnrollmentConfiguration.java b/src/main/java/com/microsoft/graph/models/extensions/DeviceEnrollmentConfiguration.java index 56827f5a7de..a41d704d3de 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/DeviceEnrollmentConfiguration.java +++ b/src/main/java/com/microsoft/graph/models/extensions/DeviceEnrollmentConfiguration.java @@ -27,7 +27,7 @@ public class DeviceEnrollmentConfiguration extends Entity implements IJsonBacked /** * The Created Date Time. - * Created date time in UTC of the device enrollment configuration + * Not yet documented */ @SerializedName(value = "createdDateTime", alternate = {"CreatedDateTime"}) @Expose @@ -35,7 +35,7 @@ public class DeviceEnrollmentConfiguration extends Entity implements IJsonBacked /** * The Description. - * The description of the device enrollment configuration + * Not yet documented */ @SerializedName(value = "description", alternate = {"Description"}) @Expose @@ -43,7 +43,7 @@ public class DeviceEnrollmentConfiguration extends Entity implements IJsonBacked /** * The Display Name. - * The display name of the device enrollment configuration + * Not yet documented */ @SerializedName(value = "displayName", alternate = {"DisplayName"}) @Expose @@ -51,7 +51,7 @@ public class DeviceEnrollmentConfiguration extends Entity implements IJsonBacked /** * The Last Modified Date Time. - * Last modified date time in UTC of the device enrollment configuration + * Not yet documented */ @SerializedName(value = "lastModifiedDateTime", alternate = {"LastModifiedDateTime"}) @Expose @@ -59,7 +59,7 @@ public class DeviceEnrollmentConfiguration extends Entity implements IJsonBacked /** * The Priority. - * Priority is used when a user exists in multiple groups that are assigned enrollment configuration. Users are subject only to the configuration with the lowest priority value. + * Not yet documented */ @SerializedName(value = "priority", alternate = {"Priority"}) @Expose @@ -67,7 +67,7 @@ public class DeviceEnrollmentConfiguration extends Entity implements IJsonBacked /** * The Version. - * The version of the device enrollment configuration + * Not yet documented */ @SerializedName(value = "version", alternate = {"Version"}) @Expose @@ -75,7 +75,7 @@ public class DeviceEnrollmentConfiguration extends Entity implements IJsonBacked /** * The Assignments. - * The list of group assignments for the device configuration profile + * The list of group assignments for the device configuration profile. */ @SerializedName(value = "assignments", alternate = {"Assignments"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/DeviceEnrollmentLimitConfiguration.java b/src/main/java/com/microsoft/graph/models/extensions/DeviceEnrollmentLimitConfiguration.java index 66ae005b2d2..540965c2df4 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/DeviceEnrollmentLimitConfiguration.java +++ b/src/main/java/com/microsoft/graph/models/extensions/DeviceEnrollmentLimitConfiguration.java @@ -25,7 +25,7 @@ public class DeviceEnrollmentLimitConfiguration extends DeviceEnrollmentConfigur /** * The Limit. - * The maximum number of devices that a user can enroll + * Not yet documented */ @SerializedName(value = "limit", alternate = {"Limit"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/DeviceEnrollmentPlatformRestrictionsConfiguration.java b/src/main/java/com/microsoft/graph/models/extensions/DeviceEnrollmentPlatformRestrictionsConfiguration.java index 7d1143ed043..07cf1a68f8f 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/DeviceEnrollmentPlatformRestrictionsConfiguration.java +++ b/src/main/java/com/microsoft/graph/models/extensions/DeviceEnrollmentPlatformRestrictionsConfiguration.java @@ -26,7 +26,7 @@ public class DeviceEnrollmentPlatformRestrictionsConfiguration extends DeviceEnr /** * The Android Restriction. - * Android restrictions based on platform, platform operating system version, and device ownership + * Not yet documented */ @SerializedName(value = "androidRestriction", alternate = {"AndroidRestriction"}) @Expose @@ -34,7 +34,7 @@ public class DeviceEnrollmentPlatformRestrictionsConfiguration extends DeviceEnr /** * The Ios Restriction. - * Ios restrictions based on platform, platform operating system version, and device ownership + * Not yet documented */ @SerializedName(value = "iosRestriction", alternate = {"IosRestriction"}) @Expose @@ -42,7 +42,7 @@ public class DeviceEnrollmentPlatformRestrictionsConfiguration extends DeviceEnr /** * The Mac OSRestriction. - * Mac restrictions based on platform, platform operating system version, and device ownership + * Not yet documented */ @SerializedName(value = "macOSRestriction", alternate = {"MacOSRestriction"}) @Expose @@ -50,7 +50,7 @@ public class DeviceEnrollmentPlatformRestrictionsConfiguration extends DeviceEnr /** * The Windows Mobile Restriction. - * Windows mobile restrictions based on platform, platform operating system version, and device ownership + * Not yet documented */ @SerializedName(value = "windowsMobileRestriction", alternate = {"WindowsMobileRestriction"}) @Expose @@ -58,7 +58,7 @@ public class DeviceEnrollmentPlatformRestrictionsConfiguration extends DeviceEnr /** * The Windows Restriction. - * Windows restrictions based on platform, platform operating system version, and device ownership + * Not yet documented */ @SerializedName(value = "windowsRestriction", alternate = {"WindowsRestriction"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/DeviceEnrollmentWindowsHelloForBusinessConfiguration.java b/src/main/java/com/microsoft/graph/models/extensions/DeviceEnrollmentWindowsHelloForBusinessConfiguration.java index 6a821acae6a..26d19e5f3ea 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/DeviceEnrollmentWindowsHelloForBusinessConfiguration.java +++ b/src/main/java/com/microsoft/graph/models/extensions/DeviceEnrollmentWindowsHelloForBusinessConfiguration.java @@ -27,7 +27,7 @@ public class DeviceEnrollmentWindowsHelloForBusinessConfiguration extends Device /** * The Enhanced Biometrics State. - * Controls the ability to use the anti-spoofing features for facial recognition on devices which support it. If set to disabled, anti-spoofing features are not allowed. If set to Not Configured, the user can choose whether they want to use anti-spoofing. Possible values are: notConfigured, enabled, disabled. + * Not yet documented. Possible values are: notConfigured, enabled, disabled. */ @SerializedName(value = "enhancedBiometricsState", alternate = {"EnhancedBiometricsState"}) @Expose @@ -35,7 +35,7 @@ public class DeviceEnrollmentWindowsHelloForBusinessConfiguration extends Device /** * The Pin Expiration In Days. - * Controls the period of time (in days) that a PIN can be used before the system requires the user to change it. This must be set between 0 and 730, inclusive. If set to 0, the user's PIN will never expire + * Not yet documented */ @SerializedName(value = "pinExpirationInDays", alternate = {"PinExpirationInDays"}) @Expose @@ -43,7 +43,7 @@ public class DeviceEnrollmentWindowsHelloForBusinessConfiguration extends Device /** * The Pin Lowercase Characters Usage. - * Controls the ability to use lowercase letters in the Windows Hello for Business PIN. Allowed permits the use of lowercase letter(s), whereas Required ensures they are present. If set to Not Allowed, lowercase letters will not be permitted. Possible values are: allowed, required, disallowed. + * Not yet documented. Possible values are: allowed, required, disallowed. */ @SerializedName(value = "pinLowercaseCharactersUsage", alternate = {"PinLowercaseCharactersUsage"}) @Expose @@ -51,7 +51,7 @@ public class DeviceEnrollmentWindowsHelloForBusinessConfiguration extends Device /** * The Pin Maximum Length. - * Controls the maximum number of characters allowed for the Windows Hello for Business PIN. This value must be between 4 and 127, inclusive. This value must be greater than or equal to the value set for the minimum PIN. + * Not yet documented */ @SerializedName(value = "pinMaximumLength", alternate = {"PinMaximumLength"}) @Expose @@ -59,7 +59,7 @@ public class DeviceEnrollmentWindowsHelloForBusinessConfiguration extends Device /** * The Pin Minimum Length. - * Controls the minimum number of characters required for the Windows Hello for Business PIN. This value must be between 4 and 127, inclusive, and less than or equal to the value set for the maximum PIN. + * Not yet documented */ @SerializedName(value = "pinMinimumLength", alternate = {"PinMinimumLength"}) @Expose @@ -67,7 +67,7 @@ public class DeviceEnrollmentWindowsHelloForBusinessConfiguration extends Device /** * The Pin Previous Block Count. - * Controls the ability to prevent users from using past PINs. This must be set between 0 and 50, inclusive, and the current PIN of the user is included in that count. If set to 0, previous PINs are not stored. PIN history is not preserved through a PIN reset. + * Not yet documented */ @SerializedName(value = "pinPreviousBlockCount", alternate = {"PinPreviousBlockCount"}) @Expose @@ -75,7 +75,7 @@ public class DeviceEnrollmentWindowsHelloForBusinessConfiguration extends Device /** * The Pin Special Characters Usage. - * Controls the ability to use special characters in the Windows Hello for Business PIN. Allowed permits the use of special character(s), whereas Required ensures they are present. If set to Not Allowed, special character(s) will not be permitted. Possible values are: allowed, required, disallowed. + * Not yet documented. Possible values are: allowed, required, disallowed. */ @SerializedName(value = "pinSpecialCharactersUsage", alternate = {"PinSpecialCharactersUsage"}) @Expose @@ -83,7 +83,7 @@ public class DeviceEnrollmentWindowsHelloForBusinessConfiguration extends Device /** * The Pin Uppercase Characters Usage. - * Controls the ability to use uppercase letters in the Windows Hello for Business PIN. Allowed permits the use of uppercase letter(s), whereas Required ensures they are present. If set to Not Allowed, uppercase letters will not be permitted. Possible values are: allowed, required, disallowed. + * Not yet documented. Possible values are: allowed, required, disallowed. */ @SerializedName(value = "pinUppercaseCharactersUsage", alternate = {"PinUppercaseCharactersUsage"}) @Expose @@ -91,7 +91,7 @@ public class DeviceEnrollmentWindowsHelloForBusinessConfiguration extends Device /** * The Remote Passport Enabled. - * Controls the use of Remote Windows Hello for Business. Remote Windows Hello for Business provides the ability for a portable, registered device to be usable as a companion for desktop authentication. The desktop must be Azure AD joined and the companion device must have a Windows Hello for Business PIN. + * Not yet documented */ @SerializedName(value = "remotePassportEnabled", alternate = {"RemotePassportEnabled"}) @Expose @@ -99,7 +99,7 @@ public class DeviceEnrollmentWindowsHelloForBusinessConfiguration extends Device /** * The Security Device Required. - * Controls whether to require a Trusted Platform Module (TPM) for provisioning Windows Hello for Business. A TPM provides an additional security benefit in that data stored on it cannot be used on other devices. If set to False, all devices can provision Windows Hello for Business even if there is not a usable TPM. + * Not yet documented */ @SerializedName(value = "securityDeviceRequired", alternate = {"SecurityDeviceRequired"}) @Expose @@ -107,7 +107,7 @@ public class DeviceEnrollmentWindowsHelloForBusinessConfiguration extends Device /** * The State. - * Controls whether to allow the device to be configured for Windows Hello for Business. If set to disabled, the user cannot provision Windows Hello for Business except on Azure Active Directory joined mobile phones if otherwise required. If set to Not Configured, Intune will not override client defaults. Possible values are: notConfigured, enabled, disabled. + * Not yet documented. Possible values are: notConfigured, enabled, disabled. */ @SerializedName(value = "state", alternate = {"State"}) @Expose @@ -115,7 +115,7 @@ public class DeviceEnrollmentWindowsHelloForBusinessConfiguration extends Device /** * The Unlock With Biometrics Enabled. - * Controls the use of biometric gestures, such as face and fingerprint, as an alternative to the Windows Hello for Business PIN. If set to False, biometric gestures are not allowed. Users must still configure a PIN as a backup in case of failures. + * Not yet documented */ @SerializedName(value = "unlockWithBiometricsEnabled", alternate = {"UnlockWithBiometricsEnabled"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/DeviceManagement.java b/src/main/java/com/microsoft/graph/models/extensions/DeviceManagement.java index ff0df7e4aea..c8060d841c4 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/DeviceManagement.java +++ b/src/main/java/com/microsoft/graph/models/extensions/DeviceManagement.java @@ -78,7 +78,7 @@ public class DeviceManagement extends Entity implements IJsonBackedObject { /** * The Intune Account Id. - * Intune Account ID for given tenant + * Intune Account Id for given tenant */ @SerializedName(value = "intuneAccountId", alternate = {"IntuneAccountId"}) @Expose @@ -102,7 +102,7 @@ public class DeviceManagement extends Entity implements IJsonBackedObject { /** * The Subscription State. - * Tenant mobile device management subscription state. Possible values are: pending, active, warning, disabled, deleted, blocked, lockedOut. + * Tenant mobile device management subscription state. The possible values are: pending, active, warning, disabled, deleted, blocked, lockedOut. */ @SerializedName(value = "subscriptionState", alternate = {"SubscriptionState"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/DeviceManagementSettings.java b/src/main/java/com/microsoft/graph/models/extensions/DeviceManagementSettings.java index 4350e0caa66..d99d234ea4b 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/DeviceManagementSettings.java +++ b/src/main/java/com/microsoft/graph/models/extensions/DeviceManagementSettings.java @@ -34,7 +34,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Device Compliance Checkin Threshold Days. - * The number of days a device is allowed to go without checking in to remain compliant. + * The number of days a device is allowed to go without checking in to remain compliant. Valid values 0 to 120 */ @SerializedName(value = "deviceComplianceCheckinThresholdDays", alternate = {"DeviceComplianceCheckinThresholdDays"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Diagnostic.java b/src/main/java/com/microsoft/graph/models/extensions/Diagnostic.java index 04aff607130..cdb6a8b97c3 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Diagnostic.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Diagnostic.java @@ -34,7 +34,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Message. - * The message describing the condition that triggered the error or warning. + * */ @SerializedName(value = "message", alternate = {"Message"}) @Expose @@ -42,7 +42,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Url. - * The link to the documentation for this issue. + * */ @SerializedName(value = "url", alternate = {"Url"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/DirectoryAudit.java b/src/main/java/com/microsoft/graph/models/extensions/DirectoryAudit.java index ff04b6ecbed..6092adc56f5 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/DirectoryAudit.java +++ b/src/main/java/com/microsoft/graph/models/extensions/DirectoryAudit.java @@ -37,7 +37,7 @@ public class DirectoryAudit extends Entity implements IJsonBackedObject { /** * The Activity Display Name. - * Indicates the activity name or the operation name (E.g. 'Create User', 'Add member to group'). For a list of activities logged, refer to Azure Ad activity list. + * Indicates the activity name or the operation name (examples: 'Create User' and 'Add member to group'). For full list, see Azure AD activity list. */ @SerializedName(value = "activityDisplayName", alternate = {"ActivityDisplayName"}) @Expose @@ -101,7 +101,7 @@ public class DirectoryAudit extends Entity implements IJsonBackedObject { /** * The Result Reason. - * Indicates the reason for failure if the result is 'Failure' or 'timeout'. + * Describes cause of 'failure' or 'timeout' results. */ @SerializedName(value = "resultReason", alternate = {"ResultReason"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/DirectoryRole.java b/src/main/java/com/microsoft/graph/models/extensions/DirectoryRole.java index 47463c3695a..e9e0ca25a4a 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/DirectoryRole.java +++ b/src/main/java/com/microsoft/graph/models/extensions/DirectoryRole.java @@ -58,7 +58,7 @@ public class DirectoryRole extends DirectoryObject implements IJsonBackedObject /** * The Scoped Members. - * Members of this directory role that are scoped to administrative units. Read-only. Nullable. + * */ @SerializedName(value = "scopedMembers", alternate = {"ScopedMembers"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Domain.java b/src/main/java/com/microsoft/graph/models/extensions/Domain.java index e7e1e7f9c67..60689f9bd95 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Domain.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Domain.java @@ -30,7 +30,7 @@ public class Domain extends Entity implements IJsonBackedObject { /** * The Authentication Type. - * Indicates the configured authentication type for the domain. The value is either Managed or Federated. Managed indicates a cloud managed domain where Azure AD performs user authentication.Federated indicates authentication is federated with an identity provider such as the tenant's on-premises Active Directory via Active Directory Federation Services. This propert is read-only and is not nullable. + * Indicates the configured authentication type for the domain. The value is either Managed or Federated. Managed indicates a cloud managed domain where Azure AD performs user authentication.Federated indicates authentication is federated with an identity provider such as the tenant's on-premises Active Directory via Active Directory Federation Services. This property is read-only and is not nullable. */ @SerializedName(value = "authenticationType", alternate = {"AuthenticationType"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/DriveItem.java b/src/main/java/com/microsoft/graph/models/extensions/DriveItem.java index 5e34e438c5c..bd3ea088de0 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/DriveItem.java +++ b/src/main/java/com/microsoft/graph/models/extensions/DriveItem.java @@ -127,7 +127,7 @@ public class DriveItem extends BaseItem implements IJsonBackedObject { /** * The Pending Operations. - * If present, indicates that indicates that one or more operations that may affect the state of the driveItem are pending completion. Read-only. + * If present, indicates that one or more operations that might affect the state of the driveItem are pending completion. Read-only. */ @SerializedName(value = "pendingOperations", alternate = {"PendingOperations"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/EditionUpgradeConfiguration.java b/src/main/java/com/microsoft/graph/models/extensions/EditionUpgradeConfiguration.java index 71008df6a8a..0db7a43e38f 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/EditionUpgradeConfiguration.java +++ b/src/main/java/com/microsoft/graph/models/extensions/EditionUpgradeConfiguration.java @@ -35,7 +35,7 @@ public class EditionUpgradeConfiguration extends DeviceConfiguration implements /** * The License Type. - * Edition Upgrade License Type. Possible values are: productKey, licenseFile, notConfigured. + * Edition Upgrade License Type. Possible values are: productKey, licenseFile. */ @SerializedName(value = "licenseType", alternate = {"LicenseType"}) @Expose @@ -51,7 +51,7 @@ public class EditionUpgradeConfiguration extends DeviceConfiguration implements /** * The Target Edition. - * Edition Upgrade Target Edition. Possible values are: windows10Enterprise, windows10EnterpriseN, windows10Education, windows10EducationN, windows10MobileEnterprise, windows10HolographicEnterprise, windows10Professional, windows10ProfessionalN, windows10ProfessionalEducation, windows10ProfessionalEducationN, windows10ProfessionalWorkstation, windows10ProfessionalWorkstationN, notConfigured, windows10Home, windows10HomeChina, windows10HomeN, windows10HomeSingleLanguage, windows10Mobile, windows10IoTCore, windows10IoTCoreCommercial. + * Edition Upgrade Target Edition. Possible values are: windows10Enterprise, windows10EnterpriseN, windows10Education, windows10EducationN, windows10MobileEnterprise, windows10HolographicEnterprise, windows10Professional, windows10ProfessionalN, windows10ProfessionalEducation, windows10ProfessionalEducationN, windows10ProfessionalWorkstation, windows10ProfessionalWorkstationN. */ @SerializedName(value = "targetEdition", alternate = {"TargetEdition"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/EducationClass.java b/src/main/java/com/microsoft/graph/models/extensions/EducationClass.java index 757b55b2146..de944616a54 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/EducationClass.java +++ b/src/main/java/com/microsoft/graph/models/extensions/EducationClass.java @@ -81,7 +81,7 @@ public class EducationClass extends Entity implements IJsonBackedObject { /** * The External Source. - * The type of external source this resource was generated from (automatically determined from externalSourceDetail). Possible values are: sis, lms, or manual. + * How this class was created. The possible values are: sis, manual, unknownFutureValue. */ @SerializedName(value = "externalSource", alternate = {"ExternalSource"}) @Expose @@ -97,7 +97,7 @@ public class EducationClass extends Entity implements IJsonBackedObject { /** * The Term. - * Term for the class. + * Term for this class. */ @SerializedName(value = "term", alternate = {"Term"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/EducationOrganization.java b/src/main/java/com/microsoft/graph/models/extensions/EducationOrganization.java index 56c210c7c39..acff827ab99 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/EducationOrganization.java +++ b/src/main/java/com/microsoft/graph/models/extensions/EducationOrganization.java @@ -42,7 +42,7 @@ public class EducationOrganization extends Entity implements IJsonBackedObject { /** * The External Source. - * Where this user was created from. Possible values are: sis, lms, or manual. + * Source where this organization was created from. The possible values are: sis, manual, unknownFutureValue. */ @SerializedName(value = "externalSource", alternate = {"ExternalSource"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/EducationStudent.java b/src/main/java/com/microsoft/graph/models/extensions/EducationStudent.java index 4747d29d4ff..222310aa530 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/EducationStudent.java +++ b/src/main/java/com/microsoft/graph/models/extensions/EducationStudent.java @@ -51,7 +51,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Gender. - * Possible values are: female, male, other. + * The possible values are: female, male, other, unknownFutureValue. */ @SerializedName(value = "gender", alternate = {"Gender"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/EducationTeacher.java b/src/main/java/com/microsoft/graph/models/extensions/EducationTeacher.java index 07ea33063e8..9d5cf0be295 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/EducationTeacher.java +++ b/src/main/java/com/microsoft/graph/models/extensions/EducationTeacher.java @@ -34,7 +34,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The External Id. - * Id of the Teacher in external source system. + * ID of the teacher in the source system. */ @SerializedName(value = "externalId", alternate = {"ExternalId"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/EducationUser.java b/src/main/java/com/microsoft/graph/models/extensions/EducationUser.java index 68b9921d543..cdf3226d3ef 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/EducationUser.java +++ b/src/main/java/com/microsoft/graph/models/extensions/EducationUser.java @@ -40,7 +40,7 @@ public class EducationUser extends Entity implements IJsonBackedObject { /** * The Account Enabled. - * True if the account is enabled; otherwise, false. This property is required when a user is created. Supports /$filter. + * True if the account is enabled; otherwise, false. This property is required when a user is created. Supports $filter. */ @SerializedName(value = "accountEnabled", alternate = {"AccountEnabled"}) @Expose @@ -80,7 +80,7 @@ public class EducationUser extends Entity implements IJsonBackedObject { /** * The Department. - * The name for the department in which the user works. Supports /$filter. + * The name for the department in which the user works. Supports $filter. */ @SerializedName(value = "department", alternate = {"Department"}) @Expose @@ -88,7 +88,7 @@ public class EducationUser extends Entity implements IJsonBackedObject { /** * The Display Name. - * The name displayed in the address book for the user. Supports $filter and $orderby. + * The name displayed in the address book for the user. This is usually the combination of the user's first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Supports $filter and $orderby. */ @SerializedName(value = "displayName", alternate = {"DisplayName"}) @Expose @@ -96,7 +96,7 @@ public class EducationUser extends Entity implements IJsonBackedObject { /** * The External Source. - * The type of external source this resource was generated from (automatically determined from externalSourceDetail). Possible values are: sis, lms, or manual. + * Where this user was created from. The possible values are: sis, manual. */ @SerializedName(value = "externalSource", alternate = {"ExternalSource"}) @Expose @@ -104,7 +104,7 @@ public class EducationUser extends Entity implements IJsonBackedObject { /** * The Given Name. - * The given name (first name) of the user. Supports /$filter. + * The given name (first name) of the user. Supports $filter. */ @SerializedName(value = "givenName", alternate = {"GivenName"}) @Expose @@ -112,7 +112,7 @@ public class EducationUser extends Entity implements IJsonBackedObject { /** * The Mail. - * The SMTP address for the user; for example, 'jeff@contoso.onmicrosoft.com'. Read-Only. Supports /$filter. + * The SMTP address for the user; for example, 'jeff@contoso.onmicrosoft.com'. Read-Only. Supports $filter. */ @SerializedName(value = "mail", alternate = {"Mail"}) @Expose @@ -120,7 +120,7 @@ public class EducationUser extends Entity implements IJsonBackedObject { /** * The Mailing Address. - * Mail address of user. Note: type and postOfficeBox are not supported for educationUser resources. + * Mail address of user. */ @SerializedName(value = "mailingAddress", alternate = {"MailingAddress"}) @Expose @@ -128,7 +128,7 @@ public class EducationUser extends Entity implements IJsonBackedObject { /** * The Mail Nickname. - * The mail alias for the user. This property must be specified when a user is created. Supports /$filter. + * The mail alias for the user. This property must be specified when a user is created. Supports $filter. */ @SerializedName(value = "mailNickname", alternate = {"MailNickname"}) @Expose @@ -160,7 +160,7 @@ public class EducationUser extends Entity implements IJsonBackedObject { /** * The Password Policies. - * Specifies password policies for the user. See standard [user] resource for additional details. + * Specifies password policies for the user. This value is an enumeration with one possible value being 'DisableStrongPassword', which allows weaker passwords than the default policy to be specified. 'DisablePasswordExpiration' can also be specified. The two can be specified together; for example: 'DisablePasswordExpiration, DisableStrongPassword'. */ @SerializedName(value = "passwordPolicies", alternate = {"PasswordPolicies"}) @Expose @@ -168,7 +168,7 @@ public class EducationUser extends Entity implements IJsonBackedObject { /** * The Password Profile. - * Specifies the password profile for the user. The profile contains the user's password. This property is required when a user is created. See standard [user] resource for additional details. + * Specifies the password profile for the user. The profile contains the user's password. This property is required when a user is created. The password in the profile must satisfy minimum requirements as specified by the passwordPolicies property. By default, a strong password is required. */ @SerializedName(value = "passwordProfile", alternate = {"PasswordProfile"}) @Expose @@ -184,7 +184,7 @@ public class EducationUser extends Entity implements IJsonBackedObject { /** * The Primary Role. - * Default role for a user. The user's role might be different in an individual class. Possible values are: student, teacher, faculty. Supports /$filter. + * Default role for a user. The user's role might be different in an individual class. The possible values are: student, teacher. Supports $filter. */ @SerializedName(value = "primaryRole", alternate = {"PrimaryRole"}) @Expose @@ -208,7 +208,7 @@ public class EducationUser extends Entity implements IJsonBackedObject { /** * The Residence Address. - * Address where user lives. Note: type and postOfficeBox are not supported for educationUser resources. + * Address where user lives. */ @SerializedName(value = "residenceAddress", alternate = {"ResidenceAddress"}) @Expose @@ -232,7 +232,7 @@ public class EducationUser extends Entity implements IJsonBackedObject { /** * The Surname. - * The user's surname (family name or last name). Supports /$filter. + * The user's surname (family name or last name). Supports $filter. */ @SerializedName(value = "surname", alternate = {"Surname"}) @Expose @@ -248,7 +248,7 @@ public class EducationUser extends Entity implements IJsonBackedObject { /** * The Usage Location. - * A two-letter country code ([ISO 3166 Alpha-2]). Required for users who will be assigned licenses. Not nullable. Supports /$filter. + * A two-letter country code (ISO standard 3166). Required for users who will be assigned licenses due to a legal requirement to check for availability of services in countries or regions. Examples include: 'US', 'JP', and 'GB'. Not nullable. Supports $filter. */ @SerializedName(value = "usageLocation", alternate = {"UsageLocation"}) @Expose @@ -256,7 +256,7 @@ public class EducationUser extends Entity implements IJsonBackedObject { /** * The User Principal Name. - * The user principal name (UPN) for the user. Supports $filter and $orderby. See standard [user] resource for additional details. + * The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user's email name. The general format is alias@domain, where domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization. Supports $filter and $orderby. */ @SerializedName(value = "userPrincipalName", alternate = {"UserPrincipalName"}) @Expose @@ -264,7 +264,7 @@ public class EducationUser extends Entity implements IJsonBackedObject { /** * The User Type. - * A string value that can be used to classify user types in your directory, such as 'Member' and 'Guest'. Supports /$filter. + * A string value that can be used to classify user types in your directory, such as 'Member' and 'Guest'. Supports $filter. */ @SerializedName(value = "userType", alternate = {"UserType"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/EmailAddress.java b/src/main/java/com/microsoft/graph/models/extensions/EmailAddress.java index 1ed636e0b9b..35ee2c708ff 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/EmailAddress.java +++ b/src/main/java/com/microsoft/graph/models/extensions/EmailAddress.java @@ -34,7 +34,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Address. - * The email address of an entity instance. + * The email address of the person or entity. */ @SerializedName(value = "address", alternate = {"Address"}) @Expose @@ -42,7 +42,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Name. - * The display name of an entity instance. + * The display name of the person or entity. */ @SerializedName(value = "name", alternate = {"Name"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Endpoint.java b/src/main/java/com/microsoft/graph/models/extensions/Endpoint.java index fc7761c9707..faeb15492de 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Endpoint.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Endpoint.java @@ -25,7 +25,7 @@ public class Endpoint extends DirectoryObject implements IJsonBackedObject { /** * The Capability. - * Describes the capability that is associated with this resource. (e.g. Messages, Conversations, etc.) Not nullable. Read-only. + * */ @SerializedName(value = "capability", alternate = {"Capability"}) @Expose @@ -33,7 +33,7 @@ public class Endpoint extends DirectoryObject implements IJsonBackedObject { /** * The Provider Id. - * Application id of the publishing underlying service. Not nullable. Read-only. + * */ @SerializedName(value = "providerId", alternate = {"ProviderId"}) @Expose @@ -41,7 +41,7 @@ public class Endpoint extends DirectoryObject implements IJsonBackedObject { /** * The Provider Name. - * Name of the publishing underlying service. Read-only. + * */ @SerializedName(value = "providerName", alternate = {"ProviderName"}) @Expose @@ -49,7 +49,7 @@ public class Endpoint extends DirectoryObject implements IJsonBackedObject { /** * The Provider Resource Id. - * For Microsoft 365 groups, this is set to a well-known name for the resource (e.g. Yammer.FeedURL etc.). Not nullable. Read-only. + * */ @SerializedName(value = "providerResourceId", alternate = {"ProviderResourceId"}) @Expose @@ -57,7 +57,7 @@ public class Endpoint extends DirectoryObject implements IJsonBackedObject { /** * The Uri. - * URL of the published resource. Not nullable. Read-only. + * */ @SerializedName(value = "uri", alternate = {"Uri"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/EnrollmentConfigurationAssignment.java b/src/main/java/com/microsoft/graph/models/extensions/EnrollmentConfigurationAssignment.java index e6b0cf85cb7..24c1e8cdcf7 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/EnrollmentConfigurationAssignment.java +++ b/src/main/java/com/microsoft/graph/models/extensions/EnrollmentConfigurationAssignment.java @@ -26,7 +26,7 @@ public class EnrollmentConfigurationAssignment extends Entity implements IJsonBa /** * The Target. - * Represents an assignment to managed devices in the tenant + * Not yet documented */ @SerializedName(value = "target", alternate = {"Target"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/EnrollmentTroubleshootingEvent.java b/src/main/java/com/microsoft/graph/models/extensions/EnrollmentTroubleshootingEvent.java index 563d8568b08..c15b217b5eb 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/EnrollmentTroubleshootingEvent.java +++ b/src/main/java/com/microsoft/graph/models/extensions/EnrollmentTroubleshootingEvent.java @@ -35,7 +35,7 @@ public class EnrollmentTroubleshootingEvent extends DeviceManagementTroubleshoot /** * The Enrollment Type. - * Type of the enrollment. Possible values are: unknown, userEnrollment, deviceEnrollmentManager, appleBulkWithUser, appleBulkWithoutUser, windowsAzureADJoin, windowsBulkUserless, windowsAutoEnrollment, windowsBulkAzureDomainJoin, windowsCoManagement, appleUserEnrollment, appleUserEnrollmentWithServiceAccount, azureAdJoinUsingAzureVmExtension, androidEnterpriseDedicatedDevice, androidEnterpriseFullyManaged, androidEnterpriseCorporateWorkProfile. + * Type of the enrollment. Possible values are: unknown, userEnrollment, deviceEnrollmentManager, appleBulkWithUser, appleBulkWithoutUser, windowsAzureADJoin, windowsBulkUserless, windowsAutoEnrollment, windowsBulkAzureDomainJoin, windowsCoManagement. */ @SerializedName(value = "enrollmentType", alternate = {"EnrollmentType"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Event.java b/src/main/java/com/microsoft/graph/models/extensions/Event.java index d28cd6abef7..b02f17c4fe0 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Event.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Event.java @@ -337,7 +337,7 @@ public class Event extends OutlookItem implements IJsonBackedObject { /** * The Attachments. - * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. + * The collection of fileAttachment and itemAttachment attachments for the event. Navigation property. Read-only. Nullable. */ @SerializedName(value = "attachments", alternate = {"Attachments"}) @Expose @@ -353,7 +353,7 @@ public class Event extends OutlookItem implements IJsonBackedObject { /** * The Extensions. - * The collection of open extensions defined for the event. Nullable. + * The collection of open extensions defined for the event. Read-only. Nullable. */ @SerializedName(value = "extensions", alternate = {"Extensions"}) @Expose @@ -361,7 +361,7 @@ public class Event extends OutlookItem implements IJsonBackedObject { /** * The Instances. - * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable. + * The instances of the event. Navigation property. Read-only. Nullable. */ @SerializedName(value = "instances", alternate = {"Instances"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/EventMessage.java b/src/main/java/com/microsoft/graph/models/extensions/EventMessage.java index e53dfa0ab5a..e1a9252489a 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/EventMessage.java +++ b/src/main/java/com/microsoft/graph/models/extensions/EventMessage.java @@ -31,7 +31,7 @@ public class EventMessage extends Message implements IJsonBackedObject { /** * The End Date Time. - * The end time of the requested meeting. + * */ @SerializedName(value = "endDateTime", alternate = {"EndDateTime"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/ExtensionSchemaProperty.java b/src/main/java/com/microsoft/graph/models/extensions/ExtensionSchemaProperty.java index c9fdea5c011..35bca69c2ee 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/ExtensionSchemaProperty.java +++ b/src/main/java/com/microsoft/graph/models/extensions/ExtensionSchemaProperty.java @@ -34,7 +34,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Name. - * The name of the strongly typed property defined as part of a schema extension. + * The name of the strongly-typed property defined as part of a schema extension. */ @SerializedName(value = "name", alternate = {"Name"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/FileEncryptionInfo.java b/src/main/java/com/microsoft/graph/models/extensions/FileEncryptionInfo.java index 90180a58ece..0806000e2d8 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/FileEncryptionInfo.java +++ b/src/main/java/com/microsoft/graph/models/extensions/FileEncryptionInfo.java @@ -82,7 +82,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Profile Identifier. - * The the profile identifier. + * The profile identifier. */ @SerializedName(value = "profileIdentifier", alternate = {"ProfileIdentifier"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/GeoCoordinates.java b/src/main/java/com/microsoft/graph/models/extensions/GeoCoordinates.java index ce1ca4816d6..c44a202464b 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/GeoCoordinates.java +++ b/src/main/java/com/microsoft/graph/models/extensions/GeoCoordinates.java @@ -42,7 +42,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Latitude. - * Optional. The latitude, in decimal, for the item. Writable on OneDrive Personal. + * Optional. The latitude, in decimal, for the item. Read-only. */ @SerializedName(value = "latitude", alternate = {"Latitude"}) @Expose @@ -50,7 +50,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Longitude. - * Optional. The longitude, in decimal, for the item. Writable on OneDrive Personal. + * Optional. The longitude, in decimal, for the item. Read-only. */ @SerializedName(value = "longitude", alternate = {"Longitude"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Group.java b/src/main/java/com/microsoft/graph/models/extensions/Group.java index f3c9b60142e..482a573a940 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Group.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Group.java @@ -56,7 +56,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject { /** * The Assigned Labels. - * The list of sensitivity label pairs (label ID, label name) associated with a Microsoft 365 group. Returned only on $select. + * The list of sensitivity label pairs (label ID, label name) associated with an Microsoft 365 group. Returned only on $select. Read-only. */ @SerializedName(value = "assignedLabels", alternate = {"AssignedLabels"}) @Expose @@ -120,7 +120,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject { /** * The Has Members With License Errors. - * Indicates whether there are members in this group that have license errors from its group-based license assignment. This property is never returned on a GET operation. You can use it as a $filter argument to get groups that have members with license errors (that is, filter for this property being true). + * Indicates whether there are members in this group that have license errors from its group-based license assignment. This property is never returned on a GET operation. You can use it as a $filter argument to get groups that have members with license errors (that is, filter for this property being true). See an example. */ @SerializedName(value = "hasMembersWithLicenseErrors", alternate = {"HasMembersWithLicenseErrors"}) @Expose @@ -128,7 +128,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject { /** * The License Processing State. - * Indicates status of the group license assignment to all members of the group. Possible values: QueuedForProcessing, ProcessingInProgress, and ProcessingComplete. Returned only on $select. Read-only. + * Indicates status of the group license assignment to all members of the group. Default value is false. Read-only. Possible values: QueuedForProcessing, ProcessingInProgress, and ProcessingComplete.Returned only on $select. Read-only. */ @SerializedName(value = "licenseProcessingState", alternate = {"LicenseProcessingState"}) @Expose @@ -152,7 +152,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject { /** * The Mail Nickname. - * The mail alias for the group, unique in the organization. This property must be specified when a group is created. These characters cannot be used in the mailNickName: @()/[]';:.<>,SPACE. Returned by default. Supports $filter. + * */ @SerializedName(value = "mailNickname", alternate = {"MailNickname"}) @Expose @@ -176,7 +176,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject { /** * The On Premises Domain Name. - * Contains the on-premises domain FQDN, also called dnsDomainName synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect.Returned by default. Read-only. + * */ @SerializedName(value = "onPremisesDomainName", alternate = {"OnPremisesDomainName"}) @Expose @@ -184,7 +184,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject { /** * The On Premises Last Sync Date Time. - * Indicates the last time at which the group was synced with the on-premises directory.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'. Returned by default. Read-only. Supports $filter. + * */ @SerializedName(value = "onPremisesLastSyncDateTime", alternate = {"OnPremisesLastSyncDateTime"}) @Expose @@ -192,7 +192,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject { /** * The On Premises Net Bios Name. - * Contains the on-premises netBios name synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect.Returned by default. Read-only. + * */ @SerializedName(value = "onPremisesNetBiosName", alternate = {"OnPremisesNetBiosName"}) @Expose @@ -200,7 +200,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject { /** * The On Premises Provisioning Errors. - * Errors when using Microsoft synchronization product during provisioning. Returned by default. + * */ @SerializedName(value = "onPremisesProvisioningErrors", alternate = {"OnPremisesProvisioningErrors"}) @Expose @@ -240,7 +240,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject { /** * The Preferred Language. - * The preferred language for a Microsoft 365 group. Should follow ISO 639-1 Code; for example 'en-US'. Returned by default. + * The preferred language for an Microsoft 365 group. Should follow ISO 639-1 Code; for example 'en-US'. Returned by default. */ @SerializedName(value = "preferredLanguage", alternate = {"PreferredLanguage"}) @Expose @@ -248,7 +248,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject { /** * The Proxy Addresses. - * Email addresses for the group that direct to the same group mailbox. For example: ['SMTP: bob@contoso.com', 'smtp: bob@sales.contoso.com']. The any operator is required for filter expressions on multi-valued properties. Returned by default. Read-only. Not nullable. Supports $filter. + * Email addresses for the group that direct to the same group mailbox. For example: ['SMTP: bob@contoso.com', 'smtp: bob@sales.contoso.com']. The any operator is required to filter expressions on multi-valued properties. Returned by default. Read-only. Not nullable. Supports $filter. */ @SerializedName(value = "proxyAddresses", alternate = {"ProxyAddresses"}) @Expose @@ -280,7 +280,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject { /** * The Theme. - * Specifies a Microsoft 365 group's color theme. Possible values are Teal, Purple, Green, Blue, Pink, Orange or Red. Returned by default. + * Specifies an Microsoft 365 group's color theme. Possible values are Teal, Purple, Green, Blue, Pink, Orange or Red. Returned by default. */ @SerializedName(value = "theme", alternate = {"Theme"}) @Expose @@ -312,7 +312,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject { /** * The Hide From Address Lists. - * True if the group is not displayed in certain parts of the Outlook user interface: in the Address Book, in address lists for selecting message recipients, and in the Browse Groups dialog for searching groups; false otherwise. Default value is false. Returned only on $select. + * True if the group is not displayed in certain parts of the Outlook UI: the Address Book, address lists for selecting message recipients, and the Browse Groups dialog for searching groups; otherwise, false. Default value is false. Returned only on $select. */ @SerializedName(value = "hideFromAddressLists", alternate = {"HideFromAddressLists"}) @Expose @@ -320,7 +320,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject { /** * The Hide From Outlook Clients. - * True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web, false otherwise. Default value is false. Returned only on $select. + * True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web; otherwise, false. Default value is false. Returned only on $select. */ @SerializedName(value = "hideFromOutlookClients", alternate = {"HideFromOutlookClients"}) @Expose @@ -336,7 +336,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject { /** * The Unseen Count. - * Count of conversations that have received new posts since the signed-in user last visited the group. This property is the same as unseenConversationsCount.Returned only on $select. + * Count of conversations that have received new posts since the signed-in user last visited the group. Returned only on $select. */ @SerializedName(value = "unseenCount", alternate = {"UnseenCount"}) @Expose @@ -360,7 +360,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject { /** * The Created On Behalf Of. - * The user (or application) that created the group. Note: This is not set if the user is an administrator. Read-only. + * The user (or application) that created the group. NOTE: This is not set if the user is an administrator. Read-only. */ @SerializedName(value = "createdOnBehalfOf", alternate = {"CreatedOnBehalfOf"}) @Expose @@ -368,13 +368,13 @@ public class Group extends DirectoryObject implements IJsonBackedObject { /** * The Member Of. - * Groups and administrative units that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable. + * Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable. */ public DirectoryObjectCollectionPage memberOf; /** * The Members. - * Users, contacts, and groups that are members of this group. HTTP Methods: GET (supported for all groups), POST (supported for security groups and mail-enabled security groups), DELETE (supported only for security groups) Read-only. Nullable. + * Users and groups that are members of this group. HTTP Methods: GET (supported for all groups), POST (supported for Microsoft 365 groups, security groups and mail-enabled security groups), DELETE (supported for Microsoft 365 groups and security groups). Nullable. */ public DirectoryObjectCollectionPage members; @@ -386,7 +386,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject { /** * The Owners. - * The owners of the group. The owners are a set of non-admin users who are allowed to modify this object. HTTP Methods: GET (supported for all groups), POST (supported for security groups and mail-enabled security groups), DELETE (supported only for security groups) Read-only. Nullable. + * The owners of the group. The owners are a set of non-admin users who are allowed to modify this object. Limited to 100 owners. HTTP Methods: GET (supported for all groups), POST (supported for Microsoft 365 groups, security groups and mail-enabled security groups), DELETE (supported for Microsoft 365 groups and security groups). Nullable. */ public DirectoryObjectCollectionPage owners; @@ -400,7 +400,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject { /** * The Settings. - * Settings that can govern this group's behavior, like whether members can invite guest users to the group. Nullable. + * Read-only. Nullable. */ @SerializedName(value = "settings", alternate = {"Settings"}) @Expose @@ -450,7 +450,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject { /** * The Events. - * The group's events. + * The group's calendar events. */ @SerializedName(value = "events", alternate = {"Events"}) @Expose @@ -458,7 +458,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject { /** * The Photo. - * The group's profile photo. + * The group's profile photo */ @SerializedName(value = "photo", alternate = {"Photo"}) @Expose @@ -528,7 +528,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject { /** * The Planner. - * Selective Planner services available to the group. Read-only. Nullable. + * Entry-point to Planner resource that might exist for a Unified Group. */ @SerializedName(value = "planner", alternate = {"Planner"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Hashes.java b/src/main/java/com/microsoft/graph/models/extensions/Hashes.java index 99bb40d791d..c1eba020769 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Hashes.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Hashes.java @@ -34,7 +34,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Crc32Hash. - * The CRC32 value of the file (if available). Read-only. + * The CRC32 value of the file in little endian (if available). Read-only. */ @SerializedName(value = "crc32Hash", alternate = {"Crc32Hash"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/IPv6Range.java b/src/main/java/com/microsoft/graph/models/extensions/IPv6Range.java index a640fed2d0d..8a362aff951 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/IPv6Range.java +++ b/src/main/java/com/microsoft/graph/models/extensions/IPv6Range.java @@ -25,7 +25,7 @@ public class IPv6Range extends IpRange implements IJsonBackedObject { /** * The Lower Address. - * Lower address. + * Lower address */ @SerializedName(value = "lowerAddress", alternate = {"LowerAddress"}) @Expose @@ -33,7 +33,7 @@ public class IPv6Range extends IpRange implements IJsonBackedObject { /** * The Upper Address. - * Upper address. + * Upper address */ @SerializedName(value = "upperAddress", alternate = {"UpperAddress"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/IdentityProvider.java b/src/main/java/com/microsoft/graph/models/extensions/IdentityProvider.java index 67920a6f998..b2fa03da222 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/IdentityProvider.java +++ b/src/main/java/com/microsoft/graph/models/extensions/IdentityProvider.java @@ -25,7 +25,7 @@ public class IdentityProvider extends Entity implements IJsonBackedObject { /** * The Client Id. - * The client ID for the application obtained when registering the application with the identity provider. This is a required field. + * */ @SerializedName(value = "clientId", alternate = {"ClientId"}) @Expose @@ -33,7 +33,7 @@ public class IdentityProvider extends Entity implements IJsonBackedObject { /** * The Client Secret. - * The client secret for the application obtained when registering the application with the identity provider. This is write-only. A read operation will return '****'. This is a required field. + * */ @SerializedName(value = "clientSecret", alternate = {"ClientSecret"}) @Expose @@ -41,7 +41,7 @@ public class IdentityProvider extends Entity implements IJsonBackedObject { /** * The Name. - * The display name of the identity provider. + * */ @SerializedName(value = "name", alternate = {"Name"}) @Expose @@ -49,7 +49,7 @@ public class IdentityProvider extends Entity implements IJsonBackedObject { /** * The Type. - * The identity provider type is a required field.For B2B scenario:GoogleFacebookFor B2C scenario:MicrosoftGoogleAmazonLinkedInFacebookGitHubTwitterWeiboQQWeChatOpenIDConnect + * */ @SerializedName(value = "type", alternate = {"Type"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/IncomingContext.java b/src/main/java/com/microsoft/graph/models/extensions/IncomingContext.java index 685f89e7615..96524b01682 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/IncomingContext.java +++ b/src/main/java/com/microsoft/graph/models/extensions/IncomingContext.java @@ -35,7 +35,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Observed Participant Id. - * The id of the participant that is under observation. Read-only. + * The ID of the participant that is under observation. Read-only. */ @SerializedName(value = "observedParticipantId", alternate = {"ObservedParticipantId"}) @Expose @@ -51,7 +51,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Source Participant Id. - * The id of the participant that triggered the incoming call. Read-only. + * The ID of the participant that triggered the incoming call. Read-only. */ @SerializedName(value = "sourceParticipantId", alternate = {"SourceParticipantId"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/InferenceClassificationOverride.java b/src/main/java/com/microsoft/graph/models/extensions/InferenceClassificationOverride.java index aa803c1ac17..d37156e7168 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/InferenceClassificationOverride.java +++ b/src/main/java/com/microsoft/graph/models/extensions/InferenceClassificationOverride.java @@ -27,7 +27,7 @@ public class InferenceClassificationOverride extends Entity implements IJsonBack /** * The Classify As. - * Specifies how incoming messages from a specific sender should always be classified as. Possible values are: focused, other. + * Specifies how incoming messages from a specific sender should always be classified as. The possible values are: focused, other. */ @SerializedName(value = "classifyAs", alternate = {"ClassifyAs"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Invitation.java b/src/main/java/com/microsoft/graph/models/extensions/Invitation.java index f1bc79d4502..5c9ca61bb90 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Invitation.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Invitation.java @@ -35,7 +35,7 @@ public class Invitation extends Entity implements IJsonBackedObject { /** * The Invited User Email Address. - * The email address of the user being invited. Required. The following special characters are not permitted in the email address:Tilde (~)Exclamation point (!)At sign (@)Number sign (#)Dollar sign ($)Percent (%)Circumflex (^)Ampersand (&)Asterisk (*)Parentheses (( ))Hyphen (-)Plus sign (+)Equal sign (=)Brackets ([ ])Braces ({ })Backslash (/)Slash mark (/)Pipe (` + * The email address of the user being invited. Required. The following special characters are not permitted in the email address:Tilde (~)Exclamation point (!)Number sign (#)Dollar sign ($)Percent (%)Circumflex (^)Ampersand (&)Asterisk (*)Parentheses (( ))Plus sign (+)Equal sign (=)Brackets ([ ])Braces ({ })Backslash (/)Slash mark (/)Pipe (/|)Semicolon (;)Colon (:)Quotation marks (')Angle brackets (< >)Question mark (?)Comma (,)However, the following exceptions apply:A period (.) or a hyphen (-) is permitted anywhere in the user name, except at the beginning or end of the name.An underscore (_) is permitted anywhere in the user name. This includes at the beginning or end of the name. */ @SerializedName(value = "invitedUserEmailAddress", alternate = {"InvitedUserEmailAddress"}) @Expose @@ -51,7 +51,7 @@ public class Invitation extends Entity implements IJsonBackedObject { /** * The Invited User Type. - * The userType of the user being invited. By default, this is Guest. You can invite as Member if you're are company administrator. + * The userType of the user being invited. By default, this is Guest. You can invite as Member if you are a company administrator. */ @SerializedName(value = "invitedUserType", alternate = {"InvitedUserType"}) @Expose @@ -59,7 +59,7 @@ public class Invitation extends Entity implements IJsonBackedObject { /** * The Invite Redeem Url. - * The URL the user can use to redeem their invitation. Read-only. + * The URL the user can use to redeem their invitation. Read-only */ @SerializedName(value = "inviteRedeemUrl", alternate = {"InviteRedeemUrl"}) @Expose @@ -67,7 +67,7 @@ public class Invitation extends Entity implements IJsonBackedObject { /** * The Invite Redirect Url. - * The URL user should be redirected to once the invitation is redeemed. Required. + * The URL the user should be redirected to once the invitation is redeemed. Required. */ @SerializedName(value = "inviteRedirectUrl", alternate = {"InviteRedirectUrl"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/InvitationParticipantInfo.java b/src/main/java/com/microsoft/graph/models/extensions/InvitationParticipantInfo.java index a48c3ae1e82..a2faf9eb6ba 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/InvitationParticipantInfo.java +++ b/src/main/java/com/microsoft/graph/models/extensions/InvitationParticipantInfo.java @@ -43,7 +43,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Replaces Call Id. - * Optional. The call which the target idenity is currently a part of. This call will be dropped once the participant is added. + * Optional. The call which the target identity is currently a part of. This call will be dropped once the participant is added. */ @SerializedName(value = "replacesCallId", alternate = {"ReplacesCallId"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/IosGeneralDeviceConfiguration.java b/src/main/java/com/microsoft/graph/models/extensions/IosGeneralDeviceConfiguration.java index 35056130e93..4b12e89bcb2 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/IosGeneralDeviceConfiguration.java +++ b/src/main/java/com/microsoft/graph/models/extensions/IosGeneralDeviceConfiguration.java @@ -120,7 +120,7 @@ public class IosGeneralDeviceConfiguration extends DeviceConfiguration implement /** * The App Store Blocked. - * Indicates whether or not to block the user from using the App Store. Requires a supervised device for iOS 13 and later. + * Indicates whether or not to block the user from using the App Store. */ @SerializedName(value = "appStoreBlocked", alternate = {"AppStoreBlocked"}) @Expose @@ -176,7 +176,7 @@ public class IosGeneralDeviceConfiguration extends DeviceConfiguration implement /** * The Camera Blocked. - * Indicates whether or not to block the user from accessing the camera of the device. Requires a supervised device for iOS 13 and later. + * Indicates whether or not to block the user from accessing the camera of the device. */ @SerializedName(value = "cameraBlocked", alternate = {"CameraBlocked"}) @Expose @@ -352,7 +352,7 @@ public class IosGeneralDeviceConfiguration extends DeviceConfiguration implement /** * The Enterprise App Block Trust Modification. - * [Deprecated] Configuring this setting and setting the value to 'true' has no effect on the device. + * Indicates whether or not to block the user from modifying the enterprise app trust settings. */ @SerializedName(value = "enterpriseAppBlockTrustModification", alternate = {"EnterpriseAppBlockTrustModification"}) @Expose @@ -360,7 +360,7 @@ public class IosGeneralDeviceConfiguration extends DeviceConfiguration implement /** * The Face Time Blocked. - * Indicates whether or not to block the user from using FaceTime. Requires a supervised device for iOS 13 and later. + * Indicates whether or not to block the user from using FaceTime. */ @SerializedName(value = "faceTimeBlocked", alternate = {"FaceTimeBlocked"}) @Expose @@ -368,7 +368,7 @@ public class IosGeneralDeviceConfiguration extends DeviceConfiguration implement /** * The Find My Friends Blocked. - * Indicates whether or not to block changes to Find My Friends when the device is in supervised mode. + * Indicates whether or not to block Find My Friends when the device is in supervised mode. */ @SerializedName(value = "findMyFriendsBlocked", alternate = {"FindMyFriendsBlocked"}) @Expose @@ -384,7 +384,7 @@ public class IosGeneralDeviceConfiguration extends DeviceConfiguration implement /** * The Gaming Block Game Center Friends. - * Indicates whether or not to block the user from having friends in Game Center. Requires a supervised device for iOS 13 and later. + * Indicates whether or not to block the user from having friends in Game Center. */ @SerializedName(value = "gamingBlockGameCenterFriends", alternate = {"GamingBlockGameCenterFriends"}) @Expose @@ -392,7 +392,7 @@ public class IosGeneralDeviceConfiguration extends DeviceConfiguration implement /** * The Gaming Block Multiplayer. - * Indicates whether or not to block the user from using multiplayer gaming. Requires a supervised device for iOS 13 and later. + * Indicates whether or not to block the user from using multiplayer gaming. */ @SerializedName(value = "gamingBlockMultiplayer", alternate = {"GamingBlockMultiplayer"}) @Expose @@ -432,7 +432,7 @@ public class IosGeneralDeviceConfiguration extends DeviceConfiguration implement /** * The ICloud Block Backup. - * Indicates whether or not to block iCloud backup. Requires a supervised device for iOS 13 and later. + * Indicates whether or not to block iCloud backup. */ @SerializedName(value = "iCloudBlockBackup", alternate = {"ICloudBlockBackup"}) @Expose @@ -440,7 +440,7 @@ public class IosGeneralDeviceConfiguration extends DeviceConfiguration implement /** * The ICloud Block Document Sync. - * Indicates whether or not to block iCloud document sync. Requires a supervised device for iOS 13 and later. + * Indicates whether or not to block iCloud document sync. */ @SerializedName(value = "iCloudBlockDocumentSync", alternate = {"ICloudBlockDocumentSync"}) @Expose @@ -488,7 +488,7 @@ public class IosGeneralDeviceConfiguration extends DeviceConfiguration implement /** * The ITunes Block Explicit Content. - * Indicates whether or not to block the user from accessing explicit content in iTunes and the App Store. Requires a supervised device for iOS 13 and later. + * Indicates whether or not to block the user from accessing explicit content in iTunes and the App Store. */ @SerializedName(value = "iTunesBlockExplicitContent", alternate = {"ITunesBlockExplicitContent"}) @Expose @@ -568,7 +568,7 @@ public class IosGeneralDeviceConfiguration extends DeviceConfiguration implement /** * The Kiosk Mode Allow Auto Lock. - * Indicates whether or not to allow device auto lock while in kiosk mode. This property's functionality is redundant with the OS default and is deprecated. Use KioskModeBlockAutoLock instead. + * Indicates whether or not to allow device auto lock while in kiosk mode. */ @SerializedName(value = "kioskModeAllowAutoLock", alternate = {"KioskModeAllowAutoLock"}) @Expose @@ -584,7 +584,7 @@ public class IosGeneralDeviceConfiguration extends DeviceConfiguration implement /** * The Kiosk Mode Allow Ringer Switch. - * Indicates whether or not to allow use of the ringer switch while in kiosk mode. This property's functionality is redundant with the OS default and is deprecated. Use KioskModeBlockRingerSwitch instead. + * Indicates whether or not to allow use of the ringer switch while in kiosk mode. */ @SerializedName(value = "kioskModeAllowRingerSwitch", alternate = {"KioskModeAllowRingerSwitch"}) @Expose @@ -592,7 +592,7 @@ public class IosGeneralDeviceConfiguration extends DeviceConfiguration implement /** * The Kiosk Mode Allow Screen Rotation. - * Indicates whether or not to allow screen rotation while in kiosk mode. This property's functionality is redundant with the OS default and is deprecated. Use KioskModeBlockScreenRotation instead. + * Indicates whether or not to allow screen rotation while in kiosk mode. */ @SerializedName(value = "kioskModeAllowScreenRotation", alternate = {"KioskModeAllowScreenRotation"}) @Expose @@ -600,7 +600,7 @@ public class IosGeneralDeviceConfiguration extends DeviceConfiguration implement /** * The Kiosk Mode Allow Sleep Button. - * Indicates whether or not to allow use of the sleep button while in kiosk mode. This property's functionality is redundant with the OS default and is deprecated. Use KioskModeBlockSleepButton instead. + * Indicates whether or not to allow use of the sleep button while in kiosk mode. */ @SerializedName(value = "kioskModeAllowSleepButton", alternate = {"KioskModeAllowSleepButton"}) @Expose @@ -608,7 +608,7 @@ public class IosGeneralDeviceConfiguration extends DeviceConfiguration implement /** * The Kiosk Mode Allow Touchscreen. - * Indicates whether or not to allow use of the touchscreen while in kiosk mode. This property's functionality is redundant with the OS default and is deprecated. Use KioskModeBlockTouchscreen instead. + * Indicates whether or not to allow use of the touchscreen while in kiosk mode. */ @SerializedName(value = "kioskModeAllowTouchscreen", alternate = {"KioskModeAllowTouchscreen"}) @Expose @@ -624,7 +624,7 @@ public class IosGeneralDeviceConfiguration extends DeviceConfiguration implement /** * The Kiosk Mode Allow Volume Buttons. - * Indicates whether or not to allow use of the volume buttons while in kiosk mode. This property's functionality is redundant with the OS default and is deprecated. Use KioskModeBlockVolumeButtons instead. + * Indicates whether or not to allow use of the volume buttons while in kiosk mode. */ @SerializedName(value = "kioskModeAllowVolumeButtons", alternate = {"KioskModeAllowVolumeButtons"}) @Expose @@ -936,7 +936,7 @@ public class IosGeneralDeviceConfiguration extends DeviceConfiguration implement /** * The Passcode Sign In Failure Count Before Wipe. - * Number of sign in failures allowed before wiping the device. Valid values 2 to 11 + * Number of sign in failures allowed before wiping the device. Valid values 4 to 11 */ @SerializedName(value = "passcodeSignInFailureCountBeforeWipe", alternate = {"PasscodeSignInFailureCountBeforeWipe"}) @Expose @@ -952,7 +952,7 @@ public class IosGeneralDeviceConfiguration extends DeviceConfiguration implement /** * The Safari Block Autofill. - * Indicates whether or not to block the user from using Auto fill in Safari. Requires a supervised device for iOS 13 and later. + * Indicates whether or not to block the user from using Auto fill in Safari. */ @SerializedName(value = "safariBlockAutofill", alternate = {"SafariBlockAutofill"}) @Expose @@ -960,7 +960,7 @@ public class IosGeneralDeviceConfiguration extends DeviceConfiguration implement /** * The Safari Blocked. - * Indicates whether or not to block the user from using Safari. Requires a supervised device for iOS 13 and later. + * Indicates whether or not to block the user from using Safari. */ @SerializedName(value = "safariBlocked", alternate = {"SafariBlocked"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/IosManagedAppProtection.java b/src/main/java/com/microsoft/graph/models/extensions/IosManagedAppProtection.java index 818c7ace1fb..f9b93ee6d5d 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/IosManagedAppProtection.java +++ b/src/main/java/com/microsoft/graph/models/extensions/IosManagedAppProtection.java @@ -37,7 +37,7 @@ public class IosManagedAppProtection extends TargetedManagedAppProtection implem /** * The Custom Browser Protocol. - * A custom browser protocol to open weblink on iOS. + * A custom browser protocol to open weblink on iOS. When this property is configured, ManagedBrowserToOpenLinksRequired should be true. */ @SerializedName(value = "customBrowserProtocol", alternate = {"CustomBrowserProtocol"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/IosUpdateDeviceStatus.java b/src/main/java/com/microsoft/graph/models/extensions/IosUpdateDeviceStatus.java index 4b53a2af17e..be3820ed3f8 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/IosUpdateDeviceStatus.java +++ b/src/main/java/com/microsoft/graph/models/extensions/IosUpdateDeviceStatus.java @@ -59,7 +59,7 @@ public class IosUpdateDeviceStatus extends Entity implements IJsonBackedObject { /** * The Install Status. - * The installation status of the policy report. Possible values are: success, available, idle, unknown, mdmClientCrashed, timeout, downloading, downloadFailed, downloadRequiresComputer, downloadInsufficientSpace, downloadInsufficientPower, downloadInsufficientNetwork, installing, installInsufficientSpace, installInsufficientPower, installPhoneCallInProgress, installFailed, notSupportedOperation, sharedDeviceUserLoggedInError, updateError, deviceOsHigherThanDesiredOsVersion, updateScanFailed. + * The installation status of the policy report. Possible values are: success, available, idle, unknown, downloading, downloadFailed, downloadRequiresComputer, downloadInsufficientSpace, downloadInsufficientPower, downloadInsufficientNetwork, installing, installInsufficientSpace, installInsufficientPower, installPhoneCallInProgress, installFailed, notSupportedOperation, sharedDeviceUserLoggedInError. */ @SerializedName(value = "installStatus", alternate = {"InstallStatus"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/ItemAttachment.java b/src/main/java/com/microsoft/graph/models/extensions/ItemAttachment.java index 02d45837733..dfe85a558ee 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/ItemAttachment.java +++ b/src/main/java/com/microsoft/graph/models/extensions/ItemAttachment.java @@ -26,7 +26,7 @@ public class ItemAttachment extends Attachment implements IJsonBackedObject { /** * The Item. - * The attached contact, message or event. Navigation property. + * The attached message or event. Navigation property. */ @SerializedName(value = "item", alternate = {"Item"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/KeyCredential.java b/src/main/java/com/microsoft/graph/models/extensions/KeyCredential.java index de187241f54..0d38e3849ee 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/KeyCredential.java +++ b/src/main/java/com/microsoft/graph/models/extensions/KeyCredential.java @@ -58,7 +58,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Key. - * Value for the key credential. Should be a base 64 encoded value. + * The certificate's raw data in byte array converted to Base64 string; for example, [System.Convert]::ToBase64String($Cert.GetRawCertData()). */ @SerializedName(value = "key", alternate = {"Key"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/KeyValue.java b/src/main/java/com/microsoft/graph/models/extensions/KeyValue.java index cb32cbcba88..01b94a239e4 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/KeyValue.java +++ b/src/main/java/com/microsoft/graph/models/extensions/KeyValue.java @@ -34,7 +34,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Key. - * Key. + * Key for the key-value pair. */ @SerializedName(value = "key", alternate = {"Key"}) @Expose @@ -42,7 +42,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Value. - * Value. + * Value for the key-value pair. */ @SerializedName(value = "value", alternate = {"Value"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/LicenseAssignmentState.java b/src/main/java/com/microsoft/graph/models/extensions/LicenseAssignmentState.java index 9f636515ba6..9650fac8272 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/LicenseAssignmentState.java +++ b/src/main/java/com/microsoft/graph/models/extensions/LicenseAssignmentState.java @@ -34,7 +34,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Assigned By Group. - * The id of the group that assigns this license. If the assignment is a direct-assigned license, this field will be Null. Read-Only. + * */ @SerializedName(value = "assignedByGroup", alternate = {"AssignedByGroup"}) @Expose @@ -42,7 +42,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Disabled Plans. - * The service plans that are disabled in this assignment. Read-Only. + * */ @SerializedName(value = "disabledPlans", alternate = {"DisabledPlans"}) @Expose @@ -50,7 +50,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Error. - * License assignment failure error. If the license is assigned successfully, this field will be Null. Read-Only. Possible values: CountViolation, MutuallyExclusiveViolation, DependencyViolation, ProhibitedInUsageLocationViolation, UniquenessViolation, and Others. For more information on how to identify and resolve license assignment errors see here. + * */ @SerializedName(value = "error", alternate = {"Error"}) @Expose @@ -58,7 +58,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Sku Id. - * The unique identifier for the SKU. Read-Only. + * */ @SerializedName(value = "skuId", alternate = {"SkuId"}) @Expose @@ -66,7 +66,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The State. - * Indicate the current state of this assignment. Read-Only. Possible values: Active, ActiveWithError, Disabled and Error. + * */ @SerializedName(value = "state", alternate = {"State"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Location.java b/src/main/java/com/microsoft/graph/models/extensions/Location.java index 835a883f478..d2032ec2690 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Location.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Location.java @@ -70,7 +70,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Location Type. - * The type of location. Possible values are: default, conferenceRoom, homeAddress, businessAddress,geoCoordinates, streetAddress, hotel, restaurant, localBusiness, postalAddress. Read-only. + * The type of location. The possible values are: default, conferenceRoom, homeAddress, businessAddress,geoCoordinates, streetAddress, hotel, restaurant, localBusiness, postalAddress. Read-only. */ @SerializedName(value = "locationType", alternate = {"LocationType"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/MailboxSettings.java b/src/main/java/com/microsoft/graph/models/extensions/MailboxSettings.java index bd9722ae8f0..6636ed31113 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/MailboxSettings.java +++ b/src/main/java/com/microsoft/graph/models/extensions/MailboxSettings.java @@ -38,7 +38,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Archive Folder. - * Folder ID of an archive folder for the user. Read only. + * Folder ID of an archive folder for the user. */ @SerializedName(value = "archiveFolder", alternate = {"ArchiveFolder"}) @Expose @@ -62,7 +62,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Delegate Meeting Message Delivery Options. - * If the user has a calendar delegate, this specifies whether the delegate, mailbox owner, or both receive meeting messages and meeting responses. Possible values are: sendToDelegateAndInformationToPrincipal, sendToDelegateAndPrincipal, sendToDelegateOnly. The default is sendToDelegateOnly. + * If the user has a calendar delegate, this specifies whether the delegate, mailbox owner, or both receive meeting messages and meeting responses. Possible values are: sendToDelegateAndInformationToPrincipal, sendToDelegateAndPrincipal, sendToDelegateOnly. */ @SerializedName(value = "delegateMeetingMessageDeliveryOptions", alternate = {"DelegateMeetingMessageDeliveryOptions"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/ManagedDevice.java b/src/main/java/com/microsoft/graph/models/extensions/ManagedDevice.java index 6807d46dfb7..fe290dced53 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/ManagedDevice.java +++ b/src/main/java/com/microsoft/graph/models/extensions/ManagedDevice.java @@ -41,7 +41,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Activation Lock Bypass Code. - * Code that allows the Activation Lock on a device to be bypassed. This property is read-only. + * Code that allows the Activation Lock on a device to be bypassed. */ @SerializedName(value = "activationLockBypassCode", alternate = {"ActivationLockBypassCode"}) @Expose @@ -49,7 +49,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Android Security Patch Level. - * Android security patch level. This property is read-only. + * Android security patch level */ @SerializedName(value = "androidSecurityPatchLevel", alternate = {"AndroidSecurityPatchLevel"}) @Expose @@ -57,7 +57,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Azure ADDevice Id. - * The unique identifier for the Azure Active Directory device. Read only. This property is read-only. + * The unique identifier for the Azure Active Directory device. Read only. */ @SerializedName(value = "azureADDeviceId", alternate = {"AzureADDeviceId"}) @Expose @@ -65,7 +65,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Azure ADRegistered. - * Whether the device is Azure Active Directory registered. This property is read-only. + * Whether the device is Azure Active Directory registered. */ @SerializedName(value = "azureADRegistered", alternate = {"AzureADRegistered"}) @Expose @@ -73,7 +73,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Compliance Grace Period Expiration Date Time. - * The DateTime when device compliance grace period expires. This property is read-only. + * The DateTime when device compliance grace period expires */ @SerializedName(value = "complianceGracePeriodExpirationDateTime", alternate = {"ComplianceGracePeriodExpirationDateTime"}) @Expose @@ -81,7 +81,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Compliance State. - * Compliance state of the device. This property is read-only. Possible values are: unknown, compliant, noncompliant, conflict, error, inGracePeriod, configManager. + * Compliance state of the device. Possible values are: unknown, compliant, noncompliant, conflict, error, inGracePeriod, configManager. */ @SerializedName(value = "complianceState", alternate = {"ComplianceState"}) @Expose @@ -89,7 +89,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Configuration Manager Client Enabled Features. - * ConfigrMgr client enabled features. This property is read-only. + * ConfigrMgr client enabled features */ @SerializedName(value = "configurationManagerClientEnabledFeatures", alternate = {"ConfigurationManagerClientEnabledFeatures"}) @Expose @@ -97,7 +97,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Device Action Results. - * List of ComplexType deviceActionResult objects. This property is read-only. + * List of ComplexType deviceActionResult objects. */ @SerializedName(value = "deviceActionResults", alternate = {"DeviceActionResults"}) @Expose @@ -105,7 +105,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Device Category Display Name. - * Device category display name. This property is read-only. + * Device category display name */ @SerializedName(value = "deviceCategoryDisplayName", alternate = {"DeviceCategoryDisplayName"}) @Expose @@ -113,7 +113,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Device Enrollment Type. - * Enrollment type of the device. This property is read-only. Possible values are: unknown, userEnrollment, deviceEnrollmentManager, appleBulkWithUser, appleBulkWithoutUser, windowsAzureADJoin, windowsBulkUserless, windowsAutoEnrollment, windowsBulkAzureDomainJoin, windowsCoManagement, appleUserEnrollment, appleUserEnrollmentWithServiceAccount, azureAdJoinUsingAzureVmExtension, androidEnterpriseDedicatedDevice, androidEnterpriseFullyManaged, androidEnterpriseCorporateWorkProfile. + * Enrollment type of the device. Possible values are: unknown, userEnrollment, deviceEnrollmentManager, appleBulkWithUser, appleBulkWithoutUser, windowsAzureADJoin, windowsBulkUserless, windowsAutoEnrollment, windowsBulkAzureDomainJoin, windowsCoManagement. */ @SerializedName(value = "deviceEnrollmentType", alternate = {"DeviceEnrollmentType"}) @Expose @@ -121,7 +121,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Device Health Attestation State. - * The device health attestation state. This property is read-only. + * The device health attestation state. */ @SerializedName(value = "deviceHealthAttestationState", alternate = {"DeviceHealthAttestationState"}) @Expose @@ -129,7 +129,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Device Name. - * Name of the device. This property is read-only. + * Name of the device */ @SerializedName(value = "deviceName", alternate = {"DeviceName"}) @Expose @@ -137,7 +137,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Device Registration State. - * Device registration state. This property is read-only. Possible values are: notRegistered, registered, revoked, keyConflict, approvalPending, certificateReset, notRegisteredPendingEnrollment, unknown. + * Device registration state. Possible values are: notRegistered, registered, revoked, keyConflict, approvalPending, certificateReset, notRegisteredPendingEnrollment, unknown. */ @SerializedName(value = "deviceRegistrationState", alternate = {"DeviceRegistrationState"}) @Expose @@ -145,7 +145,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Eas Activated. - * Whether the device is Exchange ActiveSync activated. This property is read-only. + * Whether the device is Exchange ActiveSync activated. */ @SerializedName(value = "easActivated", alternate = {"EasActivated"}) @Expose @@ -153,7 +153,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Eas Activation Date Time. - * Exchange ActivationSync activation time of the device. This property is read-only. + * Exchange ActivationSync activation time of the device. */ @SerializedName(value = "easActivationDateTime", alternate = {"EasActivationDateTime"}) @Expose @@ -161,7 +161,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Eas Device Id. - * Exchange ActiveSync Id of the device. This property is read-only. + * Exchange ActiveSync Id of the device. */ @SerializedName(value = "easDeviceId", alternate = {"EasDeviceId"}) @Expose @@ -169,7 +169,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Email Address. - * Email(s) for the user associated with the device. This property is read-only. + * Email(s) for the user associated with the device */ @SerializedName(value = "emailAddress", alternate = {"EmailAddress"}) @Expose @@ -177,7 +177,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Enrolled Date Time. - * Enrollment time of the device. This property is read-only. + * Enrollment time of the device. */ @SerializedName(value = "enrolledDateTime", alternate = {"EnrolledDateTime"}) @Expose @@ -185,7 +185,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Exchange Access State. - * The Access State of the device in Exchange. This property is read-only. Possible values are: none, unknown, allowed, blocked, quarantined. + * The Access State of the device in Exchange. Possible values are: none, unknown, allowed, blocked, quarantined. */ @SerializedName(value = "exchangeAccessState", alternate = {"ExchangeAccessState"}) @Expose @@ -193,7 +193,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Exchange Access State Reason. - * The reason for the device's access state in Exchange. This property is read-only. Possible values are: none, unknown, exchangeGlobalRule, exchangeIndividualRule, exchangeDeviceRule, exchangeUpgrade, exchangeMailboxPolicy, other, compliant, notCompliant, notEnrolled, unknownLocation, mfaRequired, azureADBlockDueToAccessPolicy, compromisedPassword, deviceNotKnownWithManagedApp. + * The reason for the device's access state in Exchange. Possible values are: none, unknown, exchangeGlobalRule, exchangeIndividualRule, exchangeDeviceRule, exchangeUpgrade, exchangeMailboxPolicy, other, compliant, notCompliant, notEnrolled, unknownLocation, mfaRequired, azureADBlockDueToAccessPolicy, compromisedPassword, deviceNotKnownWithManagedApp. */ @SerializedName(value = "exchangeAccessStateReason", alternate = {"ExchangeAccessStateReason"}) @Expose @@ -201,7 +201,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Exchange Last Successful Sync Date Time. - * Last time the device contacted Exchange. This property is read-only. + * Last time the device contacted Exchange. */ @SerializedName(value = "exchangeLastSuccessfulSyncDateTime", alternate = {"ExchangeLastSuccessfulSyncDateTime"}) @Expose @@ -209,7 +209,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Free Storage Space In Bytes. - * Free Storage in Bytes. This property is read-only. + * Free Storage in Bytes */ @SerializedName(value = "freeStorageSpaceInBytes", alternate = {"FreeStorageSpaceInBytes"}) @Expose @@ -217,7 +217,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Imei. - * IMEI. This property is read-only. + * IMEI */ @SerializedName(value = "imei", alternate = {"Imei"}) @Expose @@ -225,7 +225,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Is Encrypted. - * Device encryption status. This property is read-only. + * Device encryption status */ @SerializedName(value = "isEncrypted", alternate = {"IsEncrypted"}) @Expose @@ -233,7 +233,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Is Supervised. - * Device supervised status. This property is read-only. + * Device supervised status */ @SerializedName(value = "isSupervised", alternate = {"IsSupervised"}) @Expose @@ -241,7 +241,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Jail Broken. - * whether the device is jail broken or rooted. This property is read-only. + * whether the device is jail broken or rooted. */ @SerializedName(value = "jailBroken", alternate = {"JailBroken"}) @Expose @@ -249,7 +249,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Last Sync Date Time. - * The date and time that the device last completed a successful sync with Intune. This property is read-only. + * The date and time that the device last completed a successful sync with Intune. */ @SerializedName(value = "lastSyncDateTime", alternate = {"LastSyncDateTime"}) @Expose @@ -273,7 +273,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Management Agent. - * Management channel of the device. Intune, EAS, etc. This property is read-only. Possible values are: eas, mdm, easMdm, intuneClient, easIntuneClient, configurationManagerClient, configurationManagerClientMdm, configurationManagerClientMdmEas, unknown, jamf, googleCloudDevicePolicyController, microsoft365ManagedMdm. + * Management channel of the device. Intune, EAS, etc. Possible values are: eas, mdm, easMdm, intuneClient, easIntuneClient, configurationManagerClient, configurationManagerClientMdm, configurationManagerClientMdmEas, unknown, jamf, googleCloudDevicePolicyController. */ @SerializedName(value = "managementAgent", alternate = {"ManagementAgent"}) @Expose @@ -281,7 +281,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Manufacturer. - * Manufacturer of the device. This property is read-only. + * Manufacturer of the device */ @SerializedName(value = "manufacturer", alternate = {"Manufacturer"}) @Expose @@ -289,7 +289,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Meid. - * MEID. This property is read-only. + * MEID */ @SerializedName(value = "meid", alternate = {"Meid"}) @Expose @@ -297,7 +297,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Model. - * Model of the device. This property is read-only. + * Model of the device */ @SerializedName(value = "model", alternate = {"Model"}) @Expose @@ -305,7 +305,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Operating System. - * Operating system of the device. Windows, iOS, etc. This property is read-only. + * Operating system of the device. Windows, iOS, etc. */ @SerializedName(value = "operatingSystem", alternate = {"OperatingSystem"}) @Expose @@ -313,7 +313,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Os Version. - * Operating system version of the device. This property is read-only. + * Operating system version of the device. */ @SerializedName(value = "osVersion", alternate = {"OsVersion"}) @Expose @@ -321,7 +321,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Partner Reported Threat State. - * Indicates the threat state of a device when a Mobile Threat Defense partner is in use by the account and device. Read Only. This property is read-only. Possible values are: unknown, activated, deactivated, secured, lowSeverity, mediumSeverity, highSeverity, unresponsive, compromised, misconfigured. + * Indicates the threat state of a device when a Mobile Threat Defense partner is in use by the account and device. Read Only. Possible values are: unknown, activated, deactivated, secured, lowSeverity, mediumSeverity, highSeverity, unresponsive, compromised, misconfigured. */ @SerializedName(value = "partnerReportedThreatState", alternate = {"PartnerReportedThreatState"}) @Expose @@ -329,7 +329,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Phone Number. - * Phone number of the device. This property is read-only. + * Phone number of the device */ @SerializedName(value = "phoneNumber", alternate = {"PhoneNumber"}) @Expose @@ -337,7 +337,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Remote Assistance Session Error Details. - * An error string that identifies issues when creating Remote Assistance session objects. This property is read-only. + * An error string that identifies issues when creating Remote Assistance session objects. */ @SerializedName(value = "remoteAssistanceSessionErrorDetails", alternate = {"RemoteAssistanceSessionErrorDetails"}) @Expose @@ -345,7 +345,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Remote Assistance Session Url. - * Url that allows a Remote Assistance session to be established with the device. This property is read-only. + * Url that allows a Remote Assistance session to be established with the device. */ @SerializedName(value = "remoteAssistanceSessionUrl", alternate = {"RemoteAssistanceSessionUrl"}) @Expose @@ -353,7 +353,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Serial Number. - * SerialNumber. This property is read-only. + * SerialNumber */ @SerializedName(value = "serialNumber", alternate = {"SerialNumber"}) @Expose @@ -361,7 +361,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Subscriber Carrier. - * Subscriber Carrier. This property is read-only. + * Subscriber Carrier */ @SerializedName(value = "subscriberCarrier", alternate = {"SubscriberCarrier"}) @Expose @@ -369,7 +369,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Total Storage Space In Bytes. - * Total Storage in Bytes. This property is read-only. + * Total Storage in Bytes */ @SerializedName(value = "totalStorageSpaceInBytes", alternate = {"TotalStorageSpaceInBytes"}) @Expose @@ -377,7 +377,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The User Display Name. - * User display name. This property is read-only. + * User display name */ @SerializedName(value = "userDisplayName", alternate = {"UserDisplayName"}) @Expose @@ -385,7 +385,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The User Id. - * Unique Identifier for the user associated with the device. This property is read-only. + * Unique Identifier for the user associated with the device */ @SerializedName(value = "userId", alternate = {"UserId"}) @Expose @@ -393,7 +393,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The User Principal Name. - * Device user principal name. This property is read-only. + * Device user principal name */ @SerializedName(value = "userPrincipalName", alternate = {"UserPrincipalName"}) @Expose @@ -401,7 +401,7 @@ public class ManagedDevice extends Entity implements IJsonBackedObject { /** * The Wi Fi Mac Address. - * Wi-Fi MAC. This property is read-only. + * Wi-Fi MAC */ @SerializedName(value = "wiFiMacAddress", alternate = {"WiFiMacAddress"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/MediaInfo.java b/src/main/java/com/microsoft/graph/models/extensions/MediaInfo.java index 0d920a8e2a3..ae835871076 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/MediaInfo.java +++ b/src/main/java/com/microsoft/graph/models/extensions/MediaInfo.java @@ -34,7 +34,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Resource Id. - * Optional, used to uniquely identity the resource. If passed the prompt uri will be cached against this resourceId as key. + * Optional. Used to uniquely identity the resource. If passed in, the prompt uri will be cached against this resourceId as a key. */ @SerializedName(value = "resourceId", alternate = {"ResourceId"}) @Expose @@ -42,7 +42,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Uri. - * Path to the prompt to be played. Currently only Wave file (.wav) format, single-channel, 16-bit samples with a 16,000 (16KHz) sampling rate is only supported. + * Path to the prompt that will be played. Currently supports only Wave file (.wav) format, single-channel, 16-bit samples with a 16,000 (16KHz) sampling rate. */ @SerializedName(value = "uri", alternate = {"Uri"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/MediaPrompt.java b/src/main/java/com/microsoft/graph/models/extensions/MediaPrompt.java index b7d4bd88d56..e6645e73306 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/MediaPrompt.java +++ b/src/main/java/com/microsoft/graph/models/extensions/MediaPrompt.java @@ -26,7 +26,7 @@ public class MediaPrompt extends Prompt implements IJsonBackedObject { /** * The Media Info. - * The media information. + * The media information */ @SerializedName(value = "mediaInfo", alternate = {"MediaInfo"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/MediaStream.java b/src/main/java/com/microsoft/graph/models/extensions/MediaStream.java index 2fc7c77f164..b85dd28fc36 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/MediaStream.java +++ b/src/main/java/com/microsoft/graph/models/extensions/MediaStream.java @@ -60,7 +60,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Server Muted. - * Indicates whether the media is muted by the server. + * If the media is muted by the server. */ @SerializedName(value = "serverMuted", alternate = {"ServerMuted"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/MeetingParticipantInfo.java b/src/main/java/com/microsoft/graph/models/extensions/MeetingParticipantInfo.java index 3dbdedc0773..4b9438efa86 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/MeetingParticipantInfo.java +++ b/src/main/java/com/microsoft/graph/models/extensions/MeetingParticipantInfo.java @@ -44,7 +44,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Role. - * Specifies the participant's role in the meeting. Possible values are attendee, presenter, and unknownFutureValue. + * Specifies the participant's role in the meeting. Possible values are listed in the following table. */ @SerializedName(value = "role", alternate = {"Role"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/MeetingTimeSuggestion.java b/src/main/java/com/microsoft/graph/models/extensions/MeetingTimeSuggestion.java index fb0352488a8..2955dc61c59 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/MeetingTimeSuggestion.java +++ b/src/main/java/com/microsoft/graph/models/extensions/MeetingTimeSuggestion.java @@ -78,7 +78,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Organizer Availability. - * Availability of the meeting organizer for this meeting suggestion. Possible values are: free, tentative, busy, oof, workingElsewhere, unknown. + * Availability of the meeting organizer for this meeting suggestion. The possible values are: free, tentative, busy, oof, workingElsewhere, unknown. */ @SerializedName(value = "organizerAvailability", alternate = {"OrganizerAvailability"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/MeetingTimeSuggestionsResult.java b/src/main/java/com/microsoft/graph/models/extensions/MeetingTimeSuggestionsResult.java index 34f3d277bfc..c0e8ee81681 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/MeetingTimeSuggestionsResult.java +++ b/src/main/java/com/microsoft/graph/models/extensions/MeetingTimeSuggestionsResult.java @@ -35,7 +35,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Empty Suggestions Reason. - * A reason for not returning any meeting suggestions. Possible values are: attendeesUnavailable, attendeesUnavailableOrUnknown, locationsUnavailable, organizerUnavailable, or unknown. This property is an empty string if the meetingTimeSuggestions property does include any meeting suggestions. + * A reason for not returning any meeting suggestions. The possible values are: attendeesUnavailable, attendeesUnavailableOrUnknown, locationsUnavailable, organizerUnavailable, or unknown. This property is an empty string if the meetingTimeSuggestions property does include any meeting suggestions. */ @SerializedName(value = "emptySuggestionsReason", alternate = {"EmptySuggestionsReason"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Message.java b/src/main/java/com/microsoft/graph/models/extensions/Message.java index 484eab7369d..f0ee4ad93aa 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Message.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Message.java @@ -55,7 +55,7 @@ public class Message extends OutlookItem implements IJsonBackedObject { /** * The Body Preview. - * The first 255 characters of the message body. It is in text format. If the message contains instances of mention, this property would contain a concatenation of these mentions as well. + * The first 255 characters of the message body. It is in text format. */ @SerializedName(value = "bodyPreview", alternate = {"BodyPreview"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/MessageRuleActions.java b/src/main/java/com/microsoft/graph/models/extensions/MessageRuleActions.java index be66aa9573e..7ed3e860f2b 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/MessageRuleActions.java +++ b/src/main/java/com/microsoft/graph/models/extensions/MessageRuleActions.java @@ -108,7 +108,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Redirect To. - * The email address to which a message should be redirected. + * The email addresses to which a message should be redirected. */ @SerializedName(value = "redirectTo", alternate = {"RedirectTo"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/ModifiedProperty.java b/src/main/java/com/microsoft/graph/models/extensions/ModifiedProperty.java index b08443db043..1b7853eb722 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/ModifiedProperty.java +++ b/src/main/java/com/microsoft/graph/models/extensions/ModifiedProperty.java @@ -34,7 +34,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Display Name. - * Name of property that was modified. + * Indicates the property name of the target attribute that was changed. */ @SerializedName(value = "displayName", alternate = {"DisplayName"}) @Expose @@ -42,7 +42,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The New Value. - * New property value. + * Indicates the updated value for the propery. */ @SerializedName(value = "newValue", alternate = {"NewValue"}) @Expose @@ -50,7 +50,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Old Value. - * Old property value. + * Indicates the previous value (before the update) for the property. */ @SerializedName(value = "oldValue", alternate = {"OldValue"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/NetworkConnection.java b/src/main/java/com/microsoft/graph/models/extensions/NetworkConnection.java index 072e24a4508..57c2d31dfa3 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/NetworkConnection.java +++ b/src/main/java/com/microsoft/graph/models/extensions/NetworkConnection.java @@ -37,7 +37,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Application Name. - * Name of the application managing the network connection (for example, Facebook, SMTP, etc.). + * Name of the application managing the network connection (for example, Facebook or SMTP). */ @SerializedName(value = "applicationName", alternate = {"ApplicationName"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/NotificationMessageTemplate.java b/src/main/java/com/microsoft/graph/models/extensions/NotificationMessageTemplate.java index 065cb9d92d4..569887e78e0 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/NotificationMessageTemplate.java +++ b/src/main/java/com/microsoft/graph/models/extensions/NotificationMessageTemplate.java @@ -28,7 +28,7 @@ public class NotificationMessageTemplate extends Entity implements IJsonBackedOb /** * The Branding Options. - * The Message Template Branding Options. Branding is defined in the Intune Admin Console. Possible values are: none, includeCompanyLogo, includeCompanyName, includeContactInformation, includeCompanyPortalLink. + * The Message Template Branding Options. Branding is defined in the Intune Admin Console. Possible values are: none, includeCompanyLogo, includeCompanyName, includeContactInformation. */ @SerializedName(value = "brandingOptions", alternate = {"BrandingOptions"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/OfferShiftRequest.java b/src/main/java/com/microsoft/graph/models/extensions/OfferShiftRequest.java index 0331efa9028..34ac952c7e8 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/OfferShiftRequest.java +++ b/src/main/java/com/microsoft/graph/models/extensions/OfferShiftRequest.java @@ -41,7 +41,7 @@ public class OfferShiftRequest extends ScheduleChangeRequest implements IJsonBac /** * The Recipient User Id. - * User id of the recipient of the offer shift request. + * User ID of the recipient of the offer shift request. */ @SerializedName(value = "recipientUserId", alternate = {"RecipientUserId"}) @Expose @@ -49,7 +49,7 @@ public class OfferShiftRequest extends ScheduleChangeRequest implements IJsonBac /** * The Sender Shift Id. - * User id of the sender of the offer shift request. + * User ID of the sender of the offer shift request. */ @SerializedName(value = "senderShiftId", alternate = {"SenderShiftId"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/OfficeGraphInsights.java b/src/main/java/com/microsoft/graph/models/extensions/OfficeGraphInsights.java index 8edf1b46e0a..da3b5fc0b95 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/OfficeGraphInsights.java +++ b/src/main/java/com/microsoft/graph/models/extensions/OfficeGraphInsights.java @@ -31,7 +31,7 @@ public class OfficeGraphInsights extends Entity implements IJsonBackedObject { /** * The Shared. - * Access this property from the derived type itemInsights. + * Calculated relationship identifying documents shared with or by the user. This includes URLs, file attachments, and reference attachments to OneDrive for Business and SharePoint files found in Outlook messages and meetings. This also includes URLs and reference attachments to Teams conversations. Ordered by recency of share. */ @SerializedName(value = "shared", alternate = {"Shared"}) @Expose @@ -39,7 +39,7 @@ public class OfficeGraphInsights extends Entity implements IJsonBackedObject { /** * The Trending. - * Access this property from the derived type itemInsights. + * Calculated relationship identifying documents trending around a user. Trending documents are calculated based on activity of the user's closest network of people and include files stored in OneDrive for Business and SharePoint. Trending insights help the user to discover potentially useful content that the user has access to, but has never viewed before. */ @SerializedName(value = "trending", alternate = {"Trending"}) @Expose @@ -47,7 +47,7 @@ public class OfficeGraphInsights extends Entity implements IJsonBackedObject { /** * The Used. - * Access this property from the derived type itemInsights. + * Calculated relationship identifying the latest documents viewed or modified by a user, including OneDrive for Business and SharePoint documents, ranked by recency of use. */ @SerializedName(value = "used", alternate = {"Used"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/OnenotePatchContentCommand.java b/src/main/java/com/microsoft/graph/models/extensions/OnenotePatchContentCommand.java index ef21d2ebaec..decd133ca27 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/OnenotePatchContentCommand.java +++ b/src/main/java/com/microsoft/graph/models/extensions/OnenotePatchContentCommand.java @@ -36,7 +36,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Action. - * The action to perform on the target element. Possible values are: replace, append, delete, insert, or prepend. + * The action to perform on the target element. The possible values are: replace, append, delete, insert, or prepend. */ @SerializedName(value = "action", alternate = {"Action"}) @Expose @@ -52,7 +52,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Position. - * The location to add the supplied content, relative to the target element. Possible values are: after (default) or before. + * The location to add the supplied content, relative to the target element. The possible values are: after (default) or before. */ @SerializedName(value = "position", alternate = {"Position"}) @Expose @@ -60,7 +60,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Target. - * The element to update. Must be the #<data-id> or the generated {id} of the element, or the body or title keyword. + * The element to update. Must be the #<data-id> or the generated <id> of the element, or the body or title keyword. */ @SerializedName(value = "target", alternate = {"Target"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/OnlineMeeting.java b/src/main/java/com/microsoft/graph/models/extensions/OnlineMeeting.java index 05a71319720..df2c85dabaf 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/OnlineMeeting.java +++ b/src/main/java/com/microsoft/graph/models/extensions/OnlineMeeting.java @@ -31,7 +31,7 @@ public class OnlineMeeting extends Entity implements IJsonBackedObject { /** * The Allowed Presenters. - * Specifies who can be a presenter in a meeting. Possible values are everyone, organization, roleIsPresenter, organizer, and unknownFutureValue. + * Specifies who can be a presenter in a meeting. Possible values are listed in the following table. */ @SerializedName(value = "allowedPresenters", alternate = {"AllowedPresenters"}) @Expose @@ -71,7 +71,7 @@ public class OnlineMeeting extends Entity implements IJsonBackedObject { /** * The External Id. - * The external ID. A custom ID. Optional. + * */ @SerializedName(value = "externalId", alternate = {"ExternalId"}) @Expose @@ -87,7 +87,7 @@ public class OnlineMeeting extends Entity implements IJsonBackedObject { /** * The Join Information. - * The join information in the language and locale variant specified in 'Accept-Language' request HTTP header. Read-only + * The join information in the language and locale variant specified in the Accept-Language request HTTP header. Read-only. */ @SerializedName(value = "joinInformation", alternate = {"JoinInformation"}) @Expose @@ -103,7 +103,7 @@ public class OnlineMeeting extends Entity implements IJsonBackedObject { /** * The Lobby Bypass Settings. - * Specifies which participants can bypass the meeting lobby. + * Specifies which participants can bypass the meeting lobby. */ @SerializedName(value = "lobbyBypassSettings", alternate = {"LobbyBypassSettings"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/OpenTypeExtension.java b/src/main/java/com/microsoft/graph/models/extensions/OpenTypeExtension.java index d229e87dace..fbe7355b373 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/OpenTypeExtension.java +++ b/src/main/java/com/microsoft/graph/models/extensions/OpenTypeExtension.java @@ -25,7 +25,7 @@ public class OpenTypeExtension extends Extension implements IJsonBackedObject { /** * The Extension Name. - * A unique text identifier for an open type data extension. Required. + * A unique text identifier for an open type open extension. Required. */ @SerializedName(value = "extensionName", alternate = {"ExtensionName"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Operation.java b/src/main/java/com/microsoft/graph/models/extensions/Operation.java index 114394114a4..e4461bdaf67 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Operation.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Operation.java @@ -42,7 +42,7 @@ public class Operation extends Entity implements IJsonBackedObject { /** * The Status. - * Possible values are: notStarted, running, completed, failed. Read-only. + * The current status of the operation: notStarted, running, completed, failed */ @SerializedName(value = "status", alternate = {"Status"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/OrgContact.java b/src/main/java/com/microsoft/graph/models/extensions/OrgContact.java index 3b043001041..6bce2cf3c46 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/OrgContact.java +++ b/src/main/java/com/microsoft/graph/models/extensions/OrgContact.java @@ -29,7 +29,7 @@ public class OrgContact extends DirectoryObject implements IJsonBackedObject { /** * The Addresses. - * Postal addresses for this organizational contact. For now a contact can only have one physical address. + * */ @SerializedName(value = "addresses", alternate = {"Addresses"}) @Expose @@ -37,7 +37,7 @@ public class OrgContact extends DirectoryObject implements IJsonBackedObject { /** * The Company Name. - * Name of the company that this organizational contact belong to. + * */ @SerializedName(value = "companyName", alternate = {"CompanyName"}) @Expose @@ -45,7 +45,7 @@ public class OrgContact extends DirectoryObject implements IJsonBackedObject { /** * The Department. - * The name for the department in which the contact works. + * */ @SerializedName(value = "department", alternate = {"Department"}) @Expose @@ -53,7 +53,7 @@ public class OrgContact extends DirectoryObject implements IJsonBackedObject { /** * The Display Name. - * Display name for this organizational contact. + * */ @SerializedName(value = "displayName", alternate = {"DisplayName"}) @Expose @@ -61,7 +61,7 @@ public class OrgContact extends DirectoryObject implements IJsonBackedObject { /** * The Given Name. - * First name for this organizational contact. + * */ @SerializedName(value = "givenName", alternate = {"GivenName"}) @Expose @@ -69,7 +69,7 @@ public class OrgContact extends DirectoryObject implements IJsonBackedObject { /** * The Job Title. - * Job title for this organizational contact. + * */ @SerializedName(value = "jobTitle", alternate = {"JobTitle"}) @Expose @@ -77,7 +77,7 @@ public class OrgContact extends DirectoryObject implements IJsonBackedObject { /** * The Mail. - * The SMTP address for the contact, for example, 'jeff@contoso.onmicrosoft.com'. + * */ @SerializedName(value = "mail", alternate = {"Mail"}) @Expose @@ -85,7 +85,7 @@ public class OrgContact extends DirectoryObject implements IJsonBackedObject { /** * The Mail Nickname. - * Email alias (portion of email address pre-pending the @ symbol) for this organizational contact. + * */ @SerializedName(value = "mailNickname", alternate = {"MailNickname"}) @Expose @@ -93,7 +93,7 @@ public class OrgContact extends DirectoryObject implements IJsonBackedObject { /** * The On Premises Last Sync Date Time. - * Date and time when this organizational contact was last synchronized from on-premises AD. 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'. + * */ @SerializedName(value = "onPremisesLastSyncDateTime", alternate = {"OnPremisesLastSyncDateTime"}) @Expose @@ -101,7 +101,7 @@ public class OrgContact extends DirectoryObject implements IJsonBackedObject { /** * The On Premises Provisioning Errors. - * List of any synchronization provisioning errors for this organizational contact. + * */ @SerializedName(value = "onPremisesProvisioningErrors", alternate = {"OnPremisesProvisioningErrors"}) @Expose @@ -109,7 +109,7 @@ public class OrgContact extends DirectoryObject implements IJsonBackedObject { /** * The On Premises Sync Enabled. - * true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced and now mastered in Exchange; null if this object has never been synced from an on-premises directory (default). + * */ @SerializedName(value = "onPremisesSyncEnabled", alternate = {"OnPremisesSyncEnabled"}) @Expose @@ -117,7 +117,7 @@ public class OrgContact extends DirectoryObject implements IJsonBackedObject { /** * The Phones. - * List of phones for this organizational contact. Phone types can be mobile, business, and businessFax. Only one of each type can ever be present in the collection. + * */ @SerializedName(value = "phones", alternate = {"Phones"}) @Expose @@ -125,7 +125,7 @@ public class OrgContact extends DirectoryObject implements IJsonBackedObject { /** * The Proxy Addresses. - * For example: 'SMTP: bob@contoso.com', 'smtp: bob@sales.contoso.com'. The any operator is required for filter expressions on multi-valued properties. Supports $filter. + * */ @SerializedName(value = "proxyAddresses", alternate = {"ProxyAddresses"}) @Expose @@ -133,7 +133,7 @@ public class OrgContact extends DirectoryObject implements IJsonBackedObject { /** * The Surname. - * Last name for this organizational contact. + * */ @SerializedName(value = "surname", alternate = {"Surname"}) @Expose @@ -141,13 +141,13 @@ public class OrgContact extends DirectoryObject implements IJsonBackedObject { /** * The Direct Reports. - * The contact's direct reports. (The users and contacts that have their manager property set to this contact.) Read-only. Nullable. + * */ public DirectoryObjectCollectionPage directReports; /** * The Manager. - * The user or contact that is this contact's manager. Read-only. + * */ @SerializedName(value = "manager", alternate = {"Manager"}) @Expose @@ -155,7 +155,7 @@ public class OrgContact extends DirectoryObject implements IJsonBackedObject { /** * The Member Of. - * Groups that this contact is a member of. Read-only. Nullable. + * */ public DirectoryObjectCollectionPage memberOf; diff --git a/src/main/java/com/microsoft/graph/models/extensions/Organization.java b/src/main/java/com/microsoft/graph/models/extensions/Organization.java index 56fe4852d20..bef147d61ee 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Organization.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Organization.java @@ -42,7 +42,7 @@ public class Organization extends DirectoryObject implements IJsonBackedObject { /** * The Business Phones. - * Telephone number for the organization. Note: Although this is a string collection, only one number can be set for this property. + * Telephone number for the organization. NOTE: Although this is a string collection, only one number can be set for this property. */ @SerializedName(value = "businessPhones", alternate = {"BusinessPhones"}) @Expose @@ -98,7 +98,7 @@ public class Organization extends DirectoryObject implements IJsonBackedObject { /** * The On Premises Last Sync Date Time. - * The time and date at which the tenant was last synced with the on-premise directory. 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'. + * The time and date at which the tenant was last synced with the on-premise directory. 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'. Read-only. */ @SerializedName(value = "onPremisesLastSyncDateTime", alternate = {"OnPremisesLastSyncDateTime"}) @Expose @@ -210,13 +210,13 @@ public class Organization extends DirectoryObject implements IJsonBackedObject { /** * The Certificate Based Auth Configuration. - * Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. + * Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. */ public CertificateBasedAuthConfigurationCollectionPage certificateBasedAuthConfiguration; /** * The Extensions. - * The collection of open extensions defined for the organization resource. Nullable. + * The collection of open extensions defined for the organization. Read-only. Nullable. */ @SerializedName(value = "extensions", alternate = {"Extensions"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Participant.java b/src/main/java/com/microsoft/graph/models/extensions/Participant.java index 2ce720ceb52..e68f33683dc 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Participant.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Participant.java @@ -60,7 +60,7 @@ public class Participant extends Entity implements IJsonBackedObject { /** * The Recording Info. - * Information on whether the participant has recording capability. + * Information about whether the participant has recording capability. */ @SerializedName(value = "recordingInfo", alternate = {"RecordingInfo"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/ParticipantInfo.java b/src/main/java/com/microsoft/graph/models/extensions/ParticipantInfo.java index 651f64f58bd..864b9871c55 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/ParticipantInfo.java +++ b/src/main/java/com/microsoft/graph/models/extensions/ParticipantInfo.java @@ -68,7 +68,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Region. - * The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location, unlike countryCode. Read-only. + * The home region of the participant. This can be a country, a continent, or a larger geographic region. This does not change based on the participant's current physical location. Read-only. */ @SerializedName(value = "region", alternate = {"Region"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/PasswordProfile.java b/src/main/java/com/microsoft/graph/models/extensions/PasswordProfile.java index 76f3a1f641c..fa814dbc9a9 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/PasswordProfile.java +++ b/src/main/java/com/microsoft/graph/models/extensions/PasswordProfile.java @@ -34,7 +34,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Force Change Password Next Sign In. - * If true, at next sign-in, the user must change their password. After a password change, this property will be automatically reset to false. If not set, default is false. + * true if the user must change her password on the next login; otherwise false. */ @SerializedName(value = "forceChangePasswordNextSignIn", alternate = {"ForceChangePasswordNextSignIn"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Permission.java b/src/main/java/com/microsoft/graph/models/extensions/Permission.java index 1c28f15c98b..09bb93617d6 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Permission.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Permission.java @@ -93,7 +93,7 @@ public class Permission extends Entity implements IJsonBackedObject { /** * The Share Id. - * A unique token that can be used to access this shared item via the [shares API][]. Read-only. + * A unique token that can be used to access this shared item via the **shares** API. Read-only. */ @SerializedName(value = "shareId", alternate = {"ShareId"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/PermissionGrantConditionSet.java b/src/main/java/com/microsoft/graph/models/extensions/PermissionGrantConditionSet.java index 9688119f37e..bda32dc3a30 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/PermissionGrantConditionSet.java +++ b/src/main/java/com/microsoft/graph/models/extensions/PermissionGrantConditionSet.java @@ -66,7 +66,7 @@ public class PermissionGrantConditionSet extends Entity implements IJsonBackedOb /** * The Permissions. - * The list of id values for the specific permissions to match with, or a list with the single value 'all' to match with any permission. The id of delegated permissions can be found in the publishedPermissionScopes property of the API's **servicePrincipal** object. The id of application permissions can be found in the appRoles property of the API's **servicePrincipal** object. The id of resource-specific application permissions can be found in the resourceSpecificApplicationPermissions property of the API's **servicePrincipal** object. Default is the single value 'all'. + * The list of id values for the specific permissions to match with, or a list with the single value 'all' to match with any permission. The id of delegated permissions can be found in the oauth2PermissionScopes property of the API's **servicePrincipal** object. The id of application permissions can be found in the appRoles property of the API's **servicePrincipal** object. The id of resource-specific application permissions can be found in the resourceSpecificApplicationPermissions property of the API's **servicePrincipal** object. Default is the single value 'all'. */ @SerializedName(value = "permissions", alternate = {"Permissions"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Person.java b/src/main/java/com/microsoft/graph/models/extensions/Person.java index 2eb8c1c36e0..f52073e6835 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Person.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Person.java @@ -110,7 +110,7 @@ public class Person extends Entity implements IJsonBackedObject { /** * The Person Type. - * The type of person, for example distribution list. + * The type of person. */ @SerializedName(value = "personType", alternate = {"PersonType"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Phone.java b/src/main/java/com/microsoft/graph/models/extensions/Phone.java index 4c4040b226a..cbc20827fed 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Phone.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Phone.java @@ -59,7 +59,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Type. - * The type of phone number. Possible values are: home, business, mobile, other, assistant, homeFax, businessFax, otherFax, pager, radio. + * The type of phone number. The possible values are: home, business, mobile, other, assistant, homeFax, businessFax, otherFax, pager, radio. */ @SerializedName(value = "type", alternate = {"Type"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Photo.java b/src/main/java/com/microsoft/graph/models/extensions/Photo.java index c735564addf..88ef19de82b 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Photo.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Photo.java @@ -98,7 +98,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Taken Date Time. - * The date and time the photo was taken in UTC time. Read-only. + * Represents the date and time the photo was taken. Read-only. */ @SerializedName(value = "takenDateTime", alternate = {"TakenDateTime"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/PlannerPlan.java b/src/main/java/com/microsoft/graph/models/extensions/PlannerPlan.java index 001acf326cc..a4eaff3630e 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/PlannerPlan.java +++ b/src/main/java/com/microsoft/graph/models/extensions/PlannerPlan.java @@ -63,7 +63,7 @@ public class PlannerPlan extends Entity implements IJsonBackedObject { /** * The Buckets. - * Collection of buckets in the plan. Read-only. Nullable. + * Read-only. Nullable. Collection of buckets in the plan. */ @SerializedName(value = "buckets", alternate = {"Buckets"}) @Expose @@ -71,7 +71,7 @@ public class PlannerPlan extends Entity implements IJsonBackedObject { /** * The Details. - * Additional details about the plan. Read-only. Nullable. + * Read-only. Nullable. Additional details about the plan. */ @SerializedName(value = "details", alternate = {"Details"}) @Expose @@ -79,7 +79,7 @@ public class PlannerPlan extends Entity implements IJsonBackedObject { /** * The Tasks. - * Collection of tasks in the plan. Read-only. Nullable. + * Read-only. Nullable. Collection of tasks in the plan. */ @SerializedName(value = "tasks", alternate = {"Tasks"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/PlannerPlanDetails.java b/src/main/java/com/microsoft/graph/models/extensions/PlannerPlanDetails.java index e8841b62833..97d1b7bddb2 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/PlannerPlanDetails.java +++ b/src/main/java/com/microsoft/graph/models/extensions/PlannerPlanDetails.java @@ -35,7 +35,7 @@ public class PlannerPlanDetails extends Entity implements IJsonBackedObject { /** * The Shared With. - * The set of user IDs that this plan is shared with. If you are using Microsoft 365 groups, use the groups API to manage group membership to share the group's plan. You can also add existing members of the group to this collection, although it is not required in order for them to access the plan owned by the group. + * Set of user ids that this plan is shared with. If you are leveraging Microsoft 365 groups, use the Groups API to manage group membership to share the group's plan. You can also add existing members of the group to this collection though it is not required for them to access the plan owned by the group. */ @SerializedName(value = "sharedWith", alternate = {"SharedWith"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/PlannerTask.java b/src/main/java/com/microsoft/graph/models/extensions/PlannerTask.java index 6df7eb3323f..209c2437ca1 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/PlannerTask.java +++ b/src/main/java/com/microsoft/graph/models/extensions/PlannerTask.java @@ -161,7 +161,7 @@ public class PlannerTask extends Entity implements IJsonBackedObject { /** * The Preview Type. - * This sets the type of preview that shows up on the task. Possible values are: automatic, noPreview, checklist, description, reference. + * This sets the type of preview that shows up on the task. The possible values are: automatic, noPreview, checklist, description, reference. */ @SerializedName(value = "previewType", alternate = {"PreviewType"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/PlannerTaskDetails.java b/src/main/java/com/microsoft/graph/models/extensions/PlannerTaskDetails.java index f27a5dc49ab..b9a3afb9657 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/PlannerTaskDetails.java +++ b/src/main/java/com/microsoft/graph/models/extensions/PlannerTaskDetails.java @@ -44,7 +44,7 @@ public class PlannerTaskDetails extends Entity implements IJsonBackedObject { /** * The Preview Type. - * This sets the type of preview that shows up on the task. Possible values are: automatic, noPreview, checklist, description, reference. When set to automatic the displayed preview is chosen by the app viewing the task. + * This sets the type of preview that shows up on the task. The possible values are: automatic, noPreview, checklist, description, reference. When set to automatic the displayed preview is chosen by the app viewing the task. */ @SerializedName(value = "previewType", alternate = {"PreviewType"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/PlannerUser.java b/src/main/java/com/microsoft/graph/models/extensions/PlannerUser.java index 636acc2006c..f0a6e350cef 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/PlannerUser.java +++ b/src/main/java/com/microsoft/graph/models/extensions/PlannerUser.java @@ -37,7 +37,7 @@ public class PlannerUser extends Entity implements IJsonBackedObject { /** * The Tasks. - * Read-only. Nullable. Returns the plannerTasks assigned to the user. + * Read-only. Nullable. Returns the plannerPlans shared with the user. */ @SerializedName(value = "tasks", alternate = {"Tasks"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Post.java b/src/main/java/com/microsoft/graph/models/extensions/Post.java index ec482fdbff9..5ab31ea1d91 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Post.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Post.java @@ -100,7 +100,7 @@ public class Post extends OutlookItem implements IJsonBackedObject { /** * The Attachments. - * The collection of fileAttachment, itemAttachment, and referenceAttachment attachments for the post. Read-only. Nullable. + * Read-only. Nullable. */ @SerializedName(value = "attachments", alternate = {"Attachments"}) @Expose @@ -116,7 +116,7 @@ public class Post extends OutlookItem implements IJsonBackedObject { /** * The In Reply To. - * The earlier post that this post is replying to in the conversationThread. Read-only. + * Read-only. */ @SerializedName(value = "inReplyTo", alternate = {"InReplyTo"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Presence.java b/src/main/java/com/microsoft/graph/models/extensions/Presence.java index e891efb341b..ff066157249 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Presence.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Presence.java @@ -25,7 +25,7 @@ public class Presence extends Entity implements IJsonBackedObject { /** * The Activity. - * The supplemental information to a user's availability. Possible values are Available, Away, BeRightBack, Busy, DoNotDisturb, InACall, InAConferenceCall, Inactive,InAMeeting, Offline, OffWork,OutOfOffice, PresenceUnknown,Presenting, UrgentInterruptionsOnly. + * The supplemental information to a user's availability. Possible values are Available, Away, BeRightBack, Busy, DoNotDisturb, InACall, InAConferenceCall, Inactive, InAMeeting, Offline, OffWork, OutOfOffice, PresenceUnknown, Presenting, UrgentInterruptionsOnly. */ @SerializedName(value = "activity", alternate = {"Activity"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/PublicError.java b/src/main/java/com/microsoft/graph/models/extensions/PublicError.java index 733c21de08c..5f47a6d16b1 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/PublicError.java +++ b/src/main/java/com/microsoft/graph/models/extensions/PublicError.java @@ -36,7 +36,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Code. - * Represents the error code. + * */ @SerializedName(value = "code", alternate = {"Code"}) @Expose @@ -44,7 +44,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Details. - * Details of the error. + * */ @SerializedName(value = "details", alternate = {"Details"}) @Expose @@ -52,7 +52,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Inner Error. - * Details of the inner error. + * */ @SerializedName(value = "innerError", alternate = {"InnerError"}) @Expose @@ -60,7 +60,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Message. - * A non-localized message for the developer. + * */ @SerializedName(value = "message", alternate = {"Message"}) @Expose @@ -68,7 +68,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Target. - * The target of the error. + * */ @SerializedName(value = "target", alternate = {"Target"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/PublicErrorDetail.java b/src/main/java/com/microsoft/graph/models/extensions/PublicErrorDetail.java index 3cfd87c9f04..aa26957ffad 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/PublicErrorDetail.java +++ b/src/main/java/com/microsoft/graph/models/extensions/PublicErrorDetail.java @@ -34,7 +34,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Code. - * The error code. + * */ @SerializedName(value = "code", alternate = {"Code"}) @Expose @@ -42,7 +42,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Message. - * The error message. + * */ @SerializedName(value = "message", alternate = {"Message"}) @Expose @@ -50,7 +50,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Target. - * The target of the error. + * */ @SerializedName(value = "target", alternate = {"Target"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/PublicInnerError.java b/src/main/java/com/microsoft/graph/models/extensions/PublicInnerError.java index 9282b276060..97150d86005 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/PublicInnerError.java +++ b/src/main/java/com/microsoft/graph/models/extensions/PublicInnerError.java @@ -35,7 +35,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Code. - * The error code. + * */ @SerializedName(value = "code", alternate = {"Code"}) @Expose @@ -43,7 +43,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Details. - * A collection of error details. + * */ @SerializedName(value = "details", alternate = {"Details"}) @Expose @@ -51,7 +51,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Message. - * The error message. + * */ @SerializedName(value = "message", alternate = {"Message"}) @Expose @@ -59,7 +59,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Target. - * The target of the error. + * */ @SerializedName(value = "target", alternate = {"Target"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/RecentNotebookLinks.java b/src/main/java/com/microsoft/graph/models/extensions/RecentNotebookLinks.java index 07120468c70..fc52a30718e 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/RecentNotebookLinks.java +++ b/src/main/java/com/microsoft/graph/models/extensions/RecentNotebookLinks.java @@ -35,7 +35,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The One Note Client Url. - * Opens the notebook in the OneNote client, if it's installed. + * Opens the notebook in the OneNote native client if it's installed. */ @SerializedName(value = "oneNoteClientUrl", alternate = {"OneNoteClientUrl"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/RecordingInfo.java b/src/main/java/com/microsoft/graph/models/extensions/RecordingInfo.java index 77b9e2a3273..732da901b2b 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/RecordingInfo.java +++ b/src/main/java/com/microsoft/graph/models/extensions/RecordingInfo.java @@ -36,7 +36,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Initiator. - * The identities of recording initiator. + * The identities of the recording initiator. */ @SerializedName(value = "initiator", alternate = {"Initiator"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/RecurrencePattern.java b/src/main/java/com/microsoft/graph/models/extensions/RecurrencePattern.java index fe8b9920398..3511699aa39 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/RecurrencePattern.java +++ b/src/main/java/com/microsoft/graph/models/extensions/RecurrencePattern.java @@ -45,7 +45,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Days Of Week. - * A collection of the days of the week on which the event occurs. Possible values are: sunday, monday, tuesday, wednesday, thursday, friday, saturday. If type is relativeMonthly or relativeYearly, and daysOfWeek specifies more than one day, the event falls on the first day that satisfies the pattern. Required if type is weekly, relativeMonthly, or relativeYearly. + * A collection of the days of the week on which the event occurs. The possible values are: sunday, monday, tuesday, wednesday, thursday, friday, saturday. If type is relativeMonthly or relativeYearly, and daysOfWeek specifies more than one day, the event falls on the first day that satisfies the pattern. Required if type is weekly, relativeMonthly, or relativeYearly. */ @SerializedName(value = "daysOfWeek", alternate = {"DaysOfWeek"}) @Expose @@ -53,7 +53,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The First Day Of Week. - * The first day of the week. Possible values are: sunday, monday, tuesday, wednesday, thursday, friday, saturday. Default is sunday. Required if type is weekly. + * The first day of the week. The possible values are: sunday, monday, tuesday, wednesday, thursday, friday, saturday. Default is sunday. Required if type is weekly. */ @SerializedName(value = "firstDayOfWeek", alternate = {"FirstDayOfWeek"}) @Expose @@ -61,7 +61,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Index. - * Specifies on which instance of the allowed days specified in daysOfsWeek the event occurs, counted from the first instance in the month. Possible values are: first, second, third, fourth, last. Default is first. Optional and used if type is relativeMonthly or relativeYearly. + * Specifies on which instance of the allowed days specified in daysOfsWeek the event occurs, counted from the first instance in the month. The possible values are: first, second, third, fourth, last. Default is first. Optional and used if type is relativeMonthly or relativeYearly. */ @SerializedName(value = "index", alternate = {"Index"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/RecurrenceRange.java b/src/main/java/com/microsoft/graph/models/extensions/RecurrenceRange.java index 1edda74bfd6..63555749c6e 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/RecurrenceRange.java +++ b/src/main/java/com/microsoft/graph/models/extensions/RecurrenceRange.java @@ -67,7 +67,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Type. - * The recurrence range. Possible values are: endDate, noEnd, numbered. Required. + * The recurrence range. The possible values are: endDate, noEnd, numbered. Required. */ @SerializedName(value = "type", alternate = {"Type"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/RemoteAssistancePartner.java b/src/main/java/com/microsoft/graph/models/extensions/RemoteAssistancePartner.java index f14b37eca90..90814a879f4 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/RemoteAssistancePartner.java +++ b/src/main/java/com/microsoft/graph/models/extensions/RemoteAssistancePartner.java @@ -42,7 +42,7 @@ public class RemoteAssistancePartner extends Entity implements IJsonBackedObject /** * The Onboarding Status. - * A friendly description of the current TeamViewer connector status. Possible values are: notOnboarded, onboarding, onboarded. + * TBD. Possible values are: notOnboarded, onboarding, onboarded. */ @SerializedName(value = "onboardingStatus", alternate = {"OnboardingStatus"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/ResourceAction.java b/src/main/java/com/microsoft/graph/models/extensions/ResourceAction.java index bc1ede7e896..a74db060bfa 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/ResourceAction.java +++ b/src/main/java/com/microsoft/graph/models/extensions/ResourceAction.java @@ -42,7 +42,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Not Allowed Resource Actions. - * Not Allowed Actions. + * Not Allowed Actions */ @SerializedName(value = "notAllowedResourceActions", alternate = {"NotAllowedResourceActions"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/ResponseStatus.java b/src/main/java/com/microsoft/graph/models/extensions/ResponseStatus.java index 18bb8bf70c5..1669c94b2fc 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/ResponseStatus.java +++ b/src/main/java/com/microsoft/graph/models/extensions/ResponseStatus.java @@ -35,7 +35,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Response. - * The response type. Possible values are: None, Organizer, TentativelyAccepted, Accepted, Declined, NotResponded. + * The response type. The possible values are: None, Organizer, TentativelyAccepted, Accepted, Declined, NotResponded. */ @SerializedName(value = "response", alternate = {"Response"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/RolePermission.java b/src/main/java/com/microsoft/graph/models/extensions/RolePermission.java index 695897b2631..dd06135abb1 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/RolePermission.java +++ b/src/main/java/com/microsoft/graph/models/extensions/RolePermission.java @@ -35,7 +35,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Resource Actions. - * Resource Actions each containing a set of allowed and not allowed permissions. + * Actions */ @SerializedName(value = "resourceActions", alternate = {"ResourceActions"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Room.java b/src/main/java/com/microsoft/graph/models/extensions/Room.java index f753709efb8..1120aaa6de5 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Room.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Room.java @@ -90,7 +90,7 @@ public class Room extends Place implements IJsonBackedObject { /** * The Is Wheel Chair Accessible. - * + * Specifies whether the room is wheelchair accessible. */ @SerializedName(value = "isWheelChairAccessible", alternate = {"IsWheelChairAccessible"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/SchemaExtension.java b/src/main/java/com/microsoft/graph/models/extensions/SchemaExtension.java index 2cb90462e59..957b9fb5427 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/SchemaExtension.java +++ b/src/main/java/com/microsoft/graph/models/extensions/SchemaExtension.java @@ -58,7 +58,7 @@ public class SchemaExtension extends Entity implements IJsonBackedObject { /** * The Target Types. - * Set of Microsoft Graph types (that can support extensions) that the schema extension can be applied to. Select from administrativeUnit, contact, device, event, group, message, organization, post, or user. + * Set of Microsoft Graph types (that can support extensions) that the schema extension can be applied to. Select from contact, device, event, group, message, organization, post, or user. */ @SerializedName(value = "targetTypes", alternate = {"TargetTypes"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/SearchRequest.java b/src/main/java/com/microsoft/graph/models/extensions/SearchRequest.java index e1a2298e0bc..2f590e57f4d 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/SearchRequest.java +++ b/src/main/java/com/microsoft/graph/models/extensions/SearchRequest.java @@ -36,7 +36,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Content Sources. - * Contains the connection to be targeted. Respects the following format : /external/connections/connectionid where connectionid is the ConnectionId defined in the Connectors Administration. Note : contentSource is only applicable when entityType=externalItem. Optional. + * */ @SerializedName(value = "contentSources", alternate = {"ContentSources"}) @Expose @@ -44,7 +44,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Enable Top Results. - * This triggers hybrid sort for messages : the first 3 messages are the most relevant. This property is only applicable to entityType=message. Optional. + * */ @SerializedName(value = "enableTopResults", alternate = {"EnableTopResults"}) @Expose @@ -52,7 +52,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Entity Types. - * One or more types of resources expected in the response. Possible values are: list, site, listItem, message, event, drive, driveItem, externalItem. See known limitations for those combinations of two or more entity types that are supported in the same search request. Required. + * */ @SerializedName(value = "entityTypes", alternate = {"EntityTypes"}) @Expose @@ -60,7 +60,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Fields. - * Contains the fields to be returned for each resource object specified in entityTypes, allowing customization of the fields returned by default otherwise, including additional fields such as custom managed properties from SharePoint and OneDrive, or custom fields in externalItem from content ingested by Graph connectors. Optional. + * */ @SerializedName(value = "fields", alternate = {"Fields"}) @Expose @@ -68,7 +68,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The From. - * Specifies the offset for the search results. Offset 0 returns the very first result. Optional. + * */ @SerializedName(value = "from", alternate = {"From"}) @Expose @@ -76,7 +76,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Query. - * Contains the query terms. Required. + * */ @SerializedName(value = "query", alternate = {"Query"}) @Expose @@ -84,7 +84,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Size. - * The size of the page to be retrieved. Optional. + * */ @SerializedName(value = "size", alternate = {"Size"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/SecureScoreControlProfile.java b/src/main/java/com/microsoft/graph/models/extensions/SecureScoreControlProfile.java index 3fb3b6553c9..c907ec779fe 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/SecureScoreControlProfile.java +++ b/src/main/java/com/microsoft/graph/models/extensions/SecureScoreControlProfile.java @@ -52,7 +52,7 @@ public class SecureScoreControlProfile extends Entity implements IJsonBackedObje /** * The Compliance Information. - * The collection of compliance information associated with secure score control + * */ @SerializedName(value = "complianceInformation", alternate = {"ComplianceInformation"}) @Expose @@ -60,7 +60,7 @@ public class SecureScoreControlProfile extends Entity implements IJsonBackedObje /** * The Control Category. - * Control action category (Account, Data, Device, Apps, Infrastructure). + * Control action category (Identity, Data, Device, Apps, Infrastructure). */ @SerializedName(value = "controlCategory", alternate = {"ControlCategory"}) @Expose @@ -68,7 +68,7 @@ public class SecureScoreControlProfile extends Entity implements IJsonBackedObje /** * The Control State Updates. - * Flag to indicate where the tenant has marked a control (ignore, thirdParty, reviewed) (supports update). + * */ @SerializedName(value = "controlStateUpdates", alternate = {"ControlStateUpdates"}) @Expose @@ -100,7 +100,7 @@ public class SecureScoreControlProfile extends Entity implements IJsonBackedObje /** * The Max Score. - * Current obtained max score on specified date. + * max attainable score for the control. */ @SerializedName(value = "maxScore", alternate = {"MaxScore"}) @Expose @@ -140,7 +140,7 @@ public class SecureScoreControlProfile extends Entity implements IJsonBackedObje /** * The Threats. - * List of threats the control mitigates (accountBreach,dataDeletion,dataExfiltration,dataSpillage,elevationOfPrivilege,maliciousInsider,passwordCracking,phishingOrWhaling,spoofing). + * List of threats the control mitigates (accountBreach,dataDeletion,dataExfiltration,dataSpillage, */ @SerializedName(value = "threats", alternate = {"Threats"}) @Expose @@ -148,7 +148,7 @@ public class SecureScoreControlProfile extends Entity implements IJsonBackedObje /** * The Tier. - * Control tier (Core, Defense in Depth, Advanced.) + * */ @SerializedName(value = "tier", alternate = {"Tier"}) @Expose @@ -164,7 +164,7 @@ public class SecureScoreControlProfile extends Entity implements IJsonBackedObje /** * The User Impact. - * User impact of implementing control (low, moderate, high). + * */ @SerializedName(value = "userImpact", alternate = {"UserImpact"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/SecureScoreControlStateUpdate.java b/src/main/java/com/microsoft/graph/models/extensions/SecureScoreControlStateUpdate.java index 0b8f5bd5692..a4a151012f5 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/SecureScoreControlStateUpdate.java +++ b/src/main/java/com/microsoft/graph/models/extensions/SecureScoreControlStateUpdate.java @@ -34,7 +34,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Assigned To. - * Assigns the control to the user who will take the action. + * */ @SerializedName(value = "assignedTo", alternate = {"AssignedTo"}) @Expose @@ -42,7 +42,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Comment. - * Provides optional comment about the control. + * */ @SerializedName(value = "comment", alternate = {"Comment"}) @Expose @@ -50,7 +50,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The State. - * State of the control, which can be modified via a PATCH command (for example, ignored, thirdParty). + * */ @SerializedName(value = "state", alternate = {"State"}) @Expose @@ -58,7 +58,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Updated By. - * ID of the user who updated tenant state. + * */ @SerializedName(value = "updatedBy", alternate = {"UpdatedBy"}) @Expose @@ -66,7 +66,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Updated Date Time. - * Time at which the control state was updated. + * */ @SerializedName(value = "updatedDateTime", alternate = {"UpdatedDateTime"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/ServicePlanInfo.java b/src/main/java/com/microsoft/graph/models/extensions/ServicePlanInfo.java index 252ca792b98..21ec89278c0 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/ServicePlanInfo.java +++ b/src/main/java/com/microsoft/graph/models/extensions/ServicePlanInfo.java @@ -42,7 +42,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Provisioning Status. - * The provisioning status of the service plan. Possible values:'Success' - Service is fully provisioned.'Disabled' - Service has been disabled.'PendingInput' - Service is not yet provisioned; awaiting service confirmation.'PendingActivation' - Service is provisioned but requires explicit activation by administrator (for example, Intune_O365 service plan).'PendingProvisioning' - Microsoft has added a new service to the product SKU and it has not been activated in the tenant, yet. + * The provisioning status of the service plan. Possible values:'Success' - Service is fully provisioned.'Disabled' - Service has been disabled.'PendingInput' - Service is not yet provisioned; awaiting service confirmation.'PendingActivation' - Service is provisioned but requires explicit activation by administrator (for example, Intune_O365 service plan)'PendingProvisioning' - Microsoft has added a new service to the product SKU and it has not been activated in the tenant, yet. */ @SerializedName(value = "provisioningStatus", alternate = {"ProvisioningStatus"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/ServicePrincipal.java b/src/main/java/com/microsoft/graph/models/extensions/ServicePrincipal.java index 869234eb340..b15fba65cfa 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/ServicePrincipal.java +++ b/src/main/java/com/microsoft/graph/models/extensions/ServicePrincipal.java @@ -225,7 +225,7 @@ public class ServicePrincipal extends DirectoryObject implements IJsonBackedObje /** * The Preferred Token Signing Key Thumbprint. - * Reserved for internal use only. Do not write or otherwise rely on this property. May be removed in future versions. + * */ @SerializedName(value = "preferredTokenSigningKeyThumbprint", alternate = {"PreferredTokenSigningKeyThumbprint"}) @Expose @@ -265,7 +265,7 @@ public class ServicePrincipal extends DirectoryObject implements IJsonBackedObje /** * The Sign In Audience. - * Specifies what Microsoft accounts are supported for the associated application. Read-only. + * */ @SerializedName(value = "signInAudience", alternate = {"SignInAudience"}) @Expose @@ -317,7 +317,7 @@ public class ServicePrincipal extends DirectoryObject implements IJsonBackedObje /** * The Delegated Permission Classifications. - * The permission classifications for delegated permissions exposed by the app that this service principal represents. + * */ @SerializedName(value = "delegatedPermissionClassifications", alternate = {"DelegatedPermissionClassifications"}) @Expose @@ -325,7 +325,7 @@ public class ServicePrincipal extends DirectoryObject implements IJsonBackedObje /** * The Endpoints. - * Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. + * */ @SerializedName(value = "endpoints", alternate = {"Endpoints"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/SettingTemplateValue.java b/src/main/java/com/microsoft/graph/models/extensions/SettingTemplateValue.java index 47aacb2ff28..574a6dc86c1 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/SettingTemplateValue.java +++ b/src/main/java/com/microsoft/graph/models/extensions/SettingTemplateValue.java @@ -34,7 +34,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Default Value. - * Default value for the setting. Read-only. + * Default value for the setting. */ @SerializedName(value = "defaultValue", alternate = {"DefaultValue"}) @Expose @@ -42,7 +42,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Description. - * Description of the setting. Read-only. + * Description of the setting. */ @SerializedName(value = "description", alternate = {"Description"}) @Expose @@ -50,7 +50,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Name. - * Name of the setting. Read-only. + * Name of the setting. */ @SerializedName(value = "name", alternate = {"Name"}) @Expose @@ -58,7 +58,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Type. - * Type of the setting. Read-only. + * Type of the setting. */ @SerializedName(value = "type", alternate = {"Type"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/SettingValue.java b/src/main/java/com/microsoft/graph/models/extensions/SettingValue.java index 92257ae805f..8d24b256fc2 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/SettingValue.java +++ b/src/main/java/com/microsoft/graph/models/extensions/SettingValue.java @@ -34,7 +34,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Name. - * Name of the setting (as defined by the directorySettingTemplate). + * Name of the setting (as defined by the groupSettingTemplate). */ @SerializedName(value = "name", alternate = {"Name"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/SharedPCConfiguration.java b/src/main/java/com/microsoft/graph/models/extensions/SharedPCConfiguration.java index e136ede22cc..9f2bc65382f 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/SharedPCConfiguration.java +++ b/src/main/java/com/microsoft/graph/models/extensions/SharedPCConfiguration.java @@ -35,7 +35,7 @@ public class SharedPCConfiguration extends DeviceConfiguration implements IJsonB /** * The Allowed Accounts. - * Indicates which type of accounts are allowed to use on a shared PC. Possible values are: notConfigured, guest, domain. + * Indicates which type of accounts are allowed to use on a shared PC. Possible values are: guest, domain. */ @SerializedName(value = "allowedAccounts", alternate = {"AllowedAccounts"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/SignIn.java b/src/main/java/com/microsoft/graph/models/extensions/SignIn.java index c322abe817b..d054c7080b7 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/SignIn.java +++ b/src/main/java/com/microsoft/graph/models/extensions/SignIn.java @@ -34,7 +34,7 @@ public class SignIn extends Entity implements IJsonBackedObject { /** * The App Display Name. - * The application name displayed in the Azure Portal. + * App name displayed in the Azure Portal. */ @SerializedName(value = "appDisplayName", alternate = {"AppDisplayName"}) @Expose @@ -42,7 +42,7 @@ public class SignIn extends Entity implements IJsonBackedObject { /** * The App Id. - * The application identifier in Azure Active Directory. + * Unique GUID representing the app ID in the Azure Active Directory. */ @SerializedName(value = "appId", alternate = {"AppId"}) @Expose @@ -50,7 +50,7 @@ public class SignIn extends Entity implements IJsonBackedObject { /** * The Applied Conditional Access Policies. - * A list of conditional access policies that are triggered by the corresponding sign-in activity. + * */ @SerializedName(value = "appliedConditionalAccessPolicies", alternate = {"AppliedConditionalAccessPolicies"}) @Expose @@ -58,7 +58,7 @@ public class SignIn extends Entity implements IJsonBackedObject { /** * The Client App Used. - * The legacy client used for sign-in activity. For example, Browser, Exchange Active Sync,Modern clients, IMAP, MAPI, SMTP, or POP. + * Identifies the legacy client used for sign-in activity. Includes Browser, Exchange Active Sync, modern clients, IMAP, MAPI, SMTP, and POP. */ @SerializedName(value = "clientAppUsed", alternate = {"ClientAppUsed"}) @Expose @@ -66,7 +66,7 @@ public class SignIn extends Entity implements IJsonBackedObject { /** * The Conditional Access Status. - * The status of the conditional access policy triggered. Possible values: success, failure, notApplied, or unknownFutureValue. + * Reports status of an activated conditional access policy. Possible values are: success, failure, notApplied, and unknownFutureValue. */ @SerializedName(value = "conditionalAccessStatus", alternate = {"ConditionalAccessStatus"}) @Expose @@ -74,7 +74,7 @@ public class SignIn extends Entity implements IJsonBackedObject { /** * The Correlation Id. - * The identifier that's sent from the client when sign-in is initiated. This is used for troubleshooting the corresponding sign-in activity when calling for support. + * The request ID sent from the client when the sign-in is initiated; used to troubleshoot sign-in activity. */ @SerializedName(value = "correlationId", alternate = {"CorrelationId"}) @Expose @@ -82,7 +82,7 @@ public class SignIn extends Entity implements IJsonBackedObject { /** * The Created Date Time. - * The date and time the sign-in was initiated. The Timestamp type is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. + * Date and time (UTC) the sign-in was initiated. Example: midnight on Jan 1, 2014 is reported as '2014-01-01T00:00:00Z'. */ @SerializedName(value = "createdDateTime", alternate = {"CreatedDateTime"}) @Expose @@ -90,7 +90,7 @@ public class SignIn extends Entity implements IJsonBackedObject { /** * The Device Detail. - * The device information from where the sign-in occurred. Includes information such as deviceId, OS, and browser. + * Device information from where the sign-in occurred; includes device ID, operating system, and browser. */ @SerializedName(value = "deviceDetail", alternate = {"DeviceDetail"}) @Expose @@ -98,7 +98,7 @@ public class SignIn extends Entity implements IJsonBackedObject { /** * The Ip Address. - * The IP address of the client from where the sign-in occurred. + * IP address of the client used to sign in. */ @SerializedName(value = "ipAddress", alternate = {"IpAddress"}) @Expose @@ -106,7 +106,7 @@ public class SignIn extends Entity implements IJsonBackedObject { /** * The Is Interactive. - * Indicates whether a sign-in is interactive or not. + * Indicates if a sign-in is interactive or not. */ @SerializedName(value = "isInteractive", alternate = {"IsInteractive"}) @Expose @@ -114,7 +114,7 @@ public class SignIn extends Entity implements IJsonBackedObject { /** * The Location. - * The city, state, and 2 letter country code from where the sign-in occurred. + * Provides the city, state, and country code where the sign-in originated. */ @SerializedName(value = "location", alternate = {"Location"}) @Expose @@ -122,7 +122,7 @@ public class SignIn extends Entity implements IJsonBackedObject { /** * The Resource Display Name. - * The name of the resource that the user signed in to. + * Name of the resource the user signed into. */ @SerializedName(value = "resourceDisplayName", alternate = {"ResourceDisplayName"}) @Expose @@ -130,7 +130,7 @@ public class SignIn extends Entity implements IJsonBackedObject { /** * The Resource Id. - * The identifier of the resource that the user signed in to. + * ID of the resource that the user signed into. */ @SerializedName(value = "resourceId", alternate = {"ResourceId"}) @Expose @@ -138,7 +138,7 @@ public class SignIn extends Entity implements IJsonBackedObject { /** * The Risk Detail. - * The reason behind a specific state of a risky user, sign-in, or a risk event. Possible values: none, adminGeneratedTemporaryPassword, userPerformedSecuredPasswordChange, userPerformedSecuredPasswordReset, adminConfirmedSigninSafe, aiConfirmedSigninSafe, userPassedMFADrivenByRiskBasedPolicy, adminDismissedAllRiskForUser, adminConfirmedSigninCompromised, or unknownFutureValue. The value none means that no action has been performed on the user or sign-in so far. Note: Details for this property are only available for Azure AD Premium P2 customers. All other customers are returned hidden. + * Provides the 'reason' behind a specific state of a risky user, sign-in or a risk event. The possible values are: none, adminGeneratedTemporaryPassword, userPerformedSecuredPasswordChange, userPerformedSecuredPasswordReset, adminConfirmedSigninSafe, aiConfirmedSigninSafe, userPassedMFADrivenByRiskBasedPolicy, adminDismissedAllRiskForUser, adminConfirmedSigninCompromised, unknownFutureValue. The value none means that no action has been performed on the user or sign-in so far. Note: Details for this property require an Azure AD Premium P2 license. Other licenses return the value hidden. */ @SerializedName(value = "riskDetail", alternate = {"RiskDetail"}) @Expose @@ -146,7 +146,7 @@ public class SignIn extends Entity implements IJsonBackedObject { /** * The Risk Event Types. - * The list of risk event types associated with the sign-in. Possible values: unlikelyTravel, anonymizedIPAddress, maliciousIPAddress, unfamiliarFeatures, malwareInfectedIPAddress, suspiciousIPAddress, leakedCredentials, investigationsThreatIntelligence, generic, or unknownFutureValue. + * Risk event types associated with the sign-in. The possible values are: unlikelyTravel, anonymizedIPAddress, maliciousIPAddress, unfamiliarFeatures, malwareInfectedIPAddress, suspiciousIPAddress, leakedCredentials, investigationsThreatIntelligence, generic, and unknownFutureValue. */ @SerializedName(value = "riskEventTypes", alternate = {"RiskEventTypes"}) @Expose @@ -162,7 +162,7 @@ public class SignIn extends Entity implements IJsonBackedObject { /** * The Risk Level Aggregated. - * The aggregated risk level. Possible values: none, low, medium, high, hidden, or unknownFutureValue. The value hidden means the user or sign-in was not enabled for Azure AD Identity Protection. Note: Details for this property are only available for Azure AD Premium P2 customers. All other customers are returned hidden. + * Aggregated risk level. The possible values are: none, low, medium, high, hidden, and unknownFutureValue. The value hidden means the user or sign-in was not enabled for Azure AD Identity Protection. Note: Details for this property are only available for Azure AD Premium P2 customers. All other customers will be returned hidden. */ @SerializedName(value = "riskLevelAggregated", alternate = {"RiskLevelAggregated"}) @Expose @@ -170,7 +170,7 @@ public class SignIn extends Entity implements IJsonBackedObject { /** * The Risk Level During Sign In. - * The risk level during sign-in. Possible values: none, low, medium, high, hidden, or unknownFutureValue. The value hidden means the user or sign-in was not enabled for Azure AD Identity Protection. Note: Details for this property are only available for Azure AD Premium P2 customers. All other customers are returned hidden. + * Risk level during sign-in. The possible values are: none, low, medium, high, hidden, and unknownFutureValue. The value hidden means the user or sign-in was not enabled for Azure AD Identity Protection. Note: Details for this property are only available for Azure AD Premium P2 customers. All other customers will be returned hidden. */ @SerializedName(value = "riskLevelDuringSignIn", alternate = {"RiskLevelDuringSignIn"}) @Expose @@ -178,7 +178,7 @@ public class SignIn extends Entity implements IJsonBackedObject { /** * The Risk State. - * The risk state of a risky user, sign-in, or a risk event. Possible values: none, confirmedSafe, remediated, dismissed, atRisk, confirmedCompromised, or unknownFutureValue. + * Reports status of the risky user, sign-in, or a risk event. The possible values are: none, confirmedSafe, remediated, dismissed, atRisk, confirmedCompromised, unknownFutureValue. */ @SerializedName(value = "riskState", alternate = {"RiskState"}) @Expose @@ -186,7 +186,7 @@ public class SignIn extends Entity implements IJsonBackedObject { /** * The Status. - * The sign-in status. Includes the error code and description of the error (in case of a sign-in failure). + * Sign-in status. Includes the error code and description of the error (in case of a sign-in failure). */ @SerializedName(value = "status", alternate = {"Status"}) @Expose @@ -194,7 +194,7 @@ public class SignIn extends Entity implements IJsonBackedObject { /** * The User Display Name. - * The display name of the user. + * Display name of the user that initiated the sign-in. */ @SerializedName(value = "userDisplayName", alternate = {"UserDisplayName"}) @Expose @@ -202,7 +202,7 @@ public class SignIn extends Entity implements IJsonBackedObject { /** * The User Id. - * The identifier of the user. + * ID of the user that initiated the sign-in. */ @SerializedName(value = "userId", alternate = {"UserId"}) @Expose @@ -210,7 +210,7 @@ public class SignIn extends Entity implements IJsonBackedObject { /** * The User Principal Name. - * The UPN of the user. + * User principal name of the user that initiated the sign-in. */ @SerializedName(value = "userPrincipalName", alternate = {"UserPrincipalName"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/SpaApplication.java b/src/main/java/com/microsoft/graph/models/extensions/SpaApplication.java index 8d444c6c7c0..41a261e2f03 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/SpaApplication.java +++ b/src/main/java/com/microsoft/graph/models/extensions/SpaApplication.java @@ -34,7 +34,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Redirect Uris. - * Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. + * */ @SerializedName(value = "redirectUris", alternate = {"RedirectUris"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/StoragePlanInformation.java b/src/main/java/com/microsoft/graph/models/extensions/StoragePlanInformation.java index 5711a2fdd9a..eaf4f3732c6 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/StoragePlanInformation.java +++ b/src/main/java/com/microsoft/graph/models/extensions/StoragePlanInformation.java @@ -34,7 +34,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Upgrade Available. - * Indicates if there are higher storage quota plans available. Read-only. + * Indicates whether there are higher storage quota plans available. Read-only. */ @SerializedName(value = "upgradeAvailable", alternate = {"UpgradeAvailable"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Subscription.java b/src/main/java/com/microsoft/graph/models/extensions/Subscription.java index 71285ef8c47..c95de185201 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Subscription.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Subscription.java @@ -33,7 +33,7 @@ public class Subscription extends Entity implements IJsonBackedObject { /** * The Change Type. - * Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list. Required. Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType. + * Required. Indicates the type of change in the subscribed resource that will raise a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list.Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType. */ @SerializedName(value = "changeType", alternate = {"ChangeType"}) @Expose @@ -41,7 +41,7 @@ public class Subscription extends Entity implements IJsonBackedObject { /** * The Client State. - * Specifies the value of the clientState property sent by the service in each change notification. The maximum length is 255 characters. The client can check that the change notification came from the service by comparing the value of the clientState property sent with the subscription with the value of the clientState property received with each change notification. Optional. + * Optional. Specifies the value of the clientState property sent by the service in each change notification. The maximum length is 128 characters. The client can check that the change notification came from the service by comparing the value of the clientState property sent with the subscription with the value of the clientState property received with each change notification. */ @SerializedName(value = "clientState", alternate = {"ClientState"}) @Expose @@ -49,7 +49,7 @@ public class Subscription extends Entity implements IJsonBackedObject { /** * The Creator Id. - * Identifier of the user or service principal that created the subscription. If the app used delegated permissions to create the subscription, this field contains the ID of the signed-in user the app called on behalf of. If the app used application permissions, this field contains the ID of the service principal corresponding to the app. Read-only. + * Identifier of the user or service principal that created the subscription. If the app used delegated permissions to create the subscription, this field contains the id of the signed-in user the app called on behalf of. If the app used application permissions, this field contains the id of the service principal corresponding to the app. Read-only. */ @SerializedName(value = "creatorId", alternate = {"CreatorId"}) @Expose @@ -65,7 +65,7 @@ public class Subscription extends Entity implements IJsonBackedObject { /** * The Encryption Certificate Id. - * A custom app-provided identifier to help identify the certificate needed to decrypt resource data. Optional. Required when includeResourceData is true. + * A custom app-provided identifier to help identify the certificate needed to decrypt resource data. Optional. */ @SerializedName(value = "encryptionCertificateId", alternate = {"EncryptionCertificateId"}) @Expose @@ -73,7 +73,7 @@ public class Subscription extends Entity implements IJsonBackedObject { /** * The Expiration Date Time. - * Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. See the table below for maximum supported subscription length of time. Required. + * Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. See the table below for maximum supported subscription length of time. */ @SerializedName(value = "expirationDateTime", alternate = {"ExpirationDateTime"}) @Expose @@ -105,7 +105,7 @@ public class Subscription extends Entity implements IJsonBackedObject { /** * The Notification Url. - * The URL of the endpoint that receives the change notifications. This URL must make use of the HTTPS protocol. Required. + * Required. The URL of the endpoint that will receive the change notifications. This URL must make use of the HTTPS protocol. */ @SerializedName(value = "notificationUrl", alternate = {"NotificationUrl"}) @Expose @@ -113,7 +113,7 @@ public class Subscription extends Entity implements IJsonBackedObject { /** * The Resource. - * Specifies the resource that will be monitored for changes. Do not include the base URL (https://graph.microsoft.com/beta/). See the possible resource path values for each supported resource. Required. + * Required. Specifies the resource that will be monitored for changes. Do not include the base URL (https://graph.microsoft.com/v1.0/). See the possible resource path values for each supported resource. */ @SerializedName(value = "resource", alternate = {"Resource"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/SwapShiftsChangeRequest.java b/src/main/java/com/microsoft/graph/models/extensions/SwapShiftsChangeRequest.java index 09d942f6f4a..2856a436cae 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/SwapShiftsChangeRequest.java +++ b/src/main/java/com/microsoft/graph/models/extensions/SwapShiftsChangeRequest.java @@ -25,7 +25,7 @@ public class SwapShiftsChangeRequest extends OfferShiftRequest implements IJsonB /** * The Recipient Shift Id. - * Shift ID for the recipient user with whom the request is to swap. + * ShiftId for the recipient user with whom the request is to swap. */ @SerializedName(value = "recipientShiftId", alternate = {"RecipientShiftId"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/TargetedManagedAppPolicyAssignment.java b/src/main/java/com/microsoft/graph/models/extensions/TargetedManagedAppPolicyAssignment.java index 1a42389045f..ffcf539c253 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/TargetedManagedAppPolicyAssignment.java +++ b/src/main/java/com/microsoft/graph/models/extensions/TargetedManagedAppPolicyAssignment.java @@ -26,7 +26,7 @@ public class TargetedManagedAppPolicyAssignment extends Entity implements IJsonB /** * The Target. - * Identifier for deployment to a group or app + * Identifier for deployment of a group or app */ @SerializedName(value = "target", alternate = {"Target"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/TeamMemberSettings.java b/src/main/java/com/microsoft/graph/models/extensions/TeamMemberSettings.java index f95f2cf3575..2dceb37b507 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/TeamMemberSettings.java +++ b/src/main/java/com/microsoft/graph/models/extensions/TeamMemberSettings.java @@ -50,7 +50,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Allow Create Update Channels. - * If set to true, members can add and update any channels. + * If set to true, members can add and update channels. */ @SerializedName(value = "allowCreateUpdateChannels", alternate = {"AllowCreateUpdateChannels"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/TeamsAppDefinition.java b/src/main/java/com/microsoft/graph/models/extensions/TeamsAppDefinition.java index f2ba37f3438..4ae6b7f4dcd 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/TeamsAppDefinition.java +++ b/src/main/java/com/microsoft/graph/models/extensions/TeamsAppDefinition.java @@ -33,7 +33,7 @@ public class TeamsAppDefinition extends Entity implements IJsonBackedObject { /** * The Teams App Id. - * The id from the Teams App manifest. + * The ID from the Teams app manifest. */ @SerializedName(value = "teamsAppId", alternate = {"TeamsAppId"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/TeamsTab.java b/src/main/java/com/microsoft/graph/models/extensions/TeamsTab.java index 98f727822f6..4f95de3af29 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/TeamsTab.java +++ b/src/main/java/com/microsoft/graph/models/extensions/TeamsTab.java @@ -51,7 +51,7 @@ public class TeamsTab extends Entity implements IJsonBackedObject { /** * The Teams App. - * The application that is linked to the tab. + * The application that is linked to the tab. This cannot be changed after tab creation. */ @SerializedName(value = "teamsApp", alternate = {"TeamsApp"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/TimeConstraint.java b/src/main/java/com/microsoft/graph/models/extensions/TimeConstraint.java index 7ec4a3aad7f..8169c24daee 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/TimeConstraint.java +++ b/src/main/java/com/microsoft/graph/models/extensions/TimeConstraint.java @@ -36,7 +36,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Activity Domain. - * The nature of the activity, optional. Possible values are: work, personal, unrestricted, or unknown. + * The nature of the activity, optional. The possible values are: work, personal, unrestricted, or unknown. */ @SerializedName(value = "activityDomain", alternate = {"ActivityDomain"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/ToneInfo.java b/src/main/java/com/microsoft/graph/models/extensions/ToneInfo.java index 949845e6b98..ff7865b4485 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/ToneInfo.java +++ b/src/main/java/com/microsoft/graph/models/extensions/ToneInfo.java @@ -43,7 +43,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Tone. - * Possible values are: tone0, tone1, tone2, tone3, tone4, tone5, tone6, tone7, tone8, tone9, star, pound, a, b, c, d, flash. + * Possible values are: tone0, tone1, tone2, tone3, tone4, tone5, tone6, tone7, tone8, tone9, star, pound */ @SerializedName(value = "tone", alternate = {"Tone"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/UploadSession.java b/src/main/java/com/microsoft/graph/models/extensions/UploadSession.java index dd51993fbd9..2bc769d6c1a 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/UploadSession.java +++ b/src/main/java/com/microsoft/graph/models/extensions/UploadSession.java @@ -42,7 +42,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Next Expected Ranges. - * When uploading files to document libraries, this is a collection of byte ranges that the server is missing for the file. These ranges are zero-indexed and of the format, '{start}-{end}' (e.g. '0-26' to indicate the first 27 bytes of the file). When uploading files as Outlook attachments, instead of a collection of ranges, this property always indicates a single value '{start}', the location in the file where the next upload should begin. + * A collection of byte ranges that the server is missing for the file. These ranges are zero indexed and of the format 'start-end' (e.g. '0-26' to indicate the first 27 bytes of the file). When uploading files as Outlook attachments, instead of a collection of ranges, this property always indicates a single value '{start}', the location in the file where the next upload should begin. */ @SerializedName(value = "nextExpectedRanges", alternate = {"NextExpectedRanges"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/User.java b/src/main/java/com/microsoft/graph/models/extensions/User.java index c1dd6fe66ee..325660a5c8e 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/User.java +++ b/src/main/java/com/microsoft/graph/models/extensions/User.java @@ -89,7 +89,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Account Enabled. - * true if the account is enabled; otherwise, false. This property is required when a user is created. Returned only on $select. Supports $filter. + * true if the account is enabled; otherwise, false. This property is required when a user is created. Supports $filter. */ @SerializedName(value = "accountEnabled", alternate = {"AccountEnabled"}) @Expose @@ -97,7 +97,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Age Group. - * Sets the age group of the user. Allowed values: null, minor, notAdult and adult. Refer to the legal age group property definitions for further information. Returned only on $select. + * Sets the age group of the user. Allowed values: null, minor, notAdult and adult. Refer to the legal age group property definitions for further information. */ @SerializedName(value = "ageGroup", alternate = {"AgeGroup"}) @Expose @@ -105,7 +105,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Assigned Licenses. - * The licenses that are assigned to the user. Returned only on $select. Not nullable. + * The licenses that are assigned to the user. Not nullable. */ @SerializedName(value = "assignedLicenses", alternate = {"AssignedLicenses"}) @Expose @@ -113,7 +113,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Assigned Plans. - * The plans that are assigned to the user. Returned only on $select. Read-only. Not nullable. + * The plans that are assigned to the user. Read-only. Not nullable. */ @SerializedName(value = "assignedPlans", alternate = {"AssignedPlans"}) @Expose @@ -121,7 +121,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Business Phones. - * The telephone numbers for the user. Only one number can be set for this property. Returned by default. Read-only for users synced from on-premises directory. + * The telephone numbers for the user. NOTE: Although this is a string collection, only one number can be set for this property. Read-only for users synced from on-premises directory. Returned by default. */ @SerializedName(value = "businessPhones", alternate = {"BusinessPhones"}) @Expose @@ -129,7 +129,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The City. - * The city in which the user is located. Returned only on $select. Supports $filter. + * The city in which the user is located. Supports $filter. */ @SerializedName(value = "city", alternate = {"City"}) @Expose @@ -145,7 +145,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Consent Provided For Minor. - * Sets whether consent has been obtained for minors. Allowed values: null, granted, denied and notRequired. Refer to the legal age group property definitions for further information. Returned only on $select. + * Sets whether consent has been obtained for minors. Allowed values: null, granted, denied and notRequired. Refer to the legal age group property definitions for further information. */ @SerializedName(value = "consentProvidedForMinor", alternate = {"ConsentProvidedForMinor"}) @Expose @@ -153,7 +153,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Country. - * The country/region in which the user is located; for example, 'US' or 'UK'. Returned only on $select. Supports $filter. + * The country/region in which the user is located; for example, 'US' or 'UK'. Supports $filter. */ @SerializedName(value = "country", alternate = {"Country"}) @Expose @@ -161,7 +161,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Created Date Time. - * The date and time the user was created. The value cannot be modified and is automatically populated when the entity is created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. Property is nullable. A null value indicates that an accurate creation time couldn't be determined for the user. Returned only on $select. Read-only. Supports $filter. + * The created date of the user object. */ @SerializedName(value = "createdDateTime", alternate = {"CreatedDateTime"}) @Expose @@ -169,7 +169,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Creation Type. - * Indicates whether the user account was created as a regular school or work account (null), an external account (Invitation), a local account for an Azure Active Directory B2C tenant (LocalAccount) or self-service sign-up using email verification (EmailVerified). Returned only on $select. Read-only. + * Indicates whether the user account was created as a regular school or work account (null), an external account (Invitation), a local account for an Azure Active Directory B2C tenant (LocalAccount) or self-service sign-up using email verification (EmailVerified). Read-only. */ @SerializedName(value = "creationType", alternate = {"CreationType"}) @Expose @@ -177,7 +177,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Department. - * The name for the department in which the user works. Returned only on $select. Supports $filter. + * The name for the department in which the user works. Supports $filter. */ @SerializedName(value = "department", alternate = {"Department"}) @Expose @@ -185,7 +185,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Display Name. - * The name displayed in the address book for the user. This value is usually the combination of the user's first name, middle initial, and last name. This property is required when a user is created and it cannot be cleared during updates. Returned by default. Supports $filter and $orderby. + * The name displayed in the address book for the user. This is usually the combination of the user's first name, middle initial and last name. This property is required when a user is created and it cannot be cleared during updates. Returned by default. Supports $filter and $orderby. */ @SerializedName(value = "displayName", alternate = {"DisplayName"}) @Expose @@ -241,7 +241,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Fax Number. - * The fax number of the user. Returned only on $select. + * The fax number of the user. */ @SerializedName(value = "faxNumber", alternate = {"FaxNumber"}) @Expose @@ -257,7 +257,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Identities. - * Represents the identities that can be used to sign in to this user account. An identity can be provided by Microsoft (also known as a local account), by organizations, or by social identity providers such as Facebook, Google, and Microsoft, and tied to a user account. May contain multiple items with the same signInType value. Returned only on $select. Supports $filter. + * Represents the identities that can be used to sign in to this user account. An identity can be provided by Microsoft (also known as a local account), by organizations, or by social identity providers such as Facebook, Google, and Microsoft, and tied to a user account. May contain multiple items with the same signInType value. Supports $filter. */ @SerializedName(value = "identities", alternate = {"Identities"}) @Expose @@ -289,7 +289,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Last Password Change Date Time. - * The time when this Azure AD user last changed their password. 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' Returned only on $select. + * The time when this Azure AD user last changed their password. The date and time information uses 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' */ @SerializedName(value = "lastPasswordChangeDateTime", alternate = {"LastPasswordChangeDateTime"}) @Expose @@ -297,7 +297,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Legal Age Group Classification. - * Used by enterprise applications to determine the legal age group of the user. This property is read-only and calculated based on ageGroup and consentProvidedForMinor properties. Allowed values: null, minorWithOutParentalConsent, minorWithParentalConsent, minorNoParentalConsentRequired, notAdult and adult. Refer to the legal age group property definitions for further information. Returned only on $select. + * Used by enterprise applications to determine the legal age group of the user. This property is read-only and calculated based on ageGroup and consentProvidedForMinor properties. Allowed values: null, minorWithOutParentalConsent, minorWithParentalConsent, minorNoParentalConsentRequired, notAdult and adult. Refer to the legal age group property definitions for further information. */ @SerializedName(value = "legalAgeGroupClassification", alternate = {"LegalAgeGroupClassification"}) @Expose @@ -305,7 +305,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The License Assignment States. - * State of license assignments for this user. Returned only on $select. Read-only. + * State of license assignments for this user. Read-only. */ @SerializedName(value = "licenseAssignmentStates", alternate = {"LicenseAssignmentStates"}) @Expose @@ -321,7 +321,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Mail Nickname. - * The mail alias for the user. This property must be specified when a user is created. Returned only on $select. Supports $filter. + * The mail alias for the user. This property must be specified when a user is created. Supports $filter. */ @SerializedName(value = "mailNickname", alternate = {"MailNickname"}) @Expose @@ -329,7 +329,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Mobile Phone. - * The primary cellular telephone number for the user. Returned by default. Read-only for users synced from on-premises directory. + * The primary cellular telephone number for the user. Read-only for users synced from on-premises directory. Returned by default. */ @SerializedName(value = "mobilePhone", alternate = {"MobilePhone"}) @Expose @@ -345,7 +345,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The On Premises Distinguished Name. - * Contains the on-premises Active Directory distinguished name or DN. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Returned only on $select. Read-only. + * Contains the on-premises Active Directory distinguished name or DN. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Read-only. */ @SerializedName(value = "onPremisesDistinguishedName", alternate = {"OnPremisesDistinguishedName"}) @Expose @@ -353,7 +353,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The On Premises Domain Name. - * Contains the on-premises domainFQDN, also called dnsDomainName synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Returned only on $select. Read-only. + * Contains the on-premises domainFQDN, also called dnsDomainName synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Read-only. */ @SerializedName(value = "onPremisesDomainName", alternate = {"OnPremisesDomainName"}) @Expose @@ -361,7 +361,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The On Premises Extension Attributes. - * Contains extensionAttributes 1-15 for the user. Note that the individual extension attributes are neither selectable nor filterable. For an onPremisesSyncEnabled user, the source of authority for this set of properties is the on-premises and is read-only and is read-only. For a cloud-only user (where onPremisesSyncEnabled is false), these properties may be set during creation or update. These extension attributes are also known as Exchange custom attributes 1-15. Returned only on $select. + * Contains extensionAttributes 1-15 for the user. Note that the individual extension attributes are neither selectable nor filterable. For an onPremisesSyncEnabled user, the source of authority for this set of properties is the on-premises and is read-only. For a cloud-only user (where onPremisesSyncEnabled is false), these properties may be set during creation or update. These extension attributes are also known as Exchange custom attributes 1-15. */ @SerializedName(value = "onPremisesExtensionAttributes", alternate = {"OnPremisesExtensionAttributes"}) @Expose @@ -369,7 +369,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The On Premises Immutable Id. - * This property is used to associate an on-premises Active Directory user account to their Azure AD user object. This property must be specified when creating a new user account in the Graph if you are using a federated domain for the user's userPrincipalName (UPN) property. Important: The $ and _ characters cannot be used when specifying this property. Returned only on $select. Supports $filter. + * This property is used to associate an on-premises Active Directory user account to their Azure AD user object. This property must be specified when creating a new user account in the Graph if you are using a federated domain for the user's userPrincipalName (UPN) property. Important: The $ and _ characters cannot be used when specifying this property. Supports $filter. */ @SerializedName(value = "onPremisesImmutableId", alternate = {"OnPremisesImmutableId"}) @Expose @@ -377,7 +377,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The On Premises Last Sync Date Time. - * Indicates the last time at which the object was synced with the on-premises directory; for example: '2013-02-16T03:04:54Z'. 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'. Returned only on $select. Read-only. + * Indicates the last time at which the object was synced with the on-premises directory; for example: '2013-02-16T03:04:54Z'. 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'. Read-only. */ @SerializedName(value = "onPremisesLastSyncDateTime", alternate = {"OnPremisesLastSyncDateTime"}) @Expose @@ -385,7 +385,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The On Premises Provisioning Errors. - * Errors when using Microsoft synchronization product during provisioning. Returned only on $select. + * Errors when using Microsoft synchronization product during provisioning. */ @SerializedName(value = "onPremisesProvisioningErrors", alternate = {"OnPremisesProvisioningErrors"}) @Expose @@ -393,7 +393,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The On Premises Sam Account Name. - * Contains the on-premises sAMAccountName synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Returned only on $select. Read-only. + * Contains the on-premises samAccountName synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Read-only. */ @SerializedName(value = "onPremisesSamAccountName", alternate = {"OnPremisesSamAccountName"}) @Expose @@ -401,7 +401,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The On Premises Security Identifier. - * Contains the on-premises security identifier (SID) for the user that was synchronized from on-premises to the cloud. Returned only on $select. Read-only. + * Contains the on-premises security identifier (SID) for the user that was synchronized from on-premises to the cloud. Read-only. */ @SerializedName(value = "onPremisesSecurityIdentifier", alternate = {"OnPremisesSecurityIdentifier"}) @Expose @@ -409,7 +409,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The On Premises Sync Enabled. - * true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced; null if this object has never been synced from an on-premises directory (default). Returned only on $select. Read-only. + * true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced; null if this object has never been synced from an on-premises directory (default). Read-only */ @SerializedName(value = "onPremisesSyncEnabled", alternate = {"OnPremisesSyncEnabled"}) @Expose @@ -417,7 +417,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The On Premises User Principal Name. - * Contains the on-premises userPrincipalName synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Returned only on $select. Read-only. + * Contains the on-premises userPrincipalName synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Azure Active Directory via Azure AD Connect. Read-only. */ @SerializedName(value = "onPremisesUserPrincipalName", alternate = {"OnPremisesUserPrincipalName"}) @Expose @@ -425,7 +425,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Other Mails. - * A list of additional email addresses for the user; for example: ['bob@contoso.com', 'Robert@fabrikam.com'].Returned only on $select. Supports$filter. + * A list of additional email addresses for the user; for example: ['bob@contoso.com', 'Robert@fabrikam.com']. Supports $filter. */ @SerializedName(value = "otherMails", alternate = {"OtherMails"}) @Expose @@ -433,7 +433,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Password Policies. - * Specifies password policies for the user. This value is an enumeration with one possible value being 'DisableStrongPassword', which allows weaker passwords than the default policy to be specified. 'DisablePasswordExpiration' can also be specified. The two may be specified together; for example: 'DisablePasswordExpiration, DisableStrongPassword'.Returned only on $select. + * Specifies password policies for the user. This value is an enumeration with one possible value being 'DisableStrongPassword', which allows weaker passwords than the default policy to be specified. 'DisablePasswordExpiration' can also be specified. The two may be specified together; for example: 'DisablePasswordExpiration, DisableStrongPassword'. */ @SerializedName(value = "passwordPolicies", alternate = {"PasswordPolicies"}) @Expose @@ -441,7 +441,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Password Profile. - * Specifies the password profile for the user. The profile contains the user's password. This property is required when a user is created. The password in the profile must satisfy minimum requirements as specified by the passwordPolicies property. By default, a strong password is required. Returned only on $select. + * Specifies the password profile for the user. The profile contains the user’s password. This property is required when a user is created. The password in the profile must satisfy minimum requirements as specified by the passwordPolicies property. By default, a strong password is required. */ @SerializedName(value = "passwordProfile", alternate = {"PasswordProfile"}) @Expose @@ -449,7 +449,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Postal Code. - * The postal code for the user's postal address. The postal code is specific to the user's country/region. In the United States of America, this attribute contains the ZIP code. Returned only on $select. + * The postal code for the user's postal address. The postal code is specific to the user's country/region. In the United States of America, this attribute contains the ZIP code. */ @SerializedName(value = "postalCode", alternate = {"PostalCode"}) @Expose @@ -465,7 +465,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Provisioned Plans. - * The plans that are provisioned for the user. Returned only on $select. Read-only. Not nullable. + * The plans that are provisioned for the user. Read-only. Not nullable. */ @SerializedName(value = "provisionedPlans", alternate = {"ProvisionedPlans"}) @Expose @@ -473,7 +473,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Proxy Addresses. - * For example: ['SMTP: bob@contoso.com', 'smtp: bob@sales.contoso.com'] The any operator is required for filter expressions on multi-valued properties. Returned only on $select. Read-only, Not nullable. Supports $filter. + * For example: ['SMTP: bob@contoso.com', 'smtp: bob@sales.contoso.com'] The any operator is required for filter expressions on multi-valued properties. Read-only, Not nullable. Supports $filter. */ @SerializedName(value = "proxyAddresses", alternate = {"ProxyAddresses"}) @Expose @@ -481,7 +481,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Show In Address List. - * true if the Outlook global address list should contain this user, otherwise false. If not set, this will be treated as true. For users invited through the invitation manager, this property will be set to false. Returned only on $select. + * true if the Outlook global address list should contain this user, otherwise false. If not set, this will be treated as true. For users invited through the invitation manager, this property will be set to false. */ @SerializedName(value = "showInAddressList", alternate = {"ShowInAddressList"}) @Expose @@ -489,7 +489,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Sign In Sessions Valid From Date Time. - * Any refresh tokens or sessions tokens (session cookies) issued before this time are invalid, and applications will get an error when using an invalid refresh or sessions token to acquire a delegated access token (to access APIs such as Microsoft Graph). If this happens, the application will need to acquire a new refresh token by making a request to the authorize endpoint. Returned only on $select. Read-only. Use revokeSignInSessions to reset. + * Any refresh tokens or sessions tokens (session cookies) issued before this time are invalid, and applications will get an error when using an invalid refresh or sessions token to acquire a delegated access token (to access APIs such as Microsoft Graph). If this happens, the application will need to acquire a new refresh token by making a request to the authorize endpoint. Read-only. Use revokeSignInSessions to reset. */ @SerializedName(value = "signInSessionsValidFromDateTime", alternate = {"SignInSessionsValidFromDateTime"}) @Expose @@ -497,7 +497,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The State. - * The state or province in the user's address. Returned only on $select. Supports $filter. + * The state or province in the user's address. Supports $filter. */ @SerializedName(value = "state", alternate = {"State"}) @Expose @@ -505,7 +505,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Street Address. - * The street address of the user's place of business. Returned only on $select. + * The street address of the user's place of business. */ @SerializedName(value = "streetAddress", alternate = {"StreetAddress"}) @Expose @@ -521,7 +521,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Usage Location. - * A two letter country code (ISO standard 3166). Required for users that will be assigned licenses due to legal requirement to check for availability of services in countries. Examples include: 'US', 'JP', and 'GB'. Not nullable. Returned only on $select. Supports $filter. + * A two letter country code (ISO standard 3166). Required for users that will be assigned licenses due to legal requirement to check for availability of services in countries. Examples include: 'US', 'JP', and 'GB'. Not nullable. Supports $filter. */ @SerializedName(value = "usageLocation", alternate = {"UsageLocation"}) @Expose @@ -537,7 +537,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The User Type. - * A string value that can be used to classify user types in your directory, such as 'Member' and 'Guest'. Returned only on $select. Supports $filter. + * A string value that can be used to classify user types in your directory, such as 'Member' and 'Guest'. Supports $filter. */ @SerializedName(value = "userType", alternate = {"UserType"}) @Expose @@ -545,7 +545,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Mailbox Settings. - * Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. + * Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale and time zone. */ @SerializedName(value = "mailboxSettings", alternate = {"MailboxSettings"}) @Expose @@ -561,7 +561,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The About Me. - * A freeform text entry field for the user to describe themselves. Returned only on $select. + * A freeform text entry field for the user to describe themselves. */ @SerializedName(value = "aboutMe", alternate = {"AboutMe"}) @Expose @@ -569,7 +569,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Birthday. - * The birthday of the user. 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' Returned only on $select. + * The birthday of the user. 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' */ @SerializedName(value = "birthday", alternate = {"Birthday"}) @Expose @@ -585,7 +585,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Interests. - * A list for the user to describe their interests. Returned only on $select. + * A list for the user to describe their interests. */ @SerializedName(value = "interests", alternate = {"Interests"}) @Expose @@ -593,7 +593,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The My Site. - * The URL for the user's personal site. Returned only on $select. + * The URL for the user's personal site. */ @SerializedName(value = "mySite", alternate = {"MySite"}) @Expose @@ -601,7 +601,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Past Projects. - * A list for the user to enumerate their past projects. Returned only on $select. + * A list for the user to enumerate their past projects. */ @SerializedName(value = "pastProjects", alternate = {"PastProjects"}) @Expose @@ -609,7 +609,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Preferred Name. - * The preferred name for the user. Returned only on $select. + * The preferred name for the user. */ @SerializedName(value = "preferredName", alternate = {"PreferredName"}) @Expose @@ -617,7 +617,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Responsibilities. - * A list for the user to enumerate their responsibilities. Returned only on $select. + * A list for the user to enumerate their responsibilities. */ @SerializedName(value = "responsibilities", alternate = {"Responsibilities"}) @Expose @@ -625,7 +625,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Schools. - * A list for the user to enumerate the schools they have attended. Returned only on $select. + * A list for the user to enumerate the schools they have attended. */ @SerializedName(value = "schools", alternate = {"Schools"}) @Expose @@ -633,7 +633,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Skills. - * A list for the user to enumerate their skills. Returned only on $select. + * A list for the user to enumerate their skills. */ @SerializedName(value = "skills", alternate = {"Skills"}) @Expose @@ -677,7 +677,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Member Of. - * The groups, directory roles and administrative units that the user is a member of. Read-only. Nullable. + * The groups and directory roles that the user is a member of. Read-only. Nullable. */ public DirectoryObjectCollectionPage memberOf; @@ -707,7 +707,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Scoped Role Member Of. - * The scoped-role administrative unit memberships for this user. Read-only. Nullable. + * */ @SerializedName(value = "scopedRoleMemberOf", alternate = {"ScopedRoleMemberOf"}) @Expose @@ -769,7 +769,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Events. - * The user's events. Default is to show events under the Default Calendar. Read-only. Nullable. + * The user's events. Default is to show Events under the Default Calendar. Read-only. Nullable. */ @SerializedName(value = "events", alternate = {"Events"}) @Expose @@ -801,7 +801,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Outlook. - * Selective Outlook services available to the user. Read-only. Nullable. + * Read-only. */ @SerializedName(value = "outlook", alternate = {"Outlook"}) @Expose @@ -809,7 +809,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The People. - * Read-only. The most relevant people to the user. The collection is ordered by their relevance to the user, which is determined by the user's communication, collaboration and business relationships. A person is an aggregation of information from across mail, contacts and social networks. + * People that are relevant to the user. Read-only. Nullable. */ @SerializedName(value = "people", alternate = {"People"}) @Expose @@ -825,7 +825,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Photos. - * Read-only. Nullable. + * */ @SerializedName(value = "photos", alternate = {"Photos"}) @Expose @@ -855,7 +855,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Extensions. - * The collection of open extensions defined for the user. Nullable. + * The collection of open extensions defined for the user. Read-only. Nullable. */ @SerializedName(value = "extensions", alternate = {"Extensions"}) @Expose @@ -885,7 +885,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Planner. - * Selective Planner services available to the user. Read-only. Nullable. + * Entry-point to the Planner resource that might exist for a user. Read-only. */ @SerializedName(value = "planner", alternate = {"Planner"}) @Expose @@ -901,7 +901,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Settings. - * Read-only. Nullable. + * */ @SerializedName(value = "settings", alternate = {"Settings"}) @Expose @@ -941,7 +941,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Joined Teams. - * The Microsoft Teams teams that the user is a member of. Read-only. Nullable. + * */ @SerializedName(value = "joinedTeams", alternate = {"JoinedTeams"}) @Expose @@ -949,7 +949,7 @@ public class User extends DirectoryObject implements IJsonBackedObject { /** * The Teamwork. - * A container for Microsoft Teams features available for the user. Read-only. Nullable. + * */ @SerializedName(value = "teamwork", alternate = {"Teamwork"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/UserSettings.java b/src/main/java/com/microsoft/graph/models/extensions/UserSettings.java index e58c0437d9f..f22166ad4c6 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/UserSettings.java +++ b/src/main/java/com/microsoft/graph/models/extensions/UserSettings.java @@ -26,7 +26,7 @@ public class UserSettings extends Entity implements IJsonBackedObject { /** * The Contribution To Content Discovery As Organization Disabled. - * Reflects the organization level setting controlling delegate access to the trending API. When set to true, the organization doesn't have access to Office Delve. The relevancy of the content displayed in Microsoft 365, for example in Suggested sites in SharePoint Home and the Discover view in OneDrive for Business is affected for the whole organization. This setting is read-only and can only be changed by administrators in the SharePoint admin center. + * */ @SerializedName(value = "contributionToContentDiscoveryAsOrganizationDisabled", alternate = {"ContributionToContentDiscoveryAsOrganizationDisabled"}) @Expose @@ -34,7 +34,7 @@ public class UserSettings extends Entity implements IJsonBackedObject { /** * The Contribution To Content Discovery Disabled. - * When set to true, the delegate access to the user's trending API is disabled. When set to true, documents in the user's Office Delve are disabled. When set to true, the relevancy of the content displayed in Microsoft 365, for example in Suggested sites in SharePoint Home and the Discover view in OneDrive for Business is affected. Users can control this setting in Office Delve. + * */ @SerializedName(value = "contributionToContentDiscoveryDisabled", alternate = {"ContributionToContentDiscoveryDisabled"}) @Expose @@ -42,7 +42,7 @@ public class UserSettings extends Entity implements IJsonBackedObject { /** * The Shift Preferences. - * The shift preferences for the user. + * */ @SerializedName(value = "shiftPreferences", alternate = {"ShiftPreferences"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/VppToken.java b/src/main/java/com/microsoft/graph/models/extensions/VppToken.java index 2f056e51807..fe5c073b3a6 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/VppToken.java +++ b/src/main/java/com/microsoft/graph/models/extensions/VppToken.java @@ -68,7 +68,7 @@ public class VppToken extends Entity implements IJsonBackedObject { /** * The Last Sync Date Time. - * The last time when an application sync was done with the Apple volume purchase program service using the the Apple Volume Purchase Program Token. + * The last time when an application sync was done with the Apple volume purchase program service using the Apple Volume Purchase Program Token. */ @SerializedName(value = "lastSyncDateTime", alternate = {"LastSyncDateTime"}) @Expose @@ -92,7 +92,7 @@ public class VppToken extends Entity implements IJsonBackedObject { /** * The State. - * Current state of the Apple Volume Purchase Program Token. Possible values are: unknown, valid, expired, invalid, assignedToExternalMDM. Possible values are: unknown, valid, expired, invalid, assignedToExternalMDM, duplicateLocationId. + * Current state of the Apple Volume Purchase Program Token. Possible values are: unknown, valid, expired, invalid, assignedToExternalMDM. Possible values are: unknown, valid, expired, invalid, assignedToExternalMDM. */ @SerializedName(value = "state", alternate = {"State"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Website.java b/src/main/java/com/microsoft/graph/models/extensions/Website.java index 14f0787ff8c..8a35c236245 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Website.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Website.java @@ -51,7 +51,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Type. - * Possible values are: other, home, work, blog, profile. + * The possible values are: other, home, work, blog, profile. */ @SerializedName(value = "type", alternate = {"Type"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Win32LobApp.java b/src/main/java/com/microsoft/graph/models/extensions/Win32LobApp.java index 1b79c691a10..15efa373eb9 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Win32LobApp.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Win32LobApp.java @@ -30,7 +30,7 @@ public class Win32LobApp extends MobileLobApp implements IJsonBackedObject { /** * The Applicable Architectures. - * The Windows architecture(s) for which this app can run on. Possible values are: none, x86, x64, arm, neutral, arm64. + * The Windows architecture(s) for which this app can run on. Possible values are: none, x86, x64, arm, neutral. */ @SerializedName(value = "applicableArchitectures", alternate = {"ApplicableArchitectures"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Win32LobAppFileSystemRule.java b/src/main/java/com/microsoft/graph/models/extensions/Win32LobAppFileSystemRule.java index 46bfc65261e..5d677b8cb0d 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Win32LobAppFileSystemRule.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Win32LobAppFileSystemRule.java @@ -51,7 +51,7 @@ public class Win32LobAppFileSystemRule extends Win32LobAppRule implements IJsonB /** * The Operation Type. - * The file system operation type. Possible values are: notConfigured, exists, modifiedDate, createdDate, version, sizeInMB, doesNotExist. + * The file system operation type. Possible values are: notConfigured, exists, modifiedDate, createdDate, version, sizeInMB. */ @SerializedName(value = "operationType", alternate = {"OperationType"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Win32LobAppInstallExperience.java b/src/main/java/com/microsoft/graph/models/extensions/Win32LobAppInstallExperience.java index a826f0743ca..06c89a629ea 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Win32LobAppInstallExperience.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Win32LobAppInstallExperience.java @@ -44,7 +44,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Run As Account. - * Indicates the type of execution context the app runs in. Possible values are: system, user. + * Indicates the type of execution context the app runs in. */ @SerializedName(value = "runAsAccount", alternate = {"RunAsAccount"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Win32LobAppPowerShellScriptRule.java b/src/main/java/com/microsoft/graph/models/extensions/Win32LobAppPowerShellScriptRule.java index 48aacf8e862..4b0e525ed6a 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Win32LobAppPowerShellScriptRule.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Win32LobAppPowerShellScriptRule.java @@ -76,7 +76,7 @@ public class Win32LobAppPowerShellScriptRule extends Win32LobAppRule implements /** * The Run As Account. - * The execution context of the script. Do not specify this value if the rule is used for detection. Script detection rules will run in the same context as the associated app install context. Possible values are: system, user. + * The execution context of the script. Do not specify this value if the rule is used for detection. Script detection rules will run in the same context as the associated app install context. */ @SerializedName(value = "runAsAccount", alternate = {"RunAsAccount"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Windows10EndpointProtectionConfiguration.java b/src/main/java/com/microsoft/graph/models/extensions/Windows10EndpointProtectionConfiguration.java index 1ce3a99379c..8315ce0a466 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Windows10EndpointProtectionConfiguration.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Windows10EndpointProtectionConfiguration.java @@ -305,7 +305,7 @@ public class Windows10EndpointProtectionConfiguration extends DeviceConfiguratio /** * The Smart Screen Block Override For Files. - * Allows IT Admins to control whether users can can ignore SmartScreen warnings and run malicious files. + * Allows IT Admins to control whether users can ignore SmartScreen warnings and run malicious files. */ @SerializedName(value = "smartScreenBlockOverrideForFiles", alternate = {"SmartScreenBlockOverrideForFiles"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Windows10GeneralConfiguration.java b/src/main/java/com/microsoft/graph/models/extensions/Windows10GeneralConfiguration.java index 91948bea5cf..23f7e2be37d 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Windows10GeneralConfiguration.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Windows10GeneralConfiguration.java @@ -378,7 +378,7 @@ public class Windows10GeneralConfiguration extends DeviceConfiguration implement /** * The Defender System Scan Schedule. - * Defender day of the week for the system scan. Possible values are: userDefined, everyday, sunday, monday, tuesday, wednesday, thursday, friday, saturday, noScheduledScan. + * Defender day of the week for the system scan. Possible values are: userDefined, everyday, sunday, monday, tuesday, wednesday, thursday, friday, saturday. */ @SerializedName(value = "defenderSystemScanSchedule", alternate = {"DefenderSystemScanSchedule"}) @Expose @@ -1210,7 +1210,7 @@ public class Windows10GeneralConfiguration extends DeviceConfiguration implement /** * The Smart Screen Enable App Install Control. - * This property will be deprecated in July 2019 and will be replaced by property SmartScreenAppInstallControl. Allows IT Admins to control whether users are allowed to install apps from places other than the Store. + * Allows IT Admins to control whether users are allowed to install apps from places other than the Store. */ @SerializedName(value = "smartScreenEnableAppInstallControl", alternate = {"SmartScreenEnableAppInstallControl"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Windows10NetworkProxyServer.java b/src/main/java/com/microsoft/graph/models/extensions/Windows10NetworkProxyServer.java index 7cc00685b4f..ede3d3fb715 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Windows10NetworkProxyServer.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Windows10NetworkProxyServer.java @@ -34,7 +34,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Address. - * Address to the proxy server. Specify an address in the format [':'] + * Address to the proxy server. Specify an address in the format <server>[:<port>] */ @SerializedName(value = "address", alternate = {"Address"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/WindowsInformationProtectionIPRangeCollection.java b/src/main/java/com/microsoft/graph/models/extensions/WindowsInformationProtectionIPRangeCollection.java index 740f127a26f..34c07f3d1f7 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/WindowsInformationProtectionIPRangeCollection.java +++ b/src/main/java/com/microsoft/graph/models/extensions/WindowsInformationProtectionIPRangeCollection.java @@ -43,7 +43,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Ranges. - * Collection of ip ranges + * Collection of Internet protocol address ranges */ @SerializedName(value = "ranges", alternate = {"Ranges"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/WindowsUniversalAppX.java b/src/main/java/com/microsoft/graph/models/extensions/WindowsUniversalAppX.java index 03f9466b969..7a4495cd20b 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/WindowsUniversalAppX.java +++ b/src/main/java/com/microsoft/graph/models/extensions/WindowsUniversalAppX.java @@ -28,7 +28,7 @@ public class WindowsUniversalAppX extends MobileLobApp implements IJsonBackedObj /** * The Applicable Architectures. - * The Windows architecture(s) for which this app can run on. Possible values are: none, x86, x64, arm, neutral, arm64. + * The Windows architecture(s) for which this app can run on. Possible values are: none, x86, x64, arm, neutral. */ @SerializedName(value = "applicableArchitectures", alternate = {"ApplicableArchitectures"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/WindowsUpdateForBusinessConfiguration.java b/src/main/java/com/microsoft/graph/models/extensions/WindowsUpdateForBusinessConfiguration.java index 85de4c74c69..75cfc3ed60a 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/WindowsUpdateForBusinessConfiguration.java +++ b/src/main/java/com/microsoft/graph/models/extensions/WindowsUpdateForBusinessConfiguration.java @@ -30,7 +30,7 @@ public class WindowsUpdateForBusinessConfiguration extends DeviceConfiguration i /** * The Automatic Update Mode. - * Automatic update mode. Possible values are: userDefined, notifyDownload, autoInstallAtMaintenanceTime, autoInstallAndRebootAtMaintenanceTime, autoInstallAndRebootAtScheduledTime, autoInstallAndRebootWithoutEndUserControl, windowsDefault. + * Automatic update mode. Possible values are: userDefined, notifyDownload, autoInstallAtMaintenanceTime, autoInstallAndRebootAtMaintenanceTime, autoInstallAndRebootAtScheduledTime, autoInstallAndRebootWithoutEndUserControl. */ @SerializedName(value = "automaticUpdateMode", alternate = {"AutomaticUpdateMode"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/WindowsUpdateScheduledInstall.java b/src/main/java/com/microsoft/graph/models/extensions/WindowsUpdateScheduledInstall.java index 836ac2f30b9..e1c0de7af67 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/WindowsUpdateScheduledInstall.java +++ b/src/main/java/com/microsoft/graph/models/extensions/WindowsUpdateScheduledInstall.java @@ -26,7 +26,7 @@ public class WindowsUpdateScheduledInstall extends WindowsUpdateInstallScheduleT /** * The Scheduled Install Day. - * Scheduled Install Day in week. Possible values are: userDefined, everyday, sunday, monday, tuesday, wednesday, thursday, friday, saturday, noScheduledScan. + * Scheduled Install Day in week. Possible values are: userDefined, everyday, sunday, monday, tuesday, wednesday, thursday, friday, saturday. */ @SerializedName(value = "scheduledInstallDay", alternate = {"ScheduledInstallDay"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/Workbook.java b/src/main/java/com/microsoft/graph/models/extensions/Workbook.java index 7cec44cb558..92646088cc2 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/Workbook.java +++ b/src/main/java/com/microsoft/graph/models/extensions/Workbook.java @@ -69,7 +69,7 @@ public class Workbook extends Entity implements IJsonBackedObject { /** * The Operations. - * The status of Workbook operations. Getting an operation collection is not supported, but you can get the status of a long-running operation if the Location header is returned in the response. Read-only. Nullable. + * The status of workbook operations. Getting an operation collection is not supported, but you can get the status of a long-running operation if the Location header is returned in the response. Read-only. */ @SerializedName(value = "operations", alternate = {"Operations"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/WorkbookComment.java b/src/main/java/com/microsoft/graph/models/extensions/WorkbookComment.java index d3c8ce7c02f..ccd8d687e21 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/WorkbookComment.java +++ b/src/main/java/com/microsoft/graph/models/extensions/WorkbookComment.java @@ -27,7 +27,7 @@ public class WorkbookComment extends Entity implements IJsonBackedObject { /** * The Content. - * The content of the comment. + * The content of comment. */ @SerializedName(value = "content", alternate = {"Content"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/WorkbookCommentReply.java b/src/main/java/com/microsoft/graph/models/extensions/WorkbookCommentReply.java index 3bf861741b6..2a1de32e399 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/WorkbookCommentReply.java +++ b/src/main/java/com/microsoft/graph/models/extensions/WorkbookCommentReply.java @@ -25,7 +25,7 @@ public class WorkbookCommentReply extends Entity implements IJsonBackedObject { /** * The Content. - * The content of replied comment. + * The content of a comment reply. */ @SerializedName(value = "content", alternate = {"Content"}) @Expose @@ -33,7 +33,7 @@ public class WorkbookCommentReply extends Entity implements IJsonBackedObject { /** * The Content Type. - * Indicates the type for the replied comment. + * Indicates the type for the comment reply. */ @SerializedName(value = "contentType", alternate = {"ContentType"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/WorkbookIcon.java b/src/main/java/com/microsoft/graph/models/extensions/WorkbookIcon.java index e4031962dfa..c67d5328b34 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/WorkbookIcon.java +++ b/src/main/java/com/microsoft/graph/models/extensions/WorkbookIcon.java @@ -42,7 +42,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Set. - * Represents the set that the icon is part of. Possible values are: Invalid, ThreeArrows, ThreeArrowsGray, ThreeFlags, ThreeTrafficLights1, ThreeTrafficLights2, ThreeSigns, ThreeSymbols, ThreeSymbols2, FourArrows, FourArrowsGray, FourRedToBlack, FourRating, FourTrafficLights, FiveArrows, FiveArrowsGray, FiveRating, FiveQuarters, ThreeStars, ThreeTriangles, FiveBoxes. + * Represents the set that the icon is part of. The possible values are: Invalid, ThreeArrows, ThreeArrowsGray, ThreeFlags, ThreeTrafficLights1, ThreeTrafficLights2, ThreeSigns, ThreeSymbols, ThreeSymbols2, FourArrows, FourArrowsGray, FourRedToBlack, FourRating, FourTrafficLights, FiveArrows, FiveArrowsGray, FiveRating, FiveQuarters, ThreeStars, ThreeTriangles, FiveBoxes. */ @SerializedName(value = "set", alternate = {"Set"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/WorkbookNamedItem.java b/src/main/java/com/microsoft/graph/models/extensions/WorkbookNamedItem.java index 76361440865..f1f63ec27e5 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/WorkbookNamedItem.java +++ b/src/main/java/com/microsoft/graph/models/extensions/WorkbookNamedItem.java @@ -50,7 +50,7 @@ public class WorkbookNamedItem extends Entity implements IJsonBackedObject { /** * The Type. - * Indicates what type of reference is associated with the name. Possible values are: String, Integer, Double, Boolean, Range. Read-only. + * Indicates what type of reference is associated with the name. The possible values are: String, Integer, Double, Boolean, Range. Read-only. */ @SerializedName(value = "type", alternate = {"Type"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/WorkbookOperation.java b/src/main/java/com/microsoft/graph/models/extensions/WorkbookOperation.java index 283177c7480..c41807e2ce8 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/WorkbookOperation.java +++ b/src/main/java/com/microsoft/graph/models/extensions/WorkbookOperation.java @@ -43,7 +43,7 @@ public class WorkbookOperation extends Entity implements IJsonBackedObject { /** * The Status. - * The current status of the operation. Possible values are: notStarted, running, succeeded, failed. + * The current status of the operation. Possible values are: NotStarted, Running, Completed, Failed. */ @SerializedName(value = "status", alternate = {"Status"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/WorkbookRange.java b/src/main/java/com/microsoft/graph/models/extensions/WorkbookRange.java index 72e820fda12..8292bb7f8b7 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/WorkbookRange.java +++ b/src/main/java/com/microsoft/graph/models/extensions/WorkbookRange.java @@ -156,7 +156,7 @@ public class WorkbookRange extends Entity implements IJsonBackedObject { /** * The Value Types. - * Represents the type of data of each cell. Possible values are: Unknown, Empty, String, Integer, Double, Boolean, Error. Read-only. + * Represents the type of data of each cell. The possible values are: Unknown, Empty, String, Integer, Double, Boolean, Error. Read-only. */ @SerializedName(value = "valueTypes", alternate = {"ValueTypes"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/WorkbookRangeBorder.java b/src/main/java/com/microsoft/graph/models/extensions/WorkbookRangeBorder.java index e1b1d06e01e..05c64f53706 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/WorkbookRangeBorder.java +++ b/src/main/java/com/microsoft/graph/models/extensions/WorkbookRangeBorder.java @@ -33,7 +33,7 @@ public class WorkbookRangeBorder extends Entity implements IJsonBackedObject { /** * The Side Index. - * Constant value that indicates the specific side of the border. Possible values are: EdgeTop, EdgeBottom, EdgeLeft, EdgeRight, InsideVertical, InsideHorizontal, DiagonalDown, DiagonalUp. Read-only. + * Constant value that indicates the specific side of the border. The possible values are: EdgeTop, EdgeBottom, EdgeLeft, EdgeRight, InsideVertical, InsideHorizontal, DiagonalDown, DiagonalUp. Read-only. */ @SerializedName(value = "sideIndex", alternate = {"SideIndex"}) @Expose @@ -41,7 +41,7 @@ public class WorkbookRangeBorder extends Entity implements IJsonBackedObject { /** * The Style. - * One of the constants of line style specifying the line style for the border. Possible values are: None, Continuous, Dash, DashDot, DashDotDot, Dot, Double, SlantDashDot. + * One of the constants of line style specifying the line style for the border. The possible values are: None, Continuous, Dash, DashDot, DashDotDot, Dot, Double, SlantDashDot. */ @SerializedName(value = "style", alternate = {"Style"}) @Expose @@ -49,7 +49,7 @@ public class WorkbookRangeBorder extends Entity implements IJsonBackedObject { /** * The Weight. - * Specifies the weight of the border around a range. Possible values are: Hairline, Thin, Medium, Thick. + * Specifies the weight of the border around a range. The possible values are: Hairline, Thin, Medium, Thick. */ @SerializedName(value = "weight", alternate = {"Weight"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/WorkbookRangeFont.java b/src/main/java/com/microsoft/graph/models/extensions/WorkbookRangeFont.java index 6eb2ddaf5bb..146aa9ceeab 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/WorkbookRangeFont.java +++ b/src/main/java/com/microsoft/graph/models/extensions/WorkbookRangeFont.java @@ -65,7 +65,7 @@ public class WorkbookRangeFont extends Entity implements IJsonBackedObject { /** * The Underline. - * Type of underline applied to the font. Possible values are: None, Single, Double, SingleAccountant, DoubleAccountant. + * Type of underline applied to the font. The possible values are: None, Single, Double, SingleAccountant, DoubleAccountant. */ @SerializedName(value = "underline", alternate = {"Underline"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/WorkbookRangeFormat.java b/src/main/java/com/microsoft/graph/models/extensions/WorkbookRangeFormat.java index 615cecf5010..c7dcc86a66b 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/WorkbookRangeFormat.java +++ b/src/main/java/com/microsoft/graph/models/extensions/WorkbookRangeFormat.java @@ -38,7 +38,7 @@ public class WorkbookRangeFormat extends Entity implements IJsonBackedObject { /** * The Horizontal Alignment. - * Represents the horizontal alignment for the specified object. Possible values are: General, Left, Center, Right, Fill, Justify, CenterAcrossSelection, Distributed. + * Represents the horizontal alignment for the specified object. The possible values are: General, Left, Center, Right, Fill, Justify, CenterAcrossSelection, Distributed. */ @SerializedName(value = "horizontalAlignment", alternate = {"HorizontalAlignment"}) @Expose @@ -54,7 +54,7 @@ public class WorkbookRangeFormat extends Entity implements IJsonBackedObject { /** * The Vertical Alignment. - * Represents the vertical alignment for the specified object. Possible values are: Top, Center, Bottom, Justify, Distributed. + * Represents the vertical alignment for the specified object. The possible values are: Top, Center, Bottom, Justify, Distributed. */ @SerializedName(value = "verticalAlignment", alternate = {"VerticalAlignment"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/WorkbookRangeView.java b/src/main/java/com/microsoft/graph/models/extensions/WorkbookRangeView.java index 386bf605e9b..2cba8547d2d 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/WorkbookRangeView.java +++ b/src/main/java/com/microsoft/graph/models/extensions/WorkbookRangeView.java @@ -107,7 +107,7 @@ public class WorkbookRangeView extends Entity implements IJsonBackedObject { /** * The Value Types. - * Represents the type of data of each cell. Read-only. Possible values are: Unknown, Empty, String, Integer, Double, Boolean, Error. + * Represents the type of data of each cell. Read-only. The possible values are: Unknown, Empty, String, Integer, Double, Boolean, Error. */ @SerializedName(value = "valueTypes", alternate = {"ValueTypes"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/WorkbookSortField.java b/src/main/java/com/microsoft/graph/models/extensions/WorkbookSortField.java index 1201a8579a2..fe1152245fc 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/WorkbookSortField.java +++ b/src/main/java/com/microsoft/graph/models/extensions/WorkbookSortField.java @@ -51,7 +51,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Data Option. - * Represents additional sorting options for this field. Possible values are: Normal, TextAsNumber. + * Represents additional sorting options for this field. The possible values are: Normal, TextAsNumber. */ @SerializedName(value = "dataOption", alternate = {"DataOption"}) @Expose @@ -75,7 +75,7 @@ public final AdditionalDataManager additionalDataManager() { /** * The Sort On. - * Represents the type of sorting of this condition. Possible values are: Value, CellColor, FontColor, Icon. + * Represents the type of sorting of this condition. The possible values are: Value, CellColor, FontColor, Icon. */ @SerializedName(value = "sortOn", alternate = {"SortOn"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/WorkbookTable.java b/src/main/java/com/microsoft/graph/models/extensions/WorkbookTable.java index 8bc94b8bb0d..7f47437f3d4 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/WorkbookTable.java +++ b/src/main/java/com/microsoft/graph/models/extensions/WorkbookTable.java @@ -103,7 +103,7 @@ public class WorkbookTable extends Entity implements IJsonBackedObject { /** * The Style. - * Constant value that represents the Table style. Possible values are: TableStyleLight1 thru TableStyleLight21, TableStyleMedium1 thru TableStyleMedium28, TableStyleStyleDark1 thru TableStyleStyleDark11. A custom user-defined style present in the workbook can also be specified. + * Constant value that represents the Table style. The possible values are: TableStyleLight1 thru TableStyleLight21, TableStyleMedium1 thru TableStyleMedium28, TableStyleStyleDark1 thru TableStyleStyleDark11. A custom user-defined style present in the workbook can also be specified. */ @SerializedName(value = "style", alternate = {"Style"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/WorkbookTableSort.java b/src/main/java/com/microsoft/graph/models/extensions/WorkbookTableSort.java index 788deb8c392..dd0deb7e139 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/WorkbookTableSort.java +++ b/src/main/java/com/microsoft/graph/models/extensions/WorkbookTableSort.java @@ -42,7 +42,7 @@ public class WorkbookTableSort extends Entity implements IJsonBackedObject { /** * The Method. - * Represents Chinese character ordering method last used to sort the table. Possible values are: PinYin, StrokeCount. Read-only. + * Represents Chinese character ordering method last used to sort the table. The possible values are: PinYin, StrokeCount. Read-only. */ @SerializedName(value = "method", alternate = {"Method"}) @Expose diff --git a/src/main/java/com/microsoft/graph/models/extensions/WorkforceIntegration.java b/src/main/java/com/microsoft/graph/models/extensions/WorkforceIntegration.java index 0356b5b5696..ce3e18b501a 100644 --- a/src/main/java/com/microsoft/graph/models/extensions/WorkforceIntegration.java +++ b/src/main/java/com/microsoft/graph/models/extensions/WorkforceIntegration.java @@ -59,7 +59,7 @@ public class WorkforceIntegration extends ChangeTrackedEntity implements IJsonBa /** * The Supported Entities. - * This property will replace supports in v1.0. We recommend that you use this property instead of supports. The supports property will still be supported in beta for the time being. Possible values are none, shift, swapRequest, openshift, openShiftRequest, userShiftPreferences. If selecting more than one value, all values must start with the first letter in uppercase. + * The Shifts entities supported for synchronous change notifications. Shifts will make a call back to the url provided on client changes on those entities added here. By default, no entities are supported for change notifications. Possible values are: none, shift, swapRequest, openshift, openShiftRequest, userShiftPreferences */ @SerializedName(value = "supportedEntities", alternate = {"SupportedEntities"}) @Expose