Skip to content

Commit 6ba39a3

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 55157
1 parent c407203 commit 6ba39a3

File tree

125 files changed

+6031
-89
lines changed

Some content is hidden

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

125 files changed

+6031
-89
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.1.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:5.2.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.1.0</version>
39+
<version>5.2.0</version>
4040
</dependency>
4141
<dependency>
4242
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -135,3 +135,4 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
135135

136136
[Third-party notices](THIRD%20PARTY%20NOTICES)
137137

138+

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

@@ -58,3 +58,4 @@ mavenCentralPublishingEnabled=false
5858

5959

6060

61+

src/main/java/com/microsoft/graph/callrecords/models/DirectRoutingLogRow.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 Callee Number.
42-
*
42+
* Number of the user or bot who received the call. E.164 format, but may include additional data.
4343
*/
4444
@SerializedName(value = "calleeNumber", alternate = {"CalleeNumber"})
4545
@Expose
@@ -48,7 +48,7 @@ public final AdditionalDataManager additionalDataManager() {
4848

4949
/**
5050
* The Call End Sub Reason.
51-
*
51+
* In addition to the SIP codes, Microsoft has own subcodes that indicate the specific issue.
5252
*/
5353
@SerializedName(value = "callEndSubReason", alternate = {"CallEndSubReason"})
5454
@Expose
@@ -57,7 +57,7 @@ public final AdditionalDataManager additionalDataManager() {
5757

5858
/**
5959
* The Caller Number.
60-
*
60+
* Number of the user or bot who made the call. E.164 format, but may include additional data.
6161
*/
6262
@SerializedName(value = "callerNumber", alternate = {"CallerNumber"})
6363
@Expose
@@ -66,7 +66,7 @@ public final AdditionalDataManager additionalDataManager() {
6666

6767
/**
6868
* The Call Type.
69-
*
69+
* Call type and direction.
7070
*/
7171
@SerializedName(value = "callType", alternate = {"CallType"})
7272
@Expose
@@ -75,7 +75,7 @@ public final AdditionalDataManager additionalDataManager() {
7575

7676
/**
7777
* The Correlation Id.
78-
*
78+
* Identifier for the call that you can use when calling Microsoft Support. GUID.
7979
*/
8080
@SerializedName(value = "correlationId", alternate = {"CorrelationId"})
8181
@Expose
@@ -84,7 +84,7 @@ public final AdditionalDataManager additionalDataManager() {
8484

8585
/**
8686
* The Duration.
87-
*
87+
* Duration of the call in seconds.
8888
*/
8989
@SerializedName(value = "duration", alternate = {"Duration"})
9090
@Expose
@@ -93,7 +93,7 @@ public final AdditionalDataManager additionalDataManager() {
9393

9494
/**
9595
* The End Date Time.
96-
*
96+
* Only exists for successful (fully established) calls. Time when call ended.
9797
*/
9898
@SerializedName(value = "endDateTime", alternate = {"EndDateTime"})
9999
@Expose
@@ -102,7 +102,7 @@ public final AdditionalDataManager additionalDataManager() {
102102

103103
/**
104104
* The Failure Date Time.
105-
*
105+
* Only exists for failed (not fully established) calls.
106106
*/
107107
@SerializedName(value = "failureDateTime", alternate = {"FailureDateTime"})
108108
@Expose
@@ -111,7 +111,7 @@ public final AdditionalDataManager additionalDataManager() {
111111

112112
/**
113113
* The Final Sip Code.
114-
*
114+
* The code with which the call ended, RFC 3261.
115115
*/
116116
@SerializedName(value = "finalSipCode", alternate = {"FinalSipCode"})
117117
@Expose
@@ -120,7 +120,7 @@ public final AdditionalDataManager additionalDataManager() {
120120

121121
/**
122122
* The Final Sip Code Phrase.
123-
*
123+
* Description of the SIP code and Microsoft subcode.
124124
*/
125125
@SerializedName(value = "finalSipCodePhrase", alternate = {"FinalSipCodePhrase"})
126126
@Expose
@@ -129,7 +129,7 @@ public final AdditionalDataManager additionalDataManager() {
129129

130130
/**
131131
* The Id.
132-
*
132+
* Unique call identifier. GUID.
133133
*/
134134
@SerializedName(value = "id", alternate = {"Id"})
135135
@Expose
@@ -138,7 +138,7 @@ public final AdditionalDataManager additionalDataManager() {
138138

139139
/**
140140
* The Invite Date Time.
141-
*
141+
* When the initial invite was sent.
142142
*/
143143
@SerializedName(value = "inviteDateTime", alternate = {"InviteDateTime"})
144144
@Expose
@@ -147,7 +147,7 @@ public final AdditionalDataManager additionalDataManager() {
147147

148148
/**
149149
* The Media Bypass Enabled.
150-
*
150+
* Indicates if the trunk was enabled for media bypass or not.
151151
*/
152152
@SerializedName(value = "mediaBypassEnabled", alternate = {"MediaBypassEnabled"})
153153
@Expose
@@ -156,7 +156,7 @@ public final AdditionalDataManager additionalDataManager() {
156156

157157
/**
158158
* The Media Path Location.
159-
*
159+
* The datacenter used for media path in non-bypass call.
160160
*/
161161
@SerializedName(value = "mediaPathLocation", alternate = {"MediaPathLocation"})
162162
@Expose
@@ -165,7 +165,7 @@ public final AdditionalDataManager additionalDataManager() {
165165

166166
/**
167167
* The Signaling Location.
168-
*
168+
* The datacenter used for signaling for both bypass and non-bypass calls.
169169
*/
170170
@SerializedName(value = "signalingLocation", alternate = {"SignalingLocation"})
171171
@Expose
@@ -174,7 +174,7 @@ public final AdditionalDataManager additionalDataManager() {
174174

175175
/**
176176
* The Start Date Time.
177-
*
177+
* Call start time.For failed and unanswered calls, this can be equal to invite or failure time.
178178
*/
179179
@SerializedName(value = "startDateTime", alternate = {"StartDateTime"})
180180
@Expose
@@ -183,7 +183,7 @@ public final AdditionalDataManager additionalDataManager() {
183183

184184
/**
185185
* The Successful Call.
186-
*
186+
* Success or attempt.
187187
*/
188188
@SerializedName(value = "successfulCall", alternate = {"SuccessfulCall"})
189189
@Expose
@@ -192,7 +192,7 @@ public final AdditionalDataManager additionalDataManager() {
192192

193193
/**
194194
* The Trunk Fully Qualified Domain Name.
195-
*
195+
* Fully qualified domain name of the session border controller.
196196
*/
197197
@SerializedName(value = "trunkFullyQualifiedDomainName", alternate = {"TrunkFullyQualifiedDomainName"})
198198
@Expose
@@ -201,7 +201,7 @@ public final AdditionalDataManager additionalDataManager() {
201201

202202
/**
203203
* The User Display Name.
204-
*
204+
* Display name of the user.
205205
*/
206206
@SerializedName(value = "userDisplayName", alternate = {"UserDisplayName"})
207207
@Expose
@@ -210,7 +210,7 @@ public final AdditionalDataManager additionalDataManager() {
210210

211211
/**
212212
* The User Id.
213-
*
213+
* Calling user's ID in Graph. This and other user info will be null/empty for bot call types. GUID.
214214
*/
215215
@SerializedName(value = "userId", alternate = {"UserId"})
216216
@Expose
@@ -219,7 +219,7 @@ public final AdditionalDataManager additionalDataManager() {
219219

220220
/**
221221
* The User Principal Name.
222-
*
222+
* UserPrincipalName (sign-in name) in Azure Active Directory. This is usually the same as user's SIP Address, and can be same as user's e-mail address.
223223
*/
224224
@SerializedName(value = "userPrincipalName", alternate = {"UserPrincipalName"})
225225
@Expose

0 commit comments

Comments
 (0)