com.azure.resourcemanager.security.implementation.TasksClientImpl Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.security.implementation;
import com.azure.core.annotation.ExpectedResponses;
import com.azure.core.annotation.Get;
import com.azure.core.annotation.HeaderParam;
import com.azure.core.annotation.Headers;
import com.azure.core.annotation.Host;
import com.azure.core.annotation.HostParam;
import com.azure.core.annotation.PathParam;
import com.azure.core.annotation.Post;
import com.azure.core.annotation.QueryParam;
import com.azure.core.annotation.ReturnType;
import com.azure.core.annotation.ServiceInterface;
import com.azure.core.annotation.ServiceMethod;
import com.azure.core.annotation.UnexpectedResponseExceptionType;
import com.azure.core.http.rest.PagedFlux;
import com.azure.core.http.rest.PagedIterable;
import com.azure.core.http.rest.PagedResponse;
import com.azure.core.http.rest.PagedResponseBase;
import com.azure.core.http.rest.Response;
import com.azure.core.http.rest.RestProxy;
import com.azure.core.management.exception.ManagementException;
import com.azure.core.util.Context;
import com.azure.core.util.FluxUtil;
import com.azure.resourcemanager.security.fluent.TasksClient;
import com.azure.resourcemanager.security.fluent.models.SecurityTaskInner;
import com.azure.resourcemanager.security.models.SecurityTaskList;
import com.azure.resourcemanager.security.models.TaskUpdateActionType;
import reactor.core.publisher.Mono;
/**
* An instance of this class provides access to all the operations defined in TasksClient.
*/
public final class TasksClientImpl implements TasksClient {
/**
* The proxy service used to perform REST calls.
*/
private final TasksService service;
/**
* The service client containing this operation class.
*/
private final SecurityCenterImpl client;
/**
* Initializes an instance of TasksClientImpl.
*
* @param client the instance of the service client containing this operation class.
*/
TasksClientImpl(SecurityCenterImpl client) {
this.service = RestProxy.create(TasksService.class, client.getHttpPipeline(), client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for SecurityCenterTasks to be used by the proxy service to perform REST
* calls.
*/
@Host("{$host}")
@ServiceInterface(name = "SecurityCenterTasks")
public interface TasksService {
@Headers({ "Content-Type: application/json" })
@Get("/subscriptions/{subscriptionId}/providers/Microsoft.Security/tasks")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> list(@HostParam("$host") String endpoint,
@QueryParam("api-version") String apiVersion, @PathParam("subscriptionId") String subscriptionId,
@QueryParam("$filter") String filter, @HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Get("/subscriptions/{subscriptionId}/providers/Microsoft.Security/locations/{ascLocation}/tasks")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> listByHomeRegion(@HostParam("$host") String endpoint,
@QueryParam("api-version") String apiVersion, @PathParam("subscriptionId") String subscriptionId,
@PathParam("ascLocation") String ascLocation, @QueryParam("$filter") String filter,
@HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Get("/subscriptions/{subscriptionId}/providers/Microsoft.Security/locations/{ascLocation}/tasks/{taskName}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> getSubscriptionLevelTask(@HostParam("$host") String endpoint,
@QueryParam("api-version") String apiVersion, @PathParam("subscriptionId") String subscriptionId,
@PathParam("ascLocation") String ascLocation, @PathParam("taskName") String taskName,
@HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Post("/subscriptions/{subscriptionId}/providers/Microsoft.Security/locations/{ascLocation}/tasks/{taskName}/{taskUpdateActionType}")
@ExpectedResponses({ 204 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> updateSubscriptionLevelTaskState(@HostParam("$host") String endpoint,
@QueryParam("api-version") String apiVersion, @PathParam("subscriptionId") String subscriptionId,
@PathParam("ascLocation") String ascLocation, @PathParam("taskName") String taskName,
@PathParam("taskUpdateActionType") TaskUpdateActionType taskUpdateActionType,
@HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Get("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/locations/{ascLocation}/tasks")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> listByResourceGroup(@HostParam("$host") String endpoint,
@QueryParam("api-version") String apiVersion, @PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName, @PathParam("ascLocation") String ascLocation,
@QueryParam("$filter") String filter, @HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Get("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/locations/{ascLocation}/tasks/{taskName}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> getResourceGroupLevelTask(@HostParam("$host") String endpoint,
@QueryParam("api-version") String apiVersion, @PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName, @PathParam("ascLocation") String ascLocation,
@PathParam("taskName") String taskName, @HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Post("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/locations/{ascLocation}/tasks/{taskName}/{taskUpdateActionType}")
@ExpectedResponses({ 204 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> updateResourceGroupLevelTaskState(@HostParam("$host") String endpoint,
@QueryParam("api-version") String apiVersion, @PathParam("subscriptionId") String subscriptionId,
@PathParam("resourceGroupName") String resourceGroupName, @PathParam("ascLocation") String ascLocation,
@PathParam("taskName") String taskName,
@PathParam("taskUpdateActionType") TaskUpdateActionType taskUpdateActionType,
@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);
@Headers({ "Content-Type: application/json" })
@Get("{nextLink}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> listByHomeRegionNext(
@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> listByResourceGroupNext(
@PathParam(value = "nextLink", encoded = true) String nextLink, @HostParam("$host") String endpoint,
@HeaderParam("Accept") String accept, Context context);
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param filter OData filter. Optional.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return list of security task recommendations along with {@link PagedResponse} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listSinglePageAsync(String filter) {
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 apiVersion = "2015-06-01-preview";
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.list(this.client.getEndpoint(), apiVersion, this.client.getSubscriptionId(),
filter, 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()));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param filter OData filter. Optional.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return list of security task recommendations along with {@link PagedResponse} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listSinglePageAsync(String filter, Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono.error(new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
final String apiVersion = "2015-06-01-preview";
final String accept = "application/json";
context = this.client.mergeContext(context);
return service
.list(this.client.getEndpoint(), apiVersion, this.client.getSubscriptionId(), filter, accept, context)
.map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
res.getValue().value(), res.getValue().nextLink(), null));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param filter OData filter. Optional.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return list of security task recommendations as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listAsync(String filter) {
return new PagedFlux<>(() -> listSinglePageAsync(filter), nextLink -> listNextSinglePageAsync(nextLink));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return list of security task recommendations as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listAsync() {
final String filter = null;
return new PagedFlux<>(() -> listSinglePageAsync(filter), nextLink -> listNextSinglePageAsync(nextLink));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param filter OData filter. Optional.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return list of security task recommendations as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listAsync(String filter, Context context) {
return new PagedFlux<>(() -> listSinglePageAsync(filter, context),
nextLink -> listNextSinglePageAsync(nextLink, context));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return list of security task recommendations as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable list() {
final String filter = null;
return new PagedIterable<>(listAsync(filter));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param filter OData filter. Optional.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return list of security task recommendations as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable list(String filter, Context context) {
return new PagedIterable<>(listAsync(filter, context));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param filter OData filter. Optional.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return list of security task recommendations along with {@link PagedResponse} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listByHomeRegionSinglePageAsync(String ascLocation, String filter) {
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 (ascLocation == null) {
return Mono.error(new IllegalArgumentException("Parameter ascLocation is required and cannot be null."));
}
final String apiVersion = "2015-06-01-preview";
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.listByHomeRegion(this.client.getEndpoint(), apiVersion,
this.client.getSubscriptionId(), ascLocation, filter, 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()));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param filter OData filter. Optional.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return list of security task recommendations along with {@link PagedResponse} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listByHomeRegionSinglePageAsync(String ascLocation, String filter,
Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono.error(new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
if (ascLocation == null) {
return Mono.error(new IllegalArgumentException("Parameter ascLocation is required and cannot be null."));
}
final String apiVersion = "2015-06-01-preview";
final String accept = "application/json";
context = this.client.mergeContext(context);
return service
.listByHomeRegion(this.client.getEndpoint(), apiVersion, this.client.getSubscriptionId(), ascLocation,
filter, accept, context)
.map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
res.getValue().value(), res.getValue().nextLink(), null));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param filter OData filter. Optional.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return list of security task recommendations as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listByHomeRegionAsync(String ascLocation, String filter) {
return new PagedFlux<>(() -> listByHomeRegionSinglePageAsync(ascLocation, filter),
nextLink -> listByHomeRegionNextSinglePageAsync(nextLink));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return list of security task recommendations as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listByHomeRegionAsync(String ascLocation) {
final String filter = null;
return new PagedFlux<>(() -> listByHomeRegionSinglePageAsync(ascLocation, filter),
nextLink -> listByHomeRegionNextSinglePageAsync(nextLink));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param filter OData filter. Optional.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return list of security task recommendations as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listByHomeRegionAsync(String ascLocation, String filter, Context context) {
return new PagedFlux<>(() -> listByHomeRegionSinglePageAsync(ascLocation, filter, context),
nextLink -> listByHomeRegionNextSinglePageAsync(nextLink, context));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return list of security task recommendations as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable listByHomeRegion(String ascLocation) {
final String filter = null;
return new PagedIterable<>(listByHomeRegionAsync(ascLocation, filter));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param filter OData filter. Optional.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return list of security task recommendations as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable listByHomeRegion(String ascLocation, String filter, Context context) {
return new PagedIterable<>(listByHomeRegionAsync(ascLocation, filter, context));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param taskName Name of the task object, will be a GUID.
* @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 security task that we recommend to do in order to strengthen security along with {@link Response} on
* successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getSubscriptionLevelTaskWithResponseAsync(String ascLocation,
String taskName) {
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 (ascLocation == null) {
return Mono.error(new IllegalArgumentException("Parameter ascLocation is required and cannot be null."));
}
if (taskName == null) {
return Mono.error(new IllegalArgumentException("Parameter taskName is required and cannot be null."));
}
final String apiVersion = "2015-06-01-preview";
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.getSubscriptionLevelTask(this.client.getEndpoint(), apiVersion,
this.client.getSubscriptionId(), ascLocation, taskName, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param taskName Name of the task object, will be a GUID.
* @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 security task that we recommend to do in order to strengthen security along with {@link Response} on
* successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getSubscriptionLevelTaskWithResponseAsync(String ascLocation,
String taskName, 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 (ascLocation == null) {
return Mono.error(new IllegalArgumentException("Parameter ascLocation is required and cannot be null."));
}
if (taskName == null) {
return Mono.error(new IllegalArgumentException("Parameter taskName is required and cannot be null."));
}
final String apiVersion = "2015-06-01-preview";
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.getSubscriptionLevelTask(this.client.getEndpoint(), apiVersion, this.client.getSubscriptionId(),
ascLocation, taskName, accept, context);
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param taskName Name of the task object, will be a GUID.
* @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 security task that we recommend to do in order to strengthen security on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono getSubscriptionLevelTaskAsync(String ascLocation, String taskName) {
return getSubscriptionLevelTaskWithResponseAsync(ascLocation, taskName)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param taskName Name of the task object, will be a GUID.
* @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 security task that we recommend to do in order to strengthen security along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response getSubscriptionLevelTaskWithResponse(String ascLocation, String taskName,
Context context) {
return getSubscriptionLevelTaskWithResponseAsync(ascLocation, taskName, context).block();
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param taskName Name of the task object, will be a GUID.
* @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 security task that we recommend to do in order to strengthen security.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public SecurityTaskInner getSubscriptionLevelTask(String ascLocation, String taskName) {
return getSubscriptionLevelTaskWithResponse(ascLocation, taskName, Context.NONE).getValue();
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param taskName Name of the task object, will be a GUID.
* @param taskUpdateActionType Type of the action to do on the task.
* @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> updateSubscriptionLevelTaskStateWithResponseAsync(String ascLocation, String taskName,
TaskUpdateActionType taskUpdateActionType) {
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 (ascLocation == null) {
return Mono.error(new IllegalArgumentException("Parameter ascLocation is required and cannot be null."));
}
if (taskName == null) {
return Mono.error(new IllegalArgumentException("Parameter taskName is required and cannot be null."));
}
if (taskUpdateActionType == null) {
return Mono
.error(new IllegalArgumentException("Parameter taskUpdateActionType is required and cannot be null."));
}
final String apiVersion = "2015-06-01-preview";
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.updateSubscriptionLevelTaskState(this.client.getEndpoint(), apiVersion,
this.client.getSubscriptionId(), ascLocation, taskName, taskUpdateActionType, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param taskName Name of the task object, will be a GUID.
* @param taskUpdateActionType Type of the action to do on the task.
* @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> updateSubscriptionLevelTaskStateWithResponseAsync(String ascLocation, String taskName,
TaskUpdateActionType taskUpdateActionType, 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 (ascLocation == null) {
return Mono.error(new IllegalArgumentException("Parameter ascLocation is required and cannot be null."));
}
if (taskName == null) {
return Mono.error(new IllegalArgumentException("Parameter taskName is required and cannot be null."));
}
if (taskUpdateActionType == null) {
return Mono
.error(new IllegalArgumentException("Parameter taskUpdateActionType is required and cannot be null."));
}
final String apiVersion = "2015-06-01-preview";
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.updateSubscriptionLevelTaskState(this.client.getEndpoint(), apiVersion,
this.client.getSubscriptionId(), ascLocation, taskName, taskUpdateActionType, accept, context);
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param taskName Name of the task object, will be a GUID.
* @param taskUpdateActionType Type of the action to do on the task.
* @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 updateSubscriptionLevelTaskStateAsync(String ascLocation, String taskName,
TaskUpdateActionType taskUpdateActionType) {
return updateSubscriptionLevelTaskStateWithResponseAsync(ascLocation, taskName, taskUpdateActionType)
.flatMap(ignored -> Mono.empty());
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param taskName Name of the task object, will be a GUID.
* @param taskUpdateActionType Type of the action to do on the task.
* @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}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response updateSubscriptionLevelTaskStateWithResponse(String ascLocation, String taskName,
TaskUpdateActionType taskUpdateActionType, Context context) {
return updateSubscriptionLevelTaskStateWithResponseAsync(ascLocation, taskName, taskUpdateActionType, context)
.block();
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param taskName Name of the task object, will be a GUID.
* @param taskUpdateActionType Type of the action to do on the task.
* @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 updateSubscriptionLevelTaskState(String ascLocation, String taskName,
TaskUpdateActionType taskUpdateActionType) {
updateSubscriptionLevelTaskStateWithResponse(ascLocation, taskName, taskUpdateActionType, Context.NONE);
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param filter OData filter. Optional.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return list of security task recommendations along with {@link PagedResponse} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listByResourceGroupSinglePageAsync(String resourceGroupName,
String ascLocation, String filter) {
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 (ascLocation == null) {
return Mono.error(new IllegalArgumentException("Parameter ascLocation is required and cannot be null."));
}
final String apiVersion = "2015-06-01-preview";
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.listByResourceGroup(this.client.getEndpoint(), apiVersion,
this.client.getSubscriptionId(), resourceGroupName, ascLocation, filter, 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()));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param filter OData filter. Optional.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return list of security task recommendations along with {@link PagedResponse} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listByResourceGroupSinglePageAsync(String resourceGroupName,
String ascLocation, String filter, Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (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 (ascLocation == null) {
return Mono.error(new IllegalArgumentException("Parameter ascLocation is required and cannot be null."));
}
final String apiVersion = "2015-06-01-preview";
final String accept = "application/json";
context = this.client.mergeContext(context);
return service
.listByResourceGroup(this.client.getEndpoint(), apiVersion, this.client.getSubscriptionId(),
resourceGroupName, ascLocation, filter, accept, context)
.map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
res.getValue().value(), res.getValue().nextLink(), null));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param filter OData filter. Optional.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return list of security task recommendations as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listByResourceGroupAsync(String resourceGroupName, String ascLocation,
String filter) {
return new PagedFlux<>(() -> listByResourceGroupSinglePageAsync(resourceGroupName, ascLocation, filter),
nextLink -> listByResourceGroupNextSinglePageAsync(nextLink));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return list of security task recommendations as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listByResourceGroupAsync(String resourceGroupName, String ascLocation) {
final String filter = null;
return new PagedFlux<>(() -> listByResourceGroupSinglePageAsync(resourceGroupName, ascLocation, filter),
nextLink -> listByResourceGroupNextSinglePageAsync(nextLink));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param filter OData filter. Optional.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return list of security task recommendations as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listByResourceGroupAsync(String resourceGroupName, String ascLocation,
String filter, Context context) {
return new PagedFlux<>(
() -> listByResourceGroupSinglePageAsync(resourceGroupName, ascLocation, filter, context),
nextLink -> listByResourceGroupNextSinglePageAsync(nextLink, context));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return list of security task recommendations as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable listByResourceGroup(String resourceGroupName, String ascLocation) {
final String filter = null;
return new PagedIterable<>(listByResourceGroupAsync(resourceGroupName, ascLocation, filter));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param filter OData filter. Optional.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return list of security task recommendations as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable listByResourceGroup(String resourceGroupName, String ascLocation,
String filter, Context context) {
return new PagedIterable<>(listByResourceGroupAsync(resourceGroupName, ascLocation, filter, context));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param taskName Name of the task object, will be a GUID.
* @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 security task that we recommend to do in order to strengthen security along with {@link Response} on
* successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getResourceGroupLevelTaskWithResponseAsync(String resourceGroupName,
String ascLocation, String taskName) {
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 (ascLocation == null) {
return Mono.error(new IllegalArgumentException("Parameter ascLocation is required and cannot be null."));
}
if (taskName == null) {
return Mono.error(new IllegalArgumentException("Parameter taskName is required and cannot be null."));
}
final String apiVersion = "2015-06-01-preview";
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.getResourceGroupLevelTask(this.client.getEndpoint(), apiVersion,
this.client.getSubscriptionId(), resourceGroupName, ascLocation, taskName, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param taskName Name of the task object, will be a GUID.
* @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 security task that we recommend to do in order to strengthen security along with {@link Response} on
* successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getResourceGroupLevelTaskWithResponseAsync(String resourceGroupName,
String ascLocation, String taskName, 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 (ascLocation == null) {
return Mono.error(new IllegalArgumentException("Parameter ascLocation is required and cannot be null."));
}
if (taskName == null) {
return Mono.error(new IllegalArgumentException("Parameter taskName is required and cannot be null."));
}
final String apiVersion = "2015-06-01-preview";
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.getResourceGroupLevelTask(this.client.getEndpoint(), apiVersion, this.client.getSubscriptionId(),
resourceGroupName, ascLocation, taskName, accept, context);
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param taskName Name of the task object, will be a GUID.
* @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 security task that we recommend to do in order to strengthen security on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono getResourceGroupLevelTaskAsync(String resourceGroupName, String ascLocation,
String taskName) {
return getResourceGroupLevelTaskWithResponseAsync(resourceGroupName, ascLocation, taskName)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param taskName Name of the task object, will be a GUID.
* @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 security task that we recommend to do in order to strengthen security along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response getResourceGroupLevelTaskWithResponse(String resourceGroupName,
String ascLocation, String taskName, Context context) {
return getResourceGroupLevelTaskWithResponseAsync(resourceGroupName, ascLocation, taskName, context).block();
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param taskName Name of the task object, will be a GUID.
* @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 security task that we recommend to do in order to strengthen security.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public SecurityTaskInner getResourceGroupLevelTask(String resourceGroupName, String ascLocation, String taskName) {
return getResourceGroupLevelTaskWithResponse(resourceGroupName, ascLocation, taskName, Context.NONE).getValue();
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param taskName Name of the task object, will be a GUID.
* @param taskUpdateActionType Type of the action to do on the task.
* @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> updateResourceGroupLevelTaskStateWithResponseAsync(String resourceGroupName,
String ascLocation, String taskName, TaskUpdateActionType taskUpdateActionType) {
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 (ascLocation == null) {
return Mono.error(new IllegalArgumentException("Parameter ascLocation is required and cannot be null."));
}
if (taskName == null) {
return Mono.error(new IllegalArgumentException("Parameter taskName is required and cannot be null."));
}
if (taskUpdateActionType == null) {
return Mono
.error(new IllegalArgumentException("Parameter taskUpdateActionType is required and cannot be null."));
}
final String apiVersion = "2015-06-01-preview";
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.updateResourceGroupLevelTaskState(this.client.getEndpoint(), apiVersion,
this.client.getSubscriptionId(), resourceGroupName, ascLocation, taskName, taskUpdateActionType, accept,
context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param taskName Name of the task object, will be a GUID.
* @param taskUpdateActionType Type of the action to do on the task.
* @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> updateResourceGroupLevelTaskStateWithResponseAsync(String resourceGroupName,
String ascLocation, String taskName, TaskUpdateActionType taskUpdateActionType, 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 (ascLocation == null) {
return Mono.error(new IllegalArgumentException("Parameter ascLocation is required and cannot be null."));
}
if (taskName == null) {
return Mono.error(new IllegalArgumentException("Parameter taskName is required and cannot be null."));
}
if (taskUpdateActionType == null) {
return Mono
.error(new IllegalArgumentException("Parameter taskUpdateActionType is required and cannot be null."));
}
final String apiVersion = "2015-06-01-preview";
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.updateResourceGroupLevelTaskState(this.client.getEndpoint(), apiVersion,
this.client.getSubscriptionId(), resourceGroupName, ascLocation, taskName, taskUpdateActionType, accept,
context);
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param taskName Name of the task object, will be a GUID.
* @param taskUpdateActionType Type of the action to do on the task.
* @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 updateResourceGroupLevelTaskStateAsync(String resourceGroupName, String ascLocation,
String taskName, TaskUpdateActionType taskUpdateActionType) {
return updateResourceGroupLevelTaskStateWithResponseAsync(resourceGroupName, ascLocation, taskName,
taskUpdateActionType).flatMap(ignored -> Mono.empty());
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param taskName Name of the task object, will be a GUID.
* @param taskUpdateActionType Type of the action to do on the task.
* @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}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response updateResourceGroupLevelTaskStateWithResponse(String resourceGroupName, String ascLocation,
String taskName, TaskUpdateActionType taskUpdateActionType, Context context) {
return updateResourceGroupLevelTaskStateWithResponseAsync(resourceGroupName, ascLocation, taskName,
taskUpdateActionType, context).block();
}
/**
* Recommended tasks that will help improve the security of the subscription proactively.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param taskName Name of the task object, will be a GUID.
* @param taskUpdateActionType Type of the action to do on the task.
* @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 updateResourceGroupLevelTaskState(String resourceGroupName, String ascLocation, String taskName,
TaskUpdateActionType taskUpdateActionType) {
updateResourceGroupLevelTaskStateWithResponse(resourceGroupName, ascLocation, taskName, taskUpdateActionType,
Context.NONE);
}
/**
* 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 list of security task recommendations 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 list of security task recommendations 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));
}
/**
* 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 list of security task recommendations along with {@link PagedResponse} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listByHomeRegionNextSinglePageAsync(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.listByHomeRegionNext(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 list of security task recommendations along with {@link PagedResponse} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listByHomeRegionNextSinglePageAsync(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.listByHomeRegionNext(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 list of security task recommendations 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 list of security task recommendations 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));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy