Skip to content

Commit fd5ca9b

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 45160
1 parent 773a2d0 commit fd5ca9b

File tree

1,521 files changed

+12758
-6848
lines changed

Some content is hidden

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

1,521 files changed

+12758
-6848
lines 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:3.0.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:3.1.0'
2323
// Uncomment the line below if you are building an android application
2424
//implementation 'com.google.guava:guava:29.0-android'
2525
}
@@ -33,7 +33,7 @@ Add the dependency in `dependencies` in pom.xml
3333
<dependency>
3434
<groupId>com.microsoft.graph</groupId>
3535
<artifactId>microsoft-graph</artifactId>
36-
<version>3.0.0</version>
36+
<version>3.1.0</version>
3737
</dependency>
3838
```
3939

@@ -126,3 +126,4 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
126126
## 9. Third-party notices
127127

128128
[Third-party notices](THIRD%20PARTY%20NOTICES)
129+

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 = 3
29-
mavenMinorVersion = 0
29+
mavenMinorVersion = 1
3030
mavenPatchVersion = 0
3131
mavenArtifactSuffix =
3232

@@ -44,3 +44,4 @@ mavenCentralPublishingEnabled=false
4444

4545

4646

47+

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

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ public class CallRecord extends Entity implements IJsonBackedObject {
3333

3434
/**
3535
* The End Date Time.
36-
* UTC time when the last user left the call. 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 would look like this: '2014-01-01T00:00:00Z'
36+
* UTC time when the last user left the call. 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
3737
*/
3838
@SerializedName(value = "endDateTime", alternate = {"EndDateTime"})
39-
@Expose
39+
@Expose
4040
@Nullable
4141
public java.time.OffsetDateTime endDateTime;
4242

@@ -45,16 +45,16 @@ public class CallRecord extends Entity implements IJsonBackedObject {
4545
* Meeting URL associated to the call. May not be available for a peerToPeer call record type.
4646
*/
4747
@SerializedName(value = "joinWebUrl", alternate = {"JoinWebUrl"})
48-
@Expose
48+
@Expose
4949
@Nullable
5050
public String joinWebUrl;
5151

5252
/**
5353
* The Last Modified Date Time.
54-
* UTC time when the call record was created. 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 would look like this: '2014-01-01T00:00:00Z'
54+
* UTC time when the call record was created. 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
5555
*/
5656
@SerializedName(value = "lastModifiedDateTime", alternate = {"LastModifiedDateTime"})
57-
@Expose
57+
@Expose
5858
@Nullable
5959
public java.time.OffsetDateTime lastModifiedDateTime;
6060

@@ -63,7 +63,7 @@ public class CallRecord extends Entity implements IJsonBackedObject {
6363
* List of all the modalities used in the call. Possible values are: unknown, audio, video, videoBasedScreenSharing, data, screenSharing, unknownFutureValue.
6464
*/
6565
@SerializedName(value = "modalities", alternate = {"Modalities"})
66-
@Expose
66+
@Expose
6767
@Nullable
6868
public java.util.List<Modality> modalities;
6969

@@ -72,7 +72,7 @@ public class CallRecord extends Entity implements IJsonBackedObject {
7272
* The organizing party's identity.
7373
*/
7474
@SerializedName(value = "organizer", alternate = {"Organizer"})
75-
@Expose
75+
@Expose
7676
@Nullable
7777
public IdentitySet organizer;
7878

@@ -81,16 +81,16 @@ public class CallRecord extends Entity implements IJsonBackedObject {
8181
* List of distinct identities involved in the call.
8282
*/
8383
@SerializedName(value = "participants", alternate = {"Participants"})
84-
@Expose
84+
@Expose
8585
@Nullable
8686
public java.util.List<IdentitySet> participants;
8787

8888
/**
8989
* The Start Date Time.
90-
* UTC time when the first user joined the call. 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 would look like this: '2014-01-01T00:00:00Z'
90+
* UTC time when the first user joined the call. 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.
9191
*/
9292
@SerializedName(value = "startDateTime", alternate = {"StartDateTime"})
93-
@Expose
93+
@Expose
9494
@Nullable
9595
public java.time.OffsetDateTime startDateTime;
9696

@@ -99,16 +99,16 @@ public class CallRecord extends Entity implements IJsonBackedObject {
9999
* Indicates the type of the call. Possible values are: unknown, groupCall, peerToPeer, unknownFutureValue.
100100
*/
101101
@SerializedName(value = "type", alternate = {"Type"})
102-
@Expose
102+
@Expose
103103
@Nullable
104104
public CallType type;
105105

106106
/**
107107
* The Version.
108-
* Monotonically increasing version of the call record. Higher version call records with the same ID includes additional data compared to the lower version.
108+
* Monotonically increasing version of the call record. Higher version call records with the same id includes additional data compared to the lower version.
109109
*/
110110
@SerializedName(value = "version", alternate = {"Version"})
111-
@Expose
111+
@Expose
112112
@Nullable
113113
public Long version;
114114

@@ -117,7 +117,7 @@ public class CallRecord extends Entity implements IJsonBackedObject {
117117
* List of sessions involved in the call. Peer-to-peer calls typically only have one session, whereas group calls typically have at least one session per participant. Read-only. Nullable.
118118
*/
119119
@SerializedName(value = "sessions", alternate = {"Sessions"})
120-
@Expose
120+
@Expose
121121
@Nullable
122122
public SessionCollectionPage sessions;
123123

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class ClientUserAgent extends UserAgent implements IJsonBackedObject {
3232
* Identifies the platform used by this endpoint. Possible values are: unknown, windows, macOS, iOS, android, web, ipPhone, roomSystem, surfaceHub, holoLens, unknownFutureValue.
3333
*/
3434
@SerializedName(value = "platform", alternate = {"Platform"})
35-
@Expose
35+
@Expose
3636
@Nullable
3737
public ClientPlatform platform;
3838

@@ -41,7 +41,7 @@ public class ClientUserAgent extends UserAgent implements IJsonBackedObject {
4141
* Identifies the family of application software used by this endpoint. Possible values are: unknown, teams, skypeForBusiness, lync, unknownFutureValue.
4242
*/
4343
@SerializedName(value = "productFamily", alternate = {"ProductFamily"})
44-
@Expose
44+
@Expose
4545
@Nullable
4646
public ProductFamily productFamily;
4747

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

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public final AdditionalDataManager additionalDataManager() {
4242
* Name of the capture device driver used by the media endpoint.
4343
*/
4444
@SerializedName(value = "captureDeviceDriver", alternate = {"CaptureDeviceDriver"})
45-
@Expose
45+
@Expose
4646
@Nullable
4747
public String captureDeviceDriver;
4848

@@ -51,7 +51,7 @@ public final AdditionalDataManager additionalDataManager() {
5151
* Name of the capture device used by the media endpoint.
5252
*/
5353
@SerializedName(value = "captureDeviceName", alternate = {"CaptureDeviceName"})
54-
@Expose
54+
@Expose
5555
@Nullable
5656
public String captureDeviceName;
5757

@@ -60,7 +60,7 @@ public final AdditionalDataManager additionalDataManager() {
6060
* Fraction of the call that the media endpoint detected the capture device was not working properly.
6161
*/
6262
@SerializedName(value = "captureNotFunctioningEventRatio", alternate = {"CaptureNotFunctioningEventRatio"})
63-
@Expose
63+
@Expose
6464
@Nullable
6565
public Float captureNotFunctioningEventRatio;
6666

@@ -69,7 +69,7 @@ public final AdditionalDataManager additionalDataManager() {
6969
* Fraction of the call that the media endpoint detected the CPU resources available were insufficient and caused poor quality of the audio sent and received.
7070
*/
7171
@SerializedName(value = "cpuInsufficentEventRatio", alternate = {"CpuInsufficentEventRatio"})
72-
@Expose
72+
@Expose
7373
@Nullable
7474
public Float cpuInsufficentEventRatio;
7575

@@ -78,7 +78,7 @@ public final AdditionalDataManager additionalDataManager() {
7878
* Fraction of the call that the media endpoint detected clipping in the captured audio that caused poor quality of the audio being sent.
7979
*/
8080
@SerializedName(value = "deviceClippingEventRatio", alternate = {"DeviceClippingEventRatio"})
81-
@Expose
81+
@Expose
8282
@Nullable
8383
public Float deviceClippingEventRatio;
8484

@@ -87,7 +87,7 @@ public final AdditionalDataManager additionalDataManager() {
8787
* Fraction of the call that the media endpoint detected glitches or gaps in the audio played or captured that caused poor quality of the audio being sent or received.
8888
*/
8989
@SerializedName(value = "deviceGlitchEventRatio", alternate = {"DeviceGlitchEventRatio"})
90-
@Expose
90+
@Expose
9191
@Nullable
9292
public Float deviceGlitchEventRatio;
9393

@@ -96,7 +96,7 @@ public final AdditionalDataManager additionalDataManager() {
9696
* Number of times during the call that the media endpoint detected howling or screeching audio.
9797
*/
9898
@SerializedName(value = "howlingEventCount", alternate = {"HowlingEventCount"})
99-
@Expose
99+
@Expose
100100
@Nullable
101101
public Integer howlingEventCount;
102102

@@ -105,7 +105,7 @@ public final AdditionalDataManager additionalDataManager() {
105105
* The root mean square (RMS) of the incoming signal of up to the first 30 seconds of the call.
106106
*/
107107
@SerializedName(value = "initialSignalLevelRootMeanSquare", alternate = {"InitialSignalLevelRootMeanSquare"})
108-
@Expose
108+
@Expose
109109
@Nullable
110110
public Float initialSignalLevelRootMeanSquare;
111111

@@ -114,7 +114,7 @@ public final AdditionalDataManager additionalDataManager() {
114114
* Fraction of the call that the media endpoint detected low speech level that caused poor quality of the audio being sent.
115115
*/
116116
@SerializedName(value = "lowSpeechLevelEventRatio", alternate = {"LowSpeechLevelEventRatio"})
117-
@Expose
117+
@Expose
118118
@Nullable
119119
public Float lowSpeechLevelEventRatio;
120120

@@ -123,7 +123,7 @@ public final AdditionalDataManager additionalDataManager() {
123123
* Fraction of the call that the media endpoint detected low speech to noise level that caused poor quality of the audio being sent.
124124
*/
125125
@SerializedName(value = "lowSpeechToNoiseEventRatio", alternate = {"LowSpeechToNoiseEventRatio"})
126-
@Expose
126+
@Expose
127127
@Nullable
128128
public Float lowSpeechToNoiseEventRatio;
129129

@@ -132,7 +132,7 @@ public final AdditionalDataManager additionalDataManager() {
132132
* Glitches per 5 minute interval for the media endpoint's microphone.
133133
*/
134134
@SerializedName(value = "micGlitchRate", alternate = {"MicGlitchRate"})
135-
@Expose
135+
@Expose
136136
@Nullable
137137
public Float micGlitchRate;
138138

@@ -141,7 +141,7 @@ public final AdditionalDataManager additionalDataManager() {
141141
* Average energy level of received audio for audio classified as mono noise or left channel of stereo noise by the media endpoint.
142142
*/
143143
@SerializedName(value = "receivedNoiseLevel", alternate = {"ReceivedNoiseLevel"})
144-
@Expose
144+
@Expose
145145
@Nullable
146146
public Integer receivedNoiseLevel;
147147

@@ -150,7 +150,7 @@ public final AdditionalDataManager additionalDataManager() {
150150
* Average energy level of received audio for audio classified as mono speech, or left channel of stereo speech by the media endpoint.
151151
*/
152152
@SerializedName(value = "receivedSignalLevel", alternate = {"ReceivedSignalLevel"})
153-
@Expose
153+
@Expose
154154
@Nullable
155155
public Integer receivedSignalLevel;
156156

@@ -159,7 +159,7 @@ public final AdditionalDataManager additionalDataManager() {
159159
* Name of the render device driver used by the media endpoint.
160160
*/
161161
@SerializedName(value = "renderDeviceDriver", alternate = {"RenderDeviceDriver"})
162-
@Expose
162+
@Expose
163163
@Nullable
164164
public String renderDeviceDriver;
165165

@@ -168,7 +168,7 @@ public final AdditionalDataManager additionalDataManager() {
168168
* Name of the render device used by the media endpoint.
169169
*/
170170
@SerializedName(value = "renderDeviceName", alternate = {"RenderDeviceName"})
171-
@Expose
171+
@Expose
172172
@Nullable
173173
public String renderDeviceName;
174174

@@ -177,7 +177,7 @@ public final AdditionalDataManager additionalDataManager() {
177177
* Fraction of the call that media endpoint detected device render is muted.
178178
*/
179179
@SerializedName(value = "renderMuteEventRatio", alternate = {"RenderMuteEventRatio"})
180-
@Expose
180+
@Expose
181181
@Nullable
182182
public Float renderMuteEventRatio;
183183

@@ -186,7 +186,7 @@ public final AdditionalDataManager additionalDataManager() {
186186
* Fraction of the call that the media endpoint detected the render device was not working properly.
187187
*/
188188
@SerializedName(value = "renderNotFunctioningEventRatio", alternate = {"RenderNotFunctioningEventRatio"})
189-
@Expose
189+
@Expose
190190
@Nullable
191191
public Float renderNotFunctioningEventRatio;
192192

@@ -195,7 +195,7 @@ public final AdditionalDataManager additionalDataManager() {
195195
* Fraction of the call that media endpoint detected device render volume is set to 0.
196196
*/
197197
@SerializedName(value = "renderZeroVolumeEventRatio", alternate = {"RenderZeroVolumeEventRatio"})
198-
@Expose
198+
@Expose
199199
@Nullable
200200
public Float renderZeroVolumeEventRatio;
201201

@@ -204,7 +204,7 @@ public final AdditionalDataManager additionalDataManager() {
204204
* Average energy level of sent audio for audio classified as mono noise or left channel of stereo noise by the media endpoint.
205205
*/
206206
@SerializedName(value = "sentNoiseLevel", alternate = {"SentNoiseLevel"})
207-
@Expose
207+
@Expose
208208
@Nullable
209209
public Integer sentNoiseLevel;
210210

@@ -213,7 +213,7 @@ public final AdditionalDataManager additionalDataManager() {
213213
* Average energy level of sent audio for audio classified as mono speech, or left channel of stereo speech by the media endpoint.
214214
*/
215215
@SerializedName(value = "sentSignalLevel", alternate = {"SentSignalLevel"})
216-
@Expose
216+
@Expose
217217
@Nullable
218218
public Integer sentSignalLevel;
219219

@@ -222,7 +222,7 @@ public final AdditionalDataManager additionalDataManager() {
222222
* Glitches per 5 minute internal for the media endpoint's loudspeaker.
223223
*/
224224
@SerializedName(value = "speakerGlitchRate", alternate = {"SpeakerGlitchRate"})
225-
@Expose
225+
@Expose
226226
@Nullable
227227
public Float speakerGlitchRate;
228228

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public final AdditionalDataManager additionalDataManager() {
4343
* User-agent reported by this endpoint.
4444
*/
4545
@SerializedName(value = "userAgent", alternate = {"UserAgent"})
46-
@Expose
46+
@Expose
4747
@Nullable
4848
public UserAgent userAgent;
4949

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public final AdditionalDataManager additionalDataManager() {
4343
* Classification of why a call or portion of a call failed.
4444
*/
4545
@SerializedName(value = "reason", alternate = {"Reason"})
46-
@Expose
46+
@Expose
4747
@Nullable
4848
public String reason;
4949

@@ -52,7 +52,7 @@ public final AdditionalDataManager additionalDataManager() {
5252
* The stage when the failure occurred. Possible values are: unknown, callSetup, midcall, unknownFutureValue.
5353
*/
5454
@SerializedName(value = "stage", alternate = {"Stage"})
55-
@Expose
55+
@Expose
5656
@Nullable
5757
public FailureStage stage;
5858

0 commit comments

Comments
 (0)