com.azure.resourcemanager.hdinsight.models.ScriptExecutionHistories 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 ScriptExecutionHistories.
*/
public interface ScriptExecutionHistories {
/**
* Lists all scripts' execution history 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 list script execution history response as paginated response with {@link PagedIterable}.
*/
PagedIterable listByCluster(String resourceGroupName, String clusterName);
/**
* Lists all scripts' execution history 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 list script execution history response as paginated response with {@link PagedIterable}.
*/
PagedIterable listByCluster(String resourceGroupName, String clusterName,
Context context);
/**
* Promotes the specified ad-hoc script execution to a persisted script.
*
* @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 {@link Response}.
*/
Response promoteWithResponse(String resourceGroupName, String clusterName, String scriptExecutionId,
Context context);
/**
* Promotes the specified ad-hoc script execution to a persisted script.
*
* @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.
*/
void promote(String resourceGroupName, String clusterName, String scriptExecutionId);
}