Summaries Interface

public interface Summaries

Resource collection API of Summaries.

Method Summary

Modifier and Type Method and Description
abstract SummaryResource get(String resourceGroupName, String workspaceName, String firmwareId, SummaryType summaryType)

Get an analysis result summary of a firmware by name.

abstract Response<SummaryResource> getWithResponse(String resourceGroupName, String workspaceName, String firmwareId, SummaryType summaryType, Context context)

Get an analysis result summary of a firmware by name.

abstract PagedIterable<SummaryResource> listByFirmware(String resourceGroupName, String workspaceName, String firmwareId)

Lists analysis result summary names of a firmware.

abstract PagedIterable<SummaryResource> listByFirmware(String resourceGroupName, String workspaceName, String firmwareId, Context context)

Lists analysis result summary names of a firmware.

Method Details

get

public abstract SummaryResource get(String resourceGroupName, String workspaceName, String firmwareId, SummaryType summaryType)

Get an analysis result summary of a firmware by name.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
workspaceName - The name of the firmware analysis workspace.
firmwareId - The id of the firmware.
summaryType - The Firmware analysis summary name describing the type of summary.

Returns:

an analysis result summary of a firmware by name.

getWithResponse

public abstract Response<SummaryResource> getWithResponse(String resourceGroupName, String workspaceName, String firmwareId, SummaryType summaryType, Context context)

Get an analysis result summary of a firmware by name.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
workspaceName - The name of the firmware analysis workspace.
firmwareId - The id of the firmware.
summaryType - The Firmware analysis summary name describing the type of summary.
context - The context to associate with this operation.

Returns:

an analysis result summary of a firmware by name along with Response<T>.

listByFirmware

public abstract PagedIterable<SummaryResource> listByFirmware(String resourceGroupName, String workspaceName, String firmwareId)

Lists analysis result summary names of a firmware. To fetch the full summary data, get that summary by name.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
workspaceName - The name of the firmware analysis workspace.
firmwareId - The id of the firmware.

Returns:

the response of a SummaryResource list operation as paginated response with PagedIterable<T>.

listByFirmware

public abstract PagedIterable<SummaryResource> listByFirmware(String resourceGroupName, String workspaceName, String firmwareId, Context context)

Lists analysis result summary names of a firmware. To fetch the full summary data, get that summary by name.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
workspaceName - The name of the firmware analysis workspace.
firmwareId - The id of the firmware.
context - The context to associate with this operation.

Returns:

the response of a SummaryResource list operation as paginated response with PagedIterable<T>.

Applies to