![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.authorization.implementation.RoleEligibilityScheduleRequestsClientImpl 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.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.PathParam;
import com.azure.core.annotation.Post;
import com.azure.core.annotation.Put;
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.resourcemanager.authorization.fluent.RoleEligibilityScheduleRequestsClient;
import com.azure.resourcemanager.authorization.fluent.models.RoleEligibilityScheduleRequestInner;
import com.azure.resourcemanager.authorization.models.RoleEligibilityScheduleRequestListResult;
import reactor.core.publisher.Mono;
/**
* An instance of this class provides access to all the operations defined in RoleEligibilityScheduleRequestsClient.
*/
public final class RoleEligibilityScheduleRequestsClientImpl implements RoleEligibilityScheduleRequestsClient {
/**
* The proxy service used to perform REST calls.
*/
private final RoleEligibilityScheduleRequestsService service;
/**
* The service client containing this operation class.
*/
private final AuthorizationManagementClientImpl client;
/**
* Initializes an instance of RoleEligibilityScheduleRequestsClientImpl.
*
* @param client the instance of the service client containing this operation class.
*/
RoleEligibilityScheduleRequestsClientImpl(AuthorizationManagementClientImpl client) {
this.service = RestProxy.create(RoleEligibilityScheduleRequestsService.class, client.getHttpPipeline(),
client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for AuthorizationManagementClientRoleEligibilityScheduleRequests to be
* used by the proxy service to perform REST calls.
*/
@Host("{$host}")
@ServiceInterface(name = "AuthorizationManagem")
public interface RoleEligibilityScheduleRequestsService {
@Headers({ "Content-Type: application/json" })
@Put("/{scope}/providers/Microsoft.Authorization/roleEligibilityScheduleRequests/{roleEligibilityScheduleRequestName}")
@ExpectedResponses({ 201 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> create(@HostParam("$host") String endpoint,
@PathParam(value = "scope", encoded = true) String scope,
@PathParam("roleEligibilityScheduleRequestName") String roleEligibilityScheduleRequestName,
@QueryParam("api-version") String apiVersion,
@BodyParam("application/json") RoleEligibilityScheduleRequestInner parameters,
@HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Get("/{scope}/providers/Microsoft.Authorization/roleEligibilityScheduleRequests/{roleEligibilityScheduleRequestName}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> get(@HostParam("$host") String endpoint,
@PathParam(value = "scope", encoded = true) String scope,
@PathParam("roleEligibilityScheduleRequestName") String roleEligibilityScheduleRequestName,
@QueryParam("api-version") String apiVersion, @HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Get("/{scope}/providers/Microsoft.Authorization/roleEligibilityScheduleRequests")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> listForScope(@HostParam("$host") String endpoint,
@PathParam(value = "scope", encoded = true) String scope, @QueryParam("$filter") String filter,
@QueryParam("api-version") String apiVersion, @HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Post("/{scope}/providers/Microsoft.Authorization/roleEligibilityScheduleRequests/{roleEligibilityScheduleRequestName}/cancel")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> cancel(@HostParam("$host") String endpoint,
@PathParam(value = "scope", encoded = true) String scope,
@PathParam("roleEligibilityScheduleRequestName") String roleEligibilityScheduleRequestName,
@QueryParam("api-version") String apiVersion, @HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Post("/{scope}/providers/Microsoft.Authorization/roleEligibilityScheduleRequests/{roleEligibilityScheduleRequestName}/validate")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> validate(@HostParam("$host") String endpoint,
@PathParam(value = "scope", encoded = true) String scope,
@PathParam("roleEligibilityScheduleRequestName") String roleEligibilityScheduleRequestName,
@QueryParam("api-version") String apiVersion,
@BodyParam("application/json") RoleEligibilityScheduleRequestInner parameters,
@HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Get("{nextLink}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> listForScopeNext(
@PathParam(value = "nextLink", encoded = true) String nextLink, @HostParam("$host") String endpoint,
@HeaderParam("Accept") String accept, Context context);
}
/**
* Creates a role eligibility schedule request.
*
* @param scope The scope of the role eligibility schedule request to create. The scope can be any REST resource
* instance. For example, use '/subscriptions/{subscription-id}/' for a subscription,
* '/subscriptions/{subscription-id}/resourceGroups/{resource-group-name}' for a resource group, and
* '/subscriptions/{subscription-id}/resourceGroups/{resource-group-name}/providers/{resource-provider}/{resource-type}/{resource-name}'
* for a resource.
* @param roleEligibilityScheduleRequestName The name of the role eligibility to create. It can be any valid GUID.
* @param parameters Parameters for the role eligibility schedule request.
* @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 role Eligibility schedule request along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> createWithResponseAsync(String scope,
String roleEligibilityScheduleRequestName, RoleEligibilityScheduleRequestInner parameters) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (scope == null) {
return Mono.error(new IllegalArgumentException("Parameter scope is required and cannot be null."));
}
if (roleEligibilityScheduleRequestName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter roleEligibilityScheduleRequestName is required and cannot be null."));
}
if (parameters == null) {
return Mono.error(new IllegalArgumentException("Parameter parameters is required and cannot be null."));
} else {
parameters.validate();
}
final String apiVersion = "2020-10-01";
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.create(this.client.getEndpoint(), scope, roleEligibilityScheduleRequestName,
apiVersion, parameters, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Creates a role eligibility schedule request.
*
* @param scope The scope of the role eligibility schedule request to create. The scope can be any REST resource
* instance. For example, use '/subscriptions/{subscription-id}/' for a subscription,
* '/subscriptions/{subscription-id}/resourceGroups/{resource-group-name}' for a resource group, and
* '/subscriptions/{subscription-id}/resourceGroups/{resource-group-name}/providers/{resource-provider}/{resource-type}/{resource-name}'
* for a resource.
* @param roleEligibilityScheduleRequestName The name of the role eligibility to create. It can be any valid GUID.
* @param parameters Parameters for the role eligibility schedule request.
* @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 role Eligibility schedule request along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> createWithResponseAsync(String scope,
String roleEligibilityScheduleRequestName, RoleEligibilityScheduleRequestInner parameters, Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (scope == null) {
return Mono.error(new IllegalArgumentException("Parameter scope is required and cannot be null."));
}
if (roleEligibilityScheduleRequestName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter roleEligibilityScheduleRequestName is required and cannot be null."));
}
if (parameters == null) {
return Mono.error(new IllegalArgumentException("Parameter parameters is required and cannot be null."));
} else {
parameters.validate();
}
final String apiVersion = "2020-10-01";
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.create(this.client.getEndpoint(), scope, roleEligibilityScheduleRequestName, apiVersion,
parameters, accept, context);
}
/**
* Creates a role eligibility schedule request.
*
* @param scope The scope of the role eligibility schedule request to create. The scope can be any REST resource
* instance. For example, use '/subscriptions/{subscription-id}/' for a subscription,
* '/subscriptions/{subscription-id}/resourceGroups/{resource-group-name}' for a resource group, and
* '/subscriptions/{subscription-id}/resourceGroups/{resource-group-name}/providers/{resource-provider}/{resource-type}/{resource-name}'
* for a resource.
* @param roleEligibilityScheduleRequestName The name of the role eligibility to create. It can be any valid GUID.
* @param parameters Parameters for the role eligibility schedule request.
* @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 role Eligibility schedule request on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono createAsync(String scope,
String roleEligibilityScheduleRequestName, RoleEligibilityScheduleRequestInner parameters) {
return createWithResponseAsync(scope, roleEligibilityScheduleRequestName, parameters)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Creates a role eligibility schedule request.
*
* @param scope The scope of the role eligibility schedule request to create. The scope can be any REST resource
* instance. For example, use '/subscriptions/{subscription-id}/' for a subscription,
* '/subscriptions/{subscription-id}/resourceGroups/{resource-group-name}' for a resource group, and
* '/subscriptions/{subscription-id}/resourceGroups/{resource-group-name}/providers/{resource-provider}/{resource-type}/{resource-name}'
* for a resource.
* @param roleEligibilityScheduleRequestName The name of the role eligibility to create. It can be any valid GUID.
* @param parameters Parameters for the role eligibility schedule request.
* @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 role Eligibility schedule request along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response createWithResponse(String scope,
String roleEligibilityScheduleRequestName, RoleEligibilityScheduleRequestInner parameters, Context context) {
return createWithResponseAsync(scope, roleEligibilityScheduleRequestName, parameters, context).block();
}
/**
* Creates a role eligibility schedule request.
*
* @param scope The scope of the role eligibility schedule request to create. The scope can be any REST resource
* instance. For example, use '/subscriptions/{subscription-id}/' for a subscription,
* '/subscriptions/{subscription-id}/resourceGroups/{resource-group-name}' for a resource group, and
* '/subscriptions/{subscription-id}/resourceGroups/{resource-group-name}/providers/{resource-provider}/{resource-type}/{resource-name}'
* for a resource.
* @param roleEligibilityScheduleRequestName The name of the role eligibility to create. It can be any valid GUID.
* @param parameters Parameters for the role eligibility schedule request.
* @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 role Eligibility schedule request.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public RoleEligibilityScheduleRequestInner create(String scope, String roleEligibilityScheduleRequestName,
RoleEligibilityScheduleRequestInner parameters) {
return createWithResponse(scope, roleEligibilityScheduleRequestName, parameters, Context.NONE).getValue();
}
/**
* Get the specified role eligibility schedule request.
*
* @param scope The scope of the role eligibility schedule request.
* @param roleEligibilityScheduleRequestName The name (guid) of the role eligibility schedule request to get.
* @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 specified role eligibility schedule request along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> getWithResponseAsync(String scope,
String roleEligibilityScheduleRequestName) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (scope == null) {
return Mono.error(new IllegalArgumentException("Parameter scope is required and cannot be null."));
}
if (roleEligibilityScheduleRequestName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter roleEligibilityScheduleRequestName is required and cannot be null."));
}
final String apiVersion = "2020-10-01";
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.get(this.client.getEndpoint(), scope, roleEligibilityScheduleRequestName,
apiVersion, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Get the specified role eligibility schedule request.
*
* @param scope The scope of the role eligibility schedule request.
* @param roleEligibilityScheduleRequestName The name (guid) of the role eligibility schedule request to get.
* @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 specified role eligibility schedule request along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getWithResponseAsync(String scope,
String roleEligibilityScheduleRequestName, Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (scope == null) {
return Mono.error(new IllegalArgumentException("Parameter scope is required and cannot be null."));
}
if (roleEligibilityScheduleRequestName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter roleEligibilityScheduleRequestName is required and cannot be null."));
}
final String apiVersion = "2020-10-01";
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.get(this.client.getEndpoint(), scope, roleEligibilityScheduleRequestName, apiVersion, accept,
context);
}
/**
* Get the specified role eligibility schedule request.
*
* @param scope The scope of the role eligibility schedule request.
* @param roleEligibilityScheduleRequestName The name (guid) of the role eligibility schedule request to get.
* @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 specified role eligibility schedule request on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono getAsync(String scope, String roleEligibilityScheduleRequestName) {
return getWithResponseAsync(scope, roleEligibilityScheduleRequestName)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Get the specified role eligibility schedule request.
*
* @param scope The scope of the role eligibility schedule request.
* @param roleEligibilityScheduleRequestName The name (guid) of the role eligibility schedule request to get.
* @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 specified role eligibility schedule request along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response getWithResponse(String scope,
String roleEligibilityScheduleRequestName, Context context) {
return getWithResponseAsync(scope, roleEligibilityScheduleRequestName, context).block();
}
/**
* Get the specified role eligibility schedule request.
*
* @param scope The scope of the role eligibility schedule request.
* @param roleEligibilityScheduleRequestName The name (guid) of the role eligibility schedule request to get.
* @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 specified role eligibility schedule request.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public RoleEligibilityScheduleRequestInner get(String scope, String roleEligibilityScheduleRequestName) {
return getWithResponse(scope, roleEligibilityScheduleRequestName, Context.NONE).getValue();
}
/**
* Gets role eligibility schedule requests for a scope.
*
* @param scope The scope of the role eligibility schedule requests.
* @param filter The filter to apply on the operation. Use $filter=atScope() to return all role eligibility schedule
* requests at or above the scope. Use $filter=principalId eq {id} to return all role eligibility schedule requests
* at, above or below the scope for the specified principal. Use $filter=asRequestor() to return all role
* eligibility schedule requests requested by the current user. Use $filter=asTarget() to return all role
* eligibility schedule requests created for the current user. Use $filter=asApprover() to return all role
* eligibility schedule requests where the current user is an approver.
* @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 role eligibility schedule requests for a scope along with {@link PagedResponse} on successful completion
* of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listForScopeSinglePageAsync(String scope,
String filter) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (scope == null) {
return Mono.error(new IllegalArgumentException("Parameter scope is required and cannot be null."));
}
final String apiVersion = "2020-10-01";
final String accept = "application/json";
return FluxUtil
.withContext(
context -> service.listForScope(this.client.getEndpoint(), scope, filter, apiVersion, accept, context))
.>map(res -> new PagedResponseBase<>(res.getRequest(),
res.getStatusCode(), res.getHeaders(), res.getValue().value(), res.getValue().nextLink(), null))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Gets role eligibility schedule requests for a scope.
*
* @param scope The scope of the role eligibility schedule requests.
* @param filter The filter to apply on the operation. Use $filter=atScope() to return all role eligibility schedule
* requests at or above the scope. Use $filter=principalId eq {id} to return all role eligibility schedule requests
* at, above or below the scope for the specified principal. Use $filter=asRequestor() to return all role
* eligibility schedule requests requested by the current user. Use $filter=asTarget() to return all role
* eligibility schedule requests created for the current user. Use $filter=asApprover() to return all role
* eligibility schedule requests where the current user is an approver.
* @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 role eligibility schedule requests for a scope along with {@link PagedResponse} on successful completion
* of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listForScopeSinglePageAsync(String scope,
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 (scope == null) {
return Mono.error(new IllegalArgumentException("Parameter scope is required and cannot be null."));
}
final String apiVersion = "2020-10-01";
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.listForScope(this.client.getEndpoint(), scope, filter, apiVersion, accept, context)
.map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
res.getValue().value(), res.getValue().nextLink(), null));
}
/**
* Gets role eligibility schedule requests for a scope.
*
* @param scope The scope of the role eligibility schedule requests.
* @param filter The filter to apply on the operation. Use $filter=atScope() to return all role eligibility schedule
* requests at or above the scope. Use $filter=principalId eq {id} to return all role eligibility schedule requests
* at, above or below the scope for the specified principal. Use $filter=asRequestor() to return all role
* eligibility schedule requests requested by the current user. Use $filter=asTarget() to return all role
* eligibility schedule requests created for the current user. Use $filter=asApprover() to return all role
* eligibility schedule requests where the current user is an approver.
* @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 role eligibility schedule requests for a scope as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedFlux listForScopeAsync(String scope, String filter) {
return new PagedFlux<>(() -> listForScopeSinglePageAsync(scope, filter),
nextLink -> listForScopeNextSinglePageAsync(nextLink));
}
/**
* Gets role eligibility schedule requests for a scope.
*
* @param scope The scope of the role eligibility schedule requests.
* @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 role eligibility schedule requests for a scope as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedFlux listForScopeAsync(String scope) {
final String filter = null;
return new PagedFlux<>(() -> listForScopeSinglePageAsync(scope, filter),
nextLink -> listForScopeNextSinglePageAsync(nextLink));
}
/**
* Gets role eligibility schedule requests for a scope.
*
* @param scope The scope of the role eligibility schedule requests.
* @param filter The filter to apply on the operation. Use $filter=atScope() to return all role eligibility schedule
* requests at or above the scope. Use $filter=principalId eq {id} to return all role eligibility schedule requests
* at, above or below the scope for the specified principal. Use $filter=asRequestor() to return all role
* eligibility schedule requests requested by the current user. Use $filter=asTarget() to return all role
* eligibility schedule requests created for the current user. Use $filter=asApprover() to return all role
* eligibility schedule requests where the current user is an approver.
* @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 role eligibility schedule requests for a scope as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listForScopeAsync(String scope, String filter,
Context context) {
return new PagedFlux<>(() -> listForScopeSinglePageAsync(scope, filter, context),
nextLink -> listForScopeNextSinglePageAsync(nextLink, context));
}
/**
* Gets role eligibility schedule requests for a scope.
*
* @param scope The scope of the role eligibility schedule requests.
* @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 role eligibility schedule requests for a scope as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable listForScope(String scope) {
final String filter = null;
return new PagedIterable<>(listForScopeAsync(scope, filter));
}
/**
* Gets role eligibility schedule requests for a scope.
*
* @param scope The scope of the role eligibility schedule requests.
* @param filter The filter to apply on the operation. Use $filter=atScope() to return all role eligibility schedule
* requests at or above the scope. Use $filter=principalId eq {id} to return all role eligibility schedule requests
* at, above or below the scope for the specified principal. Use $filter=asRequestor() to return all role
* eligibility schedule requests requested by the current user. Use $filter=asTarget() to return all role
* eligibility schedule requests created for the current user. Use $filter=asApprover() to return all role
* eligibility schedule requests where the current user is an approver.
* @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 role eligibility schedule requests for a scope as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable listForScope(String scope, String filter,
Context context) {
return new PagedIterable<>(listForScopeAsync(scope, filter, context));
}
/**
* Cancels a pending role eligibility schedule request.
*
* @param scope The scope of the role eligibility request to cancel.
* @param roleEligibilityScheduleRequestName The name of the role eligibility request to cancel.
* @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 {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> cancelWithResponseAsync(String scope, String roleEligibilityScheduleRequestName) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (scope == null) {
return Mono.error(new IllegalArgumentException("Parameter scope is required and cannot be null."));
}
if (roleEligibilityScheduleRequestName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter roleEligibilityScheduleRequestName is required and cannot be null."));
}
final String apiVersion = "2020-10-01";
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.cancel(this.client.getEndpoint(), scope, roleEligibilityScheduleRequestName,
apiVersion, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Cancels a pending role eligibility schedule request.
*
* @param scope The scope of the role eligibility request to cancel.
* @param roleEligibilityScheduleRequestName The name of the role eligibility request to cancel.
* @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 {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> cancelWithResponseAsync(String scope, String roleEligibilityScheduleRequestName,
Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (scope == null) {
return Mono.error(new IllegalArgumentException("Parameter scope is required and cannot be null."));
}
if (roleEligibilityScheduleRequestName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter roleEligibilityScheduleRequestName is required and cannot be null."));
}
final String apiVersion = "2020-10-01";
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.cancel(this.client.getEndpoint(), scope, roleEligibilityScheduleRequestName, apiVersion, accept,
context);
}
/**
* Cancels a pending role eligibility schedule request.
*
* @param scope The scope of the role eligibility request to cancel.
* @param roleEligibilityScheduleRequestName The name of the role eligibility request to cancel.
* @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 A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono cancelAsync(String scope, String roleEligibilityScheduleRequestName) {
return cancelWithResponseAsync(scope, roleEligibilityScheduleRequestName).flatMap(ignored -> Mono.empty());
}
/**
* Cancels a pending role eligibility schedule request.
*
* @param scope The scope of the role eligibility request to cancel.
* @param roleEligibilityScheduleRequestName The name of the role eligibility request to cancel.
* @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 {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response cancelWithResponse(String scope, String roleEligibilityScheduleRequestName, Context context) {
return cancelWithResponseAsync(scope, roleEligibilityScheduleRequestName, context).block();
}
/**
* Cancels a pending role eligibility schedule request.
*
* @param scope The scope of the role eligibility request to cancel.
* @param roleEligibilityScheduleRequestName The name of the role eligibility request to cancel.
* @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.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public void cancel(String scope, String roleEligibilityScheduleRequestName) {
cancelWithResponse(scope, roleEligibilityScheduleRequestName, Context.NONE);
}
/**
* Validates a new role eligibility schedule request.
*
* @param scope The scope of the role eligibility request to validate.
* @param roleEligibilityScheduleRequestName The name of the role eligibility request to validate.
* @param parameters Parameters for the role eligibility schedule request.
* @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 role Eligibility schedule request along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> validateWithResponseAsync(String scope,
String roleEligibilityScheduleRequestName, RoleEligibilityScheduleRequestInner parameters) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (scope == null) {
return Mono.error(new IllegalArgumentException("Parameter scope is required and cannot be null."));
}
if (roleEligibilityScheduleRequestName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter roleEligibilityScheduleRequestName is required and cannot be null."));
}
if (parameters == null) {
return Mono.error(new IllegalArgumentException("Parameter parameters is required and cannot be null."));
} else {
parameters.validate();
}
final String apiVersion = "2020-10-01";
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.validate(this.client.getEndpoint(), scope,
roleEligibilityScheduleRequestName, apiVersion, parameters, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Validates a new role eligibility schedule request.
*
* @param scope The scope of the role eligibility request to validate.
* @param roleEligibilityScheduleRequestName The name of the role eligibility request to validate.
* @param parameters Parameters for the role eligibility schedule request.
* @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 role Eligibility schedule request along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> validateWithResponseAsync(String scope,
String roleEligibilityScheduleRequestName, RoleEligibilityScheduleRequestInner parameters, Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (scope == null) {
return Mono.error(new IllegalArgumentException("Parameter scope is required and cannot be null."));
}
if (roleEligibilityScheduleRequestName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter roleEligibilityScheduleRequestName is required and cannot be null."));
}
if (parameters == null) {
return Mono.error(new IllegalArgumentException("Parameter parameters is required and cannot be null."));
} else {
parameters.validate();
}
final String apiVersion = "2020-10-01";
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.validate(this.client.getEndpoint(), scope, roleEligibilityScheduleRequestName, apiVersion,
parameters, accept, context);
}
/**
* Validates a new role eligibility schedule request.
*
* @param scope The scope of the role eligibility request to validate.
* @param roleEligibilityScheduleRequestName The name of the role eligibility request to validate.
* @param parameters Parameters for the role eligibility schedule request.
* @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 role Eligibility schedule request on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono validateAsync(String scope,
String roleEligibilityScheduleRequestName, RoleEligibilityScheduleRequestInner parameters) {
return validateWithResponseAsync(scope, roleEligibilityScheduleRequestName, parameters)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Validates a new role eligibility schedule request.
*
* @param scope The scope of the role eligibility request to validate.
* @param roleEligibilityScheduleRequestName The name of the role eligibility request to validate.
* @param parameters Parameters for the role eligibility schedule request.
* @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 role Eligibility schedule request along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response validateWithResponse(String scope,
String roleEligibilityScheduleRequestName, RoleEligibilityScheduleRequestInner parameters, Context context) {
return validateWithResponseAsync(scope, roleEligibilityScheduleRequestName, parameters, context).block();
}
/**
* Validates a new role eligibility schedule request.
*
* @param scope The scope of the role eligibility request to validate.
* @param roleEligibilityScheduleRequestName The name of the role eligibility request to validate.
* @param parameters Parameters for the role eligibility schedule request.
* @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 role Eligibility schedule request.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public RoleEligibilityScheduleRequestInner validate(String scope, String roleEligibilityScheduleRequestName,
RoleEligibilityScheduleRequestInner parameters) {
return validateWithResponse(scope, roleEligibilityScheduleRequestName, parameters, Context.NONE).getValue();
}
/**
* 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 ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return role eligibility schedule request list operation result along with {@link PagedResponse} on successful
* completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listForScopeNextSinglePageAsync(String nextLink) {
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
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";
return FluxUtil
.withContext(context -> service.listForScopeNext(nextLink, this.client.getEndpoint(), accept, context))
.>map(res -> new PagedResponseBase<>(res.getRequest(),
res.getStatusCode(), res.getHeaders(), res.getValue().value(), res.getValue().nextLink(), 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 ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return role eligibility schedule request list operation result along with {@link PagedResponse} on successful
* completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listForScopeNextSinglePageAsync(String nextLink,
Context context) {
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
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";
context = this.client.mergeContext(context);
return service.listForScopeNext(nextLink, this.client.getEndpoint(), accept, context)
.map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
res.getValue().value(), res.getValue().nextLink(), null));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy