Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repositories {

dependencies {
// Include the sdk as a dependency
implementation 'com.microsoft.graph:microsoft-graph:2.9.0'
implementation 'com.microsoft.graph:microsoft-graph:2.10.0'
}
```

Expand All @@ -31,7 +31,7 @@ Add the dependency in `dependencies` in pom.xml
<dependency>
<groupId>com.microsoft.graph</groupId>
<artifactId>microsoft-graph</artifactId>
<version>2.9.0</version>
<version>2.10.0</version>
</dependency>
```

Expand Down Expand Up @@ -122,3 +122,4 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI




3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ org.gradle.caching=true
mavenGroupId = com.microsoft.graph
mavenArtifactId = microsoft-graph
mavenMajorVersion = 2
mavenMinorVersion = 9
mavenMinorVersion = 10
mavenPatchVersion = 0
mavenArtifactSuffix =

Expand All @@ -48,3 +48,4 @@ mavenCentralPublishingEnabled=false




3 changes: 2 additions & 1 deletion src/main/java/com/microsoft/graph/core/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ 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.9.0";
public static final String VERSION_NAME = "2.10.0";
}


Expand All @@ -39,3 +39,4 @@ private Constants() {




Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,14 @@ public class AgreementFileProperties extends Entity implements IJsonBackedObject
@Expose
public java.util.Calendar createdDateTime;

/**
* The Display Name.
*
*/
@SerializedName(value = "displayName", alternate = {"DisplayName"})
@Expose
public String displayName;

/**
* The File Data.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public class ApplicationTemplate extends Entity implements IJsonBackedObject {

/**
* The Supported Single Sign On Modes.
* The list of single sign-on modes supported by this application. The supported values are password, saml, external, and oidc.
* The list of single sign-on modes supported by this application. The supported values are oidc, password, saml, and notSupported.
*/
@SerializedName(value = "supportedSingleSignOnModes", alternate = {"SupportedSingleSignOnModes"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public final AdditionalDataManager additionalDataManager() {

/**
* The Conference Id.
*
* The conference id of the online meeting.
*/
@SerializedName(value = "conferenceId", alternate = {"ConferenceId"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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, windowsAzureADJoinUsingDeviceAuth, appleUserEnrollment, appleUserEnrollmentWithServiceAccount, azureAdJoinUsingAzureVmExtension, androidEnterpriseDedicatedDevice, androidEnterpriseFullyManaged, androidEnterpriseCorporateWorkProfile.
*/
@SerializedName(value = "enrollmentType", alternate = {"EnrollmentType"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class IosCustomConfiguration extends DeviceConfiguration implements IJson

/**
* The Payload File Name.
* Payload file name (.mobileconfig
* Payload file name (.mobileconfig | .xml).
*/
@SerializedName(value = "payloadFileName", alternate = {"PayloadFileName"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ public final AdditionalDataManager additionalDataManager() {

/**
* The Key.
* Contains the name of the field that a value is associated with. When a sign in or domain hint is included in the sign-in request, corresponding fields are included as key-value pairs. Possible keys: Login hint present, Domain hint present.
* Key.
*/
@SerializedName(value = "key", alternate = {"Key"})
@Expose
public String key;

/**
* The Value.
* Contains the corresponding value for the specified key. The value is true if a sign in hint was included in the sign-in request; otherwise false. The value is true if a domain hint was included in the sign-in request; otherwise false.
* Value.
*/
@SerializedName(value = "value", alternate = {"Value"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class MacOSCustomConfiguration extends DeviceConfiguration implements IJs

/**
* The Payload File Name.
* Payload file name (.mobileconfig
* Payload file name (.mobileconfig | .xml).
*/
@SerializedName(value = "payloadFileName", alternate = {"PayloadFileName"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public class ManagedAppRegistration extends Entity implements IJsonBackedObject

/**
* The Applied Policies.
* Zero or more policys already applied on the registered app when it last synchronized with managment service.
* Zero or more policys already applied on the registered app when it last synchronized with management service.
*/
@SerializedName(value = "appliedPolicies", alternate = {"AppliedPolicies"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class OmaSettingBase64 extends OmaSetting implements IJsonBackedObject {

/**
* The File Name.
* File name associated with the Value property (.cer
* File name associated with the Value property (.cer | .crt | .p7b | .bin).
*/
@SerializedName(value = "fileName", alternate = {"FileName"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public final AdditionalDataManager additionalDataManager() {

/**
* The Operations.
*
* The list of print long running operations.
*/
@SerializedName(value = "operations", alternate = {"Operations"})
@Expose
Expand Down Expand Up @@ -95,7 +95,7 @@ public final AdditionalDataManager additionalDataManager() {

/**
* The Task Definitions.
*
* List of abstract definition for a task that can be triggered when various events occur within Universal Print.
*/
@SerializedName(value = "taskDefinitions", alternate = {"TaskDefinitions"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class PrintJob extends Entity implements IJsonBackedObject {

/**
* The Created By.
*
* Read-only. Nullable.
*/
@SerializedName(value = "createdBy", alternate = {"CreatedBy"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class PrintUsageByUser extends PrintUsage implements IJsonBackedObject {

/**
* The User Principal Name.
*
* The UPN of the user represented by these statistics.
*/
@SerializedName(value = "userPrincipalName", alternate = {"UserPrincipalName"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,71 +31,71 @@ public class PrinterBase extends Entity implements IJsonBackedObject {

/**
* The Capabilities.
*
* The capabilities of the printer/printerShare.
*/
@SerializedName(value = "capabilities", alternate = {"Capabilities"})
@Expose
public PrinterCapabilities capabilities;

/**
* The Defaults.
*
* The default print settings of printer/printerShare.
*/
@SerializedName(value = "defaults", alternate = {"Defaults"})
@Expose
public PrinterDefaults defaults;

/**
* The Display Name.
*
* The name of the printer/printerShare.
*/
@SerializedName(value = "displayName", alternate = {"DisplayName"})
@Expose
public String displayName;

/**
* The Is Accepting Jobs.
*
* Whether the printer/printerShare is currently accepting new print jobs.
*/
@SerializedName(value = "isAcceptingJobs", alternate = {"IsAcceptingJobs"})
@Expose
public Boolean isAcceptingJobs;

/**
* The Location.
*
* The physical and/or organizational location of the printer/printerShare.
*/
@SerializedName(value = "location", alternate = {"Location"})
@Expose
public PrinterLocation location;

/**
* The Manufacturer.
*
* The manufacturer of the printer/printerShare.
*/
@SerializedName(value = "manufacturer", alternate = {"Manufacturer"})
@Expose
public String manufacturer;

/**
* The Model.
*
* The model name of the printer/printerShare.
*/
@SerializedName(value = "model", alternate = {"Model"})
@Expose
public String model;

/**
* The Status.
*
* The processing status of the printer/printerShare, including any errors.
*/
@SerializedName(value = "status", alternate = {"Status"})
@Expose
public PrinterStatus status;

/**
* The Jobs.
*
* The list of jobs that are queued for printing by the printer/printerShare.
*/
@SerializedName(value = "jobs", alternate = {"Jobs"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class PrinterCreateOperation extends PrintOperation implements IJsonBacke

/**
* The Printer.
*
* The created printer entity. Read-only.
*/
@SerializedName(value = "printer", alternate = {"Printer"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ 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.
* 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
public java.util.List<String> contentSources;

/**
* 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.
* 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
Expand All @@ -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.
* 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 that Microsoft Graph connectors bring in. The fields property can be using the semantic labels applied to properties. For example, if a property is label as title, you can retrieve it using the following syntax : label_title.Optional.
*/
@SerializedName(value = "fields", alternate = {"Fields"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public class ServicePrincipal extends DirectoryObject implements IJsonBackedObje

/**
* The App Description.
*
* The description exposed by the associated application.
*/
@SerializedName(value = "appDescription", alternate = {"AppDescription"})
@Expose
Expand Down Expand Up @@ -129,7 +129,7 @@ public class ServicePrincipal extends DirectoryObject implements IJsonBackedObje

/**
* The Description.
*
* Free text field to provide an internal end-user facing description of the service principal. End-user portals such MyApps will display the application description in this field. The maximum allowed size is 1024 characters.
*/
@SerializedName(value = "description", alternate = {"Description"})
@Expose
Expand Down Expand Up @@ -185,7 +185,7 @@ public class ServicePrincipal extends DirectoryObject implements IJsonBackedObje

/**
* The Notes.
*
* Free text field to capture information about the service principal, typically used for operational purposes. Maximum allowed size is 1024 characters.
*/
@SerializedName(value = "notes", alternate = {"Notes"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class TeamsAppDefinition extends Entity implements IJsonBackedObject {

/**
* The Description.
*
* Verbose description of the application.
*/
@SerializedName(value = "description", alternate = {"Description"})
@Expose
Expand Down Expand Up @@ -68,7 +68,7 @@ public class TeamsAppDefinition extends Entity implements IJsonBackedObject {

/**
* The Short Description.
*
* Short description of the application.
*/
@SerializedName(value = "shortDescription", alternate = {"ShortDescription"})
@Expose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class WebApp extends MobileApp implements IJsonBackedObject {

/**
* The App Url.
* The web app URL.
* The web app URL. This property cannot be PATCHed.
*/
@SerializedName(value = "appUrl", alternate = {"AppUrl"})
@Expose
Expand Down
4 changes: 4 additions & 0 deletions typeSummary.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4504,6 +4504,7 @@
param json : com.google.gson.JsonObject
class com.microsoft.graph.models.extensions.AgreementFile : com.microsoft.graph.models.extensions.AgreementFileProperties
property createdDateTime : java.util.Calendar
property displayName : java.lang.String
property fileData : com.microsoft.graph.models.extensions.AgreementFileData
property fileName : java.lang.String
property id : java.lang.String
Expand Down Expand Up @@ -4533,6 +4534,7 @@
param json : com.google.gson.JsonObject
class com.microsoft.graph.models.extensions.AgreementFileLocalization : com.microsoft.graph.models.extensions.AgreementFileProperties
property createdDateTime : java.util.Calendar
property displayName : java.lang.String
property fileData : com.microsoft.graph.models.extensions.AgreementFileData
property fileName : java.lang.String
property id : java.lang.String
Expand All @@ -4551,6 +4553,7 @@
param json : com.google.gson.JsonObject
class com.microsoft.graph.models.extensions.AgreementFileProperties : com.microsoft.graph.models.extensions.Entity
property createdDateTime : java.util.Calendar
property displayName : java.lang.String
property fileData : com.microsoft.graph.models.extensions.AgreementFileData
property fileName : java.lang.String
property id : java.lang.String
Expand All @@ -4568,6 +4571,7 @@
param json : com.google.gson.JsonObject
class com.microsoft.graph.models.extensions.AgreementFileVersion : com.microsoft.graph.models.extensions.AgreementFileProperties
property createdDateTime : java.util.Calendar
property displayName : java.lang.String
property fileData : com.microsoft.graph.models.extensions.AgreementFileData
property fileName : java.lang.String
property id : java.lang.String
Expand Down