com.microsoft.graph.requests.OnenoteSectionRequestBuilder Maven / Gradle / Ivy
// Template Source: BaseEntityRequestBuilder.java.tt
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
package com.microsoft.graph.requests;
import com.microsoft.graph.http.IRequestBuilder;
import com.microsoft.graph.core.ClientException;
import com.microsoft.graph.models.OnenoteSection;
import com.microsoft.graph.models.OnenoteOperation;
import java.util.Arrays;
import java.util.EnumSet;
import javax.annotation.Nullable;
import javax.annotation.Nonnull;
import com.microsoft.graph.core.IBaseClient;
import com.microsoft.graph.http.BaseRequestBuilder;
import com.microsoft.graph.models.OnenoteSectionCopyToNotebookParameterSet;
import com.microsoft.graph.models.OnenoteSectionCopyToSectionGroupParameterSet;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
* The class for the Onenote Section Request Builder.
*/
public class OnenoteSectionRequestBuilder extends BaseRequestBuilder {
/**
* The request builder for the OnenoteSection
*
* @param requestUrl the request URL
* @param client the service client
* @param requestOptions the options for this request
*/
public OnenoteSectionRequestBuilder(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
super(requestUrl, client, requestOptions);
}
/**
* Creates the request
*
* @param requestOptions the options for this request
* @return the OnenoteSectionRequest instance
*/
@Nonnull
public OnenoteSectionRequest buildRequest(@Nullable final com.microsoft.graph.options.Option... requestOptions) {
return buildRequest(getOptions(requestOptions));
}
/**
* Creates the request with specific requestOptions instead of the existing requestOptions
*
* @param requestOptions the options for this request
* @return the OnenoteSectionRequest instance
*/
@Nonnull
public OnenoteSectionRequest buildRequest(@Nonnull final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
return new com.microsoft.graph.requests.OnenoteSectionRequest(getRequestUrl(), getClient(), requestOptions);
}
/**
* Gets a request builder for the OnenotePage collection
*
* @return the collection request builder
*/
@Nonnull
public com.microsoft.graph.requests.OnenotePageCollectionRequestBuilder pages() {
return new com.microsoft.graph.requests.OnenotePageCollectionRequestBuilder(getRequestUrlWithAdditionalSegment("pages"), getClient(), null);
}
/**
* Gets a request builder for the OnenotePage item
*
* @return the request builder
* @param id the item identifier
*/
@Nonnull
public com.microsoft.graph.requests.OnenotePageRequestBuilder pages(@Nonnull final String id) {
return new com.microsoft.graph.requests.OnenotePageRequestBuilder(getRequestUrlWithAdditionalSegment("pages") + "/" + id, getClient(), null);
}
/**
* Gets the request builder for Notebook
*
* @return the NotebookRequestBuilder instance
*/
@Nonnull
public com.microsoft.graph.requests.NotebookRequestBuilder parentNotebook() {
return new com.microsoft.graph.requests.NotebookRequestBuilder(getRequestUrlWithAdditionalSegment("parentNotebook"), getClient(), null);
}
/**
* Gets the request builder for SectionGroup
*
* @return the SectionGroupRequestBuilder instance
*/
@Nonnull
public com.microsoft.graph.requests.SectionGroupRequestBuilder parentSectionGroup() {
return new com.microsoft.graph.requests.SectionGroupRequestBuilder(getRequestUrlWithAdditionalSegment("parentSectionGroup"), getClient(), null);
}
/**
* Gets a builder to execute the method
* @return the request builder
* @param parameters the parameters for the service method
*/
@Nonnull
public OnenoteSectionCopyToNotebookRequestBuilder copyToNotebook(@Nonnull final OnenoteSectionCopyToNotebookParameterSet parameters) {
return new OnenoteSectionCopyToNotebookRequestBuilder(getRequestUrlWithAdditionalSegment("microsoft.graph.copyToNotebook"), getClient(), null, parameters);
}
/**
* Gets a builder to execute the method
* @return the request builder
* @param parameters the parameters for the service method
*/
@Nonnull
public OnenoteSectionCopyToSectionGroupRequestBuilder copyToSectionGroup(@Nonnull final OnenoteSectionCopyToSectionGroupParameterSet parameters) {
return new OnenoteSectionCopyToSectionGroupRequestBuilder(getRequestUrlWithAdditionalSegment("microsoft.graph.copyToSectionGroup"), getClient(), null, parameters);
}
}