
com.azure.resourcemanager.datafactory.implementation.GlobalParametersImpl 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.GlobalParametersClient;
import com.azure.resourcemanager.datafactory.fluent.models.GlobalParameterResourceInner;
import com.azure.resourcemanager.datafactory.models.GlobalParameterResource;
import com.azure.resourcemanager.datafactory.models.GlobalParameters;
public final class GlobalParametersImpl implements GlobalParameters {
private static final ClientLogger LOGGER = new ClientLogger(GlobalParametersImpl.class);
private final GlobalParametersClient innerClient;
private final com.azure.resourcemanager.datafactory.DataFactoryManager serviceManager;
public GlobalParametersImpl(GlobalParametersClient 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 GlobalParameterResourceImpl(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 GlobalParameterResourceImpl(inner1, this.manager()));
}
public Response getWithResponse(String resourceGroupName, String factoryName,
String globalParameterName, Context context) {
Response inner
= this.serviceClient().getWithResponse(resourceGroupName, factoryName, globalParameterName, context);
if (inner != null) {
return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
new GlobalParameterResourceImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public GlobalParameterResource get(String resourceGroupName, String factoryName, String globalParameterName) {
GlobalParameterResourceInner inner
= this.serviceClient().get(resourceGroupName, factoryName, globalParameterName);
if (inner != null) {
return new GlobalParameterResourceImpl(inner, this.manager());
} else {
return null;
}
}
public Response deleteWithResponse(String resourceGroupName, String factoryName, String globalParameterName,
Context context) {
return this.serviceClient().deleteWithResponse(resourceGroupName, factoryName, globalParameterName, context);
}
public void delete(String resourceGroupName, String factoryName, String globalParameterName) {
this.serviceClient().delete(resourceGroupName, factoryName, globalParameterName);
}
public GlobalParameterResource 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 globalParameterName = ResourceManagerUtils.getValueFromIdByName(id, "globalParameters");
if (globalParameterName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'globalParameters'.", id)));
}
return this.getWithResponse(resourceGroupName, factoryName, globalParameterName, Context.NONE).getValue();
}
public Response getByIdWithResponse(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 globalParameterName = ResourceManagerUtils.getValueFromIdByName(id, "globalParameters");
if (globalParameterName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'globalParameters'.", id)));
}
return this.getWithResponse(resourceGroupName, factoryName, globalParameterName, 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 globalParameterName = ResourceManagerUtils.getValueFromIdByName(id, "globalParameters");
if (globalParameterName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'globalParameters'.", id)));
}
this.deleteWithResponse(resourceGroupName, factoryName, globalParameterName, 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 globalParameterName = ResourceManagerUtils.getValueFromIdByName(id, "globalParameters");
if (globalParameterName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'globalParameters'.", id)));
}
return this.deleteWithResponse(resourceGroupName, factoryName, globalParameterName, context);
}
private GlobalParametersClient serviceClient() {
return this.innerClient;
}
private com.azure.resourcemanager.datafactory.DataFactoryManager manager() {
return this.serviceManager;
}
public GlobalParameterResourceImpl define(String name) {
return new GlobalParameterResourceImpl(name, this.manager());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy