com.azure.resourcemanager.storagecache.models.ResourceUsage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-storagecache Show documentation
Show all versions of azure-resourcemanager-storagecache Show documentation
This package contains Microsoft Azure SDK for StorageCache Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Azure Managed Lustre provides a fully managed Lustre® file system, integrated with Blob storage, for use on demand. These operations create and manage Azure Managed Lustre file systems. Package tag package-2024-03.
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.storagecache.models;
import com.azure.resourcemanager.storagecache.fluent.models.ResourceUsageInner;
/**
* An immutable client-side representation of ResourceUsage.
*/
public interface ResourceUsage {
/**
* Gets the limit property: The limit (quota) for this resource.
*
* @return the limit value.
*/
Integer limit();
/**
* Gets the unit property: Unit that the limit and usages are expressed in, such as 'Count'.
*
* @return the unit value.
*/
String unit();
/**
* Gets the currentValue property: The current usage of this resource.
*
* @return the currentValue value.
*/
Integer currentValue();
/**
* Gets the name property: Naming information for this resource type.
*
* @return the name value.
*/
ResourceUsageName name();
/**
* Gets the inner com.azure.resourcemanager.storagecache.fluent.models.ResourceUsageInner object.
*
* @return the inner object.
*/
ResourceUsageInner innerModel();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy