
com.azure.resourcemanager.billing.implementation.AvailableBalancesClientImpl 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.billing.implementation;
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.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.Response;
import com.azure.core.http.rest.RestProxy;
import com.azure.core.management.exception.ManagementException;
import com.azure.core.util.Context;
import com.azure.core.util.FluxUtil;
import com.azure.resourcemanager.billing.fluent.AvailableBalancesClient;
import com.azure.resourcemanager.billing.fluent.models.AvailableBalanceInner;
import reactor.core.publisher.Mono;
/**
* An instance of this class provides access to all the operations defined in AvailableBalancesClient.
*/
public final class AvailableBalancesClientImpl implements AvailableBalancesClient {
/**
* The proxy service used to perform REST calls.
*/
private final AvailableBalancesService service;
/**
* The service client containing this operation class.
*/
private final BillingManagementClientImpl client;
/**
* Initializes an instance of AvailableBalancesClientImpl.
*
* @param client the instance of the service client containing this operation class.
*/
AvailableBalancesClientImpl(BillingManagementClientImpl client) {
this.service
= RestProxy.create(AvailableBalancesService.class, client.getHttpPipeline(), client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for BillingManagementClientAvailableBalances to be used by the proxy
* service to perform REST calls.
*/
@Host("{$host}")
@ServiceInterface(name = "BillingManagementCli")
public interface AvailableBalancesService {
@Headers({ "Content-Type: application/json" })
@Get("/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/availableBalance/default")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> getByBillingAccount(@HostParam("$host") String endpoint,
@PathParam("billingAccountName") String billingAccountName, @QueryParam("api-version") String apiVersion,
@HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Get("/providers/Microsoft.Billing/billingAccounts/{billingAccountName}/billingProfiles/{billingProfileName}/availableBalance/default")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> getByBillingProfile(@HostParam("$host") String endpoint,
@PathParam("billingAccountName") String billingAccountName,
@PathParam("billingProfileName") String billingProfileName, @QueryParam("api-version") String apiVersion,
@HeaderParam("Accept") String accept, Context context);
}
/**
* The Available Credit or Payment on Account Balance for a billing account. The credit balance can be used to
* settle due or past due invoices and is supported for billing accounts with agreement type Microsoft Customer
* Agreement. The payment on account balance is supported for billing accounts with agreement type Microsoft
* Customer Agreement or Microsoft Online Services Program.
*
* @param billingAccountName The ID that uniquely identifies a billing 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 Available Credit or Payment on Account Balance along with {@link Response} on successful completion
* of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getByBillingAccountWithResponseAsync(String billingAccountName) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (billingAccountName == null) {
return Mono
.error(new IllegalArgumentException("Parameter billingAccountName is required and cannot be null."));
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.getByBillingAccount(this.client.getEndpoint(), billingAccountName,
this.client.getApiVersion(), accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* The Available Credit or Payment on Account Balance for a billing account. The credit balance can be used to
* settle due or past due invoices and is supported for billing accounts with agreement type Microsoft Customer
* Agreement. The payment on account balance is supported for billing accounts with agreement type Microsoft
* Customer Agreement or Microsoft Online Services Program.
*
* @param billingAccountName The ID that uniquely identifies a billing account.
* @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 Available Credit or Payment on Account Balance along with {@link Response} on successful completion
* of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getByBillingAccountWithResponseAsync(String billingAccountName,
Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (billingAccountName == null) {
return Mono
.error(new IllegalArgumentException("Parameter billingAccountName is required and cannot be null."));
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.getByBillingAccount(this.client.getEndpoint(), billingAccountName, this.client.getApiVersion(),
accept, context);
}
/**
* The Available Credit or Payment on Account Balance for a billing account. The credit balance can be used to
* settle due or past due invoices and is supported for billing accounts with agreement type Microsoft Customer
* Agreement. The payment on account balance is supported for billing accounts with agreement type Microsoft
* Customer Agreement or Microsoft Online Services Program.
*
* @param billingAccountName The ID that uniquely identifies a billing 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 Available Credit or Payment on Account Balance on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono getByBillingAccountAsync(String billingAccountName) {
return getByBillingAccountWithResponseAsync(billingAccountName)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* The Available Credit or Payment on Account Balance for a billing account. The credit balance can be used to
* settle due or past due invoices and is supported for billing accounts with agreement type Microsoft Customer
* Agreement. The payment on account balance is supported for billing accounts with agreement type Microsoft
* Customer Agreement or Microsoft Online Services Program.
*
* @param billingAccountName The ID that uniquely identifies a billing account.
* @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 Available Credit or Payment on Account Balance along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response getByBillingAccountWithResponse(String billingAccountName, Context context) {
return getByBillingAccountWithResponseAsync(billingAccountName, context).block();
}
/**
* The Available Credit or Payment on Account Balance for a billing account. The credit balance can be used to
* settle due or past due invoices and is supported for billing accounts with agreement type Microsoft Customer
* Agreement. The payment on account balance is supported for billing accounts with agreement type Microsoft
* Customer Agreement or Microsoft Online Services Program.
*
* @param billingAccountName The ID that uniquely identifies a billing 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 Available Credit or Payment on Account Balance.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public AvailableBalanceInner getByBillingAccount(String billingAccountName) {
return getByBillingAccountWithResponse(billingAccountName, Context.NONE).getValue();
}
/**
* The Available Credit or Payment on Account Balance for a billing profile. The credit balance can be used to
* settle due or past due invoices and is supported for billing accounts with agreement type Microsoft Customer
* Agreement. The payment on account balance is supported for billing accounts with agreement type Microsoft
* Customer Agreement.
*
* @param billingAccountName The ID that uniquely identifies a billing account.
* @param billingProfileName The ID that uniquely identifies a billing profile.
* @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 Available Credit or Payment on Account Balance along with {@link Response} on successful completion
* of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getByBillingProfileWithResponseAsync(String billingAccountName,
String billingProfileName) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (billingAccountName == null) {
return Mono
.error(new IllegalArgumentException("Parameter billingAccountName is required and cannot be null."));
}
if (billingProfileName == null) {
return Mono
.error(new IllegalArgumentException("Parameter billingProfileName is required and cannot be null."));
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.getByBillingProfile(this.client.getEndpoint(), billingAccountName,
billingProfileName, this.client.getApiVersion(), accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* The Available Credit or Payment on Account Balance for a billing profile. The credit balance can be used to
* settle due or past due invoices and is supported for billing accounts with agreement type Microsoft Customer
* Agreement. The payment on account balance is supported for billing accounts with agreement type Microsoft
* Customer Agreement.
*
* @param billingAccountName The ID that uniquely identifies a billing account.
* @param billingProfileName The ID that uniquely identifies a billing profile.
* @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 Available Credit or Payment on Account Balance along with {@link Response} on successful completion
* of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getByBillingProfileWithResponseAsync(String billingAccountName,
String billingProfileName, Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (billingAccountName == null) {
return Mono
.error(new IllegalArgumentException("Parameter billingAccountName is required and cannot be null."));
}
if (billingProfileName == null) {
return Mono
.error(new IllegalArgumentException("Parameter billingProfileName is required and cannot be null."));
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.getByBillingProfile(this.client.getEndpoint(), billingAccountName, billingProfileName,
this.client.getApiVersion(), accept, context);
}
/**
* The Available Credit or Payment on Account Balance for a billing profile. The credit balance can be used to
* settle due or past due invoices and is supported for billing accounts with agreement type Microsoft Customer
* Agreement. The payment on account balance is supported for billing accounts with agreement type Microsoft
* Customer Agreement.
*
* @param billingAccountName The ID that uniquely identifies a billing account.
* @param billingProfileName The ID that uniquely identifies a billing profile.
* @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 Available Credit or Payment on Account Balance on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono getByBillingProfileAsync(String billingAccountName, String billingProfileName) {
return getByBillingProfileWithResponseAsync(billingAccountName, billingProfileName)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* The Available Credit or Payment on Account Balance for a billing profile. The credit balance can be used to
* settle due or past due invoices and is supported for billing accounts with agreement type Microsoft Customer
* Agreement. The payment on account balance is supported for billing accounts with agreement type Microsoft
* Customer Agreement.
*
* @param billingAccountName The ID that uniquely identifies a billing account.
* @param billingProfileName The ID that uniquely identifies a billing profile.
* @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 Available Credit or Payment on Account Balance along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response getByBillingProfileWithResponse(String billingAccountName,
String billingProfileName, Context context) {
return getByBillingProfileWithResponseAsync(billingAccountName, billingProfileName, context).block();
}
/**
* The Available Credit or Payment on Account Balance for a billing profile. The credit balance can be used to
* settle due or past due invoices and is supported for billing accounts with agreement type Microsoft Customer
* Agreement. The payment on account balance is supported for billing accounts with agreement type Microsoft
* Customer Agreement.
*
* @param billingAccountName The ID that uniquely identifies a billing account.
* @param billingProfileName The ID that uniquely identifies a billing profile.
* @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 Available Credit or Payment on Account Balance.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public AvailableBalanceInner getByBillingProfile(String billingAccountName, String billingProfileName) {
return getByBillingProfileWithResponse(billingAccountName, billingProfileName, Context.NONE).getValue();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy