com.azure.resourcemanager.securityinsights.models.Entities Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-securityinsights Show documentation
Show all versions of azure-resourcemanager-securityinsights Show documentation
This package contains Microsoft Azure SDK for SecurityInsights Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. API spec for Microsoft.SecurityInsights (Azure Security Insights) resource provider. Package tag package-preview-2022-09.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.securityinsights.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 Entities.
*/
public interface Entities {
/**
* Gets all entities.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @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 all entities as paginated response with {@link PagedIterable}.
*/
PagedIterable list(String resourceGroupName, String workspaceName);
/**
* Gets all entities.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @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 all entities as paginated response with {@link PagedIterable}.
*/
PagedIterable list(String resourceGroupName, String workspaceName, Context context);
/**
* Gets an entity.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param entityId entity ID.
* @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 entity along with {@link Response}.
*/
Response getWithResponse(String resourceGroupName, String workspaceName, String entityId, Context context);
/**
* Gets an entity.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param entityId entity ID.
* @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 entity.
*/
Entity get(String resourceGroupName, String workspaceName, String entityId);
/**
* Expands an entity.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param entityId entity ID.
* @param parameters The parameters required to execute an expand operation on the given entity.
* @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 entity expansion result operation response along with {@link Response}.
*/
Response expandWithResponse(String resourceGroupName, String workspaceName, String entityId,
EntityExpandParameters parameters, Context context);
/**
* Expands an entity.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param entityId entity ID.
* @param parameters The parameters required to execute an expand operation on the given entity.
* @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 entity expansion result operation response.
*/
EntityExpandResponse expand(String resourceGroupName, String workspaceName, String entityId,
EntityExpandParameters parameters);
/**
* Get Insights and Activities for an entity.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param entityId entity ID.
* @param kind The Kind parameter for queries.
* @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 insights and Activities for an entity along with {@link Response}.
*/
Response queriesWithResponse(String resourceGroupName, String workspaceName, String entityId,
EntityItemQueryKind kind, Context context);
/**
* Get Insights and Activities for an entity.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param entityId entity ID.
* @param kind The Kind parameter for queries.
* @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 insights and Activities for an entity.
*/
GetQueriesResponse queries(String resourceGroupName, String workspaceName, String entityId,
EntityItemQueryKind kind);
/**
* Execute Insights for an entity.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param entityId entity ID.
* @param parameters The parameters required to execute insights on the given entity.
* @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 Get Insights result operation response along with {@link Response}.
*/
Response getInsightsWithResponse(String resourceGroupName, String workspaceName,
String entityId, EntityGetInsightsParameters parameters, Context context);
/**
* Execute Insights for an entity.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param entityId entity ID.
* @param parameters The parameters required to execute insights on the given entity.
* @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 Get Insights result operation response.
*/
EntityGetInsightsResponse getInsights(String resourceGroupName, String workspaceName, String entityId,
EntityGetInsightsParameters parameters);
}