com.azure.resourcemanager.hdinsight.models.CapabilitiesResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-hdinsight Show documentation
Show all versions of azure-resourcemanager-hdinsight Show documentation
This package contains Microsoft Azure SDK for HDInsight Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. HDInsight Management Client. Package tag package-2024-08-preview.
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.hdinsight.models;
import com.azure.resourcemanager.hdinsight.fluent.models.CapabilitiesResultInner;
import java.util.List;
import java.util.Map;
/**
* An immutable client-side representation of CapabilitiesResult.
*/
public interface CapabilitiesResult {
/**
* Gets the versions property: The version capability.
*
* @return the versions value.
*/
Map versions();
/**
* Gets the regions property: The virtual machine size compatibility features.
*
* @return the regions value.
*/
Map regions();
/**
* Gets the features property: The capability features.
*
* @return the features value.
*/
List features();
/**
* Gets the quota property: The quota capability.
*
* @return the quota value.
*/
QuotaCapability quota();
/**
* Gets the inner com.azure.resourcemanager.hdinsight.fluent.models.CapabilitiesResultInner object.
*
* @return the inner object.
*/
CapabilitiesResultInner innerModel();
}