DdosCustomPoliciesClientImpl.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.network.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.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.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.network.fluent.DdosCustomPoliciesClient;
import com.azure.resourcemanager.network.fluent.models.DdosCustomPolicyInner;
import com.azure.resourcemanager.network.models.TagsObject;
import com.azure.resourcemanager.resources.fluentcore.collection.InnerSupportsDelete;
import com.azure.resourcemanager.resources.fluentcore.collection.InnerSupportsGet;
import java.nio.ByteBuffer;
import java.util.Map;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
/** An instance of this class provides access to all the operations defined in DdosCustomPoliciesClient. */
public final class DdosCustomPoliciesClientImpl
implements InnerSupportsGet<DdosCustomPolicyInner>, InnerSupportsDelete<Void>, DdosCustomPoliciesClient {
private final ClientLogger logger = new ClientLogger(DdosCustomPoliciesClientImpl.class);
/** The proxy service used to perform REST calls. */
private final DdosCustomPoliciesService service;
/** The service client containing this operation class. */
private final NetworkManagementClientImpl client;
/**
* Initializes an instance of DdosCustomPoliciesClientImpl.
*
* @param client the instance of the service client containing this operation class.
*/
DdosCustomPoliciesClientImpl(NetworkManagementClientImpl client) {
this.service =
RestProxy.create(DdosCustomPoliciesService.class, client.getHttpPipeline(), client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for NetworkManagementClientDdosCustomPolicies to be used by the proxy
* service to perform REST calls.
*/
@Host("{$host}")
@ServiceInterface(name = "NetworkManagementCli")
private interface DdosCustomPoliciesService {
@Headers({"Accept: application/json;q=0.9", "Content-Type: application/json"})
@Delete(
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network"
+ "/ddosCustomPolicies/{ddosCustomPolicyName}")
@ExpectedResponses({200, 202, 204})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<Flux<ByteBuffer>>> delete(
@HostParam("$host") String endpoint,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("ddosCustomPolicyName") String ddosCustomPolicyName,
@QueryParam("api-version") String apiVersion,
@PathParam("subscriptionId") String subscriptionId,
Context context);
@Headers({"Accept: application/json", "Content-Type: application/json"})
@Get(
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network"
+ "/ddosCustomPolicies/{ddosCustomPolicyName}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<DdosCustomPolicyInner>> getByResourceGroup(
@HostParam("$host") String endpoint,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("ddosCustomPolicyName") String ddosCustomPolicyName,
@QueryParam("api-version") String apiVersion,
@PathParam("subscriptionId") String subscriptionId,
Context context);
@Headers({"Accept: application/json", "Content-Type: application/json"})
@Put(
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network"
+ "/ddosCustomPolicies/{ddosCustomPolicyName}")
@ExpectedResponses({200, 201})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<Flux<ByteBuffer>>> createOrUpdate(
@HostParam("$host") String endpoint,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("ddosCustomPolicyName") String ddosCustomPolicyName,
@QueryParam("api-version") String apiVersion,
@PathParam("subscriptionId") String subscriptionId,
@BodyParam("application/json") DdosCustomPolicyInner parameters,
Context context);
@Headers({"Accept: application/json", "Content-Type: application/json"})
@Patch(
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network"
+ "/ddosCustomPolicies/{ddosCustomPolicyName}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<DdosCustomPolicyInner>> updateTags(
@HostParam("$host") String endpoint,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("ddosCustomPolicyName") String ddosCustomPolicyName,
@QueryParam("api-version") String apiVersion,
@PathParam("subscriptionId") String subscriptionId,
@BodyParam("application/json") TagsObject parameters,
Context context);
}
/**
* Deletes the specified DDoS custom policy.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @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, String ddosCustomPolicyName) {
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 (ddosCustomPolicyName == null) {
return Mono
.error(new IllegalArgumentException("Parameter ddosCustomPolicyName 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 apiVersion = "2020-05-01";
return FluxUtil
.withContext(
context ->
service
.delete(
this.client.getEndpoint(),
resourceGroupName,
ddosCustomPolicyName,
apiVersion,
this.client.getSubscriptionId(),
context))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Deletes the specified DDoS custom policy.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @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, String ddosCustomPolicyName, 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 (ddosCustomPolicyName == null) {
return Mono
.error(new IllegalArgumentException("Parameter ddosCustomPolicyName 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 apiVersion = "2020-05-01";
context = this.client.mergeContext(context);
return service
.delete(
this.client.getEndpoint(),
resourceGroupName,
ddosCustomPolicyName,
apiVersion,
this.client.getSubscriptionId(),
context);
}
/**
* Deletes the specified DDoS custom policy.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @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, String ddosCustomPolicyName) {
Mono<Response<Flux<ByteBuffer>>> mono = deleteWithResponseAsync(resourceGroupName, ddosCustomPolicyName);
return this
.client
.<Void, Void>getLroResult(mono, this.client.getHttpPipeline(), Void.class, Void.class, Context.NONE);
}
/**
* Deletes the specified DDoS custom policy.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @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, String ddosCustomPolicyName, Context context) {
context = this.client.mergeContext(context);
Mono<Response<Flux<ByteBuffer>>> mono =
deleteWithResponseAsync(resourceGroupName, ddosCustomPolicyName, context);
return this
.client
.<Void, Void>getLroResult(mono, this.client.getHttpPipeline(), Void.class, Void.class, context);
}
/**
* Deletes the specified DDoS custom policy.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @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, String ddosCustomPolicyName) {
return beginDeleteAsync(resourceGroupName, ddosCustomPolicyName).getSyncPoller();
}
/**
* Deletes the specified DDoS custom policy.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @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, String ddosCustomPolicyName, Context context) {
return beginDeleteAsync(resourceGroupName, ddosCustomPolicyName, context).getSyncPoller();
}
/**
* Deletes the specified DDoS custom policy.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @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, String ddosCustomPolicyName) {
return beginDeleteAsync(resourceGroupName, ddosCustomPolicyName)
.last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Deletes the specified DDoS custom policy.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @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, String ddosCustomPolicyName, Context context) {
return beginDeleteAsync(resourceGroupName, ddosCustomPolicyName, context)
.last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Deletes the specified DDoS custom policy.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @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 ddosCustomPolicyName) {
deleteAsync(resourceGroupName, ddosCustomPolicyName).block();
}
/**
* Deletes the specified DDoS custom policy.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @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 ddosCustomPolicyName, Context context) {
deleteAsync(resourceGroupName, ddosCustomPolicyName, context).block();
}
/**
* Gets information about the specified DDoS custom policy.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @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 information about the specified DDoS custom policy.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<DdosCustomPolicyInner>> getByResourceGroupWithResponseAsync(
String resourceGroupName, String ddosCustomPolicyName) {
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 (ddosCustomPolicyName == null) {
return Mono
.error(new IllegalArgumentException("Parameter ddosCustomPolicyName 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 apiVersion = "2020-05-01";
return FluxUtil
.withContext(
context ->
service
.getByResourceGroup(
this.client.getEndpoint(),
resourceGroupName,
ddosCustomPolicyName,
apiVersion,
this.client.getSubscriptionId(),
context))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Gets information about the specified DDoS custom policy.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @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 information about the specified DDoS custom policy.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<Response<DdosCustomPolicyInner>> getByResourceGroupWithResponseAsync(
String resourceGroupName, String ddosCustomPolicyName, 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 (ddosCustomPolicyName == null) {
return Mono
.error(new IllegalArgumentException("Parameter ddosCustomPolicyName 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 apiVersion = "2020-05-01";
context = this.client.mergeContext(context);
return service
.getByResourceGroup(
this.client.getEndpoint(),
resourceGroupName,
ddosCustomPolicyName,
apiVersion,
this.client.getSubscriptionId(),
context);
}
/**
* Gets information about the specified DDoS custom policy.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @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 information about the specified DDoS custom policy.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<DdosCustomPolicyInner> getByResourceGroupAsync(String resourceGroupName, String ddosCustomPolicyName) {
return getByResourceGroupWithResponseAsync(resourceGroupName, ddosCustomPolicyName)
.flatMap(
(Response<DdosCustomPolicyInner> res) -> {
if (res.getValue() != null) {
return Mono.just(res.getValue());
} else {
return Mono.empty();
}
});
}
/**
* Gets information about the specified DDoS custom policy.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @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 information about the specified DDoS custom policy.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public DdosCustomPolicyInner getByResourceGroup(String resourceGroupName, String ddosCustomPolicyName) {
return getByResourceGroupAsync(resourceGroupName, ddosCustomPolicyName).block();
}
/**
* Gets information about the specified DDoS custom policy.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @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 information about the specified DDoS custom policy.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response<DdosCustomPolicyInner> getByResourceGroupWithResponse(
String resourceGroupName, String ddosCustomPolicyName, Context context) {
return getByResourceGroupWithResponseAsync(resourceGroupName, ddosCustomPolicyName, context).block();
}
/**
* Creates or updates a DDoS custom policy.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @param parameters A DDoS custom policy in a resource group.
* @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 DDoS custom policy in a resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<Flux<ByteBuffer>>> createOrUpdateWithResponseAsync(
String resourceGroupName, String ddosCustomPolicyName, DdosCustomPolicyInner 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 (ddosCustomPolicyName == null) {
return Mono
.error(new IllegalArgumentException("Parameter ddosCustomPolicyName 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();
}
final String apiVersion = "2020-05-01";
return FluxUtil
.withContext(
context ->
service
.createOrUpdate(
this.client.getEndpoint(),
resourceGroupName,
ddosCustomPolicyName,
apiVersion,
this.client.getSubscriptionId(),
parameters,
context))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Creates or updates a DDoS custom policy.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @param parameters A DDoS custom policy in a resource group.
* @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 DDoS custom policy in a resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<Response<Flux<ByteBuffer>>> createOrUpdateWithResponseAsync(
String resourceGroupName, String ddosCustomPolicyName, DdosCustomPolicyInner 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 (ddosCustomPolicyName == null) {
return Mono
.error(new IllegalArgumentException("Parameter ddosCustomPolicyName 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();
}
final String apiVersion = "2020-05-01";
context = this.client.mergeContext(context);
return service
.createOrUpdate(
this.client.getEndpoint(),
resourceGroupName,
ddosCustomPolicyName,
apiVersion,
this.client.getSubscriptionId(),
parameters,
context);
}
/**
* Creates or updates a DDoS custom policy.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @param parameters A DDoS custom policy in a resource group.
* @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 DDoS custom policy in a resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public PollerFlux<PollResult<DdosCustomPolicyInner>, DdosCustomPolicyInner> beginCreateOrUpdateAsync(
String resourceGroupName, String ddosCustomPolicyName, DdosCustomPolicyInner parameters) {
Mono<Response<Flux<ByteBuffer>>> mono =
createOrUpdateWithResponseAsync(resourceGroupName, ddosCustomPolicyName, parameters);
return this
.client
.<DdosCustomPolicyInner, DdosCustomPolicyInner>getLroResult(
mono,
this.client.getHttpPipeline(),
DdosCustomPolicyInner.class,
DdosCustomPolicyInner.class,
Context.NONE);
}
/**
* Creates or updates a DDoS custom policy.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @param parameters A DDoS custom policy in a resource group.
* @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 DDoS custom policy in a resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private PollerFlux<PollResult<DdosCustomPolicyInner>, DdosCustomPolicyInner> beginCreateOrUpdateAsync(
String resourceGroupName, String ddosCustomPolicyName, DdosCustomPolicyInner parameters, Context context) {
context = this.client.mergeContext(context);
Mono<Response<Flux<ByteBuffer>>> mono =
createOrUpdateWithResponseAsync(resourceGroupName, ddosCustomPolicyName, parameters, context);
return this
.client
.<DdosCustomPolicyInner, DdosCustomPolicyInner>getLroResult(
mono, this.client.getHttpPipeline(), DdosCustomPolicyInner.class, DdosCustomPolicyInner.class, context);
}
/**
* Creates or updates a DDoS custom policy.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @param parameters A DDoS custom policy in a resource group.
* @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 DDoS custom policy in a resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public SyncPoller<PollResult<DdosCustomPolicyInner>, DdosCustomPolicyInner> beginCreateOrUpdate(
String resourceGroupName, String ddosCustomPolicyName, DdosCustomPolicyInner parameters) {
return beginCreateOrUpdateAsync(resourceGroupName, ddosCustomPolicyName, parameters).getSyncPoller();
}
/**
* Creates or updates a DDoS custom policy.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @param parameters A DDoS custom policy in a resource group.
* @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 DDoS custom policy in a resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public SyncPoller<PollResult<DdosCustomPolicyInner>, DdosCustomPolicyInner> beginCreateOrUpdate(
String resourceGroupName, String ddosCustomPolicyName, DdosCustomPolicyInner parameters, Context context) {
return beginCreateOrUpdateAsync(resourceGroupName, ddosCustomPolicyName, parameters, context).getSyncPoller();
}
/**
* Creates or updates a DDoS custom policy.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @param parameters A DDoS custom policy in a resource group.
* @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 DDoS custom policy in a resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<DdosCustomPolicyInner> createOrUpdateAsync(
String resourceGroupName, String ddosCustomPolicyName, DdosCustomPolicyInner parameters) {
return beginCreateOrUpdateAsync(resourceGroupName, ddosCustomPolicyName, parameters)
.last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Creates or updates a DDoS custom policy.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @param parameters A DDoS custom policy in a resource group.
* @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 DDoS custom policy in a resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<DdosCustomPolicyInner> createOrUpdateAsync(
String resourceGroupName, String ddosCustomPolicyName, DdosCustomPolicyInner parameters, Context context) {
return beginCreateOrUpdateAsync(resourceGroupName, ddosCustomPolicyName, parameters, context)
.last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Creates or updates a DDoS custom policy.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @param parameters A DDoS custom policy in a resource group.
* @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 DDoS custom policy in a resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public DdosCustomPolicyInner createOrUpdate(
String resourceGroupName, String ddosCustomPolicyName, DdosCustomPolicyInner parameters) {
return createOrUpdateAsync(resourceGroupName, ddosCustomPolicyName, parameters).block();
}
/**
* Creates or updates a DDoS custom policy.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @param parameters A DDoS custom policy in a resource group.
* @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 DDoS custom policy in a resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public DdosCustomPolicyInner createOrUpdate(
String resourceGroupName, String ddosCustomPolicyName, DdosCustomPolicyInner parameters, Context context) {
return createOrUpdateAsync(resourceGroupName, ddosCustomPolicyName, parameters, context).block();
}
/**
* Update a DDoS custom policy tags.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @param tags Resource tags.
* @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 DDoS custom policy in a resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Response<DdosCustomPolicyInner>> updateTagsWithResponseAsync(
String resourceGroupName, String ddosCustomPolicyName, Map<String, String> tags) {
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 (ddosCustomPolicyName == null) {
return Mono
.error(new IllegalArgumentException("Parameter ddosCustomPolicyName 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 apiVersion = "2020-05-01";
TagsObject parameters = new TagsObject();
parameters.withTags(tags);
return FluxUtil
.withContext(
context ->
service
.updateTags(
this.client.getEndpoint(),
resourceGroupName,
ddosCustomPolicyName,
apiVersion,
this.client.getSubscriptionId(),
parameters,
context))
.subscriberContext(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext())));
}
/**
* Update a DDoS custom policy tags.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @param tags Resource tags.
* @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 DDoS custom policy in a resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono<Response<DdosCustomPolicyInner>> updateTagsWithResponseAsync(
String resourceGroupName, String ddosCustomPolicyName, Map<String, String> tags, 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 (ddosCustomPolicyName == null) {
return Mono
.error(new IllegalArgumentException("Parameter ddosCustomPolicyName 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 apiVersion = "2020-05-01";
TagsObject parameters = new TagsObject();
parameters.withTags(tags);
context = this.client.mergeContext(context);
return service
.updateTags(
this.client.getEndpoint(),
resourceGroupName,
ddosCustomPolicyName,
apiVersion,
this.client.getSubscriptionId(),
parameters,
context);
}
/**
* Update a DDoS custom policy tags.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @param tags Resource tags.
* @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 DDoS custom policy in a resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<DdosCustomPolicyInner> updateTagsAsync(
String resourceGroupName, String ddosCustomPolicyName, Map<String, String> tags) {
return updateTagsWithResponseAsync(resourceGroupName, ddosCustomPolicyName, tags)
.flatMap(
(Response<DdosCustomPolicyInner> res) -> {
if (res.getValue() != null) {
return Mono.just(res.getValue());
} else {
return Mono.empty();
}
});
}
/**
* Update a DDoS custom policy tags.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @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 DDoS custom policy in a resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<DdosCustomPolicyInner> updateTagsAsync(String resourceGroupName, String ddosCustomPolicyName) {
final Map<String, String> tags = null;
return updateTagsWithResponseAsync(resourceGroupName, ddosCustomPolicyName, tags)
.flatMap(
(Response<DdosCustomPolicyInner> res) -> {
if (res.getValue() != null) {
return Mono.just(res.getValue());
} else {
return Mono.empty();
}
});
}
/**
* Update a DDoS custom policy tags.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @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 DDoS custom policy in a resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public DdosCustomPolicyInner updateTags(String resourceGroupName, String ddosCustomPolicyName) {
final Map<String, String> tags = null;
return updateTagsAsync(resourceGroupName, ddosCustomPolicyName, tags).block();
}
/**
* Update a DDoS custom policy tags.
*
* @param resourceGroupName The name of the resource group.
* @param ddosCustomPolicyName The name of the DDoS custom policy.
* @param tags Resource tags.
* @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 DDoS custom policy in a resource group.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response<DdosCustomPolicyInner> updateTagsWithResponse(
String resourceGroupName, String ddosCustomPolicyName, Map<String, String> tags, Context context) {
return updateTagsWithResponseAsync(resourceGroupName, ddosCustomPolicyName, tags, context).block();
}
}