com.azure.resourcemanager.dnsresolver.implementation.DnsResolverDomainListsClientImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-dnsresolver Show documentation
Show all versions of azure-resourcemanager-dnsresolver Show documentation
This package contains Microsoft Azure SDK for DnsResolver Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The DNS Resolver Management Client. Package tag package-2022-07.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.dnsresolver.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.HeaderParam;
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.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.polling.PollerFlux;
import com.azure.core.util.polling.SyncPoller;
import com.azure.resourcemanager.dnsresolver.fluent.DnsResolverDomainListsClient;
import com.azure.resourcemanager.dnsresolver.fluent.models.DnsResolverDomainListInner;
import com.azure.resourcemanager.dnsresolver.models.DnsResolverDomainListPatch;
import com.azure.resourcemanager.dnsresolver.models.DnsResolverDomainListResult;
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 DnsResolverDomainListsClient.
*/
public final class DnsResolverDomainListsClientImpl implements DnsResolverDomainListsClient {
/**
* The proxy service used to perform REST calls.
*/
private final DnsResolverDomainListsService service;
/**
* The service client containing this operation class.
*/
private final DnsResolverManagementClientImpl client;
/**
* Initializes an instance of DnsResolverDomainListsClientImpl.
*
* @param client the instance of the service client containing this operation class.
*/
DnsResolverDomainListsClientImpl(DnsResolverManagementClientImpl client) {
this.service = RestProxy.create(DnsResolverDomainListsService.class, client.getHttpPipeline(),
client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for DnsResolverManagementClientDnsResolverDomainLists to be used by the
* proxy service to perform REST calls.
*/
@Host("{$host}")
@ServiceInterface(name = "DnsResolverManagemen")
public interface DnsResolverDomainListsService {
@Headers({ "Content-Type: application/json" })
@Put("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsResolverDomainLists/{dnsResolverDomainListName}")
@ExpectedResponses({ 200, 201 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono>> createOrUpdate(@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("dnsResolverDomainListName") String dnsResolverDomainListName,
@QueryParam("api-version") String apiVersion, @HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@BodyParam("application/json") DnsResolverDomainListInner parameters, @HeaderParam("Accept") String accept,
Context context);
@Headers({ "Content-Type: application/json" })
@Patch("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsResolverDomainLists/{dnsResolverDomainListName}")
@ExpectedResponses({ 200, 202 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono>> update(@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("dnsResolverDomainListName") String dnsResolverDomainListName,
@QueryParam("api-version") String apiVersion, @HeaderParam("If-Match") String ifMatch,
@BodyParam("application/json") DnsResolverDomainListPatch parameters, @HeaderParam("Accept") String accept,
Context context);
@Headers({ "Content-Type: application/json" })
@Delete("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsResolverDomainLists/{dnsResolverDomainListName}")
@ExpectedResponses({ 202, 204 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono>> delete(@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("dnsResolverDomainListName") String dnsResolverDomainListName,
@QueryParam("api-version") String apiVersion, @HeaderParam("If-Match") String ifMatch,
@HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Get("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsResolverDomainLists/{dnsResolverDomainListName}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> getByResourceGroup(@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("dnsResolverDomainListName") String dnsResolverDomainListName,
@QueryParam("api-version") String apiVersion, @HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Get("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsResolverDomainLists")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> listByResourceGroup(@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName, @QueryParam("api-version") String apiVersion,
@QueryParam("$top") Integer top, @HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Get("/subscriptions/{subscriptionId}/providers/Microsoft.Network/dnsResolverDomainLists")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> list(@HostParam("$host") String endpoint,
@PathParam("subscriptionId") String subscriptionId, @QueryParam("api-version") String apiVersion,
@QueryParam("$top") Integer top, @HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Get("{nextLink}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> listByResourceGroupNext(
@PathParam(value = "nextLink", encoded = true) String nextLink, @HostParam("$host") String endpoint,
@HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Get("{nextLink}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> listNext(
@PathParam(value = "nextLink", encoded = true) String nextLink, @HostParam("$host") String endpoint,
@HeaderParam("Accept") String accept, Context context);
}
/**
* Creates or updates a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param parameters Parameters supplied to the CreateOrUpdate operation.
* @param ifMatch ETag of the resource. Omit this value to always overwrite the current resource. Specify the
* last-seen ETag value to prevent accidentally overwriting any concurrent changes.
* @param ifNoneMatch Set to '*' to allow a new resource to be created, but to prevent updating an existing
* resource. Other values will be ignored.
* @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 describes a DNS resolver domain list along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono>> createOrUpdateWithResponseAsync(String resourceGroupName,
String dnsResolverDomainListName, DnsResolverDomainListInner parameters, String ifMatch, String ifNoneMatch) {
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 (dnsResolverDomainListName == null) {
return Mono.error(
new IllegalArgumentException("Parameter dnsResolverDomainListName 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 accept = "application/json";
return FluxUtil
.withContext(context -> service.createOrUpdate(this.client.getEndpoint(), this.client.getSubscriptionId(),
resourceGroupName, dnsResolverDomainListName, this.client.getApiVersion(), ifMatch, ifNoneMatch,
parameters, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Creates or updates a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param parameters Parameters supplied to the CreateOrUpdate operation.
* @param ifMatch ETag of the resource. Omit this value to always overwrite the current resource. Specify the
* last-seen ETag value to prevent accidentally overwriting any concurrent changes.
* @param ifNoneMatch Set to '*' to allow a new resource to be created, but to prevent updating an existing
* resource. Other values will be ignored.
* @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 describes a DNS resolver domain list along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono>> createOrUpdateWithResponseAsync(String resourceGroupName,
String dnsResolverDomainListName, DnsResolverDomainListInner parameters, String ifMatch, String ifNoneMatch,
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 (dnsResolverDomainListName == null) {
return Mono.error(
new IllegalArgumentException("Parameter dnsResolverDomainListName 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 accept = "application/json";
context = this.client.mergeContext(context);
return service.createOrUpdate(this.client.getEndpoint(), this.client.getSubscriptionId(), resourceGroupName,
dnsResolverDomainListName, this.client.getApiVersion(), ifMatch, ifNoneMatch, parameters, accept, context);
}
/**
* Creates or updates a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param parameters Parameters supplied to the CreateOrUpdate operation.
* @param ifMatch ETag of the resource. Omit this value to always overwrite the current resource. Specify the
* last-seen ETag value to prevent accidentally overwriting any concurrent changes.
* @param ifNoneMatch Set to '*' to allow a new resource to be created, but to prevent updating an existing
* resource. Other values will be ignored.
* @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 PollerFlux} for polling of describes a DNS resolver domain list.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
private PollerFlux, DnsResolverDomainListInner> beginCreateOrUpdateAsync(
String resourceGroupName, String dnsResolverDomainListName, DnsResolverDomainListInner parameters,
String ifMatch, String ifNoneMatch) {
Mono>> mono = createOrUpdateWithResponseAsync(resourceGroupName,
dnsResolverDomainListName, parameters, ifMatch, ifNoneMatch);
return this.client.getLroResult(mono,
this.client.getHttpPipeline(), DnsResolverDomainListInner.class, DnsResolverDomainListInner.class,
this.client.getContext());
}
/**
* Creates or updates a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param parameters Parameters supplied to the CreateOrUpdate 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 PollerFlux} for polling of describes a DNS resolver domain list.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
private PollerFlux, DnsResolverDomainListInner> beginCreateOrUpdateAsync(
String resourceGroupName, String dnsResolverDomainListName, DnsResolverDomainListInner parameters) {
final String ifMatch = null;
final String ifNoneMatch = null;
Mono>> mono = createOrUpdateWithResponseAsync(resourceGroupName,
dnsResolverDomainListName, parameters, ifMatch, ifNoneMatch);
return this.client.getLroResult(mono,
this.client.getHttpPipeline(), DnsResolverDomainListInner.class, DnsResolverDomainListInner.class,
this.client.getContext());
}
/**
* Creates or updates a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param parameters Parameters supplied to the CreateOrUpdate operation.
* @param ifMatch ETag of the resource. Omit this value to always overwrite the current resource. Specify the
* last-seen ETag value to prevent accidentally overwriting any concurrent changes.
* @param ifNoneMatch Set to '*' to allow a new resource to be created, but to prevent updating an existing
* resource. Other values will be ignored.
* @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 PollerFlux} for polling of describes a DNS resolver domain list.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
private PollerFlux, DnsResolverDomainListInner> beginCreateOrUpdateAsync(
String resourceGroupName, String dnsResolverDomainListName, DnsResolverDomainListInner parameters,
String ifMatch, String ifNoneMatch, Context context) {
context = this.client.mergeContext(context);
Mono>> mono = createOrUpdateWithResponseAsync(resourceGroupName,
dnsResolverDomainListName, parameters, ifMatch, ifNoneMatch, context);
return this.client.getLroResult(mono,
this.client.getHttpPipeline(), DnsResolverDomainListInner.class, DnsResolverDomainListInner.class, context);
}
/**
* Creates or updates a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param parameters Parameters supplied to the CreateOrUpdate 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 SyncPoller} for polling of describes a DNS resolver domain list.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
public SyncPoller, DnsResolverDomainListInner> beginCreateOrUpdate(
String resourceGroupName, String dnsResolverDomainListName, DnsResolverDomainListInner parameters) {
final String ifMatch = null;
final String ifNoneMatch = null;
return this
.beginCreateOrUpdateAsync(resourceGroupName, dnsResolverDomainListName, parameters, ifMatch, ifNoneMatch)
.getSyncPoller();
}
/**
* Creates or updates a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param parameters Parameters supplied to the CreateOrUpdate operation.
* @param ifMatch ETag of the resource. Omit this value to always overwrite the current resource. Specify the
* last-seen ETag value to prevent accidentally overwriting any concurrent changes.
* @param ifNoneMatch Set to '*' to allow a new resource to be created, but to prevent updating an existing
* resource. Other values will be ignored.
* @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 SyncPoller} for polling of describes a DNS resolver domain list.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
public SyncPoller, DnsResolverDomainListInner> beginCreateOrUpdate(
String resourceGroupName, String dnsResolverDomainListName, DnsResolverDomainListInner parameters,
String ifMatch, String ifNoneMatch, Context context) {
return this
.beginCreateOrUpdateAsync(resourceGroupName, dnsResolverDomainListName, parameters, ifMatch, ifNoneMatch,
context)
.getSyncPoller();
}
/**
* Creates or updates a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param parameters Parameters supplied to the CreateOrUpdate operation.
* @param ifMatch ETag of the resource. Omit this value to always overwrite the current resource. Specify the
* last-seen ETag value to prevent accidentally overwriting any concurrent changes.
* @param ifNoneMatch Set to '*' to allow a new resource to be created, but to prevent updating an existing
* resource. Other values will be ignored.
* @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 describes a DNS resolver domain list on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono createOrUpdateAsync(String resourceGroupName,
String dnsResolverDomainListName, DnsResolverDomainListInner parameters, String ifMatch, String ifNoneMatch) {
return beginCreateOrUpdateAsync(resourceGroupName, dnsResolverDomainListName, parameters, ifMatch, ifNoneMatch)
.last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Creates or updates a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param parameters Parameters supplied to the CreateOrUpdate 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 describes a DNS resolver domain list on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono createOrUpdateAsync(String resourceGroupName,
String dnsResolverDomainListName, DnsResolverDomainListInner parameters) {
final String ifMatch = null;
final String ifNoneMatch = null;
return beginCreateOrUpdateAsync(resourceGroupName, dnsResolverDomainListName, parameters, ifMatch, ifNoneMatch)
.last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Creates or updates a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param parameters Parameters supplied to the CreateOrUpdate operation.
* @param ifMatch ETag of the resource. Omit this value to always overwrite the current resource. Specify the
* last-seen ETag value to prevent accidentally overwriting any concurrent changes.
* @param ifNoneMatch Set to '*' to allow a new resource to be created, but to prevent updating an existing
* resource. Other values will be ignored.
* @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 describes a DNS resolver domain list on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono createOrUpdateAsync(String resourceGroupName,
String dnsResolverDomainListName, DnsResolverDomainListInner parameters, String ifMatch, String ifNoneMatch,
Context context) {
return beginCreateOrUpdateAsync(resourceGroupName, dnsResolverDomainListName, parameters, ifMatch, ifNoneMatch,
context).last().flatMap(this.client::getLroFinalResultOrError);
}
/**
* Creates or updates a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param parameters Parameters supplied to the CreateOrUpdate 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 describes a DNS resolver domain list.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public DnsResolverDomainListInner createOrUpdate(String resourceGroupName, String dnsResolverDomainListName,
DnsResolverDomainListInner parameters) {
final String ifMatch = null;
final String ifNoneMatch = null;
return createOrUpdateAsync(resourceGroupName, dnsResolverDomainListName, parameters, ifMatch, ifNoneMatch)
.block();
}
/**
* Creates or updates a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param parameters Parameters supplied to the CreateOrUpdate operation.
* @param ifMatch ETag of the resource. Omit this value to always overwrite the current resource. Specify the
* last-seen ETag value to prevent accidentally overwriting any concurrent changes.
* @param ifNoneMatch Set to '*' to allow a new resource to be created, but to prevent updating an existing
* resource. Other values will be ignored.
* @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 describes a DNS resolver domain list.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public DnsResolverDomainListInner createOrUpdate(String resourceGroupName, String dnsResolverDomainListName,
DnsResolverDomainListInner parameters, String ifMatch, String ifNoneMatch, Context context) {
return createOrUpdateAsync(resourceGroupName, dnsResolverDomainListName, parameters, ifMatch, ifNoneMatch,
context).block();
}
/**
* Updates a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param parameters Parameters supplied to the Update operation.
* @param ifMatch ETag of the resource. Omit this value to always overwrite the current resource. Specify the
* last-seen ETag value to prevent accidentally overwriting any concurrent changes.
* @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 describes a DNS resolver domain list along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono>> updateWithResponseAsync(String resourceGroupName,
String dnsResolverDomainListName, DnsResolverDomainListPatch parameters, String ifMatch) {
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 (dnsResolverDomainListName == null) {
return Mono.error(
new IllegalArgumentException("Parameter dnsResolverDomainListName 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 accept = "application/json";
return FluxUtil
.withContext(
context -> service.update(this.client.getEndpoint(), this.client.getSubscriptionId(), resourceGroupName,
dnsResolverDomainListName, this.client.getApiVersion(), ifMatch, parameters, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Updates a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param parameters Parameters supplied to the Update operation.
* @param ifMatch ETag of the resource. Omit this value to always overwrite the current resource. Specify the
* last-seen ETag value to prevent accidentally overwriting any concurrent changes.
* @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 describes a DNS resolver domain list along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono>> updateWithResponseAsync(String resourceGroupName,
String dnsResolverDomainListName, DnsResolverDomainListPatch parameters, String ifMatch, 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 (dnsResolverDomainListName == null) {
return Mono.error(
new IllegalArgumentException("Parameter dnsResolverDomainListName 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 accept = "application/json";
context = this.client.mergeContext(context);
return service.update(this.client.getEndpoint(), this.client.getSubscriptionId(), resourceGroupName,
dnsResolverDomainListName, this.client.getApiVersion(), ifMatch, parameters, accept, context);
}
/**
* Updates a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param parameters Parameters supplied to the Update operation.
* @param ifMatch ETag of the resource. Omit this value to always overwrite the current resource. Specify the
* last-seen ETag value to prevent accidentally overwriting any concurrent changes.
* @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 PollerFlux} for polling of describes a DNS resolver domain list.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
private PollerFlux, DnsResolverDomainListInner> beginUpdateAsync(
String resourceGroupName, String dnsResolverDomainListName, DnsResolverDomainListPatch parameters,
String ifMatch) {
Mono>> mono
= updateWithResponseAsync(resourceGroupName, dnsResolverDomainListName, parameters, ifMatch);
return this.client.getLroResult(mono,
this.client.getHttpPipeline(), DnsResolverDomainListInner.class, DnsResolverDomainListInner.class,
this.client.getContext());
}
/**
* Updates a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param parameters Parameters supplied to the Update 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 PollerFlux} for polling of describes a DNS resolver domain list.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
private PollerFlux, DnsResolverDomainListInner> beginUpdateAsync(
String resourceGroupName, String dnsResolverDomainListName, DnsResolverDomainListPatch parameters) {
final String ifMatch = null;
Mono>> mono
= updateWithResponseAsync(resourceGroupName, dnsResolverDomainListName, parameters, ifMatch);
return this.client.getLroResult(mono,
this.client.getHttpPipeline(), DnsResolverDomainListInner.class, DnsResolverDomainListInner.class,
this.client.getContext());
}
/**
* Updates a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param parameters Parameters supplied to the Update operation.
* @param ifMatch ETag of the resource. Omit this value to always overwrite the current resource. Specify the
* last-seen ETag value to prevent accidentally overwriting any concurrent changes.
* @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 PollerFlux} for polling of describes a DNS resolver domain list.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
private PollerFlux, DnsResolverDomainListInner> beginUpdateAsync(
String resourceGroupName, String dnsResolverDomainListName, DnsResolverDomainListPatch parameters,
String ifMatch, Context context) {
context = this.client.mergeContext(context);
Mono>> mono
= updateWithResponseAsync(resourceGroupName, dnsResolverDomainListName, parameters, ifMatch, context);
return this.client.getLroResult(mono,
this.client.getHttpPipeline(), DnsResolverDomainListInner.class, DnsResolverDomainListInner.class, context);
}
/**
* Updates a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param parameters Parameters supplied to the Update 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 SyncPoller} for polling of describes a DNS resolver domain list.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
public SyncPoller, DnsResolverDomainListInner>
beginUpdate(String resourceGroupName, String dnsResolverDomainListName, DnsResolverDomainListPatch parameters) {
final String ifMatch = null;
return this.beginUpdateAsync(resourceGroupName, dnsResolverDomainListName, parameters, ifMatch).getSyncPoller();
}
/**
* Updates a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param parameters Parameters supplied to the Update operation.
* @param ifMatch ETag of the resource. Omit this value to always overwrite the current resource. Specify the
* last-seen ETag value to prevent accidentally overwriting any concurrent changes.
* @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 SyncPoller} for polling of describes a DNS resolver domain list.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
public SyncPoller, DnsResolverDomainListInner> beginUpdate(
String resourceGroupName, String dnsResolverDomainListName, DnsResolverDomainListPatch parameters,
String ifMatch, Context context) {
return this.beginUpdateAsync(resourceGroupName, dnsResolverDomainListName, parameters, ifMatch, context)
.getSyncPoller();
}
/**
* Updates a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param parameters Parameters supplied to the Update operation.
* @param ifMatch ETag of the resource. Omit this value to always overwrite the current resource. Specify the
* last-seen ETag value to prevent accidentally overwriting any concurrent changes.
* @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 describes a DNS resolver domain list on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono updateAsync(String resourceGroupName, String dnsResolverDomainListName,
DnsResolverDomainListPatch parameters, String ifMatch) {
return beginUpdateAsync(resourceGroupName, dnsResolverDomainListName, parameters, ifMatch).last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Updates a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param parameters Parameters supplied to the Update 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 describes a DNS resolver domain list on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono updateAsync(String resourceGroupName, String dnsResolverDomainListName,
DnsResolverDomainListPatch parameters) {
final String ifMatch = null;
return beginUpdateAsync(resourceGroupName, dnsResolverDomainListName, parameters, ifMatch).last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Updates a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param parameters Parameters supplied to the Update operation.
* @param ifMatch ETag of the resource. Omit this value to always overwrite the current resource. Specify the
* last-seen ETag value to prevent accidentally overwriting any concurrent changes.
* @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 describes a DNS resolver domain list on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono updateAsync(String resourceGroupName, String dnsResolverDomainListName,
DnsResolverDomainListPatch parameters, String ifMatch, Context context) {
return beginUpdateAsync(resourceGroupName, dnsResolverDomainListName, parameters, ifMatch, context).last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Updates a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param parameters Parameters supplied to the Update 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 describes a DNS resolver domain list.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public DnsResolverDomainListInner update(String resourceGroupName, String dnsResolverDomainListName,
DnsResolverDomainListPatch parameters) {
final String ifMatch = null;
return updateAsync(resourceGroupName, dnsResolverDomainListName, parameters, ifMatch).block();
}
/**
* Updates a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param parameters Parameters supplied to the Update operation.
* @param ifMatch ETag of the resource. Omit this value to always overwrite the current resource. Specify the
* last-seen ETag value to prevent accidentally overwriting any concurrent changes.
* @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 describes a DNS resolver domain list.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public DnsResolverDomainListInner update(String resourceGroupName, String dnsResolverDomainListName,
DnsResolverDomainListPatch parameters, String ifMatch, Context context) {
return updateAsync(resourceGroupName, dnsResolverDomainListName, parameters, ifMatch, context).block();
}
/**
* Deletes a DNS resolver domain list. WARNING: This operation cannot be undone.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param ifMatch ETag of the resource. Omit this value to always overwrite the current resource. Specify the
* last-seen ETag value to prevent accidentally overwriting any concurrent changes.
* @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>> deleteWithResponseAsync(String resourceGroupName,
String dnsResolverDomainListName, String ifMatch) {
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 (dnsResolverDomainListName == null) {
return Mono.error(
new IllegalArgumentException("Parameter dnsResolverDomainListName is required and cannot be null."));
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.delete(this.client.getEndpoint(), this.client.getSubscriptionId(),
resourceGroupName, dnsResolverDomainListName, this.client.getApiVersion(), ifMatch, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Deletes a DNS resolver domain list. WARNING: This operation cannot be undone.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param ifMatch ETag of the resource. Omit this value to always overwrite the current resource. Specify the
* last-seen ETag value to prevent accidentally overwriting any concurrent changes.
* @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>> deleteWithResponseAsync(String resourceGroupName,
String dnsResolverDomainListName, String ifMatch, 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 (dnsResolverDomainListName == null) {
return Mono.error(
new IllegalArgumentException("Parameter dnsResolverDomainListName is required and cannot be null."));
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.delete(this.client.getEndpoint(), this.client.getSubscriptionId(), resourceGroupName,
dnsResolverDomainListName, this.client.getApiVersion(), ifMatch, accept, context);
}
/**
* Deletes a DNS resolver domain list. WARNING: This operation cannot be undone.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param ifMatch ETag of the resource. Omit this value to always overwrite the current resource. Specify the
* last-seen ETag value to prevent accidentally overwriting any concurrent changes.
* @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 PollerFlux} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
private PollerFlux, Void> beginDeleteAsync(String resourceGroupName,
String dnsResolverDomainListName, String ifMatch) {
Mono>> mono
= deleteWithResponseAsync(resourceGroupName, dnsResolverDomainListName, ifMatch);
return this.client.getLroResult(mono, this.client.getHttpPipeline(), Void.class, Void.class,
this.client.getContext());
}
/**
* Deletes a DNS resolver domain list. WARNING: This operation cannot be undone.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @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 PollerFlux} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
private PollerFlux, Void> beginDeleteAsync(String resourceGroupName,
String dnsResolverDomainListName) {
final String ifMatch = null;
Mono>> mono
= deleteWithResponseAsync(resourceGroupName, dnsResolverDomainListName, ifMatch);
return this.client.getLroResult(mono, this.client.getHttpPipeline(), Void.class, Void.class,
this.client.getContext());
}
/**
* Deletes a DNS resolver domain list. WARNING: This operation cannot be undone.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param ifMatch ETag of the resource. Omit this value to always overwrite the current resource. Specify the
* last-seen ETag value to prevent accidentally overwriting any concurrent changes.
* @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 PollerFlux} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
private PollerFlux, Void> beginDeleteAsync(String resourceGroupName,
String dnsResolverDomainListName, String ifMatch, Context context) {
context = this.client.mergeContext(context);
Mono>> mono
= deleteWithResponseAsync(resourceGroupName, dnsResolverDomainListName, ifMatch, context);
return this.client.getLroResult(mono, this.client.getHttpPipeline(), Void.class, Void.class,
context);
}
/**
* Deletes a DNS resolver domain list. WARNING: This operation cannot be undone.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @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 SyncPoller} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
public SyncPoller, Void> beginDelete(String resourceGroupName, String dnsResolverDomainListName) {
final String ifMatch = null;
return this.beginDeleteAsync(resourceGroupName, dnsResolverDomainListName, ifMatch).getSyncPoller();
}
/**
* Deletes a DNS resolver domain list. WARNING: This operation cannot be undone.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param ifMatch ETag of the resource. Omit this value to always overwrite the current resource. Specify the
* last-seen ETag value to prevent accidentally overwriting any concurrent changes.
* @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 SyncPoller} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
public SyncPoller, Void> beginDelete(String resourceGroupName, String dnsResolverDomainListName,
String ifMatch, Context context) {
return this.beginDeleteAsync(resourceGroupName, dnsResolverDomainListName, ifMatch, context).getSyncPoller();
}
/**
* Deletes a DNS resolver domain list. WARNING: This operation cannot be undone.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param ifMatch ETag of the resource. Omit this value to always overwrite the current resource. Specify the
* last-seen ETag value to prevent accidentally overwriting any concurrent changes.
* @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)
private Mono deleteAsync(String resourceGroupName, String dnsResolverDomainListName, String ifMatch) {
return beginDeleteAsync(resourceGroupName, dnsResolverDomainListName, ifMatch).last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Deletes a DNS resolver domain list. WARNING: This operation cannot be undone.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @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)
private Mono deleteAsync(String resourceGroupName, String dnsResolverDomainListName) {
final String ifMatch = null;
return beginDeleteAsync(resourceGroupName, dnsResolverDomainListName, ifMatch).last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Deletes a DNS resolver domain list. WARNING: This operation cannot be undone.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param ifMatch ETag of the resource. Omit this value to always overwrite the current resource. Specify the
* last-seen ETag value to prevent accidentally overwriting any concurrent changes.
* @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 {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono deleteAsync(String resourceGroupName, String dnsResolverDomainListName, String ifMatch,
Context context) {
return beginDeleteAsync(resourceGroupName, dnsResolverDomainListName, ifMatch, context).last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Deletes a DNS resolver domain list. WARNING: This operation cannot be undone.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @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, String dnsResolverDomainListName) {
final String ifMatch = null;
deleteAsync(resourceGroupName, dnsResolverDomainListName, ifMatch).block();
}
/**
* Deletes a DNS resolver domain list. WARNING: This operation cannot be undone.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @param ifMatch ETag of the resource. Omit this value to always overwrite the current resource. Specify the
* last-seen ETag value to prevent accidentally overwriting any concurrent changes.
* @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, String dnsResolverDomainListName, String ifMatch, Context context) {
deleteAsync(resourceGroupName, dnsResolverDomainListName, ifMatch, context).block();
}
/**
* Gets properties of a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @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 properties of a DNS resolver domain list along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getByResourceGroupWithResponseAsync(String resourceGroupName,
String dnsResolverDomainListName) {
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 (dnsResolverDomainListName == null) {
return Mono.error(
new IllegalArgumentException("Parameter dnsResolverDomainListName is required and cannot be null."));
}
final String accept = "application/json";
return FluxUtil
.withContext(
context -> service.getByResourceGroup(this.client.getEndpoint(), this.client.getSubscriptionId(),
resourceGroupName, dnsResolverDomainListName, this.client.getApiVersion(), accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Gets properties of a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @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 properties of a DNS resolver domain list along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getByResourceGroupWithResponseAsync(String resourceGroupName,
String dnsResolverDomainListName, 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 (dnsResolverDomainListName == null) {
return Mono.error(
new IllegalArgumentException("Parameter dnsResolverDomainListName is required and cannot be null."));
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.getByResourceGroup(this.client.getEndpoint(), this.client.getSubscriptionId(), resourceGroupName,
dnsResolverDomainListName, this.client.getApiVersion(), accept, context);
}
/**
* Gets properties of a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @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 properties of a DNS resolver domain list on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono getByResourceGroupAsync(String resourceGroupName,
String dnsResolverDomainListName) {
return getByResourceGroupWithResponseAsync(resourceGroupName, dnsResolverDomainListName)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Gets properties of a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @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 properties of a DNS resolver domain list along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response getByResourceGroupWithResponse(String resourceGroupName,
String dnsResolverDomainListName, Context context) {
return getByResourceGroupWithResponseAsync(resourceGroupName, dnsResolverDomainListName, context).block();
}
/**
* Gets properties of a DNS resolver domain list.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param dnsResolverDomainListName The name of the DNS resolver domain list.
* @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 properties of a DNS resolver domain list.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public DnsResolverDomainListInner getByResourceGroup(String resourceGroupName, String dnsResolverDomainListName) {
return getByResourceGroupWithResponse(resourceGroupName, dnsResolverDomainListName, Context.NONE).getValue();
}
/**
* Lists DNS resolver domain lists within a resource group.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param top The maximum number of results to return. If not specified, returns up to 100 results.
* @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 to an enumeration operation on DNS resolver domain lists along with {@link PagedResponse} on
* successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listByResourceGroupSinglePageAsync(String resourceGroupName,
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."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.listByResourceGroup(this.client.getEndpoint(),
this.client.getSubscriptionId(), resourceGroupName, this.client.getApiVersion(), top, 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()));
}
/**
* Lists DNS resolver domain lists within a resource group.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param top The maximum number of results to return. If not specified, returns up to 100 results.
* @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 to an enumeration operation on DNS resolver domain lists along with {@link PagedResponse} on
* successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listByResourceGroupSinglePageAsync(String resourceGroupName,
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."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service
.listByResourceGroup(this.client.getEndpoint(), this.client.getSubscriptionId(), resourceGroupName,
this.client.getApiVersion(), top, accept, context)
.map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
res.getValue().value(), res.getValue().nextLink(), null));
}
/**
* Lists DNS resolver domain lists within a resource group.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param top The maximum number of results to return. If not specified, returns up to 100 results.
* @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 to an enumeration operation on DNS resolver domain lists as paginated response with
* {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listByResourceGroupAsync(String resourceGroupName, Integer top) {
return new PagedFlux<>(() -> listByResourceGroupSinglePageAsync(resourceGroupName, top),
nextLink -> listByResourceGroupNextSinglePageAsync(nextLink));
}
/**
* Lists DNS resolver domain lists within a resource group.
*
* @param resourceGroupName The name of the resource group. 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 response to an enumeration operation on DNS resolver domain lists as paginated response with
* {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listByResourceGroupAsync(String resourceGroupName) {
final Integer top = null;
return new PagedFlux<>(() -> listByResourceGroupSinglePageAsync(resourceGroupName, top),
nextLink -> listByResourceGroupNextSinglePageAsync(nextLink));
}
/**
* Lists DNS resolver domain lists within a resource group.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param top The maximum number of results to return. If not specified, returns up to 100 results.
* @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 to an enumeration operation on DNS resolver domain lists as paginated response with
* {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listByResourceGroupAsync(String resourceGroupName, Integer top,
Context context) {
return new PagedFlux<>(() -> listByResourceGroupSinglePageAsync(resourceGroupName, top, context),
nextLink -> listByResourceGroupNextSinglePageAsync(nextLink, context));
}
/**
* Lists DNS resolver domain lists within a resource group.
*
* @param resourceGroupName The name of the resource group. 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 response to an enumeration operation on DNS resolver domain lists as paginated response with
* {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable listByResourceGroup(String resourceGroupName) {
final Integer top = null;
return new PagedIterable<>(listByResourceGroupAsync(resourceGroupName, top));
}
/**
* Lists DNS resolver domain lists within a resource group.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param top The maximum number of results to return. If not specified, returns up to 100 results.
* @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 to an enumeration operation on DNS resolver domain lists as paginated response with
* {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable listByResourceGroup(String resourceGroupName, Integer top,
Context context) {
return new PagedIterable<>(listByResourceGroupAsync(resourceGroupName, top, context));
}
/**
* Lists DNS resolver domain lists in all resource groups of a subscription.
*
* @param top The maximum number of results to return. If not specified, returns up to 100 results.
* @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 to an enumeration operation on DNS resolver domain lists along with {@link PagedResponse} on
* successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listSinglePageAsync(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."));
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.list(this.client.getEndpoint(), this.client.getSubscriptionId(),
this.client.getApiVersion(), top, 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()));
}
/**
* Lists DNS resolver domain lists in all resource groups of a subscription.
*
* @param top The maximum number of results to return. If not specified, returns up to 100 results.
* @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 to an enumeration operation on DNS resolver domain lists along with {@link PagedResponse} on
* successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listSinglePageAsync(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."));
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service
.list(this.client.getEndpoint(), this.client.getSubscriptionId(), this.client.getApiVersion(), top, accept,
context)
.map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
res.getValue().value(), res.getValue().nextLink(), null));
}
/**
* Lists DNS resolver domain lists in all resource groups of a subscription.
*
* @param top The maximum number of results to return. If not specified, returns up to 100 results.
* @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 to an enumeration operation on DNS resolver domain lists as paginated response with
* {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listAsync(Integer top) {
return new PagedFlux<>(() -> listSinglePageAsync(top), nextLink -> listNextSinglePageAsync(nextLink));
}
/**
* Lists DNS resolver domain lists in all resource groups of 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 the response to an enumeration operation on DNS resolver domain lists as paginated response with
* {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listAsync() {
final Integer top = null;
return new PagedFlux<>(() -> listSinglePageAsync(top), nextLink -> listNextSinglePageAsync(nextLink));
}
/**
* Lists DNS resolver domain lists in all resource groups of a subscription.
*
* @param top The maximum number of results to return. If not specified, returns up to 100 results.
* @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 to an enumeration operation on DNS resolver domain lists as paginated response with
* {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listAsync(Integer top, Context context) {
return new PagedFlux<>(() -> listSinglePageAsync(top, context),
nextLink -> listNextSinglePageAsync(nextLink, context));
}
/**
* Lists DNS resolver domain lists in all resource groups of 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 the response to an enumeration operation on DNS resolver domain lists as paginated response with
* {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable list() {
final Integer top = null;
return new PagedIterable<>(listAsync(top));
}
/**
* Lists DNS resolver domain lists in all resource groups of a subscription.
*
* @param top The maximum number of results to return. If not specified, returns up to 100 results.
* @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 to an enumeration operation on DNS resolver domain lists as paginated response with
* {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable list(Integer top, Context context) {
return new PagedIterable<>(listAsync(top, context));
}
/**
* 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 the response to an enumeration operation on DNS resolver domain lists along with {@link PagedResponse} on
* successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listByResourceGroupNextSinglePageAsync(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.listByResourceGroupNext(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 the response to an enumeration operation on DNS resolver domain lists along with {@link PagedResponse} on
* successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listByResourceGroupNextSinglePageAsync(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.listByResourceGroupNext(nextLink, this.client.getEndpoint(), accept, context)
.map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
res.getValue().value(), res.getValue().nextLink(), null));
}
/**
* 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 the response to an enumeration operation on DNS resolver domain lists along with {@link PagedResponse} on
* successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listNextSinglePageAsync(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.listNext(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 the response to an enumeration operation on DNS resolver domain lists along with {@link PagedResponse} on
* successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listNextSinglePageAsync(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.listNext(nextLink, this.client.getEndpoint(), accept, context)
.map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
res.getValue().value(), res.getValue().nextLink(), null));
}
}