com.azure.resourcemanager.advisor.models.MetadataEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-advisor Show documentation
Show all versions of azure-resourcemanager-advisor Show documentation
This package contains Microsoft Azure SDK for Advisor Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. REST APIs for Azure Advisor. Package tag package-2020-01.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.advisor.models;
import com.azure.resourcemanager.advisor.fluent.models.MetadataEntityInner;
import java.util.List;
/**
* An immutable client-side representation of MetadataEntity.
*/
public interface MetadataEntity {
/**
* Gets the id property: The resource Id of the metadata entity.
*
* @return the id value.
*/
String id();
/**
* Gets the type property: The type of the metadata entity.
*
* @return the type value.
*/
String type();
/**
* Gets the name property: The name of the metadata entity.
*
* @return the name value.
*/
String name();
/**
* Gets the displayName property: The display name.
*
* @return the displayName value.
*/
String displayName();
/**
* Gets the dependsOn property: The list of keys on which this entity depends on.
*
* @return the dependsOn value.
*/
List dependsOn();
/**
* Gets the applicableScenarios property: The list of scenarios applicable to this metadata entity.
*
* @return the applicableScenarios value.
*/
List applicableScenarios();
/**
* Gets the supportedValues property: The list of supported values.
*
* @return the supportedValues value.
*/
List supportedValues();
/**
* Gets the inner com.azure.resourcemanager.advisor.fluent.models.MetadataEntityInner object.
*
* @return the inner object.
*/
MetadataEntityInner innerModel();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy