com.azure.resourcemanager.automation.implementation.DscCompilationJobsClientImpl 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-2019-06.
// 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.implementation;
import com.azure.core.annotation.BodyParam;
import com.azure.core.annotation.ExpectedResponses;
import com.azure.core.annotation.Get;
import com.azure.core.annotation.HeaderParam;
import com.azure.core.annotation.Headers;
import com.azure.core.annotation.Host;
import com.azure.core.annotation.HostParam;
import com.azure.core.annotation.PathParam;
import com.azure.core.annotation.Put;
import com.azure.core.annotation.QueryParam;
import com.azure.core.annotation.ReturnType;
import com.azure.core.annotation.ServiceInterface;
import com.azure.core.annotation.ServiceMethod;
import com.azure.core.annotation.UnexpectedResponseExceptionType;
import com.azure.core.http.rest.PagedFlux;
import com.azure.core.http.rest.PagedIterable;
import com.azure.core.http.rest.PagedResponse;
import com.azure.core.http.rest.PagedResponseBase;
import com.azure.core.http.rest.Response;
import com.azure.core.http.rest.RestProxy;
import com.azure.core.management.exception.ManagementException;
import com.azure.core.management.polling.PollResult;
import com.azure.core.util.Context;
import com.azure.core.util.FluxUtil;
import com.azure.core.util.logging.ClientLogger;
import com.azure.core.util.polling.PollerFlux;
import com.azure.core.util.polling.SyncPoller;
import com.azure.resourcemanager.automation.fluent.DscCompilationJobsClient;
import com.azure.resourcemanager.automation.fluent.models.DscCompilationJobInner;
import com.azure.resourcemanager.automation.fluent.models.JobStreamInner;
import com.azure.resourcemanager.automation.models.DscCompilationJobCreateParameters;
import com.azure.resourcemanager.automation.models.DscCompilationJobListResult;
import java.nio.ByteBuffer;
import java.util.UUID;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
/** An instance of this class provides access to all the operations defined in DscCompilationJobsClient. */
public final class DscCompilationJobsClientImpl implements DscCompilationJobsClient {
private final ClientLogger logger = new ClientLogger(DscCompilationJobsClientImpl.class);
/** The proxy service used to perform REST calls. */
private final DscCompilationJobsService service;
/** The service client containing this operation class. */
private final AutomationClientImpl client;
/**
* Initializes an instance of DscCompilationJobsClientImpl.
*
* @param client the instance of the service client containing this operation class.
*/
DscCompilationJobsClientImpl(AutomationClientImpl client) {
this.service =
RestProxy.create(DscCompilationJobsService.class, client.getHttpPipeline(), client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for AutomationClientDscCompilationJobs to be used by the proxy service to
* perform REST calls.
*/
@Host("{$host}")
@ServiceInterface(name = "AutomationClientDscC")
private interface DscCompilationJobsService {
@Headers({"Content-Type: application/json"})
@Put(
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation"
+ "/automationAccounts/{automationAccountName}/compilationjobs/{compilationJobName}")
@ExpectedResponses({201})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono>> create(
@HostParam("$host") String endpoint,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("automationAccountName") String automationAccountName,
@PathParam("compilationJobName") String compilationJobName,
@PathParam("subscriptionId") String subscriptionId,
@QueryParam("api-version") String apiVersion,
@BodyParam("application/json") DscCompilationJobCreateParameters parameters,
@HeaderParam("Accept") String accept,
Context context);
@Headers({"Content-Type: application/json"})
@Get(
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation"
+ "/automationAccounts/{automationAccountName}/compilationjobs/{compilationJobName}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> get(
@HostParam("$host") String endpoint,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("automationAccountName") String automationAccountName,
@PathParam("compilationJobName") String compilationJobName,
@PathParam("subscriptionId") String subscriptionId,
@QueryParam("api-version") String apiVersion,
@HeaderParam("Accept") String accept,
Context context);
@Headers({"Content-Type: application/json"})
@Get(
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation"
+ "/automationAccounts/{automationAccountName}/compilationjobs")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> listByAutomationAccount(
@HostParam("$host") String endpoint,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("automationAccountName") String automationAccountName,
@QueryParam("$filter") String filter,
@PathParam("subscriptionId") String subscriptionId,
@QueryParam("api-version") String apiVersion,
@HeaderParam("Accept") String accept,
Context context);
@Headers({"Content-Type: application/json"})
@Get(
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation"
+ "/automationAccounts/{automationAccountName}/compilationjobs/{jobId}/streams/{jobStreamId}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> getStream(
@HostParam("$host") String endpoint,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("automationAccountName") String automationAccountName,
@PathParam("jobId") UUID jobId,
@PathParam("jobStreamId") String jobStreamId,
@PathParam("subscriptionId") String subscriptionId,
@QueryParam("api-version") String apiVersion,
@HeaderParam("Accept") String accept,
Context context);
@Headers({"Content-Type: application/json"})
@Get("{nextLink}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> listByAutomationAccountNext(
@PathParam(value = "nextLink", encoded = true) String nextLink,
@HostParam("$host") String endpoint,
@HeaderParam("Accept") String accept,
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 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)
private Mono>> createWithResponseAsync(
String resourceGroupName,
String automationAccountName,
String compilationJobName,
DscCompilationJobCreateParameters parameters) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (automationAccountName == null) {
return Mono
.error(new IllegalArgumentException("Parameter automationAccountName is required and cannot be null."));
}
if (compilationJobName == null) {
return Mono
.error(new IllegalArgumentException("Parameter compilationJobName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
if (parameters == null) {
return Mono.error(new IllegalArgumentException("Parameter parameters is required and cannot be null."));
} else {
parameters.validate();
}
final String apiVersion = "2019-06-01";
final String accept = "application/json";
return FluxUtil
.withContext(
context ->
service
.create(
this.client.getEndpoint(),
resourceGroupName,
automationAccountName,
compilationJobName,
this.client.getSubscriptionId(),
apiVersion,
parameters,
accept,
context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* 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 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)
private Mono>> createWithResponseAsync(
String resourceGroupName,
String automationAccountName,
String compilationJobName,
DscCompilationJobCreateParameters parameters,
Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (automationAccountName == null) {
return Mono
.error(new IllegalArgumentException("Parameter automationAccountName is required and cannot be null."));
}
if (compilationJobName == null) {
return Mono
.error(new IllegalArgumentException("Parameter compilationJobName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
if (parameters == null) {
return Mono.error(new IllegalArgumentException("Parameter parameters is required and cannot be null."));
} else {
parameters.validate();
}
final String apiVersion = "2019-06-01";
final String accept = "application/json";
context = this.client.mergeContext(context);
return service
.create(
this.client.getEndpoint(),
resourceGroupName,
automationAccountName,
compilationJobName,
this.client.getSubscriptionId(),
apiVersion,
parameters,
accept,
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 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)
private PollerFlux, DscCompilationJobInner> beginCreateAsync(
String resourceGroupName,
String automationAccountName,
String compilationJobName,
DscCompilationJobCreateParameters parameters) {
Mono>> mono =
createWithResponseAsync(resourceGroupName, automationAccountName, compilationJobName, parameters);
return this
.client
.getLroResult(
mono,
this.client.getHttpPipeline(),
DscCompilationJobInner.class,
DscCompilationJobInner.class,
Context.NONE);
}
/**
* 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 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)
private PollerFlux, DscCompilationJobInner> beginCreateAsync(
String resourceGroupName,
String automationAccountName,
String compilationJobName,
DscCompilationJobCreateParameters parameters,
Context context) {
context = this.client.mergeContext(context);
Mono>> mono =
createWithResponseAsync(resourceGroupName, automationAccountName, compilationJobName, parameters, context);
return this
.client
.getLroResult(
mono,
this.client.getHttpPipeline(),
DscCompilationJobInner.class,
DscCompilationJobInner.class,
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 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)
public SyncPoller, DscCompilationJobInner> beginCreate(
String resourceGroupName,
String automationAccountName,
String compilationJobName,
DscCompilationJobCreateParameters parameters) {
return beginCreateAsync(resourceGroupName, automationAccountName, compilationJobName, parameters)
.getSyncPoller();
}
/**
* 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 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)
public SyncPoller, DscCompilationJobInner> beginCreate(
String resourceGroupName,
String automationAccountName,
String compilationJobName,
DscCompilationJobCreateParameters parameters,
Context context) {
return beginCreateAsync(resourceGroupName, automationAccountName, compilationJobName, parameters, context)
.getSyncPoller();
}
/**
* 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 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)
private Mono createAsync(
String resourceGroupName,
String automationAccountName,
String compilationJobName,
DscCompilationJobCreateParameters parameters) {
return beginCreateAsync(resourceGroupName, automationAccountName, compilationJobName, parameters)
.last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* 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 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)
private Mono createAsync(
String resourceGroupName,
String automationAccountName,
String compilationJobName,
DscCompilationJobCreateParameters parameters,
Context context) {
return beginCreateAsync(resourceGroupName, automationAccountName, compilationJobName, parameters, context)
.last()
.flatMap(this.client::getLroFinalResultOrError);
}
/**
* 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 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)
public DscCompilationJobInner create(
String resourceGroupName,
String automationAccountName,
String compilationJobName,
DscCompilationJobCreateParameters parameters) {
return createAsync(resourceGroupName, automationAccountName, compilationJobName, parameters).block();
}
/**
* 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 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)
public DscCompilationJobInner create(
String resourceGroupName,
String automationAccountName,
String compilationJobName,
DscCompilationJobCreateParameters parameters,
Context context) {
return createAsync(resourceGroupName, automationAccountName, compilationJobName, parameters, context).block();
}
/**
* 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 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)
private Mono> getWithResponseAsync(
String resourceGroupName, String automationAccountName, String compilationJobName) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (automationAccountName == null) {
return Mono
.error(new IllegalArgumentException("Parameter automationAccountName is required and cannot be null."));
}
if (compilationJobName == null) {
return Mono
.error(new IllegalArgumentException("Parameter compilationJobName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
final String apiVersion = "2019-06-01";
final String accept = "application/json";
return FluxUtil
.withContext(
context ->
service
.get(
this.client.getEndpoint(),
resourceGroupName,
automationAccountName,
compilationJobName,
this.client.getSubscriptionId(),
apiVersion,
accept,
context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* 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 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)
private Mono> getWithResponseAsync(
String resourceGroupName, String automationAccountName, String compilationJobName, Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (automationAccountName == null) {
return Mono
.error(new IllegalArgumentException("Parameter automationAccountName is required and cannot be null."));
}
if (compilationJobName == null) {
return Mono
.error(new IllegalArgumentException("Parameter compilationJobName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
final String apiVersion = "2019-06-01";
final String accept = "application/json";
context = this.client.mergeContext(context);
return service
.get(
this.client.getEndpoint(),
resourceGroupName,
automationAccountName,
compilationJobName,
this.client.getSubscriptionId(),
apiVersion,
accept,
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 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)
private Mono getAsync(
String resourceGroupName, String automationAccountName, String compilationJobName) {
return getWithResponseAsync(resourceGroupName, automationAccountName, compilationJobName)
.flatMap(
(Response res) -> {
if (res.getValue() != null) {
return Mono.just(res.getValue());
} else {
return Mono.empty();
}
});
}
/**
* 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 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)
public DscCompilationJobInner get(
String resourceGroupName, String automationAccountName, String compilationJobName) {
return getAsync(resourceGroupName, automationAccountName, compilationJobName).block();
}
/**
* 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 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)
public Response getWithResponse(
String resourceGroupName, String automationAccountName, String compilationJobName, Context context) {
return getWithResponseAsync(resourceGroupName, automationAccountName, compilationJobName, context).block();
}
/**
* 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.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listByAutomationAccountSinglePageAsync(
String resourceGroupName, String automationAccountName, String filter) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (automationAccountName == null) {
return Mono
.error(new IllegalArgumentException("Parameter automationAccountName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
final String apiVersion = "2019-06-01";
final String accept = "application/json";
return FluxUtil
.withContext(
context ->
service
.listByAutomationAccount(
this.client.getEndpoint(),
resourceGroupName,
automationAccountName,
filter,
this.client.getSubscriptionId(),
apiVersion,
accept,
context))
.>map(
res ->
new PagedResponseBase<>(
res.getRequest(),
res.getStatusCode(),
res.getHeaders(),
res.getValue().value(),
res.getValue().nextLink(),
null))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* 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 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.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listByAutomationAccountSinglePageAsync(
String resourceGroupName, String automationAccountName, String filter, Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (automationAccountName == null) {
return Mono
.error(new IllegalArgumentException("Parameter automationAccountName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
final String apiVersion = "2019-06-01";
final String accept = "application/json";
context = this.client.mergeContext(context);
return service
.listByAutomationAccount(
this.client.getEndpoint(),
resourceGroupName,
automationAccountName,
filter,
this.client.getSubscriptionId(),
apiVersion,
accept,
context)
.map(
res ->
new PagedResponseBase<>(
res.getRequest(),
res.getStatusCode(),
res.getHeaders(),
res.getValue().value(),
res.getValue().nextLink(),
null));
}
/**
* 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.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listByAutomationAccountAsync(
String resourceGroupName, String automationAccountName, String filter) {
return new PagedFlux<>(
() -> listByAutomationAccountSinglePageAsync(resourceGroupName, automationAccountName, filter),
nextLink -> listByAutomationAccountNextSinglePageAsync(nextLink));
}
/**
* 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 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.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listByAutomationAccountAsync(
String resourceGroupName, String automationAccountName) {
final String filter = null;
return new PagedFlux<>(
() -> listByAutomationAccountSinglePageAsync(resourceGroupName, automationAccountName, filter),
nextLink -> listByAutomationAccountNextSinglePageAsync(nextLink));
}
/**
* 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 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.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listByAutomationAccountAsync(
String resourceGroupName, String automationAccountName, String filter, Context context) {
return new PagedFlux<>(
() -> listByAutomationAccountSinglePageAsync(resourceGroupName, automationAccountName, filter, context),
nextLink -> listByAutomationAccountNextSinglePageAsync(nextLink, context));
}
/**
* 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 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.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable listByAutomationAccount(
String resourceGroupName, String automationAccountName) {
final String filter = null;
return new PagedIterable<>(listByAutomationAccountAsync(resourceGroupName, automationAccountName, filter));
}
/**
* 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 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.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable listByAutomationAccount(
String resourceGroupName, String automationAccountName, String filter, Context context) {
return new PagedIterable<>(
listByAutomationAccountAsync(resourceGroupName, automationAccountName, filter, 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 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)
private Mono> getStreamWithResponseAsync(
String resourceGroupName, String automationAccountName, UUID jobId, String jobStreamId) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (automationAccountName == null) {
return Mono
.error(new IllegalArgumentException("Parameter automationAccountName is required and cannot be null."));
}
if (jobId == null) {
return Mono.error(new IllegalArgumentException("Parameter jobId is required and cannot be null."));
}
if (jobStreamId == null) {
return Mono.error(new IllegalArgumentException("Parameter jobStreamId is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
final String apiVersion = "2019-06-01";
final String accept = "application/json";
return FluxUtil
.withContext(
context ->
service
.getStream(
this.client.getEndpoint(),
resourceGroupName,
automationAccountName,
jobId,
jobStreamId,
this.client.getSubscriptionId(),
apiVersion,
accept,
context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* 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 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)
private Mono> getStreamWithResponseAsync(
String resourceGroupName, String automationAccountName, UUID jobId, String jobStreamId, Context context) {
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (automationAccountName == null) {
return Mono
.error(new IllegalArgumentException("Parameter automationAccountName is required and cannot be null."));
}
if (jobId == null) {
return Mono.error(new IllegalArgumentException("Parameter jobId is required and cannot be null."));
}
if (jobStreamId == null) {
return Mono.error(new IllegalArgumentException("Parameter jobStreamId is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
final String apiVersion = "2019-06-01";
final String accept = "application/json";
context = this.client.mergeContext(context);
return service
.getStream(
this.client.getEndpoint(),
resourceGroupName,
automationAccountName,
jobId,
jobStreamId,
this.client.getSubscriptionId(),
apiVersion,
accept,
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 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)
private Mono getStreamAsync(
String resourceGroupName, String automationAccountName, UUID jobId, String jobStreamId) {
return getStreamWithResponseAsync(resourceGroupName, automationAccountName, jobId, jobStreamId)
.flatMap(
(Response res) -> {
if (res.getValue() != null) {
return Mono.just(res.getValue());
} else {
return Mono.empty();
}
});
}
/**
* 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 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)
public JobStreamInner getStream(
String resourceGroupName, String automationAccountName, UUID jobId, String jobStreamId) {
return getStreamAsync(resourceGroupName, automationAccountName, jobId, jobStreamId).block();
}
/**
* 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 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)
public Response getStreamWithResponse(
String resourceGroupName, String automationAccountName, UUID jobId, String jobStreamId, Context context) {
return getStreamWithResponseAsync(resourceGroupName, automationAccountName, jobId, jobStreamId, context)
.block();
}
/**
* Get the next page of items.
*
* @param nextLink The nextLink parameter.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listByAutomationAccountNextSinglePageAsync(String nextLink) {
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
final String accept = "application/json";
return FluxUtil
.withContext(
context -> service.listByAutomationAccountNext(nextLink, this.client.getEndpoint(), accept, context))
.>map(
res ->
new PagedResponseBase<>(
res.getRequest(),
res.getStatusCode(),
res.getHeaders(),
res.getValue().value(),
res.getValue().nextLink(),
null))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Get the next page of items.
*
* @param nextLink The nextLink parameter.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listByAutomationAccountNextSinglePageAsync(
String nextLink, Context context) {
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
if (this.client.getEndpoint() == null) {
return Mono
.error(
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service
.listByAutomationAccountNext(nextLink, this.client.getEndpoint(), accept, context)
.map(
res ->
new PagedResponseBase<>(
res.getRequest(),
res.getStatusCode(),
res.getHeaders(),
res.getValue().value(),
res.getValue().nextLink(),
null));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy