com.azure.resourcemanager.hdinsight.models.ScriptActions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-hdinsight Show documentation
Show all versions of azure-resourcemanager-hdinsight Show documentation
This package contains Microsoft Azure SDK for HDInsight Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. HDInsight Management Client. Package tag package-2024-08-preview.
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.hdinsight.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 ScriptActions.
*/
public interface ScriptActions {
/**
* Deletes a specified persisted script action of the cluster.
*
* @param resourceGroupName The name of the resource group.
* @param clusterName The name of the cluster.
* @param scriptName The name of the script.
* @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}.
*/
Response deleteWithResponse(String resourceGroupName, String clusterName, String scriptName, Context context);
/**
* Deletes a specified persisted script action of the cluster.
*
* @param resourceGroupName The name of the resource group.
* @param clusterName The name of the cluster.
* @param scriptName The name of the script.
* @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.
*/
void delete(String resourceGroupName, String clusterName, String scriptName);
/**
* Lists all the persisted script actions for the specified cluster.
*
* @param resourceGroupName The name of the resource group.
* @param clusterName The name of the cluster.
* @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 persisted script action for the cluster as paginated response with {@link PagedIterable}.
*/
PagedIterable listByCluster(String resourceGroupName, String clusterName);
/**
* Lists all the persisted script actions for the specified cluster.
*
* @param resourceGroupName The name of the resource group.
* @param clusterName The name of the cluster.
* @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 persisted script action for the cluster as paginated response with {@link PagedIterable}.
*/
PagedIterable listByCluster(String resourceGroupName, String clusterName,
Context context);
/**
* Gets the script execution detail for the given script execution ID.
*
* @param resourceGroupName The name of the resource group.
* @param clusterName The name of the cluster.
* @param scriptExecutionId The script execution 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 the script execution detail for the given script execution ID along with {@link Response}.
*/
Response getExecutionDetailWithResponse(String resourceGroupName, String clusterName,
String scriptExecutionId, Context context);
/**
* Gets the script execution detail for the given script execution ID.
*
* @param resourceGroupName The name of the resource group.
* @param clusterName The name of the cluster.
* @param scriptExecutionId The script execution 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 the script execution detail for the given script execution ID.
*/
RuntimeScriptActionDetail getExecutionDetail(String resourceGroupName, String clusterName,
String scriptExecutionId);
/**
* Gets the async operation status of execution operation.
*
* @param resourceGroupName The name of the resource group.
* @param clusterName The name of the cluster.
* @param operationId The long running operation 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 the async operation status of execution operation along with {@link Response}.
*/
Response getExecutionAsyncOperationStatusWithResponse(String resourceGroupName,
String clusterName, String operationId, Context context);
/**
* Gets the async operation status of execution operation.
*
* @param resourceGroupName The name of the resource group.
* @param clusterName The name of the cluster.
* @param operationId The long running operation 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 the async operation status of execution operation.
*/
AsyncOperationResult getExecutionAsyncOperationStatus(String resourceGroupName, String clusterName,
String operationId);
}