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.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.RoleAssignmentScheduleRequestsClient;
import com.azure.resourcemanager.authorization.fluent.models.RoleAssignmentScheduleRequestInner;
import com.azure.resourcemanager.authorization.models.RoleAssignmentScheduleRequestListResult;
import reactor.core.publisher.Mono;
/**
* An instance of this class provides access to all the operations defined in RoleAssignmentScheduleRequestsClient.
*/
public final class RoleAssignmentScheduleRequestsClientImpl implements RoleAssignmentScheduleRequestsClient {
/**
* The proxy service used to perform REST calls.
*/
private final RoleAssignmentScheduleRequestsService service;
/**
* The service client containing this operation class.
*/
private final AuthorizationManagementClientImpl client;
/**
* Initializes an instance of RoleAssignmentScheduleRequestsClientImpl.
*
* @param client the instance of the service client containing this operation class.
*/
RoleAssignmentScheduleRequestsClientImpl(AuthorizationManagementClientImpl client) {
this.service = RestProxy.create(RoleAssignmentScheduleRequestsService.class, client.getHttpPipeline(),
client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for AuthorizationManagementClientRoleAssignmentScheduleRequests to be
* used by the proxy service to perform REST calls.
*/
@Host("{$host}")
@ServiceInterface(name = "AuthorizationManagem")
public interface RoleAssignmentScheduleRequestsService {
@Headers({ "Content-Type: application/json" })
@Put("/{scope}/providers/Microsoft.Authorization/roleAssignmentScheduleRequests/{roleAssignmentScheduleRequestName}")
@ExpectedResponses({ 201 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> create(@HostParam("$host") String endpoint,
@PathParam(value = "scope", encoded = true) String scope,
@PathParam("roleAssignmentScheduleRequestName") String roleAssignmentScheduleRequestName,
@QueryParam("api-version") String apiVersion,
@BodyParam("application/json") RoleAssignmentScheduleRequestInner parameters,
@HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Get("/{scope}/providers/Microsoft.Authorization/roleAssignmentScheduleRequests/{roleAssignmentScheduleRequestName}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> get(@HostParam("$host") String endpoint,
@PathParam(value = "scope", encoded = true) String scope,
@PathParam("roleAssignmentScheduleRequestName") String roleAssignmentScheduleRequestName,
@QueryParam("api-version") String apiVersion, @HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Get("/{scope}/providers/Microsoft.Authorization/roleAssignmentScheduleRequests")
@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/roleAssignmentScheduleRequests/{roleAssignmentScheduleRequestName}/cancel")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> cancel(@HostParam("$host") String endpoint,
@PathParam(value = "scope", encoded = true) String scope,
@PathParam("roleAssignmentScheduleRequestName") String roleAssignmentScheduleRequestName,
@QueryParam("api-version") String apiVersion, @HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Post("/{scope}/providers/Microsoft.Authorization/roleAssignmentScheduleRequests/{roleAssignmentScheduleRequestName}/validate")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> validate(@HostParam("$host") String endpoint,
@PathParam(value = "scope", encoded = true) String scope,
@PathParam("roleAssignmentScheduleRequestName") String roleAssignmentScheduleRequestName,
@QueryParam("api-version") String apiVersion,
@BodyParam("application/json") RoleAssignmentScheduleRequestInner 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 assignment schedule request.
*
* @param scope The scope of the role assignment 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 roleAssignmentScheduleRequestName A GUID for the role assignment to create. The name must be unique and
* different for each role assignment.
* @param parameters Parameters for the role assignment 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 Assignment schedule request along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> createWithResponseAsync(String scope,
String roleAssignmentScheduleRequestName, RoleAssignmentScheduleRequestInner 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 (roleAssignmentScheduleRequestName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter roleAssignmentScheduleRequestName 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, roleAssignmentScheduleRequestName,
apiVersion, parameters, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Creates a role assignment schedule request.
*
* @param scope The scope of the role assignment 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 roleAssignmentScheduleRequestName A GUID for the role assignment to create. The name must be unique and
* different for each role assignment.
* @param parameters Parameters for the role assignment 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 Assignment schedule request along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> createWithResponseAsync(String scope,
String roleAssignmentScheduleRequestName, RoleAssignmentScheduleRequestInner 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 (roleAssignmentScheduleRequestName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter roleAssignmentScheduleRequestName 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, roleAssignmentScheduleRequestName, apiVersion,
parameters, accept, context);
}
/**
* Creates a role assignment schedule request.
*
* @param scope The scope of the role assignment 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 roleAssignmentScheduleRequestName A GUID for the role assignment to create. The name must be unique and
* different for each role assignment.
* @param parameters Parameters for the role assignment 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 Assignment schedule request on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono createAsync(String scope, String roleAssignmentScheduleRequestName,
RoleAssignmentScheduleRequestInner parameters) {
return createWithResponseAsync(scope, roleAssignmentScheduleRequestName, parameters)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Creates a role assignment schedule request.
*
* @param scope The scope of the role assignment 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 roleAssignmentScheduleRequestName A GUID for the role assignment to create. The name must be unique and
* different for each role assignment.
* @param parameters Parameters for the role assignment 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 Assignment schedule request along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response createWithResponse(String scope,
String roleAssignmentScheduleRequestName, RoleAssignmentScheduleRequestInner parameters, Context context) {
return createWithResponseAsync(scope, roleAssignmentScheduleRequestName, parameters, context).block();
}
/**
* Creates a role assignment schedule request.
*
* @param scope The scope of the role assignment 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 roleAssignmentScheduleRequestName A GUID for the role assignment to create. The name must be unique and
* different for each role assignment.
* @param parameters Parameters for the role assignment 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 Assignment schedule request.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public RoleAssignmentScheduleRequestInner create(String scope, String roleAssignmentScheduleRequestName,
RoleAssignmentScheduleRequestInner parameters) {
return createWithResponse(scope, roleAssignmentScheduleRequestName, parameters, Context.NONE).getValue();
}
/**
* Get the specified role assignment schedule request.
*
* @param scope The scope of the role assignment schedule request.
* @param roleAssignmentScheduleRequestName The name (guid) of the role assignment 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 assignment schedule request along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> getWithResponseAsync(String scope,
String roleAssignmentScheduleRequestName) {
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 (roleAssignmentScheduleRequestName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter roleAssignmentScheduleRequestName 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, roleAssignmentScheduleRequestName,
apiVersion, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Get the specified role assignment schedule request.
*
* @param scope The scope of the role assignment schedule request.
* @param roleAssignmentScheduleRequestName The name (guid) of the role assignment 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 assignment schedule request along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getWithResponseAsync(String scope,
String roleAssignmentScheduleRequestName, 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 (roleAssignmentScheduleRequestName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter roleAssignmentScheduleRequestName 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, roleAssignmentScheduleRequestName, apiVersion, accept,
context);
}
/**
* Get the specified role assignment schedule request.
*
* @param scope The scope of the role assignment schedule request.
* @param roleAssignmentScheduleRequestName The name (guid) of the role assignment 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 assignment schedule request on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono getAsync(String scope, String roleAssignmentScheduleRequestName) {
return getWithResponseAsync(scope, roleAssignmentScheduleRequestName)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Get the specified role assignment schedule request.
*
* @param scope The scope of the role assignment schedule request.
* @param roleAssignmentScheduleRequestName The name (guid) of the role assignment 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 assignment schedule request along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response getWithResponse(String scope,
String roleAssignmentScheduleRequestName, Context context) {
return getWithResponseAsync(scope, roleAssignmentScheduleRequestName, context).block();
}
/**
* Get the specified role assignment schedule request.
*
* @param scope The scope of the role assignment schedule request.
* @param roleAssignmentScheduleRequestName The name (guid) of the role assignment 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 assignment schedule request.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public RoleAssignmentScheduleRequestInner get(String scope, String roleAssignmentScheduleRequestName) {
return getWithResponse(scope, roleAssignmentScheduleRequestName, Context.NONE).getValue();
}
/**
* Gets role assignment schedule requests for a scope.
*
* @param scope The scope of the role assignments schedule requests.
* @param filter The filter to apply on the operation. Use $filter=atScope() to return all role assignment schedule
* requests at or above the scope. Use $filter=principalId eq {id} to return all role assignment schedule requests
* at, above or below the scope for the specified principal. Use $filter=asRequestor() to return all role assignment
* schedule requests requested by the current user. Use $filter=asTarget() to return all role assignment schedule
* requests created for the current user. Use $filter=asApprover() to return all role assignment 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 assignment 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 assignment schedule requests for a scope.
*
* @param scope The scope of the role assignments schedule requests.
* @param filter The filter to apply on the operation. Use $filter=atScope() to return all role assignment schedule
* requests at or above the scope. Use $filter=principalId eq {id} to return all role assignment schedule requests
* at, above or below the scope for the specified principal. Use $filter=asRequestor() to return all role assignment
* schedule requests requested by the current user. Use $filter=asTarget() to return all role assignment schedule
* requests created for the current user. Use $filter=asApprover() to return all role assignment 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 assignment 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 assignment schedule requests for a scope.
*
* @param scope The scope of the role assignments schedule requests.
* @param filter The filter to apply on the operation. Use $filter=atScope() to return all role assignment schedule
* requests at or above the scope. Use $filter=principalId eq {id} to return all role assignment schedule requests
* at, above or below the scope for the specified principal. Use $filter=asRequestor() to return all role assignment
* schedule requests requested by the current user. Use $filter=asTarget() to return all role assignment schedule
* requests created for the current user. Use $filter=asApprover() to return all role assignment 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 assignment 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 assignment schedule requests for a scope.
*
* @param scope The scope of the role assignments 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 assignment 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 assignment schedule requests for a scope.
*
* @param scope The scope of the role assignments schedule requests.
* @param filter The filter to apply on the operation. Use $filter=atScope() to return all role assignment schedule
* requests at or above the scope. Use $filter=principalId eq {id} to return all role assignment schedule requests
* at, above or below the scope for the specified principal. Use $filter=asRequestor() to return all role assignment
* schedule requests requested by the current user. Use $filter=asTarget() to return all role assignment schedule
* requests created for the current user. Use $filter=asApprover() to return all role assignment 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 assignment 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 assignment schedule requests for a scope.
*
* @param scope The scope of the role assignments 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 assignment 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 assignment schedule requests for a scope.
*
* @param scope The scope of the role assignments schedule requests.
* @param filter The filter to apply on the operation. Use $filter=atScope() to return all role assignment schedule
* requests at or above the scope. Use $filter=principalId eq {id} to return all role assignment schedule requests
* at, above or below the scope for the specified principal. Use $filter=asRequestor() to return all role assignment
* schedule requests requested by the current user. Use $filter=asTarget() to return all role assignment schedule
* requests created for the current user. Use $filter=asApprover() to return all role assignment 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 assignment 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 assignment schedule request.
*
* @param scope The scope of the role assignment request to cancel.
* @param roleAssignmentScheduleRequestName The name of the role assignment 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 roleAssignmentScheduleRequestName) {
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 (roleAssignmentScheduleRequestName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter roleAssignmentScheduleRequestName 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, roleAssignmentScheduleRequestName,
apiVersion, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Cancels a pending role assignment schedule request.
*
* @param scope The scope of the role assignment request to cancel.
* @param roleAssignmentScheduleRequestName The name of the role assignment 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 roleAssignmentScheduleRequestName,
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 (roleAssignmentScheduleRequestName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter roleAssignmentScheduleRequestName 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, roleAssignmentScheduleRequestName, apiVersion, accept,
context);
}
/**
* Cancels a pending role assignment schedule request.
*
* @param scope The scope of the role assignment request to cancel.
* @param roleAssignmentScheduleRequestName The name of the role assignment 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 roleAssignmentScheduleRequestName) {
return cancelWithResponseAsync(scope, roleAssignmentScheduleRequestName).flatMap(ignored -> Mono.empty());
}
/**
* Cancels a pending role assignment schedule request.
*
* @param scope The scope of the role assignment request to cancel.
* @param roleAssignmentScheduleRequestName The name of the role assignment 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 roleAssignmentScheduleRequestName, Context context) {
return cancelWithResponseAsync(scope, roleAssignmentScheduleRequestName, context).block();
}
/**
* Cancels a pending role assignment schedule request.
*
* @param scope The scope of the role assignment request to cancel.
* @param roleAssignmentScheduleRequestName The name of the role assignment 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 roleAssignmentScheduleRequestName) {
cancelWithResponse(scope, roleAssignmentScheduleRequestName, Context.NONE);
}
/**
* Validates a new role assignment schedule request.
*
* @param scope The scope of the role assignment request to validate.
* @param roleAssignmentScheduleRequestName The name of the role assignment request to validate.
* @param parameters Parameters for the role assignment 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 Assignment schedule request along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> validateWithResponseAsync(String scope,
String roleAssignmentScheduleRequestName, RoleAssignmentScheduleRequestInner 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 (roleAssignmentScheduleRequestName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter roleAssignmentScheduleRequestName 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,
roleAssignmentScheduleRequestName, apiVersion, parameters, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Validates a new role assignment schedule request.
*
* @param scope The scope of the role assignment request to validate.
* @param roleAssignmentScheduleRequestName The name of the role assignment request to validate.
* @param parameters Parameters for the role assignment 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 Assignment schedule request along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> validateWithResponseAsync(String scope,
String roleAssignmentScheduleRequestName, RoleAssignmentScheduleRequestInner 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 (roleAssignmentScheduleRequestName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter roleAssignmentScheduleRequestName 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, roleAssignmentScheduleRequestName, apiVersion,
parameters, accept, context);
}
/**
* Validates a new role assignment schedule request.
*
* @param scope The scope of the role assignment request to validate.
* @param roleAssignmentScheduleRequestName The name of the role assignment request to validate.
* @param parameters Parameters for the role assignment 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 Assignment schedule request on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono validateAsync(String scope,
String roleAssignmentScheduleRequestName, RoleAssignmentScheduleRequestInner parameters) {
return validateWithResponseAsync(scope, roleAssignmentScheduleRequestName, parameters)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Validates a new role assignment schedule request.
*
* @param scope The scope of the role assignment request to validate.
* @param roleAssignmentScheduleRequestName The name of the role assignment request to validate.
* @param parameters Parameters for the role assignment 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 Assignment schedule request along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response validateWithResponse(String scope,
String roleAssignmentScheduleRequestName, RoleAssignmentScheduleRequestInner parameters, Context context) {
return validateWithResponseAsync(scope, roleAssignmentScheduleRequestName, parameters, context).block();
}
/**
* Validates a new role assignment schedule request.
*
* @param scope The scope of the role assignment request to validate.
* @param roleAssignmentScheduleRequestName The name of the role assignment request to validate.
* @param parameters Parameters for the role assignment 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 Assignment schedule request.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public RoleAssignmentScheduleRequestInner validate(String scope, String roleAssignmentScheduleRequestName,
RoleAssignmentScheduleRequestInner parameters) {
return validateWithResponse(scope, roleAssignmentScheduleRequestName, 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 assignment 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 assignment 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));
}
}