Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
Original file line number Diff line number Diff line change
Expand Up @@ -203,12 +203,12 @@ public class GetQueryParameters implements QueryParameters {
* Skip the first n items
*/
@jakarta.annotation.Nullable
public Integer skip;
public Long skip;
/**
* Show only the first n items
*/
@jakarta.annotation.Nullable
public Integer top;
public Long top;
/**
* Extracts the query parameters into a map for the URI template parsing.
* @return a {@link Map<String, Object>}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,25 +37,25 @@ public CountRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak
}
/**
* Get the number of the resource
* @return a {@link Integer}
* @return a {@link Long}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@jakarta.annotation.Nullable
public Integer get() {
public Long get() {
return get(null);
}
/**
* Get the number of the resource
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link Integer}
* @return a {@link Long}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@jakarta.annotation.Nullable
public Integer get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
public Long get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
final RequestInformation requestInfo = toGetRequestInformation(requestConfiguration);
final HashMap<String, ParsableFactory<? extends Parsable>> errorMapping = new HashMap<String, ParsableFactory<? extends Parsable>>();
errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Integer.class);
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Long.class);
}
/**
* Get the number of the resource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,12 +203,12 @@ public class GetQueryParameters implements QueryParameters {
* Skip the first n items
*/
@jakarta.annotation.Nullable
public Integer skip;
public Long skip;
/**
* Show only the first n items
*/
@jakarta.annotation.Nullable
public Integer top;
public Long top;
/**
* Extracts the query parameters into a map for the URI template parsing.
* @return a {@link Map<String, Object>}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,25 +37,25 @@ public CountRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak
}
/**
* Get the number of the resource
* @return a {@link Integer}
* @return a {@link Long}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@jakarta.annotation.Nullable
public Integer get() {
public Long get() {
return get(null);
}
/**
* Get the number of the resource
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link Integer}
* @return a {@link Long}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@jakarta.annotation.Nullable
public Integer get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
public Long get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
final RequestInformation requestInfo = toGetRequestInformation(requestConfiguration);
final HashMap<String, ParsableFactory<? extends Parsable>> errorMapping = new HashMap<String, ParsableFactory<? extends Parsable>>();
errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Integer.class);
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Long.class);
}
/**
* Get the number of the resource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,12 +203,12 @@ public class GetQueryParameters implements QueryParameters {
* Skip the first n items
*/
@jakarta.annotation.Nullable
public Integer skip;
public Long skip;
/**
* Show only the first n items
*/
@jakarta.annotation.Nullable
public Integer top;
public Long top;
/**
* Extracts the query parameters into a map for the URI template parsing.
* @return a {@link Map<String, Object>}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,25 +37,25 @@ public CountRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak
}
/**
* Get the number of the resource
* @return a {@link Integer}
* @return a {@link Long}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@jakarta.annotation.Nullable
public Integer get() {
public Long get() {
return get(null);
}
/**
* Get the number of the resource
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link Integer}
* @return a {@link Long}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@jakarta.annotation.Nullable
public Integer get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
public Long get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
final RequestInformation requestInfo = toGetRequestInformation(requestConfiguration);
final HashMap<String, ParsableFactory<? extends Parsable>> errorMapping = new HashMap<String, ParsableFactory<? extends Parsable>>();
errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Integer.class);
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Long.class);
}
/**
* Get the number of the resource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,12 +203,12 @@ public class GetQueryParameters implements QueryParameters {
* Skip the first n items
*/
@jakarta.annotation.Nullable
public Integer skip;
public Long skip;
/**
* Show only the first n items
*/
@jakarta.annotation.Nullable
public Integer top;
public Long top;
/**
* Extracts the query parameters into a map for the URI template parsing.
* @return a {@link Map<String, Object>}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,25 +37,25 @@ public CountRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak
}
/**
* Get the number of the resource
* @return a {@link Integer}
* @return a {@link Long}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@jakarta.annotation.Nullable
public Integer get() {
public Long get() {
return get(null);
}
/**
* Get the number of the resource
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link Integer}
* @return a {@link Long}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@jakarta.annotation.Nullable
public Integer get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
public Long get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
final RequestInformation requestInfo = toGetRequestInformation(requestConfiguration);
final HashMap<String, ParsableFactory<? extends Parsable>> errorMapping = new HashMap<String, ParsableFactory<? extends Parsable>>();
errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Integer.class);
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Long.class);
}
/**
* Get the number of the resource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,12 +201,12 @@ public class GetQueryParameters implements QueryParameters {
* Skip the first n items
*/
@jakarta.annotation.Nullable
public Integer skip;
public Long skip;
/**
* Show only the first n items
*/
@jakarta.annotation.Nullable
public Integer top;
public Long top;
/**
* Extracts the query parameters into a map for the URI template parsing.
* @return a {@link Map<String, Object>}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,25 +37,25 @@ public CountRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak
}
/**
* Get the number of the resource
* @return a {@link Integer}
* @return a {@link Long}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@jakarta.annotation.Nullable
public Integer get() {
public Long get() {
return get(null);
}
/**
* Get the number of the resource
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link Integer}
* @return a {@link Long}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@jakarta.annotation.Nullable
public Integer get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
public Long get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
final RequestInformation requestInfo = toGetRequestInformation(requestConfiguration);
final HashMap<String, ParsableFactory<? extends Parsable>> errorMapping = new HashMap<String, ParsableFactory<? extends Parsable>>();
errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Integer.class);
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Long.class);
}
/**
* Get the number of the resource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,12 +199,12 @@ public class GetQueryParameters implements QueryParameters {
* Skip the first n items
*/
@jakarta.annotation.Nullable
public Integer skip;
public Long skip;
/**
* Show only the first n items
*/
@jakarta.annotation.Nullable
public Integer top;
public Long top;
/**
* Extracts the query parameters into a map for the URI template parsing.
* @return a {@link Map<String, Object>}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,25 +37,25 @@ public CountRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak
}
/**
* Get the number of the resource
* @return a {@link Integer}
* @return a {@link Long}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@jakarta.annotation.Nullable
public Integer get() {
public Long get() {
return get(null);
}
/**
* Get the number of the resource
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link Integer}
* @return a {@link Long}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@jakarta.annotation.Nullable
public Integer get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
public Long get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
final RequestInformation requestInfo = toGetRequestInformation(requestConfiguration);
final HashMap<String, ParsableFactory<? extends Parsable>> errorMapping = new HashMap<String, ParsableFactory<? extends Parsable>>();
errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Integer.class);
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Long.class);
}
/**
* Get the number of the resource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,12 +201,12 @@ public class GetQueryParameters implements QueryParameters {
* Skip the first n items
*/
@jakarta.annotation.Nullable
public Integer skip;
public Long skip;
/**
* Show only the first n items
*/
@jakarta.annotation.Nullable
public Integer top;
public Long top;
/**
* Extracts the query parameters into a map for the URI template parsing.
* @return a {@link Map<String, Object>}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,25 +37,25 @@ public CountRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak
}
/**
* Get the number of the resource
* @return a {@link Integer}
* @return a {@link Long}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@jakarta.annotation.Nullable
public Integer get() {
public Long get() {
return get(null);
}
/**
* Get the number of the resource
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link Integer}
* @return a {@link Long}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@jakarta.annotation.Nullable
public Integer get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
public Long get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
final RequestInformation requestInfo = toGetRequestInformation(requestConfiguration);
final HashMap<String, ParsableFactory<? extends Parsable>> errorMapping = new HashMap<String, ParsableFactory<? extends Parsable>>();
errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Integer.class);
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Long.class);
}
/**
* Get the number of the resource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ public IncidentReportRequestBuilder(@jakarta.annotation.Nonnull final String raw
* Provide the Post-Incident Review (PIR) document of a specified service issue for tenant. An issue only with status of PostIncidentReviewPublished indicates that the PIR document exists for the issue. The operation returns an error if the specified issue doesn&apos;t exist for the tenant or if PIR document does not exist for the issue.
* @return a {@link InputStream}
* @throws ODataError When receiving a 4XX or 5XX status code
* @see <a href="https://learn.microsoft.com/graph/api/servicehealthissue-incidentreport?view=graph-rest-1.0">Find more info here</a>
*/
@jakarta.annotation.Nullable
public InputStream get() {
Expand All @@ -50,7 +49,6 @@ public InputStream get() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link InputStream}
* @throws ODataError When receiving a 4XX or 5XX status code
* @see <a href="https://learn.microsoft.com/graph/api/servicehealthissue-incidentreport?view=graph-rest-1.0">Find more info here</a>
*/
@jakarta.annotation.Nullable
public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -255,12 +255,12 @@ public class GetQueryParameters implements QueryParameters {
* Skip the first n items
*/
@jakarta.annotation.Nullable
public Integer skip;
public Long skip;
/**
* Show only the first n items
*/
@jakarta.annotation.Nullable
public Integer top;
public Long top;
/**
* Extracts the query parameters into a map for the URI template parsing.
* @return a {@link Map<String, Object>}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ public ArchiveRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j
* @param body The request body
* @return a {@link ArchivePostResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
* @see <a href="https://learn.microsoft.com/graph/api/serviceupdatemessage-archive?view=graph-rest-1.0">Find more info here</a>
*/
@jakarta.annotation.Nullable
public ArchivePostResponse post(@jakarta.annotation.Nonnull final ArchivePostRequestBody body) {
Expand All @@ -51,7 +50,6 @@ public ArchivePostResponse post(@jakarta.annotation.Nonnull final ArchivePostReq
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ArchivePostResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
* @see <a href="https://learn.microsoft.com/graph/api/serviceupdatemessage-archive?view=graph-rest-1.0">Find more info here</a>
*/
@jakarta.annotation.Nullable
public ArchivePostResponse post(@jakarta.annotation.Nonnull final ArchivePostRequestBody body, @jakarta.annotation.Nullable final java.util.function.Consumer<PostRequestConfiguration> requestConfiguration) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,25 +37,25 @@ public CountRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak
}
/**
* Get the number of the resource
* @return a {@link Integer}
* @return a {@link Long}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@jakarta.annotation.Nullable
public Integer get() {
public Long get() {
return get(null);
}
/**
* Get the number of the resource
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link Integer}
* @return a {@link Long}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@jakarta.annotation.Nullable
public Integer get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
public Long get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
final RequestInformation requestInfo = toGetRequestInformation(requestConfiguration);
final HashMap<String, ParsableFactory<? extends Parsable>> errorMapping = new HashMap<String, ParsableFactory<? extends Parsable>>();
errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Integer.class);
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Long.class);
}
/**
* Get the number of the resource
Expand Down
Loading
Loading