com.azure.resourcemanager.automation.fluent.DscCompilationJobsClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-automation Show documentation
Show all versions of azure-resourcemanager-automation Show documentation
This package contains Microsoft Azure SDK for Automation Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Automation Client. Package tag package-2022-02-22.
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.automation.fluent;
import com.azure.core.annotation.ReturnType;
import com.azure.core.annotation.ServiceMethod;
import com.azure.core.http.rest.PagedIterable;
import com.azure.core.http.rest.Response;
import com.azure.core.management.polling.PollResult;
import com.azure.core.util.Context;
import com.azure.core.util.polling.SyncPoller;
import com.azure.resourcemanager.automation.fluent.models.DscCompilationJobInner;
import com.azure.resourcemanager.automation.fluent.models.JobStreamInner;
import com.azure.resourcemanager.automation.models.DscCompilationJobCreateParameters;
import java.util.UUID;
/**
* An instance of this class provides access to all the operations defined in DscCompilationJobsClient.
*/
public interface DscCompilationJobsClient {
/**
* Creates the Dsc compilation job of the configuration.
*
* @param resourceGroupName Name of an Azure Resource group.
* @param automationAccountName The name of the automation account.
* @param compilationJobName The DSC configuration Id.
* @param parameters The parameters supplied to the create compilation job 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 SyncPoller} for polling of definition of the Dsc Compilation job.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
SyncPoller, DscCompilationJobInner> beginCreate(String resourceGroupName,
String automationAccountName, String compilationJobName, DscCompilationJobCreateParameters parameters);
/**
* Creates the Dsc compilation job of the configuration.
*
* @param resourceGroupName Name of an Azure Resource group.
* @param automationAccountName The name of the automation account.
* @param compilationJobName The DSC configuration Id.
* @param parameters The parameters supplied to the create compilation job operation.
* @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 SyncPoller} for polling of definition of the Dsc Compilation job.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
SyncPoller, DscCompilationJobInner> beginCreate(String resourceGroupName,
String automationAccountName, String compilationJobName, DscCompilationJobCreateParameters parameters,
Context context);
/**
* Creates the Dsc compilation job of the configuration.
*
* @param resourceGroupName Name of an Azure Resource group.
* @param automationAccountName The name of the automation account.
* @param compilationJobName The DSC configuration Id.
* @param parameters The parameters supplied to the create compilation job 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 definition of the Dsc Compilation job.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
DscCompilationJobInner create(String resourceGroupName, String automationAccountName, String compilationJobName,
DscCompilationJobCreateParameters parameters);
/**
* Creates the Dsc compilation job of the configuration.
*
* @param resourceGroupName Name of an Azure Resource group.
* @param automationAccountName The name of the automation account.
* @param compilationJobName The DSC configuration Id.
* @param parameters The parameters supplied to the create compilation job operation.
* @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 definition of the Dsc Compilation job.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
DscCompilationJobInner create(String resourceGroupName, String automationAccountName, String compilationJobName,
DscCompilationJobCreateParameters parameters, Context context);
/**
* Retrieve the Dsc configuration compilation job identified by job id.
*
* @param resourceGroupName Name of an Azure Resource group.
* @param automationAccountName The name of the automation account.
* @param compilationJobName The DSC configuration 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 definition of the Dsc Compilation job along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Response getWithResponse(String resourceGroupName, String automationAccountName,
String compilationJobName, Context context);
/**
* Retrieve the Dsc configuration compilation job identified by job id.
*
* @param resourceGroupName Name of an Azure Resource group.
* @param automationAccountName The name of the automation account.
* @param compilationJobName The DSC configuration 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 definition of the Dsc Compilation job.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
DscCompilationJobInner get(String resourceGroupName, String automationAccountName, String compilationJobName);
/**
* Retrieve a list of dsc compilation jobs.
*
* @param resourceGroupName Name of an Azure Resource group.
* @param automationAccountName The name of the automation account.
* @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 response model for the list job operation as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable listByAutomationAccount(String resourceGroupName,
String automationAccountName);
/**
* Retrieve a list of dsc compilation jobs.
*
* @param resourceGroupName Name of an Azure Resource group.
* @param automationAccountName The name of the automation account.
* @param filter The filter to apply on the operation.
* @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 response model for the list job operation as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable listByAutomationAccount(String resourceGroupName,
String automationAccountName, String filter, Context context);
/**
* Retrieve the job stream identified by job stream id.
*
* @param resourceGroupName Name of an Azure Resource group.
* @param automationAccountName The name of the automation account.
* @param jobId The job id.
* @param jobStreamId The job stream 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 definition of the job stream along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Response getStreamWithResponse(String resourceGroupName, String automationAccountName, UUID jobId,
String jobStreamId, Context context);
/**
* Retrieve the job stream identified by job stream id.
*
* @param resourceGroupName Name of an Azure Resource group.
* @param automationAccountName The name of the automation account.
* @param jobId The job id.
* @param jobStreamId The job stream 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 definition of the job stream.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
JobStreamInner getStream(String resourceGroupName, String automationAccountName, UUID jobId, String jobStreamId);
}