OAuth2PermissionGrantsClientImpl.java
// 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.Headers;
import com.azure.core.annotation.Host;
import com.azure.core.annotation.HostParam;
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.management.exception.ManagementException;
import com.azure.core.util.Context;
import com.azure.core.util.FluxUtil;
import com.azure.core.util.logging.ClientLogger;
import com.azure.resourcemanager.authorization.fluent.OAuth2PermissionGrantsClient;
import com.azure.resourcemanager.authorization.fluent.models.OAuth2PermissionGrantInner;
import com.azure.resourcemanager.authorization.models.GraphErrorException;
import com.azure.resourcemanager.authorization.models.OAuth2PermissionGrantListResult;
import reactor.core.publisher.Mono;
/** An instance of this class provides access to all the operations defined in OAuth2PermissionGrantsClient. */
public final class OAuth2PermissionGrantsClientImpl implements OAuth2PermissionGrantsClient {
private final ClientLogger logger = new ClientLogger(OAuth2PermissionGrantsClientImpl.class);
/** The proxy service used to perform REST calls. */
private final OAuth2PermissionGrantsService service;
/** The service client containing this operation class. */
private final GraphRbacManagementClientImpl client;
/**
* Initializes an instance of OAuth2PermissionGrantsClientImpl.
*
* @param client the instance of the service client containing this operation class.
*/
OAuth2PermissionGrantsClientImpl(GraphRbacManagementClientImpl client) {
this.service =
RestProxy
.create(OAuth2PermissionGrantsService.class, client.getHttpPipeline(), client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for GraphRbacManagementClientOAuth2PermissionGrants to be used by the
* proxy service to perform REST calls.
*/
@Host("{$host}")
@ServiceInterface(name = "GraphRbacManagementC")
private interface OAuth2PermissionGrantsService {
@Headers({"Accept: application/json", "Content-Type: application/json"})
@Get("/{tenantID}/oauth2PermissionGrants")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<OAuth2PermissionGrantListResult>> list(
@HostParam("$host") String endpoint,
@QueryParam("$filter") String filter,
@QueryParam("api-version") String apiVersion,
@PathParam("tenantID") String tenantId,
Context context);
@Headers({"Accept: application/json", "Content-Type: application/json"})
@Post("/{tenantID}/oauth2PermissionGrants")
@ExpectedResponses({201})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<OAuth2PermissionGrantInner>> create(
@HostParam("$host") String endpoint,
@QueryParam("api-version") String apiVersion,
@PathParam("tenantID") String tenantId,
@BodyParam("application/json") OAuth2PermissionGrantInner body,
Context context);
@Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"})
@Delete("/{tenantID}/oauth2PermissionGrants/{objectId}")
@ExpectedResponses({204})
@UnexpectedResponseExceptionType(GraphErrorException.class)
Mono<Response<Void>> delete(
@HostParam("$host") String endpoint,
@PathParam("objectId") String objectId,
@QueryParam("api-version") String apiVersion,
@PathParam("tenantID") String tenantId,
Context context);
@Headers({"Accept: application/json,text/json", "Content-Type: application/json"})
@Get("/{tenantID}/{nextLink}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(GraphErrorException.class)
Mono<Response<OAuth2PermissionGrantListResult>> listNext(
@HostParam("$host") String endpoint,
@PathParam(value = "nextLink", encoded = true) String nextLink,
@QueryParam("api-version") String apiVersion,
@PathParam("tenantID") String tenantId,
Context context);
}
/**
* Queries OAuth2 permissions grants for the relevant SP ObjectId of an app.
*
* @param filter This is the Service Principal ObjectId associated with the app.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return server response for get oauth2 permissions grants.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<PagedResponse<OAuth2PermissionGrantInner>> listSinglePageAsync(String filter) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (this.client.getTenantId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getTenantId() is required and cannot be null."));
}
return FluxUtil
.withContext(
context ->
service
.list(
this.client.getEndpoint(),
filter,
this.client.getApiVersion(),
this.client.getTenantId(),
context))
.<PagedResponse<OAuth2PermissionGrantInner>>map(
res ->
new PagedResponseBase<>(
res.getRequest(),
res.getStatusCode(),
res.getHeaders(),
res.getValue().value(),
res.getValue().odataNextLink(),
null))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Queries OAuth2 permissions grants for the relevant SP ObjectId of an app.
*
* @param filter This is the Service Principal ObjectId associated with the app.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return server response for get oauth2 permissions grants.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<PagedResponse<OAuth2PermissionGrantInner>> listSinglePageAsync(String filter, Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (this.client.getTenantId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getTenantId() is required and cannot be null."));
}
context = this.client.mergeContext(context);
return service
.list(this.client.getEndpoint(), filter, this.client.getApiVersion(), this.client.getTenantId(), context)
.map(
res ->
new PagedResponseBase<>(
res.getRequest(),
res.getStatusCode(),
res.getHeaders(),
res.getValue().value(),
res.getValue().odataNextLink(),
null));
}
/**
* Queries OAuth2 permissions grants for the relevant SP ObjectId of an app.
*
* @param filter This is the Service Principal ObjectId associated with the app.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return server response for get oauth2 permissions grants.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedFlux<OAuth2PermissionGrantInner> listAsync(String filter) {
return new PagedFlux<>(() -> listSinglePageAsync(filter), nextLink -> listNextSinglePageAsync(nextLink));
}
/**
* Queries OAuth2 permissions grants for the relevant SP ObjectId of an app.
*
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return server response for get oauth2 permissions grants.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedFlux<OAuth2PermissionGrantInner> listAsync() {
final String filter = null;
return new PagedFlux<>(() -> listSinglePageAsync(filter), nextLink -> listNextSinglePageAsync(nextLink));
}
/**
* Queries OAuth2 permissions grants for the relevant SP ObjectId of an app.
*
* @param filter This is the Service Principal ObjectId associated with the app.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return server response for get oauth2 permissions grants.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux<OAuth2PermissionGrantInner> listAsync(String filter, Context context) {
return new PagedFlux<>(
() -> listSinglePageAsync(filter, context), nextLink -> listNextSinglePageAsync(nextLink, context));
}
/**
* Queries OAuth2 permissions grants for the relevant SP ObjectId of an app.
*
* @param filter This is the Service Principal ObjectId associated with the app.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return server response for get oauth2 permissions grants.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable<OAuth2PermissionGrantInner> list(String filter, Context context) {
return new PagedIterable<>(listAsync(filter, context));
}
/**
* Queries OAuth2 permissions grants for the relevant SP ObjectId of an app.
*
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return server response for get oauth2 permissions grants.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable<OAuth2PermissionGrantInner> list() {
final String filter = null;
return new PagedIterable<>(listAsync(filter));
}
/**
* Grants OAuth2 permissions for the relevant resource Ids of an app.
*
* @param body The relevant app Service Principal Object Id and the Service Principal Object Id you want to grant.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<OAuth2PermissionGrantInner>> createWithResponseAsync(OAuth2PermissionGrantInner body) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (this.client.getTenantId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getTenantId() is required and cannot be null."));
}
if (body != null) {
body.validate();
}
return FluxUtil
.withContext(
context ->
service
.create(
this.client.getEndpoint(),
this.client.getApiVersion(),
this.client.getTenantId(),
body,
context))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Grants OAuth2 permissions for the relevant resource Ids of an app.
*
* @param body The relevant app Service Principal Object Id and the Service Principal Object Id you want to grant.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<Response<OAuth2PermissionGrantInner>> createWithResponseAsync(
OAuth2PermissionGrantInner body, Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (this.client.getTenantId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getTenantId() is required and cannot be null."));
}
if (body != null) {
body.validate();
}
context = this.client.mergeContext(context);
return service
.create(this.client.getEndpoint(), this.client.getApiVersion(), this.client.getTenantId(), body, context);
}
/**
* Grants OAuth2 permissions for the relevant resource Ids of an app.
*
* @param body The relevant app Service Principal Object Id and the Service Principal Object Id you want to grant.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<OAuth2PermissionGrantInner> createAsync(OAuth2PermissionGrantInner body) {
return createWithResponseAsync(body)
.flatMap(
(Response<OAuth2PermissionGrantInner> res) -> {
if (res.getValue() != null) {
return Mono.just(res.getValue());
} else {
return Mono.empty();
}
});
}
/**
* Grants OAuth2 permissions for the relevant resource Ids of an app.
*
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<OAuth2PermissionGrantInner> createAsync() {
final OAuth2PermissionGrantInner body = null;
return createWithResponseAsync(body)
.flatMap(
(Response<OAuth2PermissionGrantInner> res) -> {
if (res.getValue() != null) {
return Mono.just(res.getValue());
} else {
return Mono.empty();
}
});
}
/**
* Grants OAuth2 permissions for the relevant resource Ids of an app.
*
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public OAuth2PermissionGrantInner create() {
final OAuth2PermissionGrantInner body = null;
return createAsync(body).block();
}
/**
* Grants OAuth2 permissions for the relevant resource Ids of an app.
*
* @param body The relevant app Service Principal Object Id and the Service Principal Object Id you want to grant.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response<OAuth2PermissionGrantInner> createWithResponse(OAuth2PermissionGrantInner body, Context context) {
return createWithResponseAsync(body, context).block();
}
/**
* Delete a OAuth2 permission grant for the relevant resource Ids of an app.
*
* @param objectId The object ID of a permission grant.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws GraphErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<Void>> deleteWithResponseAsync(String objectId) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (objectId == null) {
return Mono.error(new IllegalArgumentException("Parameter objectId is required and cannot be null."));
}
if (this.client.getTenantId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getTenantId() is required and cannot be null."));
}
return FluxUtil
.withContext(
context ->
service
.delete(
this.client.getEndpoint(),
objectId,
this.client.getApiVersion(),
this.client.getTenantId(),
context))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Delete a OAuth2 permission grant for the relevant resource Ids of an app.
*
* @param objectId The object ID of a permission grant.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws GraphErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<Response<Void>> deleteWithResponseAsync(String objectId, Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (objectId == null) {
return Mono.error(new IllegalArgumentException("Parameter objectId is required and cannot be null."));
}
if (this.client.getTenantId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getTenantId() is required and cannot be null."));
}
context = this.client.mergeContext(context);
return service
.delete(
this.client.getEndpoint(), objectId, this.client.getApiVersion(), this.client.getTenantId(), context);
}
/**
* Delete a OAuth2 permission grant for the relevant resource Ids of an app.
*
* @param objectId The object ID of a permission grant.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws GraphErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Void> deleteAsync(String objectId) {
return deleteWithResponseAsync(objectId).flatMap((Response<Void> res) -> Mono.empty());
}
/**
* Delete a OAuth2 permission grant for the relevant resource Ids of an app.
*
* @param objectId The object ID of a permission grant.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws GraphErrorException 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 delete(String objectId) {
deleteAsync(objectId).block();
}
/**
* Delete a OAuth2 permission grant for the relevant resource Ids of an app.
*
* @param objectId The object ID of a permission grant.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws GraphErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response<Void> deleteWithResponse(String objectId, Context context) {
return deleteWithResponseAsync(objectId, context).block();
}
/**
* Gets the next page of OAuth2 permission grants.
*
* @param nextLink Next link for the list operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws GraphErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the next page of OAuth2 permission grants.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<PagedResponse<OAuth2PermissionGrantInner>> listNextSinglePageAsync(String nextLink) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
if (this.client.getTenantId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getTenantId() is required and cannot be null."));
}
return FluxUtil
.withContext(
context ->
service
.listNext(
this.client.getEndpoint(),
nextLink,
this.client.getApiVersion(),
this.client.getTenantId(),
context))
.<PagedResponse<OAuth2PermissionGrantInner>>map(
res ->
new PagedResponseBase<>(
res.getRequest(),
res.getStatusCode(),
res.getHeaders(),
res.getValue().value(),
res.getValue().odataNextLink(),
null))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Gets the next page of OAuth2 permission grants.
*
* @param nextLink Next link for the list operation.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws GraphErrorException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the next page of OAuth2 permission grants.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<PagedResponse<OAuth2PermissionGrantInner>> listNextSinglePageAsync(String nextLink, Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
if (this.client.getTenantId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getTenantId() is required and cannot be null."));
}
context = this.client.mergeContext(context);
return service
.listNext(
this.client.getEndpoint(), nextLink, this.client.getApiVersion(), this.client.getTenantId(), context)
.map(
res ->
new PagedResponseBase<>(
res.getRequest(),
res.getStatusCode(),
res.getHeaders(),
res.getValue().value(),
res.getValue().odataNextLink(),
null));
}
}