ResourceGroupsClientImpl.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.resources.implementation;
import com.azure.core.annotation.BodyParam;
import com.azure.core.annotation.Delete;
import com.azure.core.annotation.ExpectedResponses;
import com.azure.core.annotation.Get;
import com.azure.core.annotation.Head;
import com.azure.core.annotation.Headers;
import com.azure.core.annotation.Host;
import com.azure.core.annotation.HostParam;
import com.azure.core.annotation.Patch;
import com.azure.core.annotation.PathParam;
import com.azure.core.annotation.Post;
import com.azure.core.annotation.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.management.polling.PollResult;
import com.azure.core.util.Context;
import com.azure.core.util.FluxUtil;
import com.azure.core.util.logging.ClientLogger;
import com.azure.core.util.polling.PollerFlux;
import com.azure.core.util.polling.SyncPoller;
import com.azure.resourcemanager.resources.fluent.ResourceGroupsClient;
import com.azure.resourcemanager.resources.fluent.models.ResourceGroupExportResultInner;
import com.azure.resourcemanager.resources.fluent.models.ResourceGroupInner;
import com.azure.resourcemanager.resources.models.ExportTemplateRequest;
import com.azure.resourcemanager.resources.models.ResourceGroupListResult;
import com.azure.resourcemanager.resources.models.ResourceGroupPatchable;
import java.nio.ByteBuffer;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
/** An instance of this class provides access to all the operations defined in ResourceGroupsClient. */
public final class ResourceGroupsClientImpl implements ResourceGroupsClient {
private final ClientLogger logger = new ClientLogger(ResourceGroupsClientImpl.class);
/** The proxy service used to perform REST calls. */
private final ResourceGroupsService service;
/** The service client containing this operation class. */
private final ResourceManagementClientImpl client;
/**
* Initializes an instance of ResourceGroupsClientImpl.
*
* @param client the instance of the service client containing this operation class.
*/
ResourceGroupsClientImpl(ResourceManagementClientImpl client) {
this.service =
RestProxy.create(ResourceGroupsService.class, client.getHttpPipeline(), client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for ResourceManagementClientResourceGroups to be used by the proxy
* service to perform REST calls.
*/
@Host("{$host}")
@ServiceInterface(name = "ResourceManagementCl")
private interface ResourceGroupsService {
@Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"})
@Head("/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}")
@ExpectedResponses({204, 404})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<Boolean>> checkExistence(
@HostParam("$host") String endpoint,
@PathParam("resourceGroupName") String resourceGroupName,
@QueryParam("api-version") String apiVersion,
@PathParam("subscriptionId") String subscriptionId,
Context context);
@Headers({"Accept: application/json", "Content-Type: application/json"})
@Put("/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}")
@ExpectedResponses({200, 201})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<ResourceGroupInner>> createOrUpdate(
@HostParam("$host") String endpoint,
@PathParam("resourceGroupName") String resourceGroupName,
@QueryParam("api-version") String apiVersion,
@PathParam("subscriptionId") String subscriptionId,
@BodyParam("application/json") ResourceGroupInner parameters,
Context context);
@Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"})
@Delete("/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}")
@ExpectedResponses({200, 202})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<Flux<ByteBuffer>>> delete(
@HostParam("$host") String endpoint,
@PathParam("resourceGroupName") String resourceGroupName,
@QueryParam("api-version") String apiVersion,
@PathParam("subscriptionId") String subscriptionId,
Context context);
@Headers({"Accept: application/json", "Content-Type: application/json"})
@Get("/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<ResourceGroupInner>> get(
@HostParam("$host") String endpoint,
@PathParam("resourceGroupName") String resourceGroupName,
@QueryParam("api-version") String apiVersion,
@PathParam("subscriptionId") String subscriptionId,
Context context);
@Headers({"Accept: application/json", "Content-Type: application/json"})
@Patch("/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<ResourceGroupInner>> update(
@HostParam("$host") String endpoint,
@PathParam("resourceGroupName") String resourceGroupName,
@QueryParam("api-version") String apiVersion,
@PathParam("subscriptionId") String subscriptionId,
@BodyParam("application/json") ResourceGroupPatchable parameters,
Context context);
@Headers({"Accept: application/json", "Content-Type: application/json"})
@Post("/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/exportTemplate")
@ExpectedResponses({200, 202})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<Flux<ByteBuffer>>> exportTemplate(
@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName,
@QueryParam("api-version") String apiVersion,
@BodyParam("application/json") ExportTemplateRequest parameters,
Context context);
@Headers({"Accept: application/json", "Content-Type: application/json"})
@Get("/subscriptions/{subscriptionId}/resourcegroups")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<ResourceGroupListResult>> list(
@HostParam("$host") String endpoint,
@QueryParam("$filter") String filter,
@QueryParam("$top") Integer top,
@QueryParam("api-version") String apiVersion,
@PathParam("subscriptionId") String subscriptionId,
Context context);
@Headers({"Accept: application/json", "Content-Type: application/json"})
@Get("{nextLink}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<ResourceGroupListResult>> listNext(
@PathParam(value = "nextLink", encoded = true) String nextLink, Context context);
}
/**
* Checks whether a resource group exists.
*
* @param resourceGroupName The name of the resource group to check. The name is case insensitive.
* @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 whether resource exists.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<Boolean>> checkExistenceWithResponseAsync(String resourceGroupName) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
return FluxUtil
.withContext(
context ->
service
.checkExistence(
this.client.getEndpoint(),
resourceGroupName,
this.client.getApiVersion(),
this.client.getSubscriptionId(),
context))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Checks whether a resource group exists.
*
* @param resourceGroupName The name of the resource group to check. The name is case insensitive.
* @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 whether resource exists.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<Response<Boolean>> checkExistenceWithResponseAsync(String resourceGroupName, Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
context = this.client.mergeContext(context);
return service
.checkExistence(
this.client.getEndpoint(),
resourceGroupName,
this.client.getApiVersion(),
this.client.getSubscriptionId(),
context);
}
/**
* Checks whether a resource group exists.
*
* @param resourceGroupName The name of the resource group to check. The name is case insensitive.
* @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 whether resource exists.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Boolean> checkExistenceAsync(String resourceGroupName) {
return checkExistenceWithResponseAsync(resourceGroupName)
.flatMap(
(Response<Boolean> res) -> {
if (res.getValue() != null) {
return Mono.just(res.getValue());
} else {
return Mono.empty();
}
});
}
/**
* Checks whether a resource group exists.
*
* @param resourceGroupName The name of the resource group to check. The name is case insensitive.
* @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 whether resource exists.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public boolean checkExistence(String resourceGroupName) {
Boolean value = checkExistenceAsync(resourceGroupName).block();
if (value != null) {
return value;
} else {
throw logger.logExceptionAsError(new NullPointerException());
}
}
/**
* Checks whether a resource group exists.
*
* @param resourceGroupName The name of the resource group to check. The name is case insensitive.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response<Boolean> checkExistenceWithResponse(String resourceGroupName, Context context) {
return checkExistenceWithResponseAsync(resourceGroupName, context).block();
}
/**
* Creates or updates a resource group.
*
* @param resourceGroupName The name of the resource group to create or update. Can include alphanumeric,
* underscore, parentheses, hyphen, period (except at end), and Unicode characters that match the allowed
* characters.
* @param parameters Resource group information.
* @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 resource group information.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<ResourceGroupInner>> createOrUpdateWithResponseAsync(
String resourceGroupName, ResourceGroupInner parameters) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() 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();
}
return FluxUtil
.withContext(
context ->
service
.createOrUpdate(
this.client.getEndpoint(),
resourceGroupName,
this.client.getApiVersion(),
this.client.getSubscriptionId(),
parameters,
context))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Creates or updates a resource group.
*
* @param resourceGroupName The name of the resource group to create or update. Can include alphanumeric,
* underscore, parentheses, hyphen, period (except at end), and Unicode characters that match the allowed
* characters.
* @param parameters Resource group information.
* @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 resource group information.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<Response<ResourceGroupInner>> createOrUpdateWithResponseAsync(
String resourceGroupName, ResourceGroupInner parameters, Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() 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();
}
context = this.client.mergeContext(context);
return service
.createOrUpdate(
this.client.getEndpoint(),
resourceGroupName,
this.client.getApiVersion(),
this.client.getSubscriptionId(),
parameters,
context);
}
/**
* Creates or updates a resource group.
*
* @param resourceGroupName The name of the resource group to create or update. Can include alphanumeric,
* underscore, parentheses, hyphen, period (except at end), and Unicode characters that match the allowed
* characters.
* @param parameters Resource group information.
* @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 resource group information.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<ResourceGroupInner> createOrUpdateAsync(String resourceGroupName, ResourceGroupInner parameters) {
return createOrUpdateWithResponseAsync(resourceGroupName, parameters)
.flatMap(
(Response<ResourceGroupInner> res) -> {
if (res.getValue() != null) {
return Mono.just(res.getValue());
} else {
return Mono.empty();
}
});
}
/**
* Creates or updates a resource group.
*
* @param resourceGroupName The name of the resource group to create or update. Can include alphanumeric,
* underscore, parentheses, hyphen, period (except at end), and Unicode characters that match the allowed
* characters.
* @param parameters Resource group information.
* @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 resource group information.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public ResourceGroupInner createOrUpdate(String resourceGroupName, ResourceGroupInner parameters) {
return createOrUpdateAsync(resourceGroupName, parameters).block();
}
/**
* Creates or updates a resource group.
*
* @param resourceGroupName The name of the resource group to create or update. Can include alphanumeric,
* underscore, parentheses, hyphen, period (except at end), and Unicode characters that match the allowed
* characters.
* @param parameters Resource group information.
* @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 resource group information.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response<ResourceGroupInner> createOrUpdateWithResponse(
String resourceGroupName, ResourceGroupInner parameters, Context context) {
return createOrUpdateWithResponseAsync(resourceGroupName, parameters, context).block();
}
/**
* When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of
* its template deployments and currently stored operations.
*
* @param resourceGroupName The name of the resource group to delete. The name is case insensitive.
* @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 completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<Flux<ByteBuffer>>> deleteWithResponseAsync(String resourceGroupName) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
return FluxUtil
.withContext(
context ->
service
.delete(
this.client.getEndpoint(),
resourceGroupName,
this.client.getApiVersion(),
this.client.getSubscriptionId(),
context))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of
* its template deployments and currently stored operations.
*
* @param resourceGroupName The name of the resource group to delete. The name is case insensitive.
* @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 completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<Response<Flux<ByteBuffer>>> deleteWithResponseAsync(String resourceGroupName, Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
context = this.client.mergeContext(context);
return service
.delete(
this.client.getEndpoint(),
resourceGroupName,
this.client.getApiVersion(),
this.client.getSubscriptionId(),
context);
}
/**
* When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of
* its template deployments and currently stored operations.
*
* @param resourceGroupName The name of the resource group to delete. The name is case insensitive.
* @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 completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PollerFlux<PollResult<Void>, Void> beginDeleteAsync(String resourceGroupName) {
Mono<Response<Flux<ByteBuffer>>> mono = deleteWithResponseAsync(resourceGroupName);
return this
.client
.<Void, Void>getLroResult(mono, this.client.getHttpPipeline(), Void.class, Void.class, Context.NONE);
}
/**
* When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of
* its template deployments and currently stored operations.
*
* @param resourceGroupName The name of the resource group to delete. The name is case insensitive.
* @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 completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private PollerFlux<PollResult<Void>, Void> beginDeleteAsync(String resourceGroupName, Context context) {
context = this.client.mergeContext(context);
Mono<Response<Flux<ByteBuffer>>> mono = deleteWithResponseAsync(resourceGroupName, context);
return this
.client
.<Void, Void>getLroResult(mono, this.client.getHttpPipeline(), Void.class, Void.class, context);
}
/**
* When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of
* its template deployments and currently stored operations.
*
* @param resourceGroupName The name of the resource group to delete. The name is case insensitive.
* @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 completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public SyncPoller<PollResult<Void>, Void> beginDelete(String resourceGroupName) {
return beginDeleteAsync(resourceGroupName).getSyncPoller();
}
/**
* When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of
* its template deployments and currently stored operations.
*
* @param resourceGroupName The name of the resource group to delete. The name is case insensitive.
* @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 completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public SyncPoller<PollResult<Void>, Void> beginDelete(String resourceGroupName, Context context) {
return beginDeleteAsync(resourceGroupName, context).getSyncPoller();
}
/**
* When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of
* its template deployments and currently stored operations.
*
* @param resourceGroupName The name of the resource group to delete. The name is case insensitive.
* @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 completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Void> deleteAsync(String resourceGroupName) {
return beginDeleteAsync(resourceGroupName).last().flatMap(this.client::getLroFinalResultOrError);
}
/**
* When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of
* its template deployments and currently stored operations.
*
* @param resourceGroupName The name of the resource group to delete. The name is case insensitive.
* @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 completion.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<Void> deleteAsync(String resourceGroupName, Context context) {
return beginDeleteAsync(resourceGroupName, context).last().flatMap(this.client::getLroFinalResultOrError);
}
/**
* When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of
* its template deployments and currently stored operations.
*
* @param resourceGroupName The name of the resource group to delete. The name is case insensitive.
* @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 delete(String resourceGroupName) {
deleteAsync(resourceGroupName).block();
}
/**
* When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of
* its template deployments and currently stored operations.
*
* @param resourceGroupName The name of the resource group to delete. The name is case insensitive.
* @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.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public void delete(String resourceGroupName, Context context) {
deleteAsync(resourceGroupName, context).block();
}
/**
* Gets a resource group.
*
* @param resourceGroupName The name of the resource group to get. The name is case insensitive.
* @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 resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<ResourceGroupInner>> getWithResponseAsync(String resourceGroupName) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
return FluxUtil
.withContext(
context ->
service
.get(
this.client.getEndpoint(),
resourceGroupName,
this.client.getApiVersion(),
this.client.getSubscriptionId(),
context))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Gets a resource group.
*
* @param resourceGroupName The name of the resource group to get. The name is case insensitive.
* @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 a resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<Response<ResourceGroupInner>> getWithResponseAsync(String resourceGroupName, Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
context = this.client.mergeContext(context);
return service
.get(
this.client.getEndpoint(),
resourceGroupName,
this.client.getApiVersion(),
this.client.getSubscriptionId(),
context);
}
/**
* Gets a resource group.
*
* @param resourceGroupName The name of the resource group to get. The name is case insensitive.
* @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 resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<ResourceGroupInner> getAsync(String resourceGroupName) {
return getWithResponseAsync(resourceGroupName)
.flatMap(
(Response<ResourceGroupInner> res) -> {
if (res.getValue() != null) {
return Mono.just(res.getValue());
} else {
return Mono.empty();
}
});
}
/**
* Gets a resource group.
*
* @param resourceGroupName The name of the resource group to get. The name is case insensitive.
* @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 resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public ResourceGroupInner get(String resourceGroupName) {
return getAsync(resourceGroupName).block();
}
/**
* Gets a resource group.
*
* @param resourceGroupName The name of the resource group to get. The name is case insensitive.
* @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 a resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response<ResourceGroupInner> getWithResponse(String resourceGroupName, Context context) {
return getWithResponseAsync(resourceGroupName, context).block();
}
/**
* Resource groups can be updated through a simple PATCH operation to a group address. The format of the request is
* the same as that for creating a resource group. If a field is unspecified, the current value is retained.
*
* @param resourceGroupName The name of the resource group to update. The name is case insensitive.
* @param parameters Resource group information.
* @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 resource group information.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<ResourceGroupInner>> updateWithResponseAsync(
String resourceGroupName, ResourceGroupPatchable parameters) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() 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();
}
return FluxUtil
.withContext(
context ->
service
.update(
this.client.getEndpoint(),
resourceGroupName,
this.client.getApiVersion(),
this.client.getSubscriptionId(),
parameters,
context))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Resource groups can be updated through a simple PATCH operation to a group address. The format of the request is
* the same as that for creating a resource group. If a field is unspecified, the current value is retained.
*
* @param resourceGroupName The name of the resource group to update. The name is case insensitive.
* @param parameters Resource group information.
* @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 resource group information.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<Response<ResourceGroupInner>> updateWithResponseAsync(
String resourceGroupName, ResourceGroupPatchable parameters, Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() 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();
}
context = this.client.mergeContext(context);
return service
.update(
this.client.getEndpoint(),
resourceGroupName,
this.client.getApiVersion(),
this.client.getSubscriptionId(),
parameters,
context);
}
/**
* Resource groups can be updated through a simple PATCH operation to a group address. The format of the request is
* the same as that for creating a resource group. If a field is unspecified, the current value is retained.
*
* @param resourceGroupName The name of the resource group to update. The name is case insensitive.
* @param parameters Resource group information.
* @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 resource group information.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<ResourceGroupInner> updateAsync(String resourceGroupName, ResourceGroupPatchable parameters) {
return updateWithResponseAsync(resourceGroupName, parameters)
.flatMap(
(Response<ResourceGroupInner> res) -> {
if (res.getValue() != null) {
return Mono.just(res.getValue());
} else {
return Mono.empty();
}
});
}
/**
* Resource groups can be updated through a simple PATCH operation to a group address. The format of the request is
* the same as that for creating a resource group. If a field is unspecified, the current value is retained.
*
* @param resourceGroupName The name of the resource group to update. The name is case insensitive.
* @param parameters Resource group information.
* @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 resource group information.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public ResourceGroupInner update(String resourceGroupName, ResourceGroupPatchable parameters) {
return updateAsync(resourceGroupName, parameters).block();
}
/**
* Resource groups can be updated through a simple PATCH operation to a group address. The format of the request is
* the same as that for creating a resource group. If a field is unspecified, the current value is retained.
*
* @param resourceGroupName The name of the resource group to update. The name is case insensitive.
* @param parameters Resource group information.
* @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 resource group information.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response<ResourceGroupInner> updateWithResponse(
String resourceGroupName, ResourceGroupPatchable parameters, Context context) {
return updateWithResponseAsync(resourceGroupName, parameters, context).block();
}
/**
* Captures the specified resource group as a template.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param parameters Export resource group template request parameters.
* @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 resource group export result.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<Flux<ByteBuffer>>> exportTemplateWithResponseAsync(
String resourceGroupName, ExportTemplateRequest parameters) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName 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();
}
return FluxUtil
.withContext(
context ->
service
.exportTemplate(
this.client.getEndpoint(),
this.client.getSubscriptionId(),
resourceGroupName,
this.client.getApiVersion(),
parameters,
context))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Captures the specified resource group as a template.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param parameters Export resource group template request parameters.
* @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 resource group export result.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<Response<Flux<ByteBuffer>>> exportTemplateWithResponseAsync(
String resourceGroupName, ExportTemplateRequest parameters, Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName 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();
}
context = this.client.mergeContext(context);
return service
.exportTemplate(
this.client.getEndpoint(),
this.client.getSubscriptionId(),
resourceGroupName,
this.client.getApiVersion(),
parameters,
context);
}
/**
* Captures the specified resource group as a template.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param parameters Export resource group template request parameters.
* @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 resource group export result.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PollerFlux<PollResult<ResourceGroupExportResultInner>, ResourceGroupExportResultInner>
beginExportTemplateAsync(String resourceGroupName, ExportTemplateRequest parameters) {
Mono<Response<Flux<ByteBuffer>>> mono = exportTemplateWithResponseAsync(resourceGroupName, parameters);
return this
.client
.<ResourceGroupExportResultInner, ResourceGroupExportResultInner>getLroResult(
mono,
this.client.getHttpPipeline(),
ResourceGroupExportResultInner.class,
ResourceGroupExportResultInner.class,
Context.NONE);
}
/**
* Captures the specified resource group as a template.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param parameters Export resource group template request parameters.
* @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 resource group export result.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private PollerFlux<PollResult<ResourceGroupExportResultInner>, ResourceGroupExportResultInner>
beginExportTemplateAsync(String resourceGroupName, ExportTemplateRequest parameters, Context context) {
context = this.client.mergeContext(context);
Mono<Response<Flux<ByteBuffer>>> mono = exportTemplateWithResponseAsync(resourceGroupName, parameters, context);
return this
.client
.<ResourceGroupExportResultInner, ResourceGroupExportResultInner>getLroResult(
mono,
this.client.getHttpPipeline(),
ResourceGroupExportResultInner.class,
ResourceGroupExportResultInner.class,
context);
}
/**
* Captures the specified resource group as a template.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param parameters Export resource group template request parameters.
* @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 resource group export result.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public SyncPoller<PollResult<ResourceGroupExportResultInner>, ResourceGroupExportResultInner> beginExportTemplate(
String resourceGroupName, ExportTemplateRequest parameters) {
return beginExportTemplateAsync(resourceGroupName, parameters).getSyncPoller();
}
/**
* Captures the specified resource group as a template.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param parameters Export resource group template request parameters.
* @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 resource group export result.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public SyncPoller<PollResult<ResourceGroupExportResultInner>, ResourceGroupExportResultInner> beginExportTemplate(
String resourceGroupName, ExportTemplateRequest parameters, Context context) {
return beginExportTemplateAsync(resourceGroupName, parameters, context).getSyncPoller();
}
/**
* Captures the specified resource group as a template.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param parameters Export resource group template request parameters.
* @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 resource group export result.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<ResourceGroupExportResultInner> exportTemplateAsync(
String resourceGroupName, ExportTemplateRequest parameters) {
return beginExportTemplateAsync(resourceGroupName, parameters)
.last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Captures the specified resource group as a template.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param parameters Export resource group template request parameters.
* @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 resource group export result.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<ResourceGroupExportResultInner> exportTemplateAsync(
String resourceGroupName, ExportTemplateRequest parameters, Context context) {
return beginExportTemplateAsync(resourceGroupName, parameters, context)
.last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Captures the specified resource group as a template.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param parameters Export resource group template request parameters.
* @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 resource group export result.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public ResourceGroupExportResultInner exportTemplate(String resourceGroupName, ExportTemplateRequest parameters) {
return exportTemplateAsync(resourceGroupName, parameters).block();
}
/**
* Captures the specified resource group as a template.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param parameters Export resource group template request parameters.
* @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 resource group export result.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public ResourceGroupExportResultInner exportTemplate(
String resourceGroupName, ExportTemplateRequest parameters, Context context) {
return exportTemplateAsync(resourceGroupName, parameters, context).block();
}
/**
* Gets all the resource groups for a subscription.
*
* @param filter The filter to apply on the operation.<br><br>You can filter by tag names and values.
* For example, to filter for a tag name and value, use $filter=tagName eq 'tag1' and tagValue eq 'Value1'.
* @param top The number of results to return. If null is passed, returns all resource groups.
* @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 all the resource groups for a subscription.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<PagedResponse<ResourceGroupInner>> listSinglePageAsync(String filter, Integer top) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
return FluxUtil
.withContext(
context ->
service
.list(
this.client.getEndpoint(),
filter,
top,
this.client.getApiVersion(),
this.client.getSubscriptionId(),
context))
.<PagedResponse<ResourceGroupInner>>map(
res ->
new PagedResponseBase<>(
res.getRequest(),
res.getStatusCode(),
res.getHeaders(),
res.getValue().value(),
res.getValue().nextLink(),
null))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Gets all the resource groups for a subscription.
*
* @param filter The filter to apply on the operation.<br><br>You can filter by tag names and values.
* For example, to filter for a tag name and value, use $filter=tagName eq 'tag1' and tagValue eq 'Value1'.
* @param top The number of results to return. If null is passed, returns all resource groups.
* @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 all the resource groups for a subscription.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<PagedResponse<ResourceGroupInner>> listSinglePageAsync(String filter, Integer top, Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
context = this.client.mergeContext(context);
return service
.list(
this.client.getEndpoint(),
filter,
top,
this.client.getApiVersion(),
this.client.getSubscriptionId(),
context)
.map(
res ->
new PagedResponseBase<>(
res.getRequest(),
res.getStatusCode(),
res.getHeaders(),
res.getValue().value(),
res.getValue().nextLink(),
null));
}
/**
* Gets all the resource groups for a subscription.
*
* @param filter The filter to apply on the operation.<br><br>You can filter by tag names and values.
* For example, to filter for a tag name and value, use $filter=tagName eq 'tag1' and tagValue eq 'Value1'.
* @param top The number of results to return. If null is passed, returns all resource groups.
* @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 all the resource groups for a subscription.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedFlux<ResourceGroupInner> listAsync(String filter, Integer top) {
return new PagedFlux<>(() -> listSinglePageAsync(filter, top), nextLink -> listNextSinglePageAsync(nextLink));
}
/**
* Gets all the resource groups for a subscription.
*
* @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 all the resource groups for a subscription.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedFlux<ResourceGroupInner> listAsync() {
final String filter = null;
final Integer top = null;
return new PagedFlux<>(() -> listSinglePageAsync(filter, top), nextLink -> listNextSinglePageAsync(nextLink));
}
/**
* Gets all the resource groups for a subscription.
*
* @param filter The filter to apply on the operation.<br><br>You can filter by tag names and values.
* For example, to filter for a tag name and value, use $filter=tagName eq 'tag1' and tagValue eq 'Value1'.
* @param top The number of results to return. If null is passed, returns all resource groups.
* @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 all the resource groups for a subscription.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux<ResourceGroupInner> listAsync(String filter, Integer top, Context context) {
return new PagedFlux<>(
() -> listSinglePageAsync(filter, top, context), nextLink -> listNextSinglePageAsync(nextLink, context));
}
/**
* Gets all the resource groups for a subscription.
*
* @param filter The filter to apply on the operation.<br><br>You can filter by tag names and values.
* For example, to filter for a tag name and value, use $filter=tagName eq 'tag1' and tagValue eq 'Value1'.
* @param top The number of results to return. If null is passed, returns all resource groups.
* @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 all the resource groups for a subscription.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable<ResourceGroupInner> list(String filter, Integer top, Context context) {
return new PagedIterable<>(listAsync(filter, top, context));
}
/**
* Gets all the resource groups for a subscription.
*
* @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 all the resource groups for a subscription.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable<ResourceGroupInner> list() {
final String filter = null;
final Integer top = null;
return new PagedIterable<>(listAsync(filter, top));
}
/**
* Get the next page of items.
*
* @param nextLink The nextLink parameter.
* @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 list of resource groups.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<PagedResponse<ResourceGroupInner>> listNextSinglePageAsync(String nextLink) {
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
return FluxUtil
.withContext(context -> service.listNext(nextLink, context))
.<PagedResponse<ResourceGroupInner>>map(
res ->
new PagedResponseBase<>(
res.getRequest(),
res.getStatusCode(),
res.getHeaders(),
res.getValue().value(),
res.getValue().nextLink(),
null))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Get the next page of items.
*
* @param nextLink The nextLink parameter.
* @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 list of resource groups.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<PagedResponse<ResourceGroupInner>> listNextSinglePageAsync(String nextLink, Context context) {
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
context = this.client.mergeContext(context);
return service
.listNext(nextLink, context)
.map(
res ->
new PagedResponseBase<>(
res.getRequest(),
res.getStatusCode(),
res.getHeaders(),
res.getValue().value(),
res.getValue().nextLink(),
null));
}
}