Skip to content

Commit 46b1b2d

Browse files
Merge pull request #1474 from microsoftgraph/v1.0/pipelinebuild/117926
Generated models and request builders
2 parents aa002bd + 71f200c commit 46b1b2d

File tree

8 files changed

+86
-5
lines changed

8 files changed

+86
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Changed
1313

14+
## [5.62.0] - 2023-06-23
15+
16+
### Changed
17+
18+
- Generated v1.0 models and request builders using Typewriter.
19+
1420
## [5.61.0] - 2023-06-16
1521

1622
### Changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ repositories {
1919
2020
dependencies {
2121
// Include the sdk as a dependency
22-
implementation 'com.microsoft.graph:microsoft-graph:5.61.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:5.62.0'
2323
// Uncomment the line below if you are building an android application
2424
//implementation 'com.google.guava:guava:30.1.1-android'
2525
// This dependency is only needed if you are using the TokenCrendentialAuthProvider
@@ -36,7 +36,7 @@ Add the dependency in `dependencies` in pom.xml
3636
<!-- Include the sdk as a dependency -->
3737
<groupId>com.microsoft.graph</groupId>
3838
<artifactId>microsoft-graph</artifactId>
39-
<version>5.61.0</version>
39+
<version>5.62.0</version>
4040
</dependency>
4141
<dependency>
4242
<!-- This dependency is only needed if you are using the TokenCredentialAuthProvider -->
@@ -192,5 +192,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
192192

193193

194194

195+
195196

196197

gradle.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ org.gradle.caching=true
2626
mavenGroupId = com.microsoft.graph
2727
mavenArtifactId = microsoft-graph
2828
mavenMajorVersion = 5
29-
mavenMinorVersion = 61
29+
mavenMinorVersion = 62
3030
mavenPatchVersion = 0
3131
mavenArtifactSuffix =
3232

@@ -115,5 +115,6 @@ mavenCentralPublishingEnabled=false
115115

116116

117117

118+
118119

119120

src/main/java/com/microsoft/graph/callrecords/models/MediaStream.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,15 @@ public final AdditionalDataManager additionalDataManager() {
7676
@Nullable
7777
public Long averageBandwidthEstimate;
7878

79+
/**
80+
* The Average Freeze Duration.
81+
* Average duration of the received freezing time in the video stream.
82+
*/
83+
@SerializedName(value = "averageFreezeDuration", alternate = {"AverageFreezeDuration"})
84+
@Expose
85+
@Nullable
86+
public javax.xml.datatype.Duration averageFreezeDuration;
87+
7988
/**
8089
* The Average Jitter.
8190
* 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.
@@ -157,6 +166,15 @@ public final AdditionalDataManager additionalDataManager() {
157166
@Nullable
158167
public java.time.OffsetDateTime endDateTime;
159168

169+
/**
170+
* The Is Audio Forward Error Correction Used.
171+
* Indicates whether the forward error correction (FEC) was used at some point during the session. The default value is null.
172+
*/
173+
@SerializedName(value = "isAudioForwardErrorCorrectionUsed", alternate = {"IsAudioForwardErrorCorrectionUsed"})
174+
@Expose
175+
@Nullable
176+
public Boolean isAudioForwardErrorCorrectionUsed;
177+
160178
/**
161179
* The Low Frame Rate Ratio.
162180
* Fraction of the call where frame rate is less than 7.5 frames per second.
@@ -238,6 +256,15 @@ public final AdditionalDataManager additionalDataManager() {
238256
@Nullable
239257
public Float postForwardErrorCorrectionPacketLossRate;
240258

259+
/**
260+
* The Rms Freeze Duration.
261+
* Average duration of the received freezing time in the video stream represented in root mean square.
262+
*/
263+
@SerializedName(value = "rmsFreezeDuration", alternate = {"RmsFreezeDuration"})
264+
@Expose
265+
@Nullable
266+
public javax.xml.datatype.Duration rmsFreezeDuration;
267+
241268
/**
242269
* The Start Date Time.
243270
* 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

src/main/java/com/microsoft/graph/callrecords/models/ParticipantEndpoint.java

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,33 @@
2727
public class ParticipantEndpoint extends Endpoint implements IJsonBackedObject {
2828

2929

30+
/**
31+
* The Cpu Cores Count.
32+
* CPU number of cores used by the media endpoint.
33+
*/
34+
@SerializedName(value = "cpuCoresCount", alternate = {"CpuCoresCount"})
35+
@Expose
36+
@Nullable
37+
public Integer cpuCoresCount;
38+
39+
/**
40+
* The Cpu Name.
41+
* CPU name used by the media endpoint.
42+
*/
43+
@SerializedName(value = "cpuName", alternate = {"CpuName"})
44+
@Expose
45+
@Nullable
46+
public String cpuName;
47+
48+
/**
49+
* The Cpu Processor Speed In Mhz.
50+
* CPU processor speed used by the media endpoint.
51+
*/
52+
@SerializedName(value = "cpuProcessorSpeedInMhz", alternate = {"CpuProcessorSpeedInMhz"})
53+
@Expose
54+
@Nullable
55+
public Integer cpuProcessorSpeedInMhz;
56+
3057
/**
3158
* The Feedback.
3259
* The feedback provided by the user of this endpoint about the quality of the session.
@@ -45,6 +72,15 @@ public class ParticipantEndpoint extends Endpoint implements IJsonBackedObject {
4572
@Nullable
4673
public IdentitySet identity;
4774

75+
/**
76+
* The Name.
77+
* Name of the device used by the media endpoint.
78+
*/
79+
@SerializedName(value = "name", alternate = {"Name"})
80+
@Expose
81+
@Nullable
82+
public String name;
83+
4884

4985
/**
5086
* Sets the raw JSON object

src/main/java/com/microsoft/graph/callrecords/models/Session.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,15 @@ public class Session extends Entity implements IJsonBackedObject {
6666
@Nullable
6767
public FailureInfo failureInfo;
6868

69+
/**
70+
* The Is Test.
71+
* Specifies whether the session is a test.
72+
*/
73+
@SerializedName(value = "isTest", alternate = {"IsTest"})
74+
@Expose
75+
@Nullable
76+
public Boolean isTest;
77+
6978
/**
7079
* The Modalities.
7180
* List of modalities present in the session. Possible values are: unknown, audio, video, videoBasedScreenSharing, data, screenSharing, unknownFutureValue.

src/main/java/com/microsoft/graph/info/Constants.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ private Constants() {
1818
/** The client secret to use for unit testing */
1919
public static final String CLIENTSECRET = "clientsecret";
2020
/** The SDK version */
21-
public static final String VERSION_NAME = "5.61.0";
21+
public static final String VERSION_NAME = "5.62.0";
2222
}
2323

2424

@@ -92,5 +92,6 @@ private Constants() {
9292

9393

9494

95+
9596

9697

src/main/java/com/microsoft/graph/models/AppConsentApprovalRoute.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class AppConsentApprovalRoute extends Entity implements IJsonBackedObject
2929

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

0 commit comments

Comments
 (0)