Skip to content

Commit c116f30

Browse files
Merge pull request #211 from microsoftgraph/beta/pipelinebuild/59585
Update generated files with build 59585 [skip ci]
2 parents 8918aae + f891134 commit c116f30

File tree

1,936 files changed

+19257
-8072
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,936 files changed

+19257
-8072
lines changed

CHANGELOG.md

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

1212
### Changed
1313

14+
## [0.33.0] - 2021-11-19
15+
16+
### Added
17+
18+
### Changed
19+
20+
- Generated beta models and request builders using Typewriter using Metadata update from 11/2.
21+
- Due to changes in certain naming conventions in the beta-metadata casuing the latest updates to fail, this is the latest working version at the moment.
22+
1423
## [0.32.0] - 2021-10-14
1524

1625
### Added

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.32.0-SNAPSHOT'
23+
implementation 'com.microsoft.graph:microsoft-graph-beta:0.33.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.32.0-SNAPSHOT</version>
40+
<version>0.33.0-SNAPSHOT</version>
4141
</dependency>
4242
<dependency>
4343
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -170,5 +170,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
170170

171171

172172

173+
173174

174175

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

@@ -69,5 +69,6 @@ mavenCentralPublishingEnabled=false
6969

7070

7171

72+
7273

7374

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ 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 is 2014-01-01T00:00:00Z
36+
*
3737
*/
3838
@SerializedName(value = "endDateTime", alternate = {"EndDateTime"})
3939
@Expose
@@ -42,7 +42,7 @@ public class CallRecord extends Entity implements IJsonBackedObject {
4242

4343
/**
4444
* The Join Web Url.
45-
* Meeting URL associated to the call. May not be available for a peerToPeer call record type.
45+
*
4646
*/
4747
@SerializedName(value = "joinWebUrl", alternate = {"JoinWebUrl"})
4848
@Expose
@@ -51,7 +51,7 @@ public class CallRecord extends Entity implements IJsonBackedObject {
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 is 2014-01-01T00:00:00Z
54+
*
5555
*/
5656
@SerializedName(value = "lastModifiedDateTime", alternate = {"LastModifiedDateTime"})
5757
@Expose
@@ -60,7 +60,7 @@ public class CallRecord extends Entity implements IJsonBackedObject {
6060

6161
/**
6262
* The Modalities.
63-
* List of all the modalities used in the call. Possible values are: unknown, audio, video, videoBasedScreenSharing, data, screenSharing, unknownFutureValue.
63+
*
6464
*/
6565
@SerializedName(value = "modalities", alternate = {"Modalities"})
6666
@Expose
@@ -69,7 +69,7 @@ public class CallRecord extends Entity implements IJsonBackedObject {
6969

7070
/**
7171
* The Organizer.
72-
* The organizing party's identity.
72+
*
7373
*/
7474
@SerializedName(value = "organizer", alternate = {"Organizer"})
7575
@Expose
@@ -78,7 +78,7 @@ public class CallRecord extends Entity implements IJsonBackedObject {
7878

7979
/**
8080
* The Participants.
81-
* List of distinct identities involved in the call.
81+
*
8282
*/
8383
@SerializedName(value = "participants", alternate = {"Participants"})
8484
@Expose
@@ -87,7 +87,7 @@ public class CallRecord extends Entity implements IJsonBackedObject {
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 is 2014-01-01T00:00:00Z.
90+
*
9191
*/
9292
@SerializedName(value = "startDateTime", alternate = {"StartDateTime"})
9393
@Expose
@@ -96,7 +96,7 @@ public class CallRecord extends Entity implements IJsonBackedObject {
9696

9797
/**
9898
* The Type.
99-
* Indicates the type of the call. Possible values are: unknown, groupCall, peerToPeer, unknownFutureValue.
99+
*
100100
*/
101101
@SerializedName(value = "type", alternate = {"Type"})
102102
@Expose
@@ -105,7 +105,7 @@ public class CallRecord extends Entity implements IJsonBackedObject {
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+
*
109109
*/
110110
@SerializedName(value = "version", alternate = {"Version"})
111111
@Expose
@@ -114,7 +114,7 @@ public class CallRecord extends Entity implements IJsonBackedObject {
114114

115115
/**
116116
* The Sessions.
117-
* 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.
117+
*
118118
*/
119119
@SerializedName(value = "sessions", alternate = {"Sessions"})
120120
@Expose

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class ClientUserAgent extends UserAgent implements IJsonBackedObject {
2929

3030
/**
3131
* The Platform.
32-
* Identifies the platform used by this endpoint. Possible values are: unknown, windows, macOS, iOS, android, web, ipPhone, roomSystem, surfaceHub, holoLens, unknownFutureValue.
32+
*
3333
*/
3434
@SerializedName(value = "platform", alternate = {"Platform"})
3535
@Expose
@@ -38,7 +38,7 @@ public class ClientUserAgent extends UserAgent implements IJsonBackedObject {
3838

3939
/**
4040
* The Product Family.
41-
* Identifies the family of application software used by this endpoint. Possible values are: unknown, teams, skypeForBusiness, lync, unknownFutureValue.
41+
*
4242
*/
4343
@SerializedName(value = "productFamily", alternate = {"ProductFamily"})
4444
@Expose

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

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public final AdditionalDataManager additionalDataManager() {
3939

4040
/**
4141
* The Capture Device Driver.
42-
* Name of the capture device driver used by the media endpoint.
42+
*
4343
*/
4444
@SerializedName(value = "captureDeviceDriver", alternate = {"CaptureDeviceDriver"})
4545
@Expose
@@ -48,7 +48,7 @@ public final AdditionalDataManager additionalDataManager() {
4848

4949
/**
5050
* The Capture Device Name.
51-
* Name of the capture device used by the media endpoint.
51+
*
5252
*/
5353
@SerializedName(value = "captureDeviceName", alternate = {"CaptureDeviceName"})
5454
@Expose
@@ -57,7 +57,7 @@ public final AdditionalDataManager additionalDataManager() {
5757

5858
/**
5959
* The Capture Not Functioning Event Ratio.
60-
* Fraction of the call that the media endpoint detected the capture device was not working properly.
60+
*
6161
*/
6262
@SerializedName(value = "captureNotFunctioningEventRatio", alternate = {"CaptureNotFunctioningEventRatio"})
6363
@Expose
@@ -66,7 +66,7 @@ public final AdditionalDataManager additionalDataManager() {
6666

6767
/**
6868
* The Cpu Insufficent Event Ratio.
69-
* 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.
69+
*
7070
*/
7171
@SerializedName(value = "cpuInsufficentEventRatio", alternate = {"CpuInsufficentEventRatio"})
7272
@Expose
@@ -75,7 +75,7 @@ public final AdditionalDataManager additionalDataManager() {
7575

7676
/**
7777
* The Device Clipping Event Ratio.
78-
* Fraction of the call that the media endpoint detected clipping in the captured audio that caused poor quality of the audio being sent.
78+
*
7979
*/
8080
@SerializedName(value = "deviceClippingEventRatio", alternate = {"DeviceClippingEventRatio"})
8181
@Expose
@@ -84,7 +84,7 @@ public final AdditionalDataManager additionalDataManager() {
8484

8585
/**
8686
* The Device Glitch Event Ratio.
87-
* 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.
87+
*
8888
*/
8989
@SerializedName(value = "deviceGlitchEventRatio", alternate = {"DeviceGlitchEventRatio"})
9090
@Expose
@@ -93,7 +93,7 @@ public final AdditionalDataManager additionalDataManager() {
9393

9494
/**
9595
* The Howling Event Count.
96-
* Number of times during the call that the media endpoint detected howling or screeching audio.
96+
*
9797
*/
9898
@SerializedName(value = "howlingEventCount", alternate = {"HowlingEventCount"})
9999
@Expose
@@ -102,7 +102,7 @@ public final AdditionalDataManager additionalDataManager() {
102102

103103
/**
104104
* The Initial Signal Level Root Mean Square.
105-
* The root mean square (RMS) of the incoming signal of up to the first 30 seconds of the call.
105+
*
106106
*/
107107
@SerializedName(value = "initialSignalLevelRootMeanSquare", alternate = {"InitialSignalLevelRootMeanSquare"})
108108
@Expose
@@ -111,7 +111,7 @@ public final AdditionalDataManager additionalDataManager() {
111111

112112
/**
113113
* The Low Speech Level Event Ratio.
114-
* Fraction of the call that the media endpoint detected low speech level that caused poor quality of the audio being sent.
114+
*
115115
*/
116116
@SerializedName(value = "lowSpeechLevelEventRatio", alternate = {"LowSpeechLevelEventRatio"})
117117
@Expose
@@ -120,7 +120,7 @@ public final AdditionalDataManager additionalDataManager() {
120120

121121
/**
122122
* The Low Speech To Noise Event Ratio.
123-
* Fraction of the call that the media endpoint detected low speech to noise level that caused poor quality of the audio being sent.
123+
*
124124
*/
125125
@SerializedName(value = "lowSpeechToNoiseEventRatio", alternate = {"LowSpeechToNoiseEventRatio"})
126126
@Expose
@@ -129,7 +129,7 @@ public final AdditionalDataManager additionalDataManager() {
129129

130130
/**
131131
* The Mic Glitch Rate.
132-
* Glitches per 5 minute interval for the media endpoint's microphone.
132+
*
133133
*/
134134
@SerializedName(value = "micGlitchRate", alternate = {"MicGlitchRate"})
135135
@Expose
@@ -138,7 +138,7 @@ public final AdditionalDataManager additionalDataManager() {
138138

139139
/**
140140
* The Received Noise Level.
141-
* Average energy level of received audio for audio classified as mono noise or left channel of stereo noise by the media endpoint.
141+
*
142142
*/
143143
@SerializedName(value = "receivedNoiseLevel", alternate = {"ReceivedNoiseLevel"})
144144
@Expose
@@ -147,7 +147,7 @@ public final AdditionalDataManager additionalDataManager() {
147147

148148
/**
149149
* The Received Signal Level.
150-
* Average energy level of received audio for audio classified as mono speech, or left channel of stereo speech by the media endpoint.
150+
*
151151
*/
152152
@SerializedName(value = "receivedSignalLevel", alternate = {"ReceivedSignalLevel"})
153153
@Expose
@@ -156,7 +156,7 @@ public final AdditionalDataManager additionalDataManager() {
156156

157157
/**
158158
* The Render Device Driver.
159-
* Name of the render device driver used by the media endpoint.
159+
*
160160
*/
161161
@SerializedName(value = "renderDeviceDriver", alternate = {"RenderDeviceDriver"})
162162
@Expose
@@ -165,7 +165,7 @@ public final AdditionalDataManager additionalDataManager() {
165165

166166
/**
167167
* The Render Device Name.
168-
* Name of the render device used by the media endpoint.
168+
*
169169
*/
170170
@SerializedName(value = "renderDeviceName", alternate = {"RenderDeviceName"})
171171
@Expose
@@ -174,7 +174,7 @@ public final AdditionalDataManager additionalDataManager() {
174174

175175
/**
176176
* The Render Mute Event Ratio.
177-
* Fraction of the call that media endpoint detected device render is muted.
177+
*
178178
*/
179179
@SerializedName(value = "renderMuteEventRatio", alternate = {"RenderMuteEventRatio"})
180180
@Expose
@@ -183,7 +183,7 @@ public final AdditionalDataManager additionalDataManager() {
183183

184184
/**
185185
* The Render Not Functioning Event Ratio.
186-
* Fraction of the call that the media endpoint detected the render device was not working properly.
186+
*
187187
*/
188188
@SerializedName(value = "renderNotFunctioningEventRatio", alternate = {"RenderNotFunctioningEventRatio"})
189189
@Expose
@@ -192,7 +192,7 @@ public final AdditionalDataManager additionalDataManager() {
192192

193193
/**
194194
* The Render Zero Volume Event Ratio.
195-
* Fraction of the call that media endpoint detected device render volume is set to 0.
195+
*
196196
*/
197197
@SerializedName(value = "renderZeroVolumeEventRatio", alternate = {"RenderZeroVolumeEventRatio"})
198198
@Expose
@@ -201,7 +201,7 @@ public final AdditionalDataManager additionalDataManager() {
201201

202202
/**
203203
* The Sent Noise Level.
204-
* Average energy level of sent audio for audio classified as mono noise or left channel of stereo noise by the media endpoint.
204+
*
205205
*/
206206
@SerializedName(value = "sentNoiseLevel", alternate = {"SentNoiseLevel"})
207207
@Expose
@@ -210,7 +210,7 @@ public final AdditionalDataManager additionalDataManager() {
210210

211211
/**
212212
* The Sent Signal Level.
213-
* Average energy level of sent audio for audio classified as mono speech, or left channel of stereo speech by the media endpoint.
213+
*
214214
*/
215215
@SerializedName(value = "sentSignalLevel", alternate = {"SentSignalLevel"})
216216
@Expose
@@ -219,7 +219,7 @@ public final AdditionalDataManager additionalDataManager() {
219219

220220
/**
221221
* The Speaker Glitch Rate.
222-
* Glitches per 5 minute internal for the media endpoint's loudspeaker.
222+
*
223223
*/
224224
@SerializedName(value = "speakerGlitchRate", alternate = {"SpeakerGlitchRate"})
225225
@Expose

0 commit comments

Comments
 (0)