Skip to content

Commit

Permalink
Merge pull request #1543 from microsoftgraph/kiota/v1.0/pipelinebuild…
Browse files Browse the repository at this point in the history
…/123982

Generated  models and request builders
  • Loading branch information
MIchaelMainer authored Aug 30, 2023
2 parents 4e31fa8 + 899e33b commit d865fce
Show file tree
Hide file tree
Showing 7,018 changed files with 71,030 additions and 688 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
10 changes: 10 additions & 0 deletions src/main/java/com/microsoft/graph/admin/AdminRequestBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,16 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
}
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a adminRequestBuilder
*/
@jakarta.annotation.Nonnull
public AdminRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new AdminRequestBuilder(rawUrl, requestAdapter);
}
/**
* Get admin
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,16 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
}
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a edgeRequestBuilder
*/
@jakarta.annotation.Nonnull
public EdgeRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new EdgeRequestBuilder(rawUrl, requestAdapter);
}
/**
* Configuration for the request such as headers, query parameters, and middleware options.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,16 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
}
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a internetExplorerModeRequestBuilder
*/
@jakarta.annotation.Nonnull
public InternetExplorerModeRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new InternetExplorerModeRequestBuilder(rawUrl, requestAdapter);
}
/**
* Configuration for the request such as headers, query parameters, and middleware options.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,16 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
}
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a siteListsRequestBuilder
*/
@jakarta.annotation.Nonnull
public SiteListsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new SiteListsRequestBuilder(rawUrl, requestAdapter);
}
/**
* Get a list of the browserSiteList objects and their properties.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,16 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
}
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a CountRequestBuilder
*/
@jakarta.annotation.Nonnull
public CountRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new CountRequestBuilder(rawUrl, requestAdapter);
}
/**
* Get the number of the resource
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,16 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
}
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a BrowserSiteListItemRequestBuilder
*/
@jakarta.annotation.Nonnull
public BrowserSiteListItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new BrowserSiteListItemRequestBuilder(rawUrl, requestAdapter);
}
/**
* Configuration for the request such as headers, query parameters, and middleware options.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,16 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
}
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a publishRequestBuilder
*/
@jakarta.annotation.Nonnull
public PublishRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new PublishRequestBuilder(rawUrl, requestAdapter);
}
/**
* Configuration for the request such as headers, query parameters, and middleware options.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,16 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
}
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a sharedCookiesRequestBuilder
*/
@jakarta.annotation.Nonnull
public SharedCookiesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new SharedCookiesRequestBuilder(rawUrl, requestAdapter);
}
/**
* Get a list of the browserSharedCookie objects and their properties.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,16 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
}
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a CountRequestBuilder
*/
@jakarta.annotation.Nonnull
public CountRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new CountRequestBuilder(rawUrl, requestAdapter);
}
/**
* Get the number of the resource
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,16 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
}
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a BrowserSharedCookieItemRequestBuilder
*/
@jakarta.annotation.Nonnull
public BrowserSharedCookieItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new BrowserSharedCookieItemRequestBuilder(rawUrl, requestAdapter);
}
/**
* Configuration for the request such as headers, query parameters, and middleware options.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,16 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
}
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a sitesRequestBuilder
*/
@jakarta.annotation.Nonnull
public SitesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new SitesRequestBuilder(rawUrl, requestAdapter);
}
/**
* Get a list of the browserSite objects and their properties.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,16 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
}
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a CountRequestBuilder
*/
@jakarta.annotation.Nonnull
public CountRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new CountRequestBuilder(rawUrl, requestAdapter);
}
/**
* Get the number of the resource
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,16 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
}
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a BrowserSiteItemRequestBuilder
*/
@jakarta.annotation.Nonnull
public BrowserSiteItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new BrowserSiteItemRequestBuilder(rawUrl, requestAdapter);
}
/**
* Configuration for the request such as headers, query parameters, and middleware options.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,16 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
}
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a serviceAnnouncementRequestBuilder
*/
@jakarta.annotation.Nonnull
public ServiceAnnouncementRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new ServiceAnnouncementRequestBuilder(rawUrl, requestAdapter);
}
/**
* Configuration for the request such as headers, query parameters, and middleware options.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,16 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
}
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a healthOverviewsRequestBuilder
*/
@jakarta.annotation.Nonnull
public HealthOverviewsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new HealthOverviewsRequestBuilder(rawUrl, requestAdapter);
}
/**
* Retrieve the serviceHealth resources from the healthOverviews navigation property. This operation provides the health report of all subscribed services for a tenant.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,16 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
}
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a CountRequestBuilder
*/
@jakarta.annotation.Nonnull
public CountRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new CountRequestBuilder(rawUrl, requestAdapter);
}
/**
* Get the number of the resource
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,16 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
}
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a ServiceHealthItemRequestBuilder
*/
@jakarta.annotation.Nonnull
public ServiceHealthItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new ServiceHealthItemRequestBuilder(rawUrl, requestAdapter);
}
/**
* Configuration for the request such as headers, query parameters, and middleware options.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,16 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
}
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a issuesRequestBuilder
*/
@jakarta.annotation.Nonnull
public IssuesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new IssuesRequestBuilder(rawUrl, requestAdapter);
}
/**
* A collection of issues that happened on the service, with detailed information for each issue.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,16 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
}
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a CountRequestBuilder
*/
@jakarta.annotation.Nonnull
public CountRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new CountRequestBuilder(rawUrl, requestAdapter);
}
/**
* Get the number of the resource
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,16 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
}
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a ServiceHealthIssueItemRequestBuilder
*/
@jakarta.annotation.Nonnull
public ServiceHealthIssueItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new ServiceHealthIssueItemRequestBuilder(rawUrl, requestAdapter);
}
/**
* Configuration for the request such as headers, query parameters, and middleware options.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,16 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
}
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a incidentReportRequestBuilder
*/
@jakarta.annotation.Nonnull
public IncidentReportRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new IncidentReportRequestBuilder(rawUrl, requestAdapter);
}
/**
* Configuration for the request such as headers, query parameters, and middleware options.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,16 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
}
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a issuesRequestBuilder
*/
@jakarta.annotation.Nonnull
public IssuesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new IssuesRequestBuilder(rawUrl, requestAdapter);
}
/**
* Retrieve serviceHealthIssue resources from the issues navigation property. This operation retrieves information about all service health issues that exist for the tenant.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,16 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
}
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a CountRequestBuilder
*/
@jakarta.annotation.Nonnull
public CountRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new CountRequestBuilder(rawUrl, requestAdapter);
}
/**
* Get the number of the resource
*/
Expand Down
Loading

0 comments on commit d865fce

Please sign in to comment.