Skip to content

Commit bba21db

Browse files
authored
Merge pull request #2440 from microsoftgraph/v1.0/pipelinebuild/193250
Generated models and request builders
2 parents f921aca + 6088afa commit bba21db

File tree

5,186 files changed

+42359
-54451
lines changed

Some content is hidden

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

5,186 files changed

+42359
-54451
lines changed

src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/SiteListsRequestBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,12 +203,12 @@ public class GetQueryParameters implements QueryParameters {
203203
* Skip the first n items
204204
*/
205205
@jakarta.annotation.Nullable
206-
public Integer skip;
206+
public Long skip;
207207
/**
208208
* Show only the first n items
209209
*/
210210
@jakarta.annotation.Nullable
211-
public Integer top;
211+
public Long top;
212212
/**
213213
* Extracts the query parameters into a map for the URI template parsing.
214214
* @return a {@link Map<String, Object>}

src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/count/CountRequestBuilder.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,25 +37,25 @@ public CountRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak
3737
}
3838
/**
3939
* Get the number of the resource
40-
* @return a {@link Integer}
40+
* @return a {@link Long}
4141
* @throws ODataError When receiving a 4XX or 5XX status code
4242
*/
4343
@jakarta.annotation.Nullable
44-
public Integer get() {
44+
public Long get() {
4545
return get(null);
4646
}
4747
/**
4848
* Get the number of the resource
4949
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
50-
* @return a {@link Integer}
50+
* @return a {@link Long}
5151
* @throws ODataError When receiving a 4XX or 5XX status code
5252
*/
5353
@jakarta.annotation.Nullable
54-
public Integer get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
54+
public Long get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
5555
final RequestInformation requestInfo = toGetRequestInformation(requestConfiguration);
5656
final HashMap<String, ParsableFactory<? extends Parsable>> errorMapping = new HashMap<String, ParsableFactory<? extends Parsable>>();
5757
errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
58-
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Integer.class);
58+
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Long.class);
5959
}
6060
/**
6161
* Get the number of the resource

src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/item/sharedcookies/SharedCookiesRequestBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,12 +203,12 @@ public class GetQueryParameters implements QueryParameters {
203203
* Skip the first n items
204204
*/
205205
@jakarta.annotation.Nullable
206-
public Integer skip;
206+
public Long skip;
207207
/**
208208
* Show only the first n items
209209
*/
210210
@jakarta.annotation.Nullable
211-
public Integer top;
211+
public Long top;
212212
/**
213213
* Extracts the query parameters into a map for the URI template parsing.
214214
* @return a {@link Map<String, Object>}

src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/item/sharedcookies/count/CountRequestBuilder.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,25 +37,25 @@ public CountRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak
3737
}
3838
/**
3939
* Get the number of the resource
40-
* @return a {@link Integer}
40+
* @return a {@link Long}
4141
* @throws ODataError When receiving a 4XX or 5XX status code
4242
*/
4343
@jakarta.annotation.Nullable
44-
public Integer get() {
44+
public Long get() {
4545
return get(null);
4646
}
4747
/**
4848
* Get the number of the resource
4949
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
50-
* @return a {@link Integer}
50+
* @return a {@link Long}
5151
* @throws ODataError When receiving a 4XX or 5XX status code
5252
*/
5353
@jakarta.annotation.Nullable
54-
public Integer get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
54+
public Long get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
5555
final RequestInformation requestInfo = toGetRequestInformation(requestConfiguration);
5656
final HashMap<String, ParsableFactory<? extends Parsable>> errorMapping = new HashMap<String, ParsableFactory<? extends Parsable>>();
5757
errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
58-
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Integer.class);
58+
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Long.class);
5959
}
6060
/**
6161
* Get the number of the resource

src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/item/sites/SitesRequestBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,12 +203,12 @@ public class GetQueryParameters implements QueryParameters {
203203
* Skip the first n items
204204
*/
205205
@jakarta.annotation.Nullable
206-
public Integer skip;
206+
public Long skip;
207207
/**
208208
* Show only the first n items
209209
*/
210210
@jakarta.annotation.Nullable
211-
public Integer top;
211+
public Long top;
212212
/**
213213
* Extracts the query parameters into a map for the URI template parsing.
214214
* @return a {@link Map<String, Object>}

src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/item/sites/count/CountRequestBuilder.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,25 +37,25 @@ public CountRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak
3737
}
3838
/**
3939
* Get the number of the resource
40-
* @return a {@link Integer}
40+
* @return a {@link Long}
4141
* @throws ODataError When receiving a 4XX or 5XX status code
4242
*/
4343
@jakarta.annotation.Nullable
44-
public Integer get() {
44+
public Long get() {
4545
return get(null);
4646
}
4747
/**
4848
* Get the number of the resource
4949
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
50-
* @return a {@link Integer}
50+
* @return a {@link Long}
5151
* @throws ODataError When receiving a 4XX or 5XX status code
5252
*/
5353
@jakarta.annotation.Nullable
54-
public Integer get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
54+
public Long get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
5555
final RequestInformation requestInfo = toGetRequestInformation(requestConfiguration);
5656
final HashMap<String, ParsableFactory<? extends Parsable>> errorMapping = new HashMap<String, ParsableFactory<? extends Parsable>>();
5757
errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
58-
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Integer.class);
58+
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Long.class);
5959
}
6060
/**
6161
* Get the number of the resource

src/main/java/com/microsoft/graph/generated/admin/people/profilecardproperties/ProfileCardPropertiesRequestBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,12 +203,12 @@ public class GetQueryParameters implements QueryParameters {
203203
* Skip the first n items
204204
*/
205205
@jakarta.annotation.Nullable
206-
public Integer skip;
206+
public Long skip;
207207
/**
208208
* Show only the first n items
209209
*/
210210
@jakarta.annotation.Nullable
211-
public Integer top;
211+
public Long top;
212212
/**
213213
* Extracts the query parameters into a map for the URI template parsing.
214214
* @return a {@link Map<String, Object>}

src/main/java/com/microsoft/graph/generated/admin/people/profilecardproperties/count/CountRequestBuilder.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,25 +37,25 @@ public CountRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak
3737
}
3838
/**
3939
* Get the number of the resource
40-
* @return a {@link Integer}
40+
* @return a {@link Long}
4141
* @throws ODataError When receiving a 4XX or 5XX status code
4242
*/
4343
@jakarta.annotation.Nullable
44-
public Integer get() {
44+
public Long get() {
4545
return get(null);
4646
}
4747
/**
4848
* Get the number of the resource
4949
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
50-
* @return a {@link Integer}
50+
* @return a {@link Long}
5151
* @throws ODataError When receiving a 4XX or 5XX status code
5252
*/
5353
@jakarta.annotation.Nullable
54-
public Integer get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
54+
public Long get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
5555
final RequestInformation requestInfo = toGetRequestInformation(requestConfiguration);
5656
final HashMap<String, ParsableFactory<? extends Parsable>> errorMapping = new HashMap<String, ParsableFactory<? extends Parsable>>();
5757
errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
58-
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Integer.class);
58+
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Long.class);
5959
}
6060
/**
6161
* Get the number of the resource

src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/healthoverviews/HealthOverviewsRequestBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,12 +201,12 @@ public class GetQueryParameters implements QueryParameters {
201201
* Skip the first n items
202202
*/
203203
@jakarta.annotation.Nullable
204-
public Integer skip;
204+
public Long skip;
205205
/**
206206
* Show only the first n items
207207
*/
208208
@jakarta.annotation.Nullable
209-
public Integer top;
209+
public Long top;
210210
/**
211211
* Extracts the query parameters into a map for the URI template parsing.
212212
* @return a {@link Map<String, Object>}

src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/healthoverviews/count/CountRequestBuilder.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,25 +37,25 @@ public CountRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak
3737
}
3838
/**
3939
* Get the number of the resource
40-
* @return a {@link Integer}
40+
* @return a {@link Long}
4141
* @throws ODataError When receiving a 4XX or 5XX status code
4242
*/
4343
@jakarta.annotation.Nullable
44-
public Integer get() {
44+
public Long get() {
4545
return get(null);
4646
}
4747
/**
4848
* Get the number of the resource
4949
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
50-
* @return a {@link Integer}
50+
* @return a {@link Long}
5151
* @throws ODataError When receiving a 4XX or 5XX status code
5252
*/
5353
@jakarta.annotation.Nullable
54-
public Integer get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
54+
public Long get(@jakarta.annotation.Nullable final java.util.function.Consumer<GetRequestConfiguration> requestConfiguration) {
5555
final RequestInformation requestInfo = toGetRequestInformation(requestConfiguration);
5656
final HashMap<String, ParsableFactory<? extends Parsable>> errorMapping = new HashMap<String, ParsableFactory<? extends Parsable>>();
5757
errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
58-
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Integer.class);
58+
return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Long.class);
5959
}
6060
/**
6161
* Get the number of the resource

0 commit comments

Comments
 (0)