Skip to content

Commit 3cc7a3a

Browse files
Merge pull request #574 from microsoftgraph/beta/pipelinebuild/113700
Generated Beta models and request builders
2 parents bb4657a + 041da77 commit 3cc7a3a

File tree

176 files changed

+3986
-4996
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

176 files changed

+3986
-4996
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+
## [0.71.0] - 2023-05-02
15+
16+
### Changed
17+
18+
- Weekly generation.
19+
1420
## [0.70.0] - 2023-04-27
1521

1622
### Changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ repositories {
2020
2121
dependencies {
2222
// Include the sdk as a dependency
23-
implementation 'com.microsoft.graph:microsoft-graph-beta:0.70.0-SNAPSHOT'
23+
implementation 'com.microsoft.graph:microsoft-graph-beta:0.71.0-SNAPSHOT'
2424
// Uncomment the line below if you are building an android application
2525
//implementation 'com.google.guava:guava:30.1.1-android'
2626
// This dependency is only needed if you are using the TokenCrendentialAuthProvider
@@ -37,7 +37,7 @@ Add the dependency in `dependencies` in pom.xml
3737
<!-- Include the sdk as a dependency -->
3838
<groupId>com.microsoft.graph</groupId>
3939
<artifactId>microsoft-graph-beta</artifactId>
40-
<version>0.70.0-SNAPSHOT</version>
40+
<version>0.71.0-SNAPSHOT</version>
4141
</dependency>
4242
<dependency>
4343
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -206,5 +206,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
206206

207207

208208

209+
209210

210211

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-beta
2828
mavenMajorVersion = 0
29-
mavenMinorVersion = 70
29+
mavenMinorVersion = 71
3030
mavenPatchVersion = 0
3131
mavenArtifactSuffix =
3232

@@ -105,5 +105,6 @@ mavenCentralPublishingEnabled=false
105105

106106

107107

108+
108109

109110

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 of the received freeze duration related to 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+
* Root mean square of the received freeze duration related to the video stream.
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 = "0.70.0";
21+
public static final String VERSION_NAME = "0.71.0";
2222
}
2323

2424

@@ -80,5 +80,6 @@ private Constants() {
8080

8181

8282

83+
8384

8485

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
import com.microsoft.graph.serializer.IJsonBackedObject;
99
import com.microsoft.graph.serializer.AdditionalDataManager;
1010
import java.util.EnumSet;
11+
import com.microsoft.graph.models.DeviceAndAppManagementAssignmentTarget;
1112
import com.microsoft.graph.models.AndroidFotaDeploymentAssignmentTarget;
1213

1314

@@ -38,6 +39,15 @@ public final AdditionalDataManager additionalDataManager() {
3839
return additionalDataManager;
3940
}
4041

42+
/**
43+
* The Assignment Target.
44+
* The Azure Active Directory (Azure AD) we are deploying firmware updates to (e.g.: d93c8f48-bd42-4514-ba40-bc6b84780930). NOTE: Use this property moving forward because the existing property, target, is deprecated.
45+
*/
46+
@SerializedName(value = "assignmentTarget", alternate = {"AssignmentTarget"})
47+
@Expose
48+
@Nullable
49+
public DeviceAndAppManagementAssignmentTarget assignmentTarget;
50+
4151
/**
4252
* The Display Name.
4353
* The display name of the Azure AD security group used for the assignment.

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

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
import com.microsoft.graph.serializer.IJsonBackedObject;
99
import com.microsoft.graph.serializer.AdditionalDataManager;
1010
import java.util.EnumSet;
11+
import com.microsoft.graph.models.DeviceAndAppManagementAssignmentTarget;
1112

1213

1314
import com.google.gson.JsonObject;
@@ -21,21 +22,8 @@
2122
/**
2223
* The class for the Android Fota Deployment Assignment Target.
2324
*/
24-
public class AndroidFotaDeploymentAssignmentTarget implements IJsonBackedObject {
25+
public class AndroidFotaDeploymentAssignmentTarget extends DeviceAndAppManagementAssignmentTarget implements IJsonBackedObject {
2526

26-
/** the OData type of the object as returned by the service */
27-
@SerializedName("@odata.type")
28-
@Expose
29-
@Nullable
30-
public String oDataType;
31-
32-
private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);
33-
34-
@Override
35-
@Nonnull
36-
public final AdditionalDataManager additionalDataManager() {
37-
return additionalDataManager;
38-
}
3927

4028
/**
4129
* The Group Id.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// Template Source: Enum.java.tt
2+
// ------------------------------------------------------------------------------
3+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
4+
// ------------------------------------------------------------------------------
5+
6+
package com.microsoft.graph.models;
7+
8+
9+
/**
10+
* The Enum Assignment Filter Management Type.
11+
*/
12+
public enum AssignmentFilterManagementType
13+
{
14+
/**
15+
* devices
16+
*/
17+
DEVICES,
18+
/**
19+
* apps
20+
*/
21+
APPS,
22+
/**
23+
* unknown Future Value
24+
*/
25+
UNKNOWN_FUTURE_VALUE,
26+
/**
27+
* For AssignmentFilterManagementType values that were not expected from the service
28+
*/
29+
UNEXPECTED_VALUE
30+
}

0 commit comments

Comments
 (0)