com.azure.resourcemanager.managementgroups.models.ManagementGroup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-managementgroups Show documentation
Show all versions of azure-resourcemanager-managementgroups Show documentation
This package contains Microsoft Azure SDK for ManagementGroups Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The Azure Management Groups API enables consolidation of multiple
subscriptions/resources into an organizational hierarchy and centrally
manage access control, policies, alerting and reporting for those resources.
. Package tag package-2021-04.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.managementgroups.models;
import com.azure.resourcemanager.managementgroups.fluent.models.ManagementGroupInner;
import java.util.List;
/** An immutable client-side representation of ManagementGroup. */
public interface ManagementGroup {
/**
* Gets the id property: Fully qualified resource Id for the resource.
*
* @return the id value.
*/
String id();
/**
* Gets the name property: The name of the resource.
*
* @return the name value.
*/
String name();
/**
* Gets the type property: The type of the resource.
*
* @return the type value.
*/
String type();
/**
* Gets the tenantId property: The AAD Tenant ID associated with the management group. For example,
* 00000000-0000-0000-0000-000000000000.
*
* @return the tenantId value.
*/
String tenantId();
/**
* Gets the displayName property: The friendly name of the management group.
*
* @return the displayName value.
*/
String displayName();
/**
* Gets the details property: The details of a management group.
*
* @return the details value.
*/
ManagementGroupDetails details();
/**
* Gets the children property: The list of children.
*
* @return the children value.
*/
List children();
/**
* Gets the inner com.azure.resourcemanager.managementgroups.fluent.models.ManagementGroupInner object.
*
* @return the inner object.
*/
ManagementGroupInner innerModel();
}