![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.authorization.implementation.GroupsGroupsClientImpl Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.authorization.implementation;
import com.azure.core.annotation.BodyParam;
import com.azure.core.annotation.Delete;
import com.azure.core.annotation.ExpectedResponses;
import com.azure.core.annotation.Get;
import com.azure.core.annotation.HeaderParam;
import com.azure.core.annotation.Headers;
import com.azure.core.annotation.Host;
import com.azure.core.annotation.HostParam;
import com.azure.core.annotation.Patch;
import com.azure.core.annotation.PathParam;
import com.azure.core.annotation.Post;
import com.azure.core.annotation.QueryParam;
import com.azure.core.annotation.ReturnType;
import com.azure.core.annotation.ServiceInterface;
import com.azure.core.annotation.ServiceMethod;
import com.azure.core.annotation.UnexpectedResponseExceptionType;
import com.azure.core.http.rest.PagedFlux;
import com.azure.core.http.rest.PagedIterable;
import com.azure.core.http.rest.PagedResponse;
import com.azure.core.http.rest.PagedResponseBase;
import com.azure.core.http.rest.Response;
import com.azure.core.http.rest.RestProxy;
import com.azure.core.util.Context;
import com.azure.core.util.FluxUtil;
import com.azure.resourcemanager.authorization.fluent.GroupsGroupsClient;
import com.azure.resourcemanager.authorization.fluent.models.CollectionOfGroup;
import com.azure.resourcemanager.authorization.fluent.models.Get2ItemsItem;
import com.azure.resourcemanager.authorization.fluent.models.Get3ItemsItem;
import com.azure.resourcemanager.authorization.fluent.models.Get6ItemsItem;
import com.azure.resourcemanager.authorization.fluent.models.Get7ItemsItem;
import com.azure.resourcemanager.authorization.fluent.models.Get8ItemsItem;
import com.azure.resourcemanager.authorization.fluent.models.MicrosoftGraphGroupInner;
import com.azure.resourcemanager.authorization.fluent.models.OdataErrorMainException;
import java.util.List;
import java.util.Objects;
import java.util.stream.Collectors;
import reactor.core.publisher.Mono;
/**
* An instance of this class provides access to all the operations defined in GroupsGroupsClient.
*/
public final class GroupsGroupsClientImpl implements GroupsGroupsClient {
/**
* The proxy service used to perform REST calls.
*/
private final GroupsGroupsService service;
/**
* The service client containing this operation class.
*/
private final MicrosoftGraphClientImpl client;
/**
* Initializes an instance of GroupsGroupsClientImpl.
*
* @param client the instance of the service client containing this operation class.
*/
GroupsGroupsClientImpl(MicrosoftGraphClientImpl client) {
this.service
= RestProxy.create(GroupsGroupsService.class, client.getHttpPipeline(), client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for MicrosoftGraphClientGroupsGroups to be used by the proxy service to
* perform REST calls.
*/
@Host("{$host}")
@ServiceInterface(name = "MicrosoftGraphClient")
public interface GroupsGroupsService {
@Headers({ "Content-Type: application/json" })
@Get("/groups")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(OdataErrorMainException.class)
Mono> listGroup(@HostParam("$host") String endpoint,
@HeaderParam("ConsistencyLevel") String consistencyLevel, @QueryParam("$top") Integer top,
@QueryParam("$skip") Integer skip, @QueryParam("$search") String search,
@QueryParam("$filter") String filter, @QueryParam("$count") Boolean count,
@QueryParam("$orderby") String orderby, @QueryParam("$select") String select,
@QueryParam("$expand") String expand, @HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Post("/groups")
@ExpectedResponses({ 201 })
@UnexpectedResponseExceptionType(OdataErrorMainException.class)
Mono> createGroup(@HostParam("$host") String endpoint,
@BodyParam("application/json") MicrosoftGraphGroupInner body, @HeaderParam("Accept") String accept,
Context context);
@Headers({ "Content-Type: application/json" })
@Get("/groups/{group-id}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(OdataErrorMainException.class)
Mono> getGroup(@HostParam("$host") String endpoint,
@PathParam("group-id") String groupId, @HeaderParam("ConsistencyLevel") String consistencyLevel,
@QueryParam("$select") String select, @QueryParam("$expand") String expand,
@HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Patch("/groups/{group-id}")
@ExpectedResponses({ 204 })
@UnexpectedResponseExceptionType(OdataErrorMainException.class)
Mono> updateGroup(@HostParam("$host") String endpoint, @PathParam("group-id") String groupId,
@BodyParam("application/json") MicrosoftGraphGroupInner body, @HeaderParam("Accept") String accept,
Context context);
@Headers({ "Content-Type: application/json" })
@Delete("/groups/{group-id}")
@ExpectedResponses({ 204 })
@UnexpectedResponseExceptionType(OdataErrorMainException.class)
Mono> deleteGroup(@HostParam("$host") String endpoint, @PathParam("group-id") String groupId,
@HeaderParam("If-Match") String ifMatch, @HeaderParam("Accept") String accept, Context context);
@Headers({ "Accept: application/json", "Content-Type: application/json" })
@Get("{nextLink}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(OdataErrorMainException.class)
Mono> listMore(@PathParam(value = "nextLink", encoded = true) String nextLink,
Context context);
}
/**
* Get entities from groups.
*
* @param consistencyLevel Indicates the requested consistency level.
* @param top Show only the first n items.
* @param skip Skip the first n items.
* @param search Search items by search phrases.
* @param filter Filter items by property values.
* @param count Include count of items.
* @param orderby Order items by property values.
* @param select Select properties to be returned.
* @param expand Expand related entities.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return entities from groups along with {@link PagedResponse} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listGroupSinglePageAsync(String consistencyLevel, Integer top,
Integer skip, String search, String filter, Boolean count, List orderby,
List select, List expand) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
final String accept = "application/json";
String orderbyConverted = (orderby == null)
? null
: orderby.stream()
.map(paramItemValue -> Objects.toString(paramItemValue, ""))
.collect(Collectors.joining(","));
String selectConverted = (select == null)
? null
: select.stream()
.map(paramItemValue -> Objects.toString(paramItemValue, ""))
.collect(Collectors.joining(","));
String expandConverted = (expand == null)
? null
: expand.stream()
.map(paramItemValue -> Objects.toString(paramItemValue, ""))
.collect(Collectors.joining(","));
return FluxUtil
.withContext(context -> service.listGroup(this.client.getEndpoint(), consistencyLevel, top, skip, search,
filter, count, orderbyConverted, selectConverted, expandConverted, accept, context))
.>map(res -> new PagedResponseBase<>(res.getRequest(),
res.getStatusCode(), res.getHeaders(), res.getValue().value(), res.getValue().odataNextLink(), null))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Get entities from groups.
*
* @param consistencyLevel Indicates the requested consistency level.
* @param top Show only the first n items.
* @param skip Skip the first n items.
* @param search Search items by search phrases.
* @param filter Filter items by property values.
* @param count Include count of items.
* @param orderby Order items by property values.
* @param select Select properties to be returned.
* @param expand Expand related entities.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return entities from groups along with {@link PagedResponse} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listGroupSinglePageAsync(String consistencyLevel, Integer top,
Integer skip, String search, String filter, Boolean count, List orderby,
List select, List expand, Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
final String accept = "application/json";
String orderbyConverted = (orderby == null)
? null
: orderby.stream()
.map(paramItemValue -> Objects.toString(paramItemValue, ""))
.collect(Collectors.joining(","));
String selectConverted = (select == null)
? null
: select.stream()
.map(paramItemValue -> Objects.toString(paramItemValue, ""))
.collect(Collectors.joining(","));
String expandConverted = (expand == null)
? null
: expand.stream()
.map(paramItemValue -> Objects.toString(paramItemValue, ""))
.collect(Collectors.joining(","));
context = this.client.mergeContext(context);
return service
.listGroup(this.client.getEndpoint(), consistencyLevel, top, skip, search, filter, count, orderbyConverted,
selectConverted, expandConverted, accept, context)
.map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
res.getValue().value(), res.getValue().odataNextLink(), null));
}
/**
* Get entities from groups.
*
* @param consistencyLevel Indicates the requested consistency level.
* @param top Show only the first n items.
* @param skip Skip the first n items.
* @param search Search items by search phrases.
* @param filter Filter items by property values.
* @param count Include count of items.
* @param orderby Order items by property values.
* @param select Select properties to be returned.
* @param expand Expand related entities.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return entities from groups as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedFlux listGroupAsync(String consistencyLevel, Integer top, Integer skip,
String search, String filter, Boolean count, List orderby, List select,
List expand) {
return new PagedFlux<>(
() -> listGroupSinglePageAsync(consistencyLevel, top, skip, search, filter, count, orderby, select, expand),
nextLink -> listMoreSinglePageAsync(nextLink));
}
/**
* Get entities from groups.
*
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return entities from groups as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedFlux listGroupAsync() {
final String consistencyLevel = null;
final Integer top = null;
final Integer skip = null;
final String search = null;
final String filter = null;
final Boolean count = null;
final List orderby = null;
final List select = null;
final List expand = null;
return new PagedFlux<>(
() -> listGroupSinglePageAsync(consistencyLevel, top, skip, search, filter, count, orderby, select, expand),
nextLink -> listMoreSinglePageAsync(nextLink));
}
/**
* Get entities from groups.
*
* @param consistencyLevel Indicates the requested consistency level.
* @param top Show only the first n items.
* @param skip Skip the first n items.
* @param search Search items by search phrases.
* @param filter Filter items by property values.
* @param count Include count of items.
* @param orderby Order items by property values.
* @param select Select properties to be returned.
* @param expand Expand related entities.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return entities from groups as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listGroupAsync(String consistencyLevel, Integer top, Integer skip,
String search, String filter, Boolean count, List orderby, List select,
List expand, Context context) {
return new PagedFlux<>(() -> listGroupSinglePageAsync(consistencyLevel, top, skip, search, filter, count,
orderby, select, expand, context), nextLink -> listMoreSinglePageAsync(nextLink, context));
}
/**
* Get entities from groups.
*
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return entities from groups as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable listGroup() {
final String consistencyLevel = null;
final Integer top = null;
final Integer skip = null;
final String search = null;
final String filter = null;
final Boolean count = null;
final List orderby = null;
final List select = null;
final List expand = null;
return new PagedIterable<>(
listGroupAsync(consistencyLevel, top, skip, search, filter, count, orderby, select, expand));
}
/**
* Get entities from groups.
*
* @param consistencyLevel Indicates the requested consistency level.
* @param top Show only the first n items.
* @param skip Skip the first n items.
* @param search Search items by search phrases.
* @param filter Filter items by property values.
* @param count Include count of items.
* @param orderby Order items by property values.
* @param select Select properties to be returned.
* @param expand Expand related entities.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return entities from groups as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable listGroup(String consistencyLevel, Integer top, Integer skip,
String search, String filter, Boolean count, List orderby, List select,
List expand, Context context) {
return new PagedIterable<>(
listGroupAsync(consistencyLevel, top, skip, search, filter, count, orderby, select, expand, context));
}
/**
* Add new entity to groups.
*
* @param body New entity.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return group along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> createGroupWithResponseAsync(MicrosoftGraphGroupInner body) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (body == null) {
return Mono.error(new IllegalArgumentException("Parameter body is required and cannot be null."));
} else {
body.validate();
}
final String accept = "application/json";
return FluxUtil.withContext(context -> service.createGroup(this.client.getEndpoint(), body, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Add new entity to groups.
*
* @param body New entity.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return group along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> createGroupWithResponseAsync(MicrosoftGraphGroupInner body,
Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (body == null) {
return Mono.error(new IllegalArgumentException("Parameter body is required and cannot be null."));
} else {
body.validate();
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.createGroup(this.client.getEndpoint(), body, accept, context);
}
/**
* Add new entity to groups.
*
* @param body New entity.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return group on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono createGroupAsync(MicrosoftGraphGroupInner body) {
return createGroupWithResponseAsync(body).flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Add new entity to groups.
*
* @param body New entity.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return group along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response createGroupWithResponse(MicrosoftGraphGroupInner body, Context context) {
return createGroupWithResponseAsync(body, context).block();
}
/**
* Add new entity to groups.
*
* @param body New entity.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public MicrosoftGraphGroupInner createGroup(MicrosoftGraphGroupInner body) {
return createGroupWithResponse(body, Context.NONE).getValue();
}
/**
* Get entity from groups by key.
*
* @param groupId key: id of group.
* @param consistencyLevel Indicates the requested consistency level.
* @param select Select properties to be returned.
* @param expand Expand related entities.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return entity from groups by key along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> getGroupWithResponseAsync(String groupId, String consistencyLevel,
List select, List expand) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (groupId == null) {
return Mono.error(new IllegalArgumentException("Parameter groupId is required and cannot be null."));
}
final String accept = "application/json";
String selectConverted = (select == null)
? null
: select.stream()
.map(paramItemValue -> Objects.toString(paramItemValue, ""))
.collect(Collectors.joining(","));
String expandConverted = (expand == null)
? null
: expand.stream()
.map(paramItemValue -> Objects.toString(paramItemValue, ""))
.collect(Collectors.joining(","));
return FluxUtil
.withContext(context -> service.getGroup(this.client.getEndpoint(), groupId, consistencyLevel,
selectConverted, expandConverted, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Get entity from groups by key.
*
* @param groupId key: id of group.
* @param consistencyLevel Indicates the requested consistency level.
* @param select Select properties to be returned.
* @param expand Expand related entities.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return entity from groups by key along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getGroupWithResponseAsync(String groupId, String consistencyLevel,
List select, List expand, Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (groupId == null) {
return Mono.error(new IllegalArgumentException("Parameter groupId is required and cannot be null."));
}
final String accept = "application/json";
String selectConverted = (select == null)
? null
: select.stream()
.map(paramItemValue -> Objects.toString(paramItemValue, ""))
.collect(Collectors.joining(","));
String expandConverted = (expand == null)
? null
: expand.stream()
.map(paramItemValue -> Objects.toString(paramItemValue, ""))
.collect(Collectors.joining(","));
context = this.client.mergeContext(context);
return service.getGroup(this.client.getEndpoint(), groupId, consistencyLevel, selectConverted, expandConverted,
accept, context);
}
/**
* Get entity from groups by key.
*
* @param groupId key: id of group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return entity from groups by key on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono getGroupAsync(String groupId) {
final String consistencyLevel = null;
final List select = null;
final List expand = null;
return getGroupWithResponseAsync(groupId, consistencyLevel, select, expand)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Get entity from groups by key.
*
* @param groupId key: id of group.
* @param consistencyLevel Indicates the requested consistency level.
* @param select Select properties to be returned.
* @param expand Expand related entities.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return entity from groups by key along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response getGroupWithResponse(String groupId, String consistencyLevel,
List select, List expand, Context context) {
return getGroupWithResponseAsync(groupId, consistencyLevel, select, expand, context).block();
}
/**
* Get entity from groups by key.
*
* @param groupId key: id of group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return entity from groups by key.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public MicrosoftGraphGroupInner getGroup(String groupId) {
final String consistencyLevel = null;
final List select = null;
final List expand = null;
return getGroupWithResponse(groupId, consistencyLevel, select, expand, Context.NONE).getValue();
}
/**
* Update entity in groups.
*
* @param groupId key: id of group.
* @param body New property values.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> updateGroupWithResponseAsync(String groupId, MicrosoftGraphGroupInner body) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (groupId == null) {
return Mono.error(new IllegalArgumentException("Parameter groupId is required and cannot be null."));
}
if (body == null) {
return Mono.error(new IllegalArgumentException("Parameter body is required and cannot be null."));
} else {
body.validate();
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.updateGroup(this.client.getEndpoint(), groupId, body, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Update entity in groups.
*
* @param groupId key: id of group.
* @param body New property values.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> updateGroupWithResponseAsync(String groupId, MicrosoftGraphGroupInner body,
Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (groupId == null) {
return Mono.error(new IllegalArgumentException("Parameter groupId is required and cannot be null."));
}
if (body == null) {
return Mono.error(new IllegalArgumentException("Parameter body is required and cannot be null."));
} else {
body.validate();
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.updateGroup(this.client.getEndpoint(), groupId, body, accept, context);
}
/**
* Update entity in groups.
*
* @param groupId key: id of group.
* @param body New property values.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono updateGroupAsync(String groupId, MicrosoftGraphGroupInner body) {
return updateGroupWithResponseAsync(groupId, body).flatMap(ignored -> Mono.empty());
}
/**
* Update entity in groups.
*
* @param groupId key: id of group.
* @param body New property values.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response updateGroupWithResponse(String groupId, MicrosoftGraphGroupInner body, Context context) {
return updateGroupWithResponseAsync(groupId, body, context).block();
}
/**
* Update entity in groups.
*
* @param groupId key: id of group.
* @param body New property values.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public void updateGroup(String groupId, MicrosoftGraphGroupInner body) {
updateGroupWithResponse(groupId, body, Context.NONE);
}
/**
* Delete entity from groups.
*
* @param groupId key: id of group.
* @param ifMatch ETag.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> deleteGroupWithResponseAsync(String groupId, String ifMatch) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (groupId == null) {
return Mono.error(new IllegalArgumentException("Parameter groupId is required and cannot be null."));
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.deleteGroup(this.client.getEndpoint(), groupId, ifMatch, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Delete entity from groups.
*
* @param groupId key: id of group.
* @param ifMatch ETag.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> deleteGroupWithResponseAsync(String groupId, String ifMatch, Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (groupId == null) {
return Mono.error(new IllegalArgumentException("Parameter groupId is required and cannot be null."));
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.deleteGroup(this.client.getEndpoint(), groupId, ifMatch, accept, context);
}
/**
* Delete entity from groups.
*
* @param groupId key: id of group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono deleteGroupAsync(String groupId) {
final String ifMatch = null;
return deleteGroupWithResponseAsync(groupId, ifMatch).flatMap(ignored -> Mono.empty());
}
/**
* Delete entity from groups.
*
* @param groupId key: id of group.
* @param ifMatch ETag.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response deleteGroupWithResponse(String groupId, String ifMatch, Context context) {
return deleteGroupWithResponseAsync(groupId, ifMatch, context).block();
}
/**
* Delete entity from groups.
*
* @param groupId key: id of group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public void deleteGroup(String groupId) {
final String ifMatch = null;
deleteGroupWithResponse(groupId, ifMatch, Context.NONE);
}
/**
* Get the next page of items.
*
* @param nextLink The URL to get the next list of items.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return collection of group along with {@link PagedResponse} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listMoreSinglePageAsync(String nextLink) {
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
return FluxUtil.withContext(context -> service.listMore(nextLink, context))
.>map(res -> new PagedResponseBase<>(res.getRequest(),
res.getStatusCode(), res.getHeaders(), res.getValue().value(), res.getValue().odataNextLink(), null))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Get the next page of items.
*
* @param nextLink The URL to get the next list of items.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws OdataErrorMainException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return collection of group along with {@link PagedResponse} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listMoreSinglePageAsync(String nextLink, Context context) {
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
context = this.client.mergeContext(context);
return service.listMore(nextLink, context)
.map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
res.getValue().value(), res.getValue().odataNextLink(), null));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy