com.azure.resourcemanager.security.models.Alerts 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.models;
import com.azure.core.http.rest.PagedIterable;
import com.azure.core.http.rest.Response;
import com.azure.core.util.Context;
/**
* Resource collection API of Alerts.
*/
public interface Alerts {
/**
* List all the alerts that are associated with the subscription.
*
* @throws com.azure.core.management.exception.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 alerts as paginated response with {@link PagedIterable}.
*/
PagedIterable list();
/**
* List all the alerts that are associated with the subscription.
*
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 alerts as paginated response with {@link PagedIterable}.
*/
PagedIterable list(Context context);
/**
* List all the alerts that are associated with the resource group.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 alerts as paginated response with {@link PagedIterable}.
*/
PagedIterable listByResourceGroup(String resourceGroupName);
/**
* List all the alerts that are associated with the resource group.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 alerts as paginated response with {@link PagedIterable}.
*/
PagedIterable listByResourceGroup(String resourceGroupName, Context context);
/**
* List all the alerts that are associated with the subscription that are stored in a specific location.
*
* @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 com.azure.core.management.exception.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 alerts as paginated response with {@link PagedIterable}.
*/
PagedIterable listSubscriptionLevelByRegion(String ascLocation);
/**
* List all the alerts that are associated with the subscription that are stored in a specific location.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 alerts as paginated response with {@link PagedIterable}.
*/
PagedIterable listSubscriptionLevelByRegion(String ascLocation, Context context);
/**
* List all the alerts that are associated with the resource group that are stored in a specific location.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 alerts as paginated response with {@link PagedIterable}.
*/
PagedIterable listResourceGroupLevelByRegion(String ascLocation, String resourceGroupName);
/**
* List all the alerts that are associated with the resource group that are stored in a specific location.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 alerts as paginated response with {@link PagedIterable}.
*/
PagedIterable listResourceGroupLevelByRegion(String ascLocation, String resourceGroupName, Context context);
/**
* Get an alert that is associated with a subscription.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param alertName Name of the alert object.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return an alert that is associated with a subscription along with {@link Response}.
*/
Response getSubscriptionLevelWithResponse(String ascLocation, String alertName, Context context);
/**
* Get an alert that is associated with a subscription.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param alertName Name of the alert object.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return an alert that is associated with a subscription.
*/
Alert getSubscriptionLevel(String ascLocation, String alertName);
/**
* Get an alert that is associated a resource group or a resource in a resource group.
*
* @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 alertName Name of the alert object.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return an alert that is associated a resource group or a resource in a resource group along with
* {@link Response}.
*/
Response getResourceGroupLevelWithResponse(String resourceGroupName, String ascLocation, String alertName,
Context context);
/**
* Get an alert that is associated a resource group or a resource in a resource group.
*
* @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 alertName Name of the alert object.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return an alert that is associated a resource group or a resource in a resource group.
*/
Alert getResourceGroupLevel(String resourceGroupName, String ascLocation, String alertName);
/**
* Update the alert's state.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param alertName Name of the alert object.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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}.
*/
Response updateSubscriptionLevelStateToDismissWithResponse(String ascLocation, String alertName,
Context context);
/**
* Update the alert's state.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param alertName Name of the alert object.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
void updateSubscriptionLevelStateToDismiss(String ascLocation, String alertName);
/**
* Update the alert's state.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param alertName Name of the alert object.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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}.
*/
Response updateSubscriptionLevelStateToResolveWithResponse(String ascLocation, String alertName,
Context context);
/**
* Update the alert's state.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param alertName Name of the alert object.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
void updateSubscriptionLevelStateToResolve(String ascLocation, String alertName);
/**
* Update the alert's state.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param alertName Name of the alert object.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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}.
*/
Response updateSubscriptionLevelStateToActivateWithResponse(String ascLocation, String alertName,
Context context);
/**
* Update the alert's state.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param alertName Name of the alert object.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
void updateSubscriptionLevelStateToActivate(String ascLocation, String alertName);
/**
* Update the alert's state.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param alertName Name of the alert object.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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}.
*/
Response updateSubscriptionLevelStateToInProgressWithResponse(String ascLocation, String alertName,
Context context);
/**
* Update the alert's state.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param alertName Name of the alert object.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
void updateSubscriptionLevelStateToInProgress(String ascLocation, String alertName);
/**
* Update the alert's state.
*
* @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 alertName Name of the alert object.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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}.
*/
Response updateResourceGroupLevelStateToResolveWithResponse(String resourceGroupName, String ascLocation,
String alertName, Context context);
/**
* Update the alert's state.
*
* @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 alertName Name of the alert object.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
void updateResourceGroupLevelStateToResolve(String resourceGroupName, String ascLocation, String alertName);
/**
* Update the alert's state.
*
* @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 alertName Name of the alert object.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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}.
*/
Response updateResourceGroupLevelStateToDismissWithResponse(String resourceGroupName, String ascLocation,
String alertName, Context context);
/**
* Update the alert's state.
*
* @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 alertName Name of the alert object.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
void updateResourceGroupLevelStateToDismiss(String resourceGroupName, String ascLocation, String alertName);
/**
* Update the alert's state.
*
* @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 alertName Name of the alert object.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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}.
*/
Response updateResourceGroupLevelStateToActivateWithResponse(String resourceGroupName, String ascLocation,
String alertName, Context context);
/**
* Update the alert's state.
*
* @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 alertName Name of the alert object.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
void updateResourceGroupLevelStateToActivate(String resourceGroupName, String ascLocation, String alertName);
/**
* Update the alert's state.
*
* @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 alertName Name of the alert object.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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}.
*/
Response updateResourceGroupLevelStateToInProgressWithResponse(String resourceGroupName, String ascLocation,
String alertName, Context context);
/**
* Update the alert's state.
*
* @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 alertName Name of the alert object.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
void updateResourceGroupLevelStateToInProgress(String resourceGroupName, String ascLocation, String alertName);
/**
* Simulate security alerts.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param alertSimulatorRequestBody Alert Simulator Request Properties.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
void simulate(String ascLocation, AlertSimulatorRequestBody alertSimulatorRequestBody);
/**
* Simulate security alerts.
*
* @param ascLocation The location where ASC stores the data of the subscription. can be retrieved from Get
* locations.
* @param alertSimulatorRequestBody Alert Simulator Request Properties.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
void simulate(String ascLocation, AlertSimulatorRequestBody alertSimulatorRequestBody, Context context);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy