SecuritySolutions Interface

public interface SecuritySolutions

Resource collection API of SecuritySolutions.

Method Summary

Modifier and Type Method and Description
abstract SecuritySolution get(String resourceGroupName, String ascLocation, String securitySolutionName)

Gets a specific Security Solution.

abstract Response<SecuritySolution> getWithResponse(String resourceGroupName, String ascLocation, String securitySolutionName, Context context)

Gets a specific Security Solution.

abstract PagedIterable<SecuritySolution> list()

Gets a list of Security Solutions for the subscription.

abstract PagedIterable<SecuritySolution> list(Context context)

Gets a list of Security Solutions for the subscription.

Method Details

get

public abstract SecuritySolution get(String resourceGroupName, String ascLocation, String securitySolutionName)

Gets a specific Security Solution.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription. The name is case insensitive.
ascLocation - The location where ASC stores the data of the subscription. can be retrieved from Get locations.
securitySolutionName - Name of security solution.

Returns:

a specific Security Solution.

getWithResponse

public abstract Response getWithResponse(String resourceGroupName, String ascLocation, String securitySolutionName, Context context)

Gets a specific Security Solution.

Parameters:

resourceGroupName - The name of the resource group within the user's subscription. The name is case insensitive.
ascLocation - The location where ASC stores the data of the subscription. can be retrieved from Get locations.
securitySolutionName - Name of security solution.
context - The context to associate with this operation.

Returns:

a specific Security Solution along with Response<T>.

list

public abstract PagedIterable list()

Gets a list of Security Solutions for the subscription.

Returns:

a list of Security Solutions for the subscription as paginated response with PagedIterable<T>.

list

public abstract PagedIterable list(Context context)

Gets a list of Security Solutions for the subscription.

Parameters:

context - The context to associate with this operation.

Returns:

a list of Security Solutions for the subscription as paginated response with PagedIterable<T>.

Applies to