
com.azure.resourcemanager.datafactory.fluent.PipelineRunsClient 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.datafactory.fluent;
import com.azure.core.annotation.ReturnType;
import com.azure.core.annotation.ServiceMethod;
import com.azure.core.http.rest.Response;
import com.azure.core.util.Context;
import com.azure.resourcemanager.datafactory.fluent.models.PipelineRunInner;
import com.azure.resourcemanager.datafactory.fluent.models.PipelineRunsQueryResponseInner;
import com.azure.resourcemanager.datafactory.models.RunFilterParameters;
/**
* An instance of this class provides access to all the operations defined in PipelineRunsClient.
*/
public interface PipelineRunsClient {
/**
* Query pipeline runs in the factory based on input filter conditions.
*
* @param resourceGroupName The resource group name.
* @param factoryName The factory name.
* @param filterParameters Parameters to filter the pipeline run.
* @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 a list pipeline runs along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Response queryByFactoryWithResponse(String resourceGroupName, String factoryName,
RunFilterParameters filterParameters, Context context);
/**
* Query pipeline runs in the factory based on input filter conditions.
*
* @param resourceGroupName The resource group name.
* @param factoryName The factory name.
* @param filterParameters Parameters to filter the pipeline run.
* @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 a list pipeline runs.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
PipelineRunsQueryResponseInner queryByFactory(String resourceGroupName, String factoryName,
RunFilterParameters filterParameters);
/**
* Get a pipeline run by its run ID.
*
* @param resourceGroupName The resource group name.
* @param factoryName The factory name.
* @param runId The pipeline run identifier.
* @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 a pipeline run by its run ID along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Response getWithResponse(String resourceGroupName, String factoryName, String runId,
Context context);
/**
* Get a pipeline run by its run ID.
*
* @param resourceGroupName The resource group name.
* @param factoryName The factory name.
* @param runId The pipeline run identifier.
* @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 a pipeline run by its run ID.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
PipelineRunInner get(String resourceGroupName, String factoryName, String runId);
/**
* Cancel a pipeline run by its run ID.
*
* @param resourceGroupName The resource group name.
* @param factoryName The factory name.
* @param runId The pipeline run identifier.
* @param isRecursive If true, cancel all the Child pipelines that are triggered by the current pipeline.
* @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}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Response cancelWithResponse(String resourceGroupName, String factoryName, String runId, Boolean isRecursive,
Context context);
/**
* Cancel a pipeline run by its run ID.
*
* @param resourceGroupName The resource group name.
* @param factoryName The factory name.
* @param runId The pipeline run identifier.
* @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.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
void cancel(String resourceGroupName, String factoryName, String runId);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy