com.azure.resourcemanager.storagecache.models.ResourceSku 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.ResourceSkuInner;
import java.util.List;
/**
* An immutable client-side representation of ResourceSku.
*/
public interface ResourceSku {
/**
* Gets the resourceType property: The type of resource the SKU applies to.
*
* @return the resourceType value.
*/
String resourceType();
/**
* Gets the capabilities property: A list of capabilities of this SKU, such as throughput or ops/sec.
*
* @return the capabilities value.
*/
List capabilities();
/**
* Gets the locations property: The set of locations where the SKU is available. This is the supported and
* registered Azure Geo Regions (e.g., West US, East US, Southeast Asia, etc.).
*
* @return the locations value.
*/
List locations();
/**
* Gets the locationInfo property: The set of locations where the SKU is available.
*
* @return the locationInfo value.
*/
List locationInfo();
/**
* Gets the name property: The name of this SKU.
*
* @return the name value.
*/
String name();
/**
* Gets the restrictions property: The restrictions preventing this SKU from being used. This is empty if there are
* no restrictions.
*
* @return the restrictions value.
*/
List restrictions();
/**
* Gets the inner com.azure.resourcemanager.storagecache.fluent.models.ResourceSkuInner object.
*
* @return the inner object.
*/
ResourceSkuInner innerModel();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy