com.azure.resourcemanager.costmanagement.models.AlertsResult 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.models;
import com.azure.resourcemanager.costmanagement.fluent.models.AlertsResultInner;
import java.util.List;
/** An immutable client-side representation of AlertsResult. */
public interface AlertsResult {
/**
* Gets the value property: List of alerts.
*
* @return the value value.
*/
List value();
/**
* Gets the nextLink property: URL to get the next set of alerts results if there are any.
*
* @return the nextLink value.
*/
String nextLink();
/**
* Gets the inner com.azure.resourcemanager.costmanagement.fluent.models.AlertsResultInner object.
*
* @return the inner object.
*/
AlertsResultInner innerModel();
}