EntityInfo Constructors

Definition

Overloads

EntityInfo()

Initializes a new instance of the EntityInfo class.

EntityInfo(String, String, String, String, String, EntityParentGroupInfo, String, String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, IList<String>, IList<String>)

Initializes a new instance of the EntityInfo class.

EntityInfo()

Initializes a new instance of the EntityInfo class.

public EntityInfo ();
Public Sub New ()

Applies to

EntityInfo(String, String, String, String, String, EntityParentGroupInfo, String, String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, IList<String>, IList<String>)

Initializes a new instance of the EntityInfo class.

public EntityInfo (string id = default, string type = default, string name = default, string tenantId = default, string displayName = default, Microsoft.Azure.Management.ManagementGroups.Models.EntityParentGroupInfo parent = default, string permissions = default, string inheritedPermissions = default, int? numberOfDescendants = default, int? numberOfChildren = default, int? numberOfChildGroups = default, System.Collections.Generic.IList<string> parentDisplayNameChain = default, System.Collections.Generic.IList<string> parentNameChain = default);
new Microsoft.Azure.Management.ManagementGroups.Models.EntityInfo : string * string * string * string * string * Microsoft.Azure.Management.ManagementGroups.Models.EntityParentGroupInfo * string * string * Nullable<int> * Nullable<int> * Nullable<int> * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.ManagementGroups.Models.EntityInfo
Public Sub New (Optional id As String = Nothing, Optional type As String = Nothing, Optional name As String = Nothing, Optional tenantId As String = Nothing, Optional displayName As String = Nothing, Optional parent As EntityParentGroupInfo = Nothing, Optional permissions As String = Nothing, Optional inheritedPermissions As String = Nothing, Optional numberOfDescendants As Nullable(Of Integer) = Nothing, Optional numberOfChildren As Nullable(Of Integer) = Nothing, Optional numberOfChildGroups As Nullable(Of Integer) = Nothing, Optional parentDisplayNameChain As IList(Of String) = Nothing, Optional parentNameChain As IList(Of String) = Nothing)

Parameters

id
String

The fully qualified ID for the entity. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000

type
String

The type of the resource. For example, Microsoft.Management/managementGroups

name
String

The name of the entity. For example, 00000000-0000-0000-0000-000000000000

tenantId
String

The AAD Tenant ID associated with the entity. For example, 00000000-0000-0000-0000-000000000000

displayName
String

The friendly name of the management group.

parent
EntityParentGroupInfo

Parent

permissions
String

Permissions

inheritedPermissions
String

Inherited Permissions

numberOfDescendants
Nullable<Int32>

Number of Descendants

numberOfChildren
Nullable<Int32>

Number of Children

numberOfChildGroups
Nullable<Int32>

Number of Child Groups

parentDisplayNameChain
IList<String>

The parent display name chain from the root group to the immediate parent

parentNameChain
IList<String>

The parent name chain from the root group to the immediate parent

Applies to