com.azure.resourcemanager.appplatform.implementation.MonitoringSettingsClientImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-appplatform Show documentation
Show all versions of azure-resourcemanager-appplatform Show documentation
This package contains Microsoft Azure App Platform Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.appplatform.implementation;
import com.azure.core.annotation.BodyParam;
import com.azure.core.annotation.ExpectedResponses;
import com.azure.core.annotation.Get;
import com.azure.core.annotation.HeaderParam;
import com.azure.core.annotation.Headers;
import com.azure.core.annotation.Host;
import com.azure.core.annotation.HostParam;
import com.azure.core.annotation.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.polling.PollerFlux;
import com.azure.core.util.polling.SyncPoller;
import com.azure.resourcemanager.appplatform.fluent.MonitoringSettingsClient;
import com.azure.resourcemanager.appplatform.fluent.models.MonitoringSettingResourceInner;
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 MonitoringSettingsClient.
*/
public final class MonitoringSettingsClientImpl implements MonitoringSettingsClient {
/**
* The proxy service used to perform REST calls.
*/
private final MonitoringSettingsService service;
/**
* The service client containing this operation class.
*/
private final AppPlatformManagementClientImpl client;
/**
* Initializes an instance of MonitoringSettingsClientImpl.
*
* @param client the instance of the service client containing this operation class.
*/
MonitoringSettingsClientImpl(AppPlatformManagementClientImpl client) {
this.service = RestProxy.create(MonitoringSettingsService.class, client.getHttpPipeline(),
client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for AppPlatformManagementClientMonitoringSettings to be used by the
* proxy service to perform REST calls.
*/
@Host("{$host}")
@ServiceInterface(name = "AppPlatformManagemen")
public interface MonitoringSettingsService {
@Headers({ "Content-Type: application/json" })
@Get("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/monitoringSettings/default")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> get(@HostParam("$host") String endpoint,
@QueryParam("api-version") String apiVersion, @PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName, @PathParam("serviceName") String serviceName,
@HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Put("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/monitoringSettings/default")
@ExpectedResponses({ 200, 202 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono>> updatePut(@HostParam("$host") String endpoint,
@QueryParam("api-version") String apiVersion, @PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName, @PathParam("serviceName") String serviceName,
@BodyParam("application/json") MonitoringSettingResourceInner monitoringSettingResource,
@HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Patch("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/monitoringSettings/default")
@ExpectedResponses({ 200, 202 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono>> updatePatch(@HostParam("$host") String endpoint,
@QueryParam("api-version") String apiVersion, @PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName, @PathParam("serviceName") String serviceName,
@BodyParam("application/json") MonitoringSettingResourceInner monitoringSettingResource,
@HeaderParam("Accept") String accept, Context context);
}
/**
* Get the Monitoring Setting and its properties.
*
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value
* from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @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 Monitoring Setting and its properties along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> getWithResponseAsync(String resourceGroupName,
String serviceName) {
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 (serviceName == null) {
return Mono.error(new IllegalArgumentException("Parameter serviceName is required and cannot be null."));
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.get(this.client.getEndpoint(), this.client.getApiVersion(),
this.client.getSubscriptionId(), resourceGroupName, serviceName, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Get the Monitoring Setting and its properties.
*
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value
* from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @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 Monitoring Setting and its properties along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getWithResponseAsync(String resourceGroupName,
String serviceName, 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 (serviceName == null) {
return Mono.error(new IllegalArgumentException("Parameter serviceName is required and cannot be null."));
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.get(this.client.getEndpoint(), this.client.getApiVersion(), this.client.getSubscriptionId(),
resourceGroupName, serviceName, accept, context);
}
/**
* Get the Monitoring Setting and its properties.
*
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value
* from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @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 Monitoring Setting and its properties on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono getAsync(String resourceGroupName, String serviceName) {
return getWithResponseAsync(resourceGroupName, serviceName).flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Get the Monitoring Setting and its properties.
*
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value
* from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @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 Monitoring Setting and its properties along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response getWithResponse(String resourceGroupName, String serviceName,
Context context) {
return getWithResponseAsync(resourceGroupName, serviceName, context).block();
}
/**
* Get the Monitoring Setting and its properties.
*
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value
* from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @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 Monitoring Setting and its properties.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public MonitoringSettingResourceInner get(String resourceGroupName, String serviceName) {
return getWithResponse(resourceGroupName, serviceName, Context.NONE).getValue();
}
/**
* Update the Monitoring Setting.
*
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value
* from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param monitoringSettingResource Parameters for 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 monitoring Setting resource along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono>> updatePutWithResponseAsync(String resourceGroupName, String serviceName,
MonitoringSettingResourceInner monitoringSettingResource) {
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 (serviceName == null) {
return Mono.error(new IllegalArgumentException("Parameter serviceName is required and cannot be null."));
}
if (monitoringSettingResource == null) {
return Mono.error(
new IllegalArgumentException("Parameter monitoringSettingResource is required and cannot be null."));
} else {
monitoringSettingResource.validate();
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.updatePut(this.client.getEndpoint(), this.client.getApiVersion(),
this.client.getSubscriptionId(), resourceGroupName, serviceName, monitoringSettingResource, accept,
context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Update the Monitoring Setting.
*
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value
* from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param monitoringSettingResource Parameters for the update operation.
* @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 monitoring Setting resource along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono>> updatePutWithResponseAsync(String resourceGroupName, String serviceName,
MonitoringSettingResourceInner monitoringSettingResource, 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 (serviceName == null) {
return Mono.error(new IllegalArgumentException("Parameter serviceName is required and cannot be null."));
}
if (monitoringSettingResource == null) {
return Mono.error(
new IllegalArgumentException("Parameter monitoringSettingResource is required and cannot be null."));
} else {
monitoringSettingResource.validate();
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.updatePut(this.client.getEndpoint(), this.client.getApiVersion(),
this.client.getSubscriptionId(), resourceGroupName, serviceName, monitoringSettingResource, accept,
context);
}
/**
* Update the Monitoring Setting.
*
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value
* from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param monitoringSettingResource Parameters for 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 monitoring Setting resource.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
public PollerFlux, MonitoringSettingResourceInner> beginUpdatePutAsync(
String resourceGroupName, String serviceName, MonitoringSettingResourceInner monitoringSettingResource) {
Mono>> mono
= updatePutWithResponseAsync(resourceGroupName, serviceName, monitoringSettingResource);
return this.client.getLroResult(mono,
this.client.getHttpPipeline(), MonitoringSettingResourceInner.class, MonitoringSettingResourceInner.class,
this.client.getContext());
}
/**
* Update the Monitoring Setting.
*
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value
* from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param monitoringSettingResource Parameters for the update operation.
* @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 monitoring Setting resource.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
private PollerFlux, MonitoringSettingResourceInner> beginUpdatePutAsync(
String resourceGroupName, String serviceName, MonitoringSettingResourceInner monitoringSettingResource,
Context context) {
context = this.client.mergeContext(context);
Mono>> mono
= updatePutWithResponseAsync(resourceGroupName, serviceName, monitoringSettingResource, context);
return this.client.getLroResult(mono,
this.client.getHttpPipeline(), MonitoringSettingResourceInner.class, MonitoringSettingResourceInner.class,
context);
}
/**
* Update the Monitoring Setting.
*
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value
* from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param monitoringSettingResource Parameters for 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 monitoring Setting resource.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
public SyncPoller, MonitoringSettingResourceInner> beginUpdatePut(
String resourceGroupName, String serviceName, MonitoringSettingResourceInner monitoringSettingResource) {
return this.beginUpdatePutAsync(resourceGroupName, serviceName, monitoringSettingResource).getSyncPoller();
}
/**
* Update the Monitoring Setting.
*
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value
* from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param monitoringSettingResource Parameters for the update operation.
* @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 monitoring Setting resource.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
public SyncPoller, MonitoringSettingResourceInner> beginUpdatePut(
String resourceGroupName, String serviceName, MonitoringSettingResourceInner monitoringSettingResource,
Context context) {
return this.beginUpdatePutAsync(resourceGroupName, serviceName, monitoringSettingResource, context)
.getSyncPoller();
}
/**
* Update the Monitoring Setting.
*
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value
* from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param monitoringSettingResource Parameters for 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 monitoring Setting resource on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono updatePutAsync(String resourceGroupName, String serviceName,
MonitoringSettingResourceInner monitoringSettingResource) {
return beginUpdatePutAsync(resourceGroupName, serviceName, monitoringSettingResource).last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Update the Monitoring Setting.
*
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value
* from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param monitoringSettingResource Parameters for the update operation.
* @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 monitoring Setting resource on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono updatePutAsync(String resourceGroupName, String serviceName,
MonitoringSettingResourceInner monitoringSettingResource, Context context) {
return beginUpdatePutAsync(resourceGroupName, serviceName, monitoringSettingResource, context).last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Update the Monitoring Setting.
*
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value
* from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param monitoringSettingResource Parameters for 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 monitoring Setting resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public MonitoringSettingResourceInner updatePut(String resourceGroupName, String serviceName,
MonitoringSettingResourceInner monitoringSettingResource) {
return updatePutAsync(resourceGroupName, serviceName, monitoringSettingResource).block();
}
/**
* Update the Monitoring Setting.
*
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value
* from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param monitoringSettingResource Parameters for the update operation.
* @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 monitoring Setting resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public MonitoringSettingResourceInner updatePut(String resourceGroupName, String serviceName,
MonitoringSettingResourceInner monitoringSettingResource, Context context) {
return updatePutAsync(resourceGroupName, serviceName, monitoringSettingResource, context).block();
}
/**
* Update the Monitoring Setting.
*
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value
* from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param monitoringSettingResource Parameters for 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 monitoring Setting resource along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono>> updatePatchWithResponseAsync(String resourceGroupName, String serviceName,
MonitoringSettingResourceInner monitoringSettingResource) {
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 (serviceName == null) {
return Mono.error(new IllegalArgumentException("Parameter serviceName is required and cannot be null."));
}
if (monitoringSettingResource == null) {
return Mono.error(
new IllegalArgumentException("Parameter monitoringSettingResource is required and cannot be null."));
} else {
monitoringSettingResource.validate();
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.updatePatch(this.client.getEndpoint(), this.client.getApiVersion(),
this.client.getSubscriptionId(), resourceGroupName, serviceName, monitoringSettingResource, accept,
context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Update the Monitoring Setting.
*
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value
* from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param monitoringSettingResource Parameters for the update operation.
* @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 monitoring Setting resource along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono>> updatePatchWithResponseAsync(String resourceGroupName, String serviceName,
MonitoringSettingResourceInner monitoringSettingResource, 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 (serviceName == null) {
return Mono.error(new IllegalArgumentException("Parameter serviceName is required and cannot be null."));
}
if (monitoringSettingResource == null) {
return Mono.error(
new IllegalArgumentException("Parameter monitoringSettingResource is required and cannot be null."));
} else {
monitoringSettingResource.validate();
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.updatePatch(this.client.getEndpoint(), this.client.getApiVersion(),
this.client.getSubscriptionId(), resourceGroupName, serviceName, monitoringSettingResource, accept,
context);
}
/**
* Update the Monitoring Setting.
*
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value
* from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param monitoringSettingResource Parameters for 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 monitoring Setting resource.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
public PollerFlux, MonitoringSettingResourceInner> beginUpdatePatchAsync(
String resourceGroupName, String serviceName, MonitoringSettingResourceInner monitoringSettingResource) {
Mono>> mono
= updatePatchWithResponseAsync(resourceGroupName, serviceName, monitoringSettingResource);
return this.client.getLroResult(mono,
this.client.getHttpPipeline(), MonitoringSettingResourceInner.class, MonitoringSettingResourceInner.class,
this.client.getContext());
}
/**
* Update the Monitoring Setting.
*
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value
* from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param monitoringSettingResource Parameters for the update operation.
* @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 monitoring Setting resource.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
private PollerFlux, MonitoringSettingResourceInner>
beginUpdatePatchAsync(String resourceGroupName, String serviceName,
MonitoringSettingResourceInner monitoringSettingResource, Context context) {
context = this.client.mergeContext(context);
Mono>> mono
= updatePatchWithResponseAsync(resourceGroupName, serviceName, monitoringSettingResource, context);
return this.client.getLroResult(mono,
this.client.getHttpPipeline(), MonitoringSettingResourceInner.class, MonitoringSettingResourceInner.class,
context);
}
/**
* Update the Monitoring Setting.
*
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value
* from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param monitoringSettingResource Parameters for 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 monitoring Setting resource.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
public SyncPoller, MonitoringSettingResourceInner> beginUpdatePatch(
String resourceGroupName, String serviceName, MonitoringSettingResourceInner monitoringSettingResource) {
return this.beginUpdatePatchAsync(resourceGroupName, serviceName, monitoringSettingResource).getSyncPoller();
}
/**
* Update the Monitoring Setting.
*
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value
* from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param monitoringSettingResource Parameters for the update operation.
* @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 monitoring Setting resource.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
public SyncPoller, MonitoringSettingResourceInner> beginUpdatePatch(
String resourceGroupName, String serviceName, MonitoringSettingResourceInner monitoringSettingResource,
Context context) {
return this.beginUpdatePatchAsync(resourceGroupName, serviceName, monitoringSettingResource, context)
.getSyncPoller();
}
/**
* Update the Monitoring Setting.
*
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value
* from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param monitoringSettingResource Parameters for 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 monitoring Setting resource on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono updatePatchAsync(String resourceGroupName, String serviceName,
MonitoringSettingResourceInner monitoringSettingResource) {
return beginUpdatePatchAsync(resourceGroupName, serviceName, monitoringSettingResource).last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Update the Monitoring Setting.
*
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value
* from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param monitoringSettingResource Parameters for the update operation.
* @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 monitoring Setting resource on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono updatePatchAsync(String resourceGroupName, String serviceName,
MonitoringSettingResourceInner monitoringSettingResource, Context context) {
return beginUpdatePatchAsync(resourceGroupName, serviceName, monitoringSettingResource, context).last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* Update the Monitoring Setting.
*
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value
* from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param monitoringSettingResource Parameters for 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 monitoring Setting resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public MonitoringSettingResourceInner updatePatch(String resourceGroupName, String serviceName,
MonitoringSettingResourceInner monitoringSettingResource) {
return updatePatchAsync(resourceGroupName, serviceName, monitoringSettingResource).block();
}
/**
* Update the Monitoring Setting.
*
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value
* from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param monitoringSettingResource Parameters for the update operation.
* @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 monitoring Setting resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public MonitoringSettingResourceInner updatePatch(String resourceGroupName, String serviceName,
MonitoringSettingResourceInner monitoringSettingResource, Context context) {
return updatePatchAsync(resourceGroupName, serviceName, monitoringSettingResource, context).block();
}
}