Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
This package contains Microsoft Azure Authorization Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// 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.DomainsDomainsClient;
import com.azure.resourcemanager.authorization.fluent.models.CollectionOfDomain;
import com.azure.resourcemanager.authorization.fluent.models.Get1ItemsItem;
import com.azure.resourcemanager.authorization.fluent.models.Get2ItemsItem;
import com.azure.resourcemanager.authorization.fluent.models.Get5ItemsItem;
import com.azure.resourcemanager.authorization.fluent.models.Get6ItemsItem;
import com.azure.resourcemanager.authorization.fluent.models.Get7ItemsItem;
import com.azure.resourcemanager.authorization.fluent.models.MicrosoftGraphDomainInner;
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 DomainsDomainsClient.
*/
public final class DomainsDomainsClientImpl implements DomainsDomainsClient {
/**
* The proxy service used to perform REST calls.
*/
private final DomainsDomainsService service;
/**
* The service client containing this operation class.
*/
private final MicrosoftGraphClientImpl client;
/**
* Initializes an instance of DomainsDomainsClientImpl.
*
* @param client the instance of the service client containing this operation class.
*/
DomainsDomainsClientImpl(MicrosoftGraphClientImpl client) {
this.service
= RestProxy.create(DomainsDomainsService.class, client.getHttpPipeline(), client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for MicrosoftGraphClientDomainsDomains to be used by the proxy service to
* perform REST calls.
*/
@Host("{$host}")
@ServiceInterface(name = "MicrosoftGraphClient")
public interface DomainsDomainsService {
@Headers({ "Content-Type: application/json" })
@Get("/domains")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(OdataErrorMainException.class)
Mono> listDomain(@HostParam("$host") String endpoint,
@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("/domains")
@ExpectedResponses({ 201 })
@UnexpectedResponseExceptionType(OdataErrorMainException.class)
Mono> createDomain(@HostParam("$host") String endpoint,
@BodyParam("application/json") MicrosoftGraphDomainInner body, @HeaderParam("Accept") String accept,
Context context);
@Headers({ "Content-Type: application/json" })
@Get("/domains/{domain-id}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(OdataErrorMainException.class)
Mono> getDomain(@HostParam("$host") String endpoint,
@PathParam("domain-id") String domainId, @QueryParam("$select") String select,
@QueryParam("$expand") String expand, @HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Patch("/domains/{domain-id}")
@ExpectedResponses({ 204 })
@UnexpectedResponseExceptionType(OdataErrorMainException.class)
Mono> updateDomain(@HostParam("$host") String endpoint, @PathParam("domain-id") String domainId,
@BodyParam("application/json") MicrosoftGraphDomainInner body, @HeaderParam("Accept") String accept,
Context context);
@Headers({ "Content-Type: application/json" })
@Delete("/domains/{domain-id}")
@ExpectedResponses({ 204 })
@UnexpectedResponseExceptionType(OdataErrorMainException.class)
Mono> deleteDomain(@HostParam("$host") String endpoint, @PathParam("domain-id") String domainId,
@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 domains.
*
* @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 domains along with {@link PagedResponse} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listDomainSinglePageAsync(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.listDomain(this.client.getEndpoint(), 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 domains.
*
* @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 domains along with {@link PagedResponse} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listDomainSinglePageAsync(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
.listDomain(this.client.getEndpoint(), 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 domains.
*
* @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 domains as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedFlux listDomainAsync(Integer top, Integer skip, String search, String filter,
Boolean count, List orderby, List select, List expand) {
return new PagedFlux<>(
() -> listDomainSinglePageAsync(top, skip, search, filter, count, orderby, select, expand),
nextLink -> listMoreSinglePageAsync(nextLink));
}
/**
* Get entities from domains.
*
* @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 domains as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedFlux listDomainAsync() {
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<>(
() -> listDomainSinglePageAsync(top, skip, search, filter, count, orderby, select, expand),
nextLink -> listMoreSinglePageAsync(nextLink));
}
/**
* Get entities from domains.
*
* @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 domains as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listDomainAsync(Integer top, Integer skip, String search,
String filter, Boolean count, List orderby, List select,
List expand, Context context) {
return new PagedFlux<>(
() -> listDomainSinglePageAsync(top, skip, search, filter, count, orderby, select, expand, context),
nextLink -> listMoreSinglePageAsync(nextLink, context));
}
/**
* Get entities from domains.
*
* @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 domains as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable listDomain() {
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<>(listDomainAsync(top, skip, search, filter, count, orderby, select, expand));
}
/**
* Get entities from domains.
*
* @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 domains as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable listDomain(Integer top, Integer skip, String search, String filter,
Boolean count, List orderby, List select, List expand,
Context context) {
return new PagedIterable<>(listDomainAsync(top, skip, search, filter, count, orderby, select, expand, context));
}
/**
* Add new entity to domains.
*
* @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 domain along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> createDomainWithResponseAsync(MicrosoftGraphDomainInner 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.createDomain(this.client.getEndpoint(), body, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Add new entity to domains.
*
* @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 domain along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> createDomainWithResponseAsync(MicrosoftGraphDomainInner 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.createDomain(this.client.getEndpoint(), body, accept, context);
}
/**
* Add new entity to domains.
*
* @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 domain on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono createDomainAsync(MicrosoftGraphDomainInner body) {
return createDomainWithResponseAsync(body).flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Add new entity to domains.
*
* @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 domain along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response createDomainWithResponse(MicrosoftGraphDomainInner body,
Context context) {
return createDomainWithResponseAsync(body, context).block();
}
/**
* Add new entity to domains.
*
* @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 domain.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public MicrosoftGraphDomainInner createDomain(MicrosoftGraphDomainInner body) {
return createDomainWithResponse(body, Context.NONE).getValue();
}
/**
* Get entity from domains by key.
*
* @param domainId key: id of domain.
* @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 domains by key along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> getDomainWithResponseAsync(String domainId,
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 (domainId == null) {
return Mono.error(new IllegalArgumentException("Parameter domainId 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.getDomain(this.client.getEndpoint(), domainId, selectConverted,
expandConverted, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Get entity from domains by key.
*
* @param domainId key: id of domain.
* @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 domains by key along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getDomainWithResponseAsync(String domainId,
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 (domainId == null) {
return Mono.error(new IllegalArgumentException("Parameter domainId 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.getDomain(this.client.getEndpoint(), domainId, selectConverted, expandConverted, accept,
context);
}
/**
* Get entity from domains by key.
*
* @param domainId key: id of domain.
* @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 domains by key on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono getDomainAsync(String domainId) {
final List select = null;
final List expand = null;
return getDomainWithResponseAsync(domainId, select, expand).flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Get entity from domains by key.
*
* @param domainId key: id of domain.
* @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 domains by key along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response getDomainWithResponse(String domainId, List select,
List expand, Context context) {
return getDomainWithResponseAsync(domainId, select, expand, context).block();
}
/**
* Get entity from domains by key.
*
* @param domainId key: id of domain.
* @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 domains by key.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public MicrosoftGraphDomainInner getDomain(String domainId) {
final List select = null;
final List expand = null;
return getDomainWithResponse(domainId, select, expand, Context.NONE).getValue();
}
/**
* Update entity in domains.
*
* @param domainId key: id of domain.
* @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> updateDomainWithResponseAsync(String domainId, MicrosoftGraphDomainInner body) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (domainId == null) {
return Mono.error(new IllegalArgumentException("Parameter domainId 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.updateDomain(this.client.getEndpoint(), domainId, body, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Update entity in domains.
*
* @param domainId key: id of domain.
* @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> updateDomainWithResponseAsync(String domainId, MicrosoftGraphDomainInner body,
Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (domainId == null) {
return Mono.error(new IllegalArgumentException("Parameter domainId 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.updateDomain(this.client.getEndpoint(), domainId, body, accept, context);
}
/**
* Update entity in domains.
*
* @param domainId key: id of domain.
* @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 updateDomainAsync(String domainId, MicrosoftGraphDomainInner body) {
return updateDomainWithResponseAsync(domainId, body).flatMap(ignored -> Mono.empty());
}
/**
* Update entity in domains.
*
* @param domainId key: id of domain.
* @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 updateDomainWithResponse(String domainId, MicrosoftGraphDomainInner body, Context context) {
return updateDomainWithResponseAsync(domainId, body, context).block();
}
/**
* Update entity in domains.
*
* @param domainId key: id of domain.
* @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 updateDomain(String domainId, MicrosoftGraphDomainInner body) {
updateDomainWithResponse(domainId, body, Context.NONE);
}
/**
* Delete entity from domains.
*
* @param domainId key: id of domain.
* @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> deleteDomainWithResponseAsync(String domainId, String ifMatch) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (domainId == null) {
return Mono.error(new IllegalArgumentException("Parameter domainId is required and cannot be null."));
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.deleteDomain(this.client.getEndpoint(), domainId, ifMatch, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Delete entity from domains.
*
* @param domainId key: id of domain.
* @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> deleteDomainWithResponseAsync(String domainId, 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 (domainId == null) {
return Mono.error(new IllegalArgumentException("Parameter domainId is required and cannot be null."));
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.deleteDomain(this.client.getEndpoint(), domainId, ifMatch, accept, context);
}
/**
* Delete entity from domains.
*
* @param domainId key: id of domain.
* @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 deleteDomainAsync(String domainId) {
final String ifMatch = null;
return deleteDomainWithResponseAsync(domainId, ifMatch).flatMap(ignored -> Mono.empty());
}
/**
* Delete entity from domains.
*
* @param domainId key: id of domain.
* @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 deleteDomainWithResponse(String domainId, String ifMatch, Context context) {
return deleteDomainWithResponseAsync(domainId, ifMatch, context).block();
}
/**
* Delete entity from domains.
*
* @param domainId key: id of domain.
* @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 deleteDomain(String domainId) {
final String ifMatch = null;
deleteDomainWithResponse(domainId, 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 domain 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 domain 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));
}
}