Skip to content

Commit 021c633

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 130669
1 parent d4aa61f commit 021c633

22 files changed

+697
-49
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:5.78.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:5.79.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.78.0</version>
39+
<version>5.79.0</version>
4040
</dependency>
4141
<dependency>
4242
<!-- This dependency is only needed if you are using the TokenCredentialAuthProvider -->
@@ -209,5 +209,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
209209

210210

211211

212+
212213

213214

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

@@ -132,5 +132,6 @@ mavenCentralPublishingEnabled=false
132132

133133

134134

135+
135136

136137

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.78.0";
21+
public static final String VERSION_NAME = "5.79.0";
2222
}
2323

2424

@@ -109,5 +109,6 @@ private Constants() {
109109

110110

111111

112+
112113

113114

Lines changed: 154 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,154 @@
1+
// Template Source: BaseMethodParameterSet.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+
import com.microsoft.graph.models.Tone;
9+
import com.microsoft.graph.models.SendDtmfTonesOperation;
10+
import com.google.gson.annotations.Expose;
11+
import com.google.gson.annotations.SerializedName;
12+
import javax.annotation.Nonnull;
13+
import javax.annotation.Nullable;
14+
import com.google.gson.JsonObject;
15+
import java.util.EnumSet;
16+
import java.util.ArrayList;
17+
18+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
19+
20+
/**
21+
* The class for the Call Send Dtmf Tones Parameter Set.
22+
*/
23+
public class CallSendDtmfTonesParameterSet {
24+
/**
25+
* The tones.
26+
*
27+
*/
28+
@SerializedName(value = "tones", alternate = {"Tones"})
29+
@Expose
30+
@Nullable
31+
public java.util.List<Tone> tones;
32+
33+
/**
34+
* The delay Between Tones Ms.
35+
*
36+
*/
37+
@SerializedName(value = "delayBetweenTonesMs", alternate = {"DelayBetweenTonesMs"})
38+
@Expose
39+
@Nullable
40+
public Integer delayBetweenTonesMs;
41+
42+
/**
43+
* The client Context.
44+
*
45+
*/
46+
@SerializedName(value = "clientContext", alternate = {"ClientContext"})
47+
@Expose
48+
@Nullable
49+
public String clientContext;
50+
51+
52+
/**
53+
* Instiaciates a new CallSendDtmfTonesParameterSet
54+
*/
55+
public CallSendDtmfTonesParameterSet() {}
56+
/**
57+
* Instiaciates a new CallSendDtmfTonesParameterSet
58+
* @param builder builder bearing the parameters to initialize from
59+
*/
60+
protected CallSendDtmfTonesParameterSet(@Nonnull final CallSendDtmfTonesParameterSetBuilder builder) {
61+
this.tones = builder.tones;
62+
this.delayBetweenTonesMs = builder.delayBetweenTonesMs;
63+
this.clientContext = builder.clientContext;
64+
}
65+
/**
66+
* Gets a new builder for the body
67+
* @return a new builder
68+
*/
69+
@Nonnull
70+
public static CallSendDtmfTonesParameterSetBuilder newBuilder() {
71+
return new CallSendDtmfTonesParameterSetBuilder();
72+
}
73+
/**
74+
* Fluent builder for the CallSendDtmfTonesParameterSet
75+
*/
76+
public static final class CallSendDtmfTonesParameterSetBuilder {
77+
/**
78+
* The tones parameter value
79+
*/
80+
@Nullable
81+
protected java.util.List<Tone> tones;
82+
/**
83+
* Sets the Tones
84+
* @param val the value to set it to
85+
* @return the current builder object
86+
*/
87+
@Nonnull
88+
public CallSendDtmfTonesParameterSetBuilder withTones(@Nullable final java.util.List<Tone> val) {
89+
this.tones = val;
90+
return this;
91+
}
92+
/**
93+
* The delayBetweenTonesMs parameter value
94+
*/
95+
@Nullable
96+
protected Integer delayBetweenTonesMs;
97+
/**
98+
* Sets the DelayBetweenTonesMs
99+
* @param val the value to set it to
100+
* @return the current builder object
101+
*/
102+
@Nonnull
103+
public CallSendDtmfTonesParameterSetBuilder withDelayBetweenTonesMs(@Nullable final Integer val) {
104+
this.delayBetweenTonesMs = val;
105+
return this;
106+
}
107+
/**
108+
* The clientContext parameter value
109+
*/
110+
@Nullable
111+
protected String clientContext;
112+
/**
113+
* Sets the ClientContext
114+
* @param val the value to set it to
115+
* @return the current builder object
116+
*/
117+
@Nonnull
118+
public CallSendDtmfTonesParameterSetBuilder withClientContext(@Nullable final String val) {
119+
this.clientContext = val;
120+
return this;
121+
}
122+
/**
123+
* Instanciates a new CallSendDtmfTonesParameterSetBuilder
124+
*/
125+
@Nullable
126+
protected CallSendDtmfTonesParameterSetBuilder(){}
127+
/**
128+
* Buils the resulting body object to be passed to the request
129+
* @return the body object to pass to the request
130+
*/
131+
@Nonnull
132+
public CallSendDtmfTonesParameterSet build() {
133+
return new CallSendDtmfTonesParameterSet(this);
134+
}
135+
}
136+
/**
137+
* Gets the functions options from the properties that have been set
138+
* @return a list of function options for the request
139+
*/
140+
@Nonnull
141+
public java.util.List<com.microsoft.graph.options.FunctionOption> getFunctionOptions() {
142+
final ArrayList<com.microsoft.graph.options.FunctionOption> result = new ArrayList<>();
143+
if(this.tones != null) {
144+
result.add(new com.microsoft.graph.options.FunctionOption("tones", tones));
145+
}
146+
if(this.delayBetweenTonesMs != null) {
147+
result.add(new com.microsoft.graph.options.FunctionOption("delayBetweenTonesMs", delayBetweenTonesMs));
148+
}
149+
if(this.clientContext != null) {
150+
result.add(new com.microsoft.graph.options.FunctionOption("clientContext", clientContext));
151+
}
152+
return result;
153+
}
154+
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public class OnlineMeeting extends OnlineMeetingBase implements IJsonBackedObjec
7777

7878
/**
7979
* The Participants.
80-
* The participants associated with the online meeting. This includes the organizer and the attendees.
80+
* The participants associated with the online meeting, including the organizer and the attendees.
8181
*/
8282
@SerializedName(value = "participants", alternate = {"Participants"})
8383
@Expose

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

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public class OnlineMeetingBase extends Entity implements IJsonBackedObject {
3838

3939
/**
4040
* The Allow Attendee To Enable Camera.
41-
*
41+
* Indicates whether attendees can turn on their camera.
4242
*/
4343
@SerializedName(value = "allowAttendeeToEnableCamera", alternate = {"AllowAttendeeToEnableCamera"})
4444
@Expose
@@ -47,7 +47,7 @@ public class OnlineMeetingBase extends Entity implements IJsonBackedObject {
4747

4848
/**
4949
* The Allow Attendee To Enable Mic.
50-
*
50+
* Indicates whether attendees can turn on their microphone.
5151
*/
5252
@SerializedName(value = "allowAttendeeToEnableMic", alternate = {"AllowAttendeeToEnableMic"})
5353
@Expose
@@ -56,7 +56,7 @@ public class OnlineMeetingBase extends Entity implements IJsonBackedObject {
5656

5757
/**
5858
* The Allowed Presenters.
59-
*
59+
* Specifies who can be a presenter in a meeting.
6060
*/
6161
@SerializedName(value = "allowedPresenters", alternate = {"AllowedPresenters"})
6262
@Expose
@@ -65,7 +65,7 @@ public class OnlineMeetingBase extends Entity implements IJsonBackedObject {
6565

6666
/**
6767
* The Allow Meeting Chat.
68-
*
68+
* Specifies the mode of the meeting chat.
6969
*/
7070
@SerializedName(value = "allowMeetingChat", alternate = {"AllowMeetingChat"})
7171
@Expose
@@ -74,7 +74,7 @@ public class OnlineMeetingBase extends Entity implements IJsonBackedObject {
7474

7575
/**
7676
* The Allow Participants To Change Name.
77-
*
77+
* Specifies if participants are allowed to rename themselves in an instance of the meeting.
7878
*/
7979
@SerializedName(value = "allowParticipantsToChangeName", alternate = {"AllowParticipantsToChangeName"})
8080
@Expose
@@ -83,7 +83,7 @@ public class OnlineMeetingBase extends Entity implements IJsonBackedObject {
8383

8484
/**
8585
* The Allow Teamwork Reactions.
86-
*
86+
* Indicates if Teams reactions are enabled for the meeting.
8787
*/
8888
@SerializedName(value = "allowTeamworkReactions", alternate = {"AllowTeamworkReactions"})
8989
@Expose
@@ -92,7 +92,7 @@ public class OnlineMeetingBase extends Entity implements IJsonBackedObject {
9292

9393
/**
9494
* The Audio Conferencing.
95-
*
95+
* The phone access (dial-in) information for an online meeting. Read-only.
9696
*/
9797
@SerializedName(value = "audioConferencing", alternate = {"AudioConferencing"})
9898
@Expose
@@ -101,7 +101,7 @@ public class OnlineMeetingBase extends Entity implements IJsonBackedObject {
101101

102102
/**
103103
* The Chat Info.
104-
*
104+
* The chat information associated with this online meeting.
105105
*/
106106
@SerializedName(value = "chatInfo", alternate = {"ChatInfo"})
107107
@Expose
@@ -110,7 +110,7 @@ public class OnlineMeetingBase extends Entity implements IJsonBackedObject {
110110

111111
/**
112112
* The Is Entry Exit Announced.
113-
*
113+
* Indicates whether to announce when callers join or leave.
114114
*/
115115
@SerializedName(value = "isEntryExitAnnounced", alternate = {"IsEntryExitAnnounced"})
116116
@Expose
@@ -119,7 +119,7 @@ public class OnlineMeetingBase extends Entity implements IJsonBackedObject {
119119

120120
/**
121121
* The Join Information.
122-
*
122+
* The join information in the language and locale variant specified in 'Accept-Language' request HTTP header. Read-only.
123123
*/
124124
@SerializedName(value = "joinInformation", alternate = {"JoinInformation"})
125125
@Expose
@@ -128,7 +128,7 @@ public class OnlineMeetingBase extends Entity implements IJsonBackedObject {
128128

129129
/**
130130
* The Join Meeting Id Settings.
131-
*
131+
* Specifies the joinMeetingId, the meeting passcode, and the requirement for the passcode. Once an onlineMeeting is created, the joinMeetingIdSettings can't be modified. To make any changes to this property, you must cancel this meeting and create a new one.
132132
*/
133133
@SerializedName(value = "joinMeetingIdSettings", alternate = {"JoinMeetingIdSettings"})
134134
@Expose
@@ -137,7 +137,7 @@ public class OnlineMeetingBase extends Entity implements IJsonBackedObject {
137137

138138
/**
139139
* The Join Web Url.
140-
*
140+
* The join URL of the online meeting. Read-only.
141141
*/
142142
@SerializedName(value = "joinWebUrl", alternate = {"JoinWebUrl"})
143143
@Expose
@@ -146,7 +146,7 @@ public class OnlineMeetingBase extends Entity implements IJsonBackedObject {
146146

147147
/**
148148
* The Lobby Bypass Settings.
149-
*
149+
* Specifies which participants can bypass the meeting lobby.
150150
*/
151151
@SerializedName(value = "lobbyBypassSettings", alternate = {"LobbyBypassSettings"})
152152
@Expose
@@ -155,7 +155,7 @@ public class OnlineMeetingBase extends Entity implements IJsonBackedObject {
155155

156156
/**
157157
* The Record Automatically.
158-
*
158+
* Indicates whether to record the meeting automatically.
159159
*/
160160
@SerializedName(value = "recordAutomatically", alternate = {"RecordAutomatically"})
161161
@Expose
@@ -173,7 +173,7 @@ public class OnlineMeetingBase extends Entity implements IJsonBackedObject {
173173

174174
/**
175175
* The Subject.
176-
*
176+
* The subject of the online meeting.
177177
*/
178178
@SerializedName(value = "subject", alternate = {"Subject"})
179179
@Expose
@@ -182,7 +182,7 @@ public class OnlineMeetingBase extends Entity implements IJsonBackedObject {
182182

183183
/**
184184
* The Video Teleconference Id.
185-
*
185+
* The video teleconferencing ID. Read-only.
186186
*/
187187
@SerializedName(value = "videoTeleconferenceId", alternate = {"VideoTeleconferenceId"})
188188
@Expose
@@ -191,7 +191,7 @@ public class OnlineMeetingBase extends Entity implements IJsonBackedObject {
191191

192192
/**
193193
* The Watermark Protection.
194-
*
194+
* Specifies whether the client application should apply a watermark to a content type.
195195
*/
196196
@SerializedName(value = "watermarkProtection", alternate = {"WatermarkProtection"})
197197
@Expose
@@ -200,7 +200,7 @@ public class OnlineMeetingBase extends Entity implements IJsonBackedObject {
200200

201201
/**
202202
* The Attendance Reports.
203-
*
203+
* The attendance reports of an online meeting. Read-only.
204204
*/
205205
@SerializedName(value = "attendanceReports", alternate = {"AttendanceReports"})
206206
@Expose

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public final AdditionalDataManager additionalDataManager() {
4040

4141
/**
4242
* The Checked Out By.
43-
* User who has checked out the file.
43+
* The user who checked out the file.
4444
*/
4545
@SerializedName(value = "checkedOutBy", alternate = {"CheckedOutBy"})
4646
@Expose

0 commit comments

Comments
 (0)