Skip to content

Commit

Permalink
Merge pull request #1474 from microsoftgraph/v1.0/pipelinebuild/117926
Browse files Browse the repository at this point in the history
Generated  models and request builders
  • Loading branch information
ramsessanchez authored Jun 23, 2023
2 parents aa002bd + 71f200c commit 46b1b2d
Show file tree
Hide file tree
Showing 8 changed files with 86 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

## [5.62.0] - 2023-06-23

### Changed

- Generated v1.0 models and request builders using Typewriter.

## [5.61.0] - 2023-06-16

### Changed
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.61.0'
implementation 'com.microsoft.graph:microsoft-graph:5.62.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.61.0</version>
<version>5.62.0</version>
</dependency>
<dependency>
<!-- This dependency is only needed if you are using the TokenCredentialAuthProvider -->
Expand Down Expand Up @@ -192,5 +192,6 @@ 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 = 5
mavenMinorVersion = 61
mavenMinorVersion = 62
mavenPatchVersion = 0
mavenArtifactSuffix =

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






Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,15 @@ public final AdditionalDataManager additionalDataManager() {
@Nullable
public Long averageBandwidthEstimate;

/**
* The Average Freeze Duration.
* Average duration of the received freezing time in the video stream.
*/
@SerializedName(value = "averageFreezeDuration", alternate = {"AverageFreezeDuration"})
@Expose
@Nullable
public javax.xml.datatype.Duration averageFreezeDuration;

/**
* The Average Jitter.
* Average jitter for the stream computed as specified in [RFC 3550][], denoted in [ISO 8601][] format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator.
Expand Down Expand Up @@ -157,6 +166,15 @@ public final AdditionalDataManager additionalDataManager() {
@Nullable
public java.time.OffsetDateTime endDateTime;

/**
* The Is Audio Forward Error Correction Used.
* Indicates whether the forward error correction (FEC) was used at some point during the session. The default value is null.
*/
@SerializedName(value = "isAudioForwardErrorCorrectionUsed", alternate = {"IsAudioForwardErrorCorrectionUsed"})
@Expose
@Nullable
public Boolean isAudioForwardErrorCorrectionUsed;

/**
* The Low Frame Rate Ratio.
* Fraction of the call where frame rate is less than 7.5 frames per second.
Expand Down Expand Up @@ -238,6 +256,15 @@ public final AdditionalDataManager additionalDataManager() {
@Nullable
public Float postForwardErrorCorrectionPacketLossRate;

/**
* The Rms Freeze Duration.
* Average duration of the received freezing time in the video stream represented in root mean square.
*/
@SerializedName(value = "rmsFreezeDuration", alternate = {"RmsFreezeDuration"})
@Expose
@Nullable
public javax.xml.datatype.Duration rmsFreezeDuration;

/**
* The Start Date Time.
* UTC time when the stream started. The DateTimeOffset 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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,33 @@
public class ParticipantEndpoint extends Endpoint implements IJsonBackedObject {


/**
* The Cpu Cores Count.
* CPU number of cores used by the media endpoint.
*/
@SerializedName(value = "cpuCoresCount", alternate = {"CpuCoresCount"})
@Expose
@Nullable
public Integer cpuCoresCount;

/**
* The Cpu Name.
* CPU name used by the media endpoint.
*/
@SerializedName(value = "cpuName", alternate = {"CpuName"})
@Expose
@Nullable
public String cpuName;

/**
* The Cpu Processor Speed In Mhz.
* CPU processor speed used by the media endpoint.
*/
@SerializedName(value = "cpuProcessorSpeedInMhz", alternate = {"CpuProcessorSpeedInMhz"})
@Expose
@Nullable
public Integer cpuProcessorSpeedInMhz;

/**
* The Feedback.
* The feedback provided by the user of this endpoint about the quality of the session.
Expand All @@ -45,6 +72,15 @@ public class ParticipantEndpoint extends Endpoint implements IJsonBackedObject {
@Nullable
public IdentitySet identity;

/**
* The Name.
* Name of the device used by the media endpoint.
*/
@SerializedName(value = "name", alternate = {"Name"})
@Expose
@Nullable
public String name;


/**
* Sets the raw JSON object
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,15 @@ public class Session extends Entity implements IJsonBackedObject {
@Nullable
public FailureInfo failureInfo;

/**
* The Is Test.
* Specifies whether the session is a test.
*/
@SerializedName(value = "isTest", alternate = {"IsTest"})
@Expose
@Nullable
public Boolean isTest;

/**
* The Modalities.
* List of modalities present in the session. Possible values are: unknown, audio, video, videoBasedScreenSharing, data, screenSharing, unknownFutureValue.
Expand Down
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.61.0";
public static final String VERSION_NAME = "5.62.0";
}


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






Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class AppConsentApprovalRoute extends Entity implements IJsonBackedObject

/**
* The App Consent Requests.
* A collection of userConsentRequest objects for a specific application.
* A collection of appConsentRequest objects representing apps for which admin consent has been requested by one or more users.
*/
@SerializedName(value = "appConsentRequests", alternate = {"AppConsentRequests"})
@Expose
Expand Down

0 comments on commit 46b1b2d

Please sign in to comment.