com.azure.resourcemanager.avs.models.Locations 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.avs.models;
import com.azure.core.http.rest.Response;
import com.azure.core.util.Context;
/**
* Resource collection API of Locations.
*/
public interface Locations {
/**
* Return quota for subscription by region.
*
* @param location The name of the Azure region.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return subscription quotas along with {@link Response}.
*/
Response checkQuotaAvailabilityWithResponse(String location, Context context);
/**
* Return quota for subscription by region.
*
* @param location The name of the Azure region.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return subscription quotas.
*/
Quota checkQuotaAvailability(String location);
/**
* Return trial status for subscription by region.
*
* @param location The name of the Azure region.
* @param sku Optionally, check for a specific SKU.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return subscription trial availability along with {@link Response}.
*/
Response checkTrialAvailabilityWithResponse(String location, Sku sku, Context context);
/**
* Return trial status for subscription by region.
*
* @param location The name of the Azure region.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return subscription trial availability.
*/
Trial checkTrialAvailability(String location);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy