com.microsoft.graph.requests.CloudCommunicationsRequestBuilder 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.CloudCommunications;
import com.microsoft.graph.models.Presence;
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.CloudCommunicationsGetPresencesByUserIdParameterSet;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
* The class for the Cloud Communications Request Builder.
*/
public class CloudCommunicationsRequestBuilder extends BaseRequestBuilder {
/**
* The request builder for the CloudCommunications
*
* @param requestUrl the request URL
* @param client the service client
* @param requestOptions the options for this request
*/
public CloudCommunicationsRequestBuilder(@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 CloudCommunicationsRequest instance
*/
@Nonnull
public CloudCommunicationsRequest 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 CloudCommunicationsRequest instance
*/
@Nonnull
public CloudCommunicationsRequest buildRequest(@Nonnull final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
return new com.microsoft.graph.requests.CloudCommunicationsRequest(getRequestUrl(), getClient(), requestOptions);
}
/**
* Gets a request builder for the CallRecord collection
*
* @return the collection request builder
*/
@Nonnull
public com.microsoft.graph.callrecords.requests.CallRecordCollectionRequestBuilder callRecords() {
return new com.microsoft.graph.callrecords.requests.CallRecordCollectionRequestBuilder(getRequestUrlWithAdditionalSegment("callRecords"), getClient(), null);
}
/**
* Gets a request builder for the CallRecord item
*
* @return the request builder
* @param id the item identifier
*/
@Nonnull
public com.microsoft.graph.callrecords.requests.CallRecordRequestBuilder callRecords(@Nonnull final String id) {
return new com.microsoft.graph.callrecords.requests.CallRecordRequestBuilder(getRequestUrlWithAdditionalSegment("callRecords") + "/" + id, getClient(), null);
}
/**
* Gets a request builder for the Call collection
*
* @return the collection request builder
*/
@Nonnull
public com.microsoft.graph.requests.CallCollectionRequestBuilder calls() {
return new com.microsoft.graph.requests.CallCollectionRequestBuilder(getRequestUrlWithAdditionalSegment("calls"), getClient(), null);
}
/**
* Gets a request builder for the Call item
*
* @return the request builder
* @param id the item identifier
*/
@Nonnull
public com.microsoft.graph.requests.CallRequestBuilder calls(@Nonnull final String id) {
return new com.microsoft.graph.requests.CallRequestBuilder(getRequestUrlWithAdditionalSegment("calls") + "/" + id, getClient(), null);
}
/**
* Gets a request builder for the OnlineMeeting collection
*
* @return the collection request builder
*/
@Nonnull
public com.microsoft.graph.requests.OnlineMeetingCollectionRequestBuilder onlineMeetings() {
return new com.microsoft.graph.requests.OnlineMeetingCollectionRequestBuilder(getRequestUrlWithAdditionalSegment("onlineMeetings"), getClient(), null);
}
/**
* Gets a request builder for the OnlineMeeting item
*
* @return the request builder
* @param id the item identifier
*/
@Nonnull
public com.microsoft.graph.requests.OnlineMeetingRequestBuilder onlineMeetings(@Nonnull final String id) {
return new com.microsoft.graph.requests.OnlineMeetingRequestBuilder(getRequestUrlWithAdditionalSegment("onlineMeetings") + "/" + id, getClient(), null);
}
/**
* Gets a request builder for the Presence collection
*
* @return the collection request builder
*/
@Nonnull
public com.microsoft.graph.requests.PresenceCollectionRequestBuilder presences() {
return new com.microsoft.graph.requests.PresenceCollectionRequestBuilder(getRequestUrlWithAdditionalSegment("presences"), getClient(), null);
}
/**
* Gets a request builder for the Presence item
*
* @return the request builder
* @param id the item identifier
*/
@Nonnull
public com.microsoft.graph.requests.PresenceRequestBuilder presences(@Nonnull final String id) {
return new com.microsoft.graph.requests.PresenceRequestBuilder(getRequestUrlWithAdditionalSegment("presences") + "/" + id, getClient(), null);
}
/**
* Gets a builder to execute the method
* @return the request builder collection
* @param parameters the parameters for the service method
*/
@Nonnull
public CloudCommunicationsGetPresencesByUserIdCollectionRequestBuilder getPresencesByUserId(@Nonnull final CloudCommunicationsGetPresencesByUserIdParameterSet parameters) {
return new CloudCommunicationsGetPresencesByUserIdCollectionRequestBuilder(getRequestUrlWithAdditionalSegment("microsoft.graph.getPresencesByUserId"), getClient(), null, parameters);
}
}