Skip to content

Commit

Permalink
Merge pull request #1752 from microsoftgraph/v1.0/pipelinebuild/132033
Browse files Browse the repository at this point in the history
Generated  models and request builders
  • Loading branch information
ramsessanchez authored Jan 23, 2024
2 parents 16e2fcc + 7957265 commit 3fd276e
Show file tree
Hide file tree
Showing 98 changed files with 2,731 additions and 999 deletions.
42 changes: 42 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,48 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

## [5.80.0] - 2024-01-23

### Added

- AccessPackageResource model and derived models and requests.
- CallSendDtmfTonesParameterSet model and derived requests.
- EducationGradingCategory model and derived requests.
- SendDtmfCompletionReason model.
- SendDtmfTonesOperation model and derived requests.
- SocialIdentitySource model.
- SocialIdentitySourceType model.
- GitHubOrganizationEvidence model.
- GitHubRepoEvidence model.
- GitHubUserEvidence model.
- HostLogonSessionEvidence model.
- IoTDeviceEvidence model.
- IoTDeviceImportanceType model.
- MalwareEvidence model.
- NetworkConnectionEvidence model.
- NicEvidence model.
- ProtocolType model.
- SasTokenEvidence model.
- ServicePrincipalEvidence model.
- ServicePrincipalType model.
- SubmissionMailEvidence model.

### Changed

- AccessPackageResource model.
- ChatSendActivityNotificationParameterSet model and derived requests.
- EducationAssignment model and derived requests.
- EducationAssignmentSettings model and derived requests.
- EducationSubmission model.
- TeamsAppSettings model.
- TeamSendActivityNotificationParameterSet model and derived requests.
- User model and derived requests.
- UserTeamworkSendActivityNotificationParameterSet model and derived requests.
- CallRequestBuilder request.
- Workbook*Range request builders changed to remove "sort", "format", and "worksheet" functions.
- Sort, Format, and Worksheet properties still available via the WorkbookRange entity returned from these requests.


## [5.79.0] - 2023-12-21

### Added
Expand Down
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:5.79.0'
implementation 'com.microsoft.graph:microsoft-graph:5.80.0'
// Uncomment the line below if you are building an android application
//implementation 'com.google.guava:guava:30.1.1-android'
// This dependency is only needed if you are using the TokenCrendentialAuthProvider
Expand All @@ -36,7 +36,7 @@ Add the dependency in `dependencies` in pom.xml
<!-- Include the sdk as a dependency -->
<groupId>com.microsoft.graph</groupId>
<artifactId>microsoft-graph</artifactId>
<version>5.79.0</version>
<version>5.80.0</version>
</dependency>
<dependency>
<!-- This dependency is only needed if you are using the TokenCredentialAuthProvider -->
Expand Down Expand Up @@ -210,5 +210,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI






2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {

dependencies {
classpath "com.gradle:gradle-enterprise-gradle-plugin:3.16.1"
classpath "com.android.tools.build:gradle:8.2.1"
classpath "com.android.tools.build:gradle:8.2.2"
classpath "com.github.ben-manes:gradle-versions-plugin:0.51.0"
}
}
Expand Down
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 = 5
mavenMinorVersion = 79
mavenMinorVersion = 80
mavenPatchVersion = 0
mavenArtifactSuffix =

Expand Down Expand Up @@ -133,5 +133,6 @@ mavenCentralPublishingEnabled=false






3 changes: 2 additions & 1 deletion src/main/java/com/microsoft/graph/info/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ private Constants() {
/** The client secret to use for unit testing */
public static final String CLIENTSECRET = "clientsecret";
/** The SDK version */
public static final String VERSION_NAME = "5.79.0";
public static final String VERSION_NAME = "5.80.0";
}


Expand Down Expand Up @@ -110,5 +110,6 @@ private Constants() {






Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import com.microsoft.graph.serializer.AdditionalDataManager;
import java.util.EnumSet;
import com.microsoft.graph.http.BaseCollectionPage;
import com.microsoft.graph.models.AccessPackageResourceAttribute;
import com.microsoft.graph.models.AccessPackageResourceEnvironment;
import com.microsoft.graph.models.Entity;
import com.microsoft.graph.requests.AccessPackageResourceRoleCollectionPage;
Expand All @@ -29,6 +30,15 @@
public class AccessPackageResource extends Entity implements IJsonBackedObject {


/**
* The Attributes.
* Contains information about the attributes to be collected from the requestor and sent to the resource application.
*/
@SerializedName(value = "attributes", alternate = {"Attributes"})
@Expose
@Nullable
public java.util.List<AccessPackageResourceAttribute> attributes;

/**
* 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 is 2014-01-01T00:00:00Z. Read-only.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
// Template Source: BaseEntity.java.tt
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models;
import com.microsoft.graph.serializer.ISerializer;
import com.microsoft.graph.serializer.IJsonBackedObject;
import com.microsoft.graph.serializer.AdditionalDataManager;
import java.util.EnumSet;
import com.microsoft.graph.models.AccessPackageResourceAttributeDestination;
import com.microsoft.graph.models.AccessPackageResourceAttributeSource;


import com.google.gson.JsonObject;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import javax.annotation.Nullable;
import javax.annotation.Nonnull;

// **NOTE** This file was generated by a tool and any changes will be overwritten.

/**
* The class for the Access Package Resource Attribute.
*/
public class AccessPackageResourceAttribute implements IJsonBackedObject {

/** the OData type of the object as returned by the service */
@SerializedName("@odata.type")
@Expose
@Nullable
public String oDataType;

private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);

@Override
@Nonnull
public final AdditionalDataManager additionalDataManager() {
return additionalDataManager;
}

/**
* The Destination.
* Information about how to set the attribute, currently a accessPackageUserDirectoryAttributeStore type.
*/
@SerializedName(value = "destination", alternate = {"Destination"})
@Expose
@Nullable
public AccessPackageResourceAttributeDestination destination;

/**
* The Name.
* The name of the attribute in the end system. If the destination is accessPackageUserDirectoryAttributeStore, then a user property such as jobTitle or a directory schema extension for the user object type, such as extension2b676109c7c74ae2b41549205f1947edpersonalTitle.
*/
@SerializedName(value = "name", alternate = {"Name"})
@Expose
@Nullable
public String name;

/**
* The Source.
* Information about how to populate the attribute value when an accessPackageAssignmentRequest is being fulfilled, currently a accessPackageResourceAttributeQuestion type.
*/
@SerializedName(value = "source", alternate = {"Source"})
@Expose
@Nullable
public AccessPackageResourceAttributeSource source;


/**
* Sets the raw JSON object
*
* @param serializer the serializer
* @param json the JSON object to set this object to
*/
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {

}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
// Template Source: BaseEntity.java.tt
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models;
import com.microsoft.graph.serializer.ISerializer;
import com.microsoft.graph.serializer.IJsonBackedObject;
import com.microsoft.graph.serializer.AdditionalDataManager;
import java.util.EnumSet;


import com.google.gson.JsonObject;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import javax.annotation.Nullable;
import javax.annotation.Nonnull;

// **NOTE** This file was generated by a tool and any changes will be overwritten.

/**
* The class for the Access Package Resource Attribute Destination.
*/
public class AccessPackageResourceAttributeDestination implements IJsonBackedObject {

/** the OData type of the object as returned by the service */
@SerializedName("@odata.type")
@Expose
@Nullable
public String oDataType;

private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);

@Override
@Nonnull
public final AdditionalDataManager additionalDataManager() {
return additionalDataManager;
}


/**
* Sets the raw JSON object
*
* @param serializer the serializer
* @param json the JSON object to set this object to
*/
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {

}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
// Template Source: BaseEntity.java.tt
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models;
import com.microsoft.graph.serializer.ISerializer;
import com.microsoft.graph.serializer.IJsonBackedObject;
import com.microsoft.graph.serializer.AdditionalDataManager;
import java.util.EnumSet;
import com.microsoft.graph.models.AccessPackageQuestion;
import com.microsoft.graph.models.AccessPackageResourceAttributeSource;


import com.google.gson.JsonObject;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import javax.annotation.Nullable;
import javax.annotation.Nonnull;

// **NOTE** This file was generated by a tool and any changes will be overwritten.

/**
* The class for the Access Package Resource Attribute Question.
*/
public class AccessPackageResourceAttributeQuestion extends AccessPackageResourceAttributeSource implements IJsonBackedObject {


/**
* The Question.
*
*/
@SerializedName(value = "question", alternate = {"Question"})
@Expose
@Nullable
public AccessPackageQuestion question;


/**
* Sets the raw JSON object
*
* @param serializer the serializer
* @param json the JSON object to set this object to
*/
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {

}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
// Template Source: BaseEntity.java.tt
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models;
import com.microsoft.graph.serializer.ISerializer;
import com.microsoft.graph.serializer.IJsonBackedObject;
import com.microsoft.graph.serializer.AdditionalDataManager;
import java.util.EnumSet;


import com.google.gson.JsonObject;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import javax.annotation.Nullable;
import javax.annotation.Nonnull;

// **NOTE** This file was generated by a tool and any changes will be overwritten.

/**
* The class for the Access Package Resource Attribute Source.
*/
public class AccessPackageResourceAttributeSource implements IJsonBackedObject {

/** the OData type of the object as returned by the service */
@SerializedName("@odata.type")
@Expose
@Nullable
public String oDataType;

private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);

@Override
@Nonnull
public final AdditionalDataManager additionalDataManager() {
return additionalDataManager;
}


/**
* Sets the raw JSON object
*
* @param serializer the serializer
* @param json the JSON object to set this object to
*/
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {

}
}
Loading

0 comments on commit 3fd276e

Please sign in to comment.