Interface ActivityRuns
public interface ActivityRuns
Resource collection API of ActivityRuns.
-
Method Summary
Modifier and TypeMethodDescriptionqueryByPipelineRun
(String resourceGroupName, String factoryName, String runId, RunFilterParameters filterParameters) Query activity runs based on input filter conditions.com.azure.core.http.rest.Response<ActivityRunsQueryResponse>
queryByPipelineRunWithResponse
(String resourceGroupName, String factoryName, String runId, RunFilterParameters filterParameters, com.azure.core.util.Context context) Query activity runs based on input filter conditions.
-
Method Details
-
queryByPipelineRunWithResponse
com.azure.core.http.rest.Response<ActivityRunsQueryResponse> queryByPipelineRunWithResponse(String resourceGroupName, String factoryName, String runId, RunFilterParameters filterParameters, com.azure.core.util.Context context) Query activity runs based on input filter conditions.- Parameters:
resourceGroupName
- The resource group name.factoryName
- The factory name.runId
- The pipeline run identifier.filterParameters
- Parameters to filter the activity runs.context
- The context to associate with this operation.- Returns:
- a list activity runs along with
Response
. - Throws:
IllegalArgumentException
- thrown if parameters fail the validation.com.azure.core.management.exception.ManagementException
- thrown if the request is rejected by server.RuntimeException
- all other wrapped checked exceptions if the request fails to be sent.
-
queryByPipelineRun
ActivityRunsQueryResponse queryByPipelineRun(String resourceGroupName, String factoryName, String runId, RunFilterParameters filterParameters) Query activity runs based on input filter conditions.- Parameters:
resourceGroupName
- The resource group name.factoryName
- The factory name.runId
- The pipeline run identifier.filterParameters
- Parameters to filter the activity runs.- Returns:
- a list activity runs.
- Throws:
IllegalArgumentException
- thrown if parameters fail the validation.com.azure.core.management.exception.ManagementException
- thrown if the request is rejected by server.RuntimeException
- all other wrapped checked exceptions if the request fails to be sent.
-