Skip to content

Commit ad367b2

Browse files
committed
- udpates generated files for orderby support
1 parent 8771aa5 commit ad367b2

File tree

1,577 files changed

+16554
-6
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,577 files changed

+16554
-6
lines changed

src/main/java/com/microsoft/graph/callrecords/requests/extensions/CallRecordCollectionRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,17 @@ public ICallRecordCollectionRequest filter(final String value) {
9595
return (CallRecordCollectionRequest)this;
9696
}
9797

98+
/**
99+
* Sets the order by clause for the request
100+
*
101+
* @param value the order by clause
102+
* @return the updated request
103+
*/
104+
public ICallRecordCollectionRequest orderBy(final String value) {
105+
addQueryOption(new com.microsoft.graph.options.QueryOption("$orderby", value));
106+
return (CallRecordCollectionRequest)this;
107+
}
108+
98109
/**
99110
* Sets the select clause for the request
100111
*

src/main/java/com/microsoft/graph/callrecords/requests/extensions/CallRecordRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,5 +169,16 @@ public ICallRecordRequest filter(final String value) {
169169
return (CallRecordRequest)this;
170170
}
171171

172+
/**
173+
* Sets the order by clause for the request
174+
*
175+
* @param value the order by clause
176+
* @return the updated request
177+
*/
178+
public ICallRecordRequest orderBy(final String value) {
179+
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$orderby", value));
180+
return (CallRecordRequest)this;
181+
}
182+
172183
}
173184

src/main/java/com/microsoft/graph/callrecords/requests/extensions/ICallRecordCollectionRequest.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,14 @@ public interface ICallRecordCollectionRequest extends IHttpRequest {
4646
*/
4747
ICallRecordCollectionRequest filter(final String value);
4848

49+
/**
50+
* Sets the order by clause for the request
51+
*
52+
* @param value the order by clause
53+
* @return the updated request
54+
*/
55+
ICallRecordCollectionRequest orderBy(final String value);
56+
4957
/**
5058
* Sets the select clause for the request
5159
*

src/main/java/com/microsoft/graph/callrecords/requests/extensions/ISegmentCollectionRequest.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,14 @@ public interface ISegmentCollectionRequest extends IHttpRequest {
4646
*/
4747
ISegmentCollectionRequest filter(final String value);
4848

49+
/**
50+
* Sets the order by clause for the request
51+
*
52+
* @param value the order by clause
53+
* @return the updated request
54+
*/
55+
ISegmentCollectionRequest orderBy(final String value);
56+
4957
/**
5058
* Sets the select clause for the request
5159
*

src/main/java/com/microsoft/graph/callrecords/requests/extensions/ISessionCollectionRequest.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,14 @@ public interface ISessionCollectionRequest extends IHttpRequest {
4646
*/
4747
ISessionCollectionRequest filter(final String value);
4848

49+
/**
50+
* Sets the order by clause for the request
51+
*
52+
* @param value the order by clause
53+
* @return the updated request
54+
*/
55+
ISessionCollectionRequest orderBy(final String value);
56+
4957
/**
5058
* Sets the select clause for the request
5159
*

src/main/java/com/microsoft/graph/callrecords/requests/extensions/SegmentCollectionRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,17 @@ public ISegmentCollectionRequest filter(final String value) {
9595
return (SegmentCollectionRequest)this;
9696
}
9797

98+
/**
99+
* Sets the order by clause for the request
100+
*
101+
* @param value the order by clause
102+
* @return the updated request
103+
*/
104+
public ISegmentCollectionRequest orderBy(final String value) {
105+
addQueryOption(new com.microsoft.graph.options.QueryOption("$orderby", value));
106+
return (SegmentCollectionRequest)this;
107+
}
108+
98109
/**
99110
* Sets the select clause for the request
100111
*

src/main/java/com/microsoft/graph/callrecords/requests/extensions/SegmentRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,5 +165,16 @@ public ISegmentRequest filter(final String value) {
165165
return (SegmentRequest)this;
166166
}
167167

168+
/**
169+
* Sets the order by clause for the request
170+
*
171+
* @param value the order by clause
172+
* @return the updated request
173+
*/
174+
public ISegmentRequest orderBy(final String value) {
175+
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$orderby", value));
176+
return (SegmentRequest)this;
177+
}
178+
168179
}
169180

src/main/java/com/microsoft/graph/callrecords/requests/extensions/SessionCollectionRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,17 @@ public ISessionCollectionRequest filter(final String value) {
9595
return (SessionCollectionRequest)this;
9696
}
9797

98+
/**
99+
* Sets the order by clause for the request
100+
*
101+
* @param value the order by clause
102+
* @return the updated request
103+
*/
104+
public ISessionCollectionRequest orderBy(final String value) {
105+
addQueryOption(new com.microsoft.graph.options.QueryOption("$orderby", value));
106+
return (SessionCollectionRequest)this;
107+
}
108+
98109
/**
99110
* Sets the select clause for the request
100111
*

src/main/java/com/microsoft/graph/callrecords/requests/extensions/SessionRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,5 +169,16 @@ public ISessionRequest filter(final String value) {
169169
return (SessionRequest)this;
170170
}
171171

172+
/**
173+
* Sets the order by clause for the request
174+
*
175+
* @param value the order by clause
176+
* @return the updated request
177+
*/
178+
public ISessionRequest orderBy(final String value) {
179+
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$orderby", value));
180+
return (SessionRequest)this;
181+
}
182+
172183
}
173184

src/main/java/com/microsoft/graph/requests/extensions/AadUserConversationMemberRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,5 +167,16 @@ public IAadUserConversationMemberRequest filter(final String value) {
167167
return (AadUserConversationMemberRequest)this;
168168
}
169169

170+
/**
171+
* Sets the order by clause for the request
172+
*
173+
* @param value the order by clause
174+
* @return the updated request
175+
*/
176+
public IAadUserConversationMemberRequest orderBy(final String value) {
177+
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$orderby", value));
178+
return (AadUserConversationMemberRequest)this;
179+
}
180+
170181
}
171182

0 commit comments

Comments
 (0)