com.azure.resourcemanager.costmanagement.implementation.SettingsImpl 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.
// 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.SettingsClient;
import com.azure.resourcemanager.costmanagement.fluent.models.SettingInner;
import com.azure.resourcemanager.costmanagement.models.Setting;
import com.azure.resourcemanager.costmanagement.models.Settings;
import com.fasterxml.jackson.annotation.JsonIgnore;
public final class SettingsImpl implements Settings {
@JsonIgnore private final ClientLogger logger = new ClientLogger(SettingsImpl.class);
private final SettingsClient innerClient;
private final com.azure.resourcemanager.costmanagement.CostManagementManager serviceManager;
public SettingsImpl(
SettingsClient 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 SettingImpl(inner1, this.manager()));
}
public PagedIterable list(Context context) {
PagedIterable inner = this.serviceClient().list(context);
return Utils.mapPage(inner, inner1 -> new SettingImpl(inner1, this.manager()));
}
public Setting get(String settingName) {
SettingInner inner = this.serviceClient().get(settingName);
if (inner != null) {
return new SettingImpl(inner, this.manager());
} else {
return null;
}
}
public Response getWithResponse(String settingName, Context context) {
Response inner = this.serviceClient().getWithResponse(settingName, context);
if (inner != null) {
return new SimpleResponse<>(
inner.getRequest(),
inner.getStatusCode(),
inner.getHeaders(),
new SettingImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public Setting createOrUpdate(String settingName, SettingInner parameters) {
SettingInner inner = this.serviceClient().createOrUpdate(settingName, parameters);
if (inner != null) {
return new SettingImpl(inner, this.manager());
} else {
return null;
}
}
public Response createOrUpdateWithResponse(String settingName, SettingInner parameters, Context context) {
Response inner =
this.serviceClient().createOrUpdateWithResponse(settingName, parameters, context);
if (inner != null) {
return new SimpleResponse<>(
inner.getRequest(),
inner.getStatusCode(),
inner.getHeaders(),
new SettingImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public void delete(String settingName) {
this.serviceClient().delete(settingName);
}
public Response deleteWithResponse(String settingName, Context context) {
return this.serviceClient().deleteWithResponse(settingName, context);
}
private SettingsClient serviceClient() {
return this.innerClient;
}
private com.azure.resourcemanager.costmanagement.CostManagementManager manager() {
return this.serviceManager;
}
}