com.azure.resourcemanager.costmanagement.implementation.ViewsImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-costmanagement Show documentation
Show all versions of azure-resourcemanager-costmanagement Show documentation
This package contains Microsoft Azure SDK for CostManagement Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. CostManagement management client provides access to CostManagement resources for Azure Enterprise Subscriptions. Package tag package-2022-10.
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.costmanagement.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.costmanagement.fluent.ViewsClient;
import com.azure.resourcemanager.costmanagement.fluent.models.ViewInner;
import com.azure.resourcemanager.costmanagement.models.View;
import com.azure.resourcemanager.costmanagement.models.Views;
public final class ViewsImpl implements Views {
private static final ClientLogger LOGGER = new ClientLogger(ViewsImpl.class);
private final ViewsClient innerClient;
private final com.azure.resourcemanager.costmanagement.CostManagementManager serviceManager;
public ViewsImpl(
ViewsClient innerClient, com.azure.resourcemanager.costmanagement.CostManagementManager serviceManager) {
this.innerClient = innerClient;
this.serviceManager = serviceManager;
}
public PagedIterable list() {
PagedIterable inner = this.serviceClient().list();
return Utils.mapPage(inner, inner1 -> new ViewImpl(inner1, this.manager()));
}
public PagedIterable list(Context context) {
PagedIterable inner = this.serviceClient().list(context);
return Utils.mapPage(inner, inner1 -> new ViewImpl(inner1, this.manager()));
}
public PagedIterable listByScope(String scope) {
PagedIterable inner = this.serviceClient().listByScope(scope);
return Utils.mapPage(inner, inner1 -> new ViewImpl(inner1, this.manager()));
}
public PagedIterable listByScope(String scope, Context context) {
PagedIterable inner = this.serviceClient().listByScope(scope, context);
return Utils.mapPage(inner, inner1 -> new ViewImpl(inner1, this.manager()));
}
public Response getWithResponse(String viewName, Context context) {
Response inner = this.serviceClient().getWithResponse(viewName, context);
if (inner != null) {
return new SimpleResponse<>(
inner.getRequest(),
inner.getStatusCode(),
inner.getHeaders(),
new ViewImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public View get(String viewName) {
ViewInner inner = this.serviceClient().get(viewName);
if (inner != null) {
return new ViewImpl(inner, this.manager());
} else {
return null;
}
}
public Response createOrUpdateWithResponse(String viewName, ViewInner parameters, Context context) {
Response inner = this.serviceClient().createOrUpdateWithResponse(viewName, parameters, context);
if (inner != null) {
return new SimpleResponse<>(
inner.getRequest(),
inner.getStatusCode(),
inner.getHeaders(),
new ViewImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public View createOrUpdate(String viewName, ViewInner parameters) {
ViewInner inner = this.serviceClient().createOrUpdate(viewName, parameters);
if (inner != null) {
return new ViewImpl(inner, this.manager());
} else {
return null;
}
}
public Response deleteWithResponse(String viewName, Context context) {
return this.serviceClient().deleteWithResponse(viewName, context);
}
public void delete(String viewName) {
this.serviceClient().delete(viewName);
}
public Response getByScopeWithResponse(String scope, String viewName, Context context) {
Response inner = this.serviceClient().getByScopeWithResponse(scope, viewName, context);
if (inner != null) {
return new SimpleResponse<>(
inner.getRequest(),
inner.getStatusCode(),
inner.getHeaders(),
new ViewImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public View getByScope(String scope, String viewName) {
ViewInner inner = this.serviceClient().getByScope(scope, viewName);
if (inner != null) {
return new ViewImpl(inner, this.manager());
} else {
return null;
}
}
public Response deleteByScopeWithResponse(String scope, String viewName, Context context) {
return this.serviceClient().deleteByScopeWithResponse(scope, viewName, context);
}
public void deleteByScope(String scope, String viewName) {
this.serviceClient().deleteByScope(scope, viewName);
}
public View getById(String id) {
String scope =
Utils
.getValueFromIdByParameterName(
id, "/{scope}/providers/Microsoft.CostManagement/views/{viewName}", "scope");
if (scope == null) {
throw LOGGER
.logExceptionAsError(
new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'scope'.", id)));
}
String viewName =
Utils
.getValueFromIdByParameterName(
id, "/{scope}/providers/Microsoft.CostManagement/views/{viewName}", "viewName");
if (viewName == null) {
throw LOGGER
.logExceptionAsError(
new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'views'.", id)));
}
return this.getByScopeWithResponse(scope, viewName, Context.NONE).getValue();
}
public Response getByIdWithResponse(String id, Context context) {
String scope =
Utils
.getValueFromIdByParameterName(
id, "/{scope}/providers/Microsoft.CostManagement/views/{viewName}", "scope");
if (scope == null) {
throw LOGGER
.logExceptionAsError(
new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'scope'.", id)));
}
String viewName =
Utils
.getValueFromIdByParameterName(
id, "/{scope}/providers/Microsoft.CostManagement/views/{viewName}", "viewName");
if (viewName == null) {
throw LOGGER
.logExceptionAsError(
new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'views'.", id)));
}
return this.getByScopeWithResponse(scope, viewName, context);
}
public void deleteById(String id) {
String scope =
Utils
.getValueFromIdByParameterName(
id, "/{scope}/providers/Microsoft.CostManagement/views/{viewName}", "scope");
if (scope == null) {
throw LOGGER
.logExceptionAsError(
new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'scope'.", id)));
}
String viewName =
Utils
.getValueFromIdByParameterName(
id, "/{scope}/providers/Microsoft.CostManagement/views/{viewName}", "viewName");
if (viewName == null) {
throw LOGGER
.logExceptionAsError(
new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'views'.", id)));
}
this.deleteByScopeWithResponse(scope, viewName, Context.NONE);
}
public Response deleteByIdWithResponse(String id, Context context) {
String scope =
Utils
.getValueFromIdByParameterName(
id, "/{scope}/providers/Microsoft.CostManagement/views/{viewName}", "scope");
if (scope == null) {
throw LOGGER
.logExceptionAsError(
new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'scope'.", id)));
}
String viewName =
Utils
.getValueFromIdByParameterName(
id, "/{scope}/providers/Microsoft.CostManagement/views/{viewName}", "viewName");
if (viewName == null) {
throw LOGGER
.logExceptionAsError(
new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'views'.", id)));
}
return this.deleteByScopeWithResponse(scope, viewName, context);
}
private ViewsClient serviceClient() {
return this.innerClient;
}
private com.azure.resourcemanager.costmanagement.CostManagementManager manager() {
return this.serviceManager;
}
public ViewImpl define(String name) {
return new ViewImpl(name, this.manager());
}
}