
com.azure.resourcemanager.datafactory.implementation.PipelinesImpl 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.implementation;
import com.azure.core.http.rest.PagedIterable;
import com.azure.core.http.rest.Response;
import com.azure.core.http.rest.SimpleResponse;
import com.azure.core.util.Context;
import com.azure.core.util.logging.ClientLogger;
import com.azure.resourcemanager.datafactory.fluent.PipelinesClient;
import com.azure.resourcemanager.datafactory.fluent.models.CreateRunResponseInner;
import com.azure.resourcemanager.datafactory.fluent.models.PipelineResourceInner;
import com.azure.resourcemanager.datafactory.models.CreateRunResponse;
import com.azure.resourcemanager.datafactory.models.PipelineResource;
import com.azure.resourcemanager.datafactory.models.Pipelines;
import java.util.Map;
public final class PipelinesImpl implements Pipelines {
private static final ClientLogger LOGGER = new ClientLogger(PipelinesImpl.class);
private final PipelinesClient innerClient;
private final com.azure.resourcemanager.datafactory.DataFactoryManager serviceManager;
public PipelinesImpl(PipelinesClient innerClient,
com.azure.resourcemanager.datafactory.DataFactoryManager serviceManager) {
this.innerClient = innerClient;
this.serviceManager = serviceManager;
}
public PagedIterable listByFactory(String resourceGroupName, String factoryName) {
PagedIterable inner = this.serviceClient().listByFactory(resourceGroupName, factoryName);
return ResourceManagerUtils.mapPage(inner, inner1 -> new PipelineResourceImpl(inner1, this.manager()));
}
public PagedIterable listByFactory(String resourceGroupName, String factoryName,
Context context) {
PagedIterable inner
= this.serviceClient().listByFactory(resourceGroupName, factoryName, context);
return ResourceManagerUtils.mapPage(inner, inner1 -> new PipelineResourceImpl(inner1, this.manager()));
}
public Response getWithResponse(String resourceGroupName, String factoryName, String pipelineName,
String ifNoneMatch, Context context) {
Response inner
= this.serviceClient().getWithResponse(resourceGroupName, factoryName, pipelineName, ifNoneMatch, context);
if (inner != null) {
return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
new PipelineResourceImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public PipelineResource get(String resourceGroupName, String factoryName, String pipelineName) {
PipelineResourceInner inner = this.serviceClient().get(resourceGroupName, factoryName, pipelineName);
if (inner != null) {
return new PipelineResourceImpl(inner, this.manager());
} else {
return null;
}
}
public Response deleteWithResponse(String resourceGroupName, String factoryName, String pipelineName,
Context context) {
return this.serviceClient().deleteWithResponse(resourceGroupName, factoryName, pipelineName, context);
}
public void delete(String resourceGroupName, String factoryName, String pipelineName) {
this.serviceClient().delete(resourceGroupName, factoryName, pipelineName);
}
public Response createRunWithResponse(String resourceGroupName, String factoryName,
String pipelineName, String referencePipelineRunId, Boolean isRecovery, String startActivityName,
Boolean startFromFailure, Map parameters, Context context) {
Response inner = this.serviceClient()
.createRunWithResponse(resourceGroupName, factoryName, pipelineName, referencePipelineRunId, isRecovery,
startActivityName, startFromFailure, parameters, context);
if (inner != null) {
return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
new CreateRunResponseImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public CreateRunResponse createRun(String resourceGroupName, String factoryName, String pipelineName) {
CreateRunResponseInner inner = this.serviceClient().createRun(resourceGroupName, factoryName, pipelineName);
if (inner != null) {
return new CreateRunResponseImpl(inner, this.manager());
} else {
return null;
}
}
public PipelineResource getById(String id) {
String resourceGroupName = ResourceManagerUtils.getValueFromIdByName(id, "resourceGroups");
if (resourceGroupName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id)));
}
String factoryName = ResourceManagerUtils.getValueFromIdByName(id, "factories");
if (factoryName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'factories'.", id)));
}
String pipelineName = ResourceManagerUtils.getValueFromIdByName(id, "pipelines");
if (pipelineName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'pipelines'.", id)));
}
String localIfNoneMatch = null;
return this.getWithResponse(resourceGroupName, factoryName, pipelineName, localIfNoneMatch, Context.NONE)
.getValue();
}
public Response getByIdWithResponse(String id, String ifNoneMatch, Context context) {
String resourceGroupName = ResourceManagerUtils.getValueFromIdByName(id, "resourceGroups");
if (resourceGroupName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id)));
}
String factoryName = ResourceManagerUtils.getValueFromIdByName(id, "factories");
if (factoryName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'factories'.", id)));
}
String pipelineName = ResourceManagerUtils.getValueFromIdByName(id, "pipelines");
if (pipelineName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'pipelines'.", id)));
}
return this.getWithResponse(resourceGroupName, factoryName, pipelineName, ifNoneMatch, context);
}
public void deleteById(String id) {
String resourceGroupName = ResourceManagerUtils.getValueFromIdByName(id, "resourceGroups");
if (resourceGroupName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id)));
}
String factoryName = ResourceManagerUtils.getValueFromIdByName(id, "factories");
if (factoryName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'factories'.", id)));
}
String pipelineName = ResourceManagerUtils.getValueFromIdByName(id, "pipelines");
if (pipelineName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'pipelines'.", id)));
}
this.deleteWithResponse(resourceGroupName, factoryName, pipelineName, Context.NONE);
}
public Response deleteByIdWithResponse(String id, Context context) {
String resourceGroupName = ResourceManagerUtils.getValueFromIdByName(id, "resourceGroups");
if (resourceGroupName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id)));
}
String factoryName = ResourceManagerUtils.getValueFromIdByName(id, "factories");
if (factoryName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'factories'.", id)));
}
String pipelineName = ResourceManagerUtils.getValueFromIdByName(id, "pipelines");
if (pipelineName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'pipelines'.", id)));
}
return this.deleteWithResponse(resourceGroupName, factoryName, pipelineName, context);
}
private PipelinesClient serviceClient() {
return this.innerClient;
}
private com.azure.resourcemanager.datafactory.DataFactoryManager manager() {
return this.serviceManager;
}
public PipelineResourceImpl define(String name) {
return new PipelineResourceImpl(name, this.manager());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy