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.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.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.RoleAssignmentScheduleInstancesClient;
import com.azure.resourcemanager.authorization.fluent.models.RoleAssignmentScheduleInstanceInner;
import com.azure.resourcemanager.authorization.models.RoleAssignmentScheduleInstanceListResult;
import reactor.core.publisher.Mono;
/**
* An instance of this class provides access to all the operations defined in RoleAssignmentScheduleInstancesClient.
*/
public final class RoleAssignmentScheduleInstancesClientImpl implements RoleAssignmentScheduleInstancesClient {
/**
* The proxy service used to perform REST calls.
*/
private final RoleAssignmentScheduleInstancesService service;
/**
* The service client containing this operation class.
*/
private final AuthorizationManagementClientImpl client;
/**
* Initializes an instance of RoleAssignmentScheduleInstancesClientImpl.
*
* @param client the instance of the service client containing this operation class.
*/
RoleAssignmentScheduleInstancesClientImpl(AuthorizationManagementClientImpl client) {
this.service = RestProxy.create(RoleAssignmentScheduleInstancesService.class, client.getHttpPipeline(),
client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for AuthorizationManagementClientRoleAssignmentScheduleInstances to be
* used by the proxy service to perform REST calls.
*/
@Host("{$host}")
@ServiceInterface(name = "AuthorizationManagem")
public interface RoleAssignmentScheduleInstancesService {
@Headers({ "Content-Type: application/json" })
@Get("/{scope}/providers/Microsoft.Authorization/roleAssignmentScheduleInstances")
@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" })
@Get("/{scope}/providers/Microsoft.Authorization/roleAssignmentScheduleInstances/{roleAssignmentScheduleInstanceName}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> get(@HostParam("$host") String endpoint,
@PathParam(value = "scope", encoded = true) String scope,
@PathParam("roleAssignmentScheduleInstanceName") String roleAssignmentScheduleInstanceName,
@QueryParam("api-version") String apiVersion, @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);
}
/**
* Gets role assignment schedule instances of a role assignment schedule.
*
* @param scope The scope of the role assignment schedule.
* @param filter The filter to apply on the operation. Use $filter=atScope() to return all role assignment schedules
* at or above the scope. Use $filter=principalId eq {id} to return all role assignment schedules at, above or below
* the scope for the specified principal. Use $filter=assignedTo('{userId}') to return all role assignment schedule
* instances for the user. Use $filter=asTarget() to return all role assignment schedule instances created for the
* current user.
* @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 instances of a role assignment schedule 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 instances of a role assignment schedule.
*
* @param scope The scope of the role assignment schedule.
* @param filter The filter to apply on the operation. Use $filter=atScope() to return all role assignment schedules
* at or above the scope. Use $filter=principalId eq {id} to return all role assignment schedules at, above or below
* the scope for the specified principal. Use $filter=assignedTo('{userId}') to return all role assignment schedule
* instances for the user. Use $filter=asTarget() to return all role assignment schedule instances created for the
* current user.
* @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 instances of a role assignment schedule 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 instances of a role assignment schedule.
*
* @param scope The scope of the role assignment schedule.
* @param filter The filter to apply on the operation. Use $filter=atScope() to return all role assignment schedules
* at or above the scope. Use $filter=principalId eq {id} to return all role assignment schedules at, above or below
* the scope for the specified principal. Use $filter=assignedTo('{userId}') to return all role assignment schedule
* instances for the user. Use $filter=asTarget() to return all role assignment schedule instances created for the
* current user.
* @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 instances of a role assignment schedule 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 instances of a role assignment schedule.
*
* @param scope The scope of the role assignment schedule.
* @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 instances of a role assignment schedule 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 instances of a role assignment schedule.
*
* @param scope The scope of the role assignment schedule.
* @param filter The filter to apply on the operation. Use $filter=atScope() to return all role assignment schedules
* at or above the scope. Use $filter=principalId eq {id} to return all role assignment schedules at, above or below
* the scope for the specified principal. Use $filter=assignedTo('{userId}') to return all role assignment schedule
* instances for the user. Use $filter=asTarget() to return all role assignment schedule instances created for the
* current user.
* @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 instances of a role assignment schedule 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 instances of a role assignment schedule.
*
* @param scope The scope of the role assignment schedule.
* @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 instances of a role assignment schedule 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 instances of a role assignment schedule.
*
* @param scope The scope of the role assignment schedule.
* @param filter The filter to apply on the operation. Use $filter=atScope() to return all role assignment schedules
* at or above the scope. Use $filter=principalId eq {id} to return all role assignment schedules at, above or below
* the scope for the specified principal. Use $filter=assignedTo('{userId}') to return all role assignment schedule
* instances for the user. Use $filter=asTarget() to return all role assignment schedule instances created for the
* current user.
* @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 instances of a role assignment schedule 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));
}
/**
* Gets the specified role assignment schedule instance.
*
* @param scope The scope of the role assignments schedules.
* @param roleAssignmentScheduleInstanceName The name (hash of schedule name + time) of the role assignment schedule
* 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 instance along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> getWithResponseAsync(String scope,
String roleAssignmentScheduleInstanceName) {
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 (roleAssignmentScheduleInstanceName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter roleAssignmentScheduleInstanceName 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, roleAssignmentScheduleInstanceName,
apiVersion, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Gets the specified role assignment schedule instance.
*
* @param scope The scope of the role assignments schedules.
* @param roleAssignmentScheduleInstanceName The name (hash of schedule name + time) of the role assignment schedule
* 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 instance along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getWithResponseAsync(String scope,
String roleAssignmentScheduleInstanceName, 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 (roleAssignmentScheduleInstanceName == null) {
return Mono.error(new IllegalArgumentException(
"Parameter roleAssignmentScheduleInstanceName 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, roleAssignmentScheduleInstanceName, apiVersion, accept,
context);
}
/**
* Gets the specified role assignment schedule instance.
*
* @param scope The scope of the role assignments schedules.
* @param roleAssignmentScheduleInstanceName The name (hash of schedule name + time) of the role assignment schedule
* 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 instance on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono getAsync(String scope, String roleAssignmentScheduleInstanceName) {
return getWithResponseAsync(scope, roleAssignmentScheduleInstanceName)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Gets the specified role assignment schedule instance.
*
* @param scope The scope of the role assignments schedules.
* @param roleAssignmentScheduleInstanceName The name (hash of schedule name + time) of the role assignment schedule
* 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 instance along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response getWithResponse(String scope,
String roleAssignmentScheduleInstanceName, Context context) {
return getWithResponseAsync(scope, roleAssignmentScheduleInstanceName, context).block();
}
/**
* Gets the specified role assignment schedule instance.
*
* @param scope The scope of the role assignments schedules.
* @param roleAssignmentScheduleInstanceName The name (hash of schedule name + time) of the role assignment schedule
* 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 instance.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public RoleAssignmentScheduleInstanceInner get(String scope, String roleAssignmentScheduleInstanceName) {
return getWithResponse(scope, roleAssignmentScheduleInstanceName, 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 instance 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 instance 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));
}
}