@azure/arm-managementgroups 2.0.0 → 2.0.1-alpha.20220128.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../src/models/index.ts","../src/models/mappers.ts","../src/models/parameters.ts","../src/lroImpl.ts","../src/operations/managementGroups.ts","../src/operations/managementGroupSubscriptions.ts","../src/operations/hierarchySettingsOperations.ts","../src/operations/operations.ts","../src/operations/entities.ts","../src/managementGroupsAPI.ts"],"sourcesContent":["/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\n\n/** Describes the result of the request to list management groups. */\nexport interface ManagementGroupListResult {\n /** The list of management groups. */\n value?: ManagementGroupInfo[];\n /**\n * The URL to use for getting the next set of results.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly nextLink?: string;\n}\n\n/** The management group resource. */\nexport interface ManagementGroupInfo {\n /**\n * The fully qualified ID for the management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The type of the resource. For example, Microsoft.Management/managementGroups\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /**\n * The name of the management group. For example, 00000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /** The AAD Tenant ID associated with the management group. For example, 00000000-0000-0000-0000-000000000000 */\n tenantId?: string;\n /** The friendly name of the management group. */\n displayName?: string;\n}\n\n/** The error object. */\nexport interface ErrorResponse {\n /** The details of the error. */\n error?: ErrorDetails;\n}\n\n/** The details of the error. */\nexport interface ErrorDetails {\n /** One of a server-defined set of error codes. */\n code?: string;\n /** A human-readable representation of the error. */\n message?: string;\n /** A human-readable representation of the error's details. */\n details?: string;\n}\n\n/** The management group details. */\nexport interface ManagementGroup {\n /**\n * The fully qualified ID for the management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The type of the resource. For example, Microsoft.Management/managementGroups\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /**\n * The name of the management group. For example, 00000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /** The AAD Tenant ID associated with the management group. For example, 00000000-0000-0000-0000-000000000000 */\n tenantId?: string;\n /** The friendly name of the management group. */\n displayName?: string;\n /** The details of a management group. */\n details?: ManagementGroupDetails;\n /** The list of children. */\n children?: ManagementGroupChildInfo[];\n}\n\n/** The details of a management group. */\nexport interface ManagementGroupDetails {\n /** The version number of the object. */\n version?: number;\n /** The date and time when this object was last updated. */\n updatedTime?: Date;\n /** The identity of the principal or process that updated the object. */\n updatedBy?: string;\n /** (Optional) The ID of the parent management group. */\n parent?: ParentGroupInfo;\n /** The path from the root to the current group. */\n path?: ManagementGroupPathElement[];\n /** The ancestors of the management group. */\n managementGroupAncestors?: string[];\n /** The ancestors of the management group displayed in reversed order, from immediate parent to the root. */\n managementGroupAncestorsChain?: ManagementGroupPathElement[];\n}\n\n/** (Optional) The ID of the parent management group. */\nexport interface ParentGroupInfo {\n /** The fully qualified ID for the parent management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 */\n id?: string;\n /** The name of the parent management group */\n name?: string;\n /** The friendly name of the parent management group. */\n displayName?: string;\n}\n\n/** A path element of a management group ancestors. */\nexport interface ManagementGroupPathElement {\n /** The name of the group. */\n name?: string;\n /** The friendly name of the group. */\n displayName?: string;\n}\n\n/** The child information of a management group. */\nexport interface ManagementGroupChildInfo {\n /** The fully qualified resource type which includes provider namespace (e.g. Microsoft.Management/managementGroups) */\n type?: ManagementGroupChildType;\n /** The fully qualified ID for the child resource (management group or subscription). For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 */\n id?: string;\n /** The name of the child entity. */\n name?: string;\n /** The friendly name of the child resource. */\n displayName?: string;\n /** The list of children. */\n children?: ManagementGroupChildInfo[];\n}\n\n/** Management group creation parameters. */\nexport interface CreateManagementGroupRequest {\n /**\n * The fully qualified ID for the management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The type of the resource. For example, Microsoft.Management/managementGroups\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /** The name of the management group. For example, 00000000-0000-0000-0000-000000000000 */\n name?: string;\n /**\n * The AAD Tenant ID associated with the management group. For example, 00000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly tenantId?: string;\n /** The friendly name of the management group. If no value is passed then this field will be set to the groupId. */\n displayName?: string;\n /** The details of a management group used during creation. */\n details?: CreateManagementGroupDetails;\n /**\n * The list of children.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly children?: CreateManagementGroupChildInfo[];\n}\n\n/** The details of a management group used during creation. */\nexport interface CreateManagementGroupDetails {\n /**\n * The version number of the object.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly version?: number;\n /**\n * The date and time when this object was last updated.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly updatedTime?: Date;\n /**\n * The identity of the principal or process that updated the object.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly updatedBy?: string;\n /** (Optional) The ID of the parent management group used during creation. */\n parent?: CreateParentGroupInfo;\n}\n\n/** (Optional) The ID of the parent management group used during creation. */\nexport interface CreateParentGroupInfo {\n /** The fully qualified ID for the parent management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 */\n id?: string;\n /**\n * The name of the parent management group\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /**\n * The friendly name of the parent management group.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly displayName?: string;\n}\n\n/** The child information of a management group used during creation. */\nexport interface CreateManagementGroupChildInfo {\n /**\n * The fully qualified resource type which includes provider namespace (e.g. Microsoft.Management/managementGroups)\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: ManagementGroupChildType;\n /**\n * The fully qualified ID for the child resource (management group or subscription). For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The name of the child entity.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /**\n * The friendly name of the child resource.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly displayName?: string;\n /**\n * The list of children.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly children?: CreateManagementGroupChildInfo[];\n}\n\n/** The results of Azure-AsyncOperation. */\nexport interface AzureAsyncOperationResults {\n /**\n * The fully qualified ID for the management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The type of the resource. For example, Microsoft.Management/managementGroups\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /**\n * The name of the management group. For example, 00000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /**\n * The current status of the asynchronous operation performed . For example, Running, Succeeded, Failed\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly status?: string;\n /** The AAD Tenant ID associated with the management group. For example, 00000000-0000-0000-0000-000000000000 */\n tenantId?: string;\n /** The friendly name of the management group. */\n displayName?: string;\n}\n\n/** Management group patch parameters. */\nexport interface PatchManagementGroupRequest {\n /** The friendly name of the management group. */\n displayName?: string;\n /** (Optional) The fully qualified ID for the parent management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 */\n parentGroupId?: string;\n}\n\n/** Describes the result of the request to view descendants. */\nexport interface DescendantListResult {\n /** The list of descendants. */\n value?: DescendantInfo[];\n /**\n * The URL to use for getting the next set of results.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly nextLink?: string;\n}\n\n/** The descendant. */\nexport interface DescendantInfo {\n /**\n * The fully qualified ID for the descendant. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 or /subscriptions/0000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The type of the resource. For example, Microsoft.Management/managementGroups or /subscriptions\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /**\n * The name of the descendant. For example, 00000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /** The friendly name of the management group. */\n displayName?: string;\n /** The ID of the parent management group. */\n parent?: DescendantParentGroupInfo;\n}\n\n/** The ID of the parent management group. */\nexport interface DescendantParentGroupInfo {\n /** The fully qualified ID for the parent management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 */\n id?: string;\n}\n\n/** The details of subscription under management group. */\nexport interface SubscriptionUnderManagementGroup {\n /**\n * The fully qualified ID for the subscription. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000/subscriptions/0000000-0000-0000-0000-000000000001\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The type of the resource. For example, Microsoft.Management/managementGroups/subscriptions\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /**\n * The stringified id of the subscription. For example, 00000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /** The AAD Tenant ID associated with the subscription. For example, 00000000-0000-0000-0000-000000000000 */\n tenant?: string;\n /** The friendly name of the subscription. */\n displayName?: string;\n /** The ID of the parent management group. */\n parent?: DescendantParentGroupInfo;\n /** The state of the subscription. */\n state?: string;\n}\n\n/** The details of all subscriptions under management group. */\nexport interface ListSubscriptionUnderManagementGroup {\n /** The list of subscriptions. */\n value?: SubscriptionUnderManagementGroup[];\n /**\n * The URL to use for getting the next set of results.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly nextLink?: string;\n}\n\n/** Lists all hierarchy settings. */\nexport interface HierarchySettingsList {\n /** The list of hierarchy settings. */\n value?: HierarchySettingsInfo[];\n /**\n * The URL to use for getting the next set of results.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly nextLink?: string;\n}\n\n/** The hierarchy settings resource. */\nexport interface HierarchySettingsInfo {\n /**\n * The fully qualified ID for the settings object. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000/settings/default.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The type of the resource. For example, Microsoft.Management/managementGroups/settings.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /**\n * The name of the object. In this case, default.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /** The AAD Tenant ID associated with the hierarchy settings. For example, 00000000-0000-0000-0000-000000000000 */\n tenantId?: string;\n /** Indicates whether RBAC access is required upon group creation under the root Management Group. If set to true, user will require Microsoft.Management/managementGroups/write action on the root Management Group scope in order to create new Groups directly under the root. This will prevent new users from creating new Management Groups, unless they are given access. */\n requireAuthorizationForGroupCreation?: boolean;\n /** Settings that sets the default Management Group under which new subscriptions get added in this tenant. For example, /providers/Microsoft.Management/managementGroups/defaultGroup */\n defaultManagementGroup?: string;\n}\n\n/** Settings defined at the Management Group scope. */\nexport interface HierarchySettings {\n /**\n * The fully qualified ID for the settings object. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000/settings/default.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The type of the resource. For example, Microsoft.Management/managementGroups/settings.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /**\n * The name of the object. In this case, default.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /** The AAD Tenant ID associated with the hierarchy settings. For example, 00000000-0000-0000-0000-000000000000 */\n tenantId?: string;\n /** Indicates whether RBAC access is required upon group creation under the root Management Group. If set to true, user will require Microsoft.Management/managementGroups/write action on the root Management Group scope in order to create new Groups directly under the root. This will prevent new users from creating new Management Groups, unless they are given access. */\n requireAuthorizationForGroupCreation?: boolean;\n /** Settings that sets the default Management Group under which new subscriptions get added in this tenant. For example, /providers/Microsoft.Management/managementGroups/defaultGroup */\n defaultManagementGroup?: string;\n}\n\n/** Parameters for creating or updating Management Group settings */\nexport interface CreateOrUpdateSettingsRequest {\n /** Indicates whether RBAC access is required upon group creation under the root Management Group. If set to true, user will require Microsoft.Management/managementGroups/write action on the root Management Group scope in order to create new Groups directly under the root. This will prevent new users from creating new Management Groups, unless they are given access. */\n requireAuthorizationForGroupCreation?: boolean;\n /** Settings that sets the default Management Group under which new subscriptions get added in this tenant. For example, /providers/Microsoft.Management/managementGroups/defaultGroup */\n defaultManagementGroup?: string;\n}\n\n/** Describes the result of the request to list Microsoft.Management operations. */\nexport interface OperationListResult {\n /**\n * List of operations supported by the Microsoft.Management resource provider.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly value?: Operation[];\n /**\n * URL to get the next set of operation list results if there are any.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly nextLink?: string;\n}\n\n/** Operation supported by the Microsoft.Management resource provider. */\nexport interface Operation {\n /**\n * Operation name: {provider}/{resource}/{operation}.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /** The object that represents the operation. */\n display?: OperationDisplayProperties;\n}\n\n/** The object that represents the operation. */\nexport interface OperationDisplayProperties {\n /**\n * The name of the provider.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly provider?: string;\n /**\n * The resource on which the operation is performed.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly resource?: string;\n /**\n * The operation that can be performed.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly operation?: string;\n /**\n * Operation description.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly description?: string;\n}\n\n/** Management group name availability check parameters. */\nexport interface CheckNameAvailabilityRequest {\n /** the name to check for availability */\n name?: string;\n /** fully qualified resource type which includes provider namespace */\n type?: \"Microsoft.Management/managementGroups\";\n}\n\n/** Describes the result of the request to check management group name availability. */\nexport interface CheckNameAvailabilityResult {\n /**\n * Required. True indicates name is valid and available. False indicates the name is invalid, unavailable, or both.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly nameAvailable?: boolean;\n /**\n * Required if nameAvailable == false. Invalid indicates the name provided does not match the resource provider's naming requirements (incorrect length, unsupported characters, etc.) AlreadyExists indicates that the name is already in use and is therefore unavailable.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly reason?: Reason;\n /**\n * Required if nameAvailable == false. Localized. If reason == invalid, provide the user with the reason why the given name is invalid, and provide the resource naming requirements so that the user can select a valid name. If reason == AlreadyExists, explain that is already in use, and direct them to select a different name.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly message?: string;\n}\n\n/** Describes the result of the request to view entities. */\nexport interface EntityListResult {\n /** The list of entities. */\n value?: EntityInfo[];\n /**\n * Total count of records that match the filter\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly count?: number;\n /**\n * The URL to use for getting the next set of results.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly nextLink?: string;\n}\n\n/** The entity. */\nexport interface EntityInfo {\n /**\n * The fully qualified ID for the entity. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The type of the resource. For example, Microsoft.Management/managementGroups\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /**\n * The name of the entity. For example, 00000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /** The AAD Tenant ID associated with the entity. For example, 00000000-0000-0000-0000-000000000000 */\n tenantId?: string;\n /** The friendly name of the management group. */\n displayName?: string;\n /** (Optional) The ID of the parent management group. */\n parent?: EntityParentGroupInfo;\n /** The users specific permissions to this item. */\n permissions?: Permissions;\n /** The users specific permissions to this item. */\n inheritedPermissions?: Permissions;\n /** Number of Descendants */\n numberOfDescendants?: number;\n /** Number of children is the number of Groups and Subscriptions that are exactly one level underneath the current Group. */\n numberOfChildren?: number;\n /** Number of children is the number of Groups that are exactly one level underneath the current Group. */\n numberOfChildGroups?: number;\n /** The parent display name chain from the root group to the immediate parent */\n parentDisplayNameChain?: string[];\n /** The parent name chain from the root group to the immediate parent */\n parentNameChain?: string[];\n}\n\n/** (Optional) The ID of the parent management group. */\nexport interface EntityParentGroupInfo {\n /** The fully qualified ID for the parent management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 */\n id?: string;\n}\n\n/** The tenant backfill status */\nexport interface TenantBackfillStatusResult {\n /**\n * The AAD Tenant ID associated with the management group. For example, 00000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly tenantId?: string;\n /**\n * The status of the Tenant Backfill\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly status?: Status;\n}\n\n/** The results of an asynchronous operation. */\nexport interface OperationResults {\n /**\n * The fully qualified ID for the management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The type of the resource. For example, Microsoft.Management/managementGroups\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /**\n * The name of the management group. For example, 00000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /** The AAD Tenant ID associated with the management group. For example, 00000000-0000-0000-0000-000000000000 */\n tenantId?: string;\n /** The friendly name of the management group. */\n displayName?: string;\n}\n\n/** The management group details for the hierarchy view. */\nexport interface EntityHierarchyItem {\n /**\n * The fully qualified ID for the management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The type of the resource. For example, Microsoft.Management/managementGroups\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /**\n * The name of the management group. For example, 00000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /** The friendly name of the management group. */\n displayName?: string;\n /** The users specific permissions to this item. */\n permissions?: Permissions;\n /** The list of children. */\n children?: EntityHierarchyItem[];\n}\n\n/** Defines headers for ManagementGroups_createOrUpdate operation. */\nexport interface ManagementGroupsCreateOrUpdateHeaders {\n /**\n * URL for determining when an operation has completed. Send a GET request to the URL in Location header.\n * The URI should return a 202 until the operation reaches a terminal state and 200 once it reaches a terminal state.\n *\n * For more info: https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/Addendum.md#202-accepted-and-location-headers\n */\n location?: string;\n /**\n * URL for checking the ongoing status of the operation.\n * To get the status of the asynchronous operation, send a GET request to the URL in Azure-AsyncOperation header value.\n *\n * For more info: https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/Addendum.md#asynchronous-operations\n */\n azureAsyncOperation?: string;\n}\n\n/** Defines headers for ManagementGroups_delete operation. */\nexport interface ManagementGroupsDeleteHeaders {\n /**\n * URL for determining when an operation has completed. Send a GET request to the URL in Location header.\n * The URI should return a 202 until the operation reaches a terminal state and 200 once it reaches a terminal state.\n *\n * For more info: https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/Addendum.md#202-accepted-and-location-headers\n */\n location?: string;\n /**\n * URL for checking the ongoing status of the operation.\n * To get the status of the asynchronous operation, send a GET request to the URL in Azure-AsyncOperation header value.\n *\n * For more info: https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/Addendum.md#asynchronous-operations\n */\n azureAsyncOperation?: string;\n}\n\n/** Known values of {@link Enum0} that the service accepts. */\nexport enum KnownEnum0 {\n Children = \"children\",\n Path = \"path\",\n Ancestors = \"ancestors\"\n}\n\n/**\n * Defines values for Enum0. \\\n * {@link KnownEnum0} can be used interchangeably with Enum0,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **children** \\\n * **path** \\\n * **ancestors**\n */\nexport type Enum0 = string;\n\n/** Known values of {@link ManagementGroupChildType} that the service accepts. */\nexport enum KnownManagementGroupChildType {\n MicrosoftManagementManagementGroups = \"Microsoft.Management/managementGroups\",\n Subscriptions = \"/subscriptions\"\n}\n\n/**\n * Defines values for ManagementGroupChildType. \\\n * {@link KnownManagementGroupChildType} can be used interchangeably with ManagementGroupChildType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Microsoft.Management\\/managementGroups** \\\n * **\\/subscriptions**\n */\nexport type ManagementGroupChildType = string;\n\n/** Known values of {@link Enum2} that the service accepts. */\nexport enum KnownEnum2 {\n AllowedParents = \"AllowedParents\",\n AllowedChildren = \"AllowedChildren\",\n ParentAndFirstLevelChildren = \"ParentAndFirstLevelChildren\",\n ParentOnly = \"ParentOnly\",\n ChildrenOnly = \"ChildrenOnly\"\n}\n\n/**\n * Defines values for Enum2. \\\n * {@link KnownEnum2} can be used interchangeably with Enum2,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **AllowedParents** \\\n * **AllowedChildren** \\\n * **ParentAndFirstLevelChildren** \\\n * **ParentOnly** \\\n * **ChildrenOnly**\n */\nexport type Enum2 = string;\n\n/** Known values of {@link Enum3} that the service accepts. */\nexport enum KnownEnum3 {\n FullHierarchy = \"FullHierarchy\",\n GroupsOnly = \"GroupsOnly\",\n SubscriptionsOnly = \"SubscriptionsOnly\",\n Audit = \"Audit\"\n}\n\n/**\n * Defines values for Enum3. \\\n * {@link KnownEnum3} can be used interchangeably with Enum3,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **FullHierarchy** \\\n * **GroupsOnly** \\\n * **SubscriptionsOnly** \\\n * **Audit**\n */\nexport type Enum3 = string;\n\n/** Known values of {@link Permissions} that the service accepts. */\nexport enum KnownPermissions {\n Noaccess = \"noaccess\",\n View = \"view\",\n Edit = \"edit\",\n Delete = \"delete\"\n}\n\n/**\n * Defines values for Permissions. \\\n * {@link KnownPermissions} can be used interchangeably with Permissions,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **noaccess** \\\n * **view** \\\n * **edit** \\\n * **delete**\n */\nexport type Permissions = string;\n/** Defines values for Reason. */\nexport type Reason = \"Invalid\" | \"AlreadyExists\";\n/** Defines values for Status. */\nexport type Status =\n | \"NotStarted\"\n | \"NotStartedButGroupsExist\"\n | \"Started\"\n | \"Failed\"\n | \"Cancelled\"\n | \"Completed\";\n\n/** Optional parameters. */\nexport interface ManagementGroupsListOptionalParams\n extends coreClient.OperationOptions {\n /** Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. */\n cacheControl?: string;\n /**\n * Page continuation token is only used if a previous operation returned a partial result.\n * If a previous response contains a nextLink element, the value of the nextLink element will include a token parameter that specifies a starting point to use for subsequent calls.\n *\n */\n skiptoken?: string;\n}\n\n/** Contains response data for the list operation. */\nexport type ManagementGroupsListResponse = ManagementGroupListResult;\n\n/** Optional parameters. */\nexport interface ManagementGroupsGetOptionalParams\n extends coreClient.OperationOptions {\n /** Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. */\n cacheControl?: string;\n /** The $expand=children query string parameter allows clients to request inclusion of children in the response payload. $expand=path includes the path from the root group to the current group. $expand=ancestors includes the ancestor Ids of the current group. */\n expand?: Enum0;\n /** The $recurse=true query string parameter allows clients to request inclusion of entire hierarchy in the response payload. Note that $expand=children must be passed up if $recurse is set to true. */\n recurse?: boolean;\n /** A filter which allows the exclusion of subscriptions from results (i.e. '$filter=children.childType ne Subscription') */\n filter?: string;\n}\n\n/** Contains response data for the get operation. */\nexport type ManagementGroupsGetResponse = ManagementGroup;\n\n/** Optional parameters. */\nexport interface ManagementGroupsCreateOrUpdateOptionalParams\n extends coreClient.OperationOptions {\n /** Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. */\n cacheControl?: string;\n /** Delay to wait until next poll, in milliseconds. */\n updateIntervalInMs?: number;\n /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */\n resumeFrom?: string;\n}\n\n/** Contains response data for the createOrUpdate operation. */\nexport type ManagementGroupsCreateOrUpdateResponse = ManagementGroup;\n\n/** Optional parameters. */\nexport interface ManagementGroupsUpdateOptionalParams\n extends coreClient.OperationOptions {\n /** Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. */\n cacheControl?: string;\n}\n\n/** Contains response data for the update operation. */\nexport type ManagementGroupsUpdateResponse = ManagementGroup;\n\n/** Optional parameters. */\nexport interface ManagementGroupsDeleteOptionalParams\n extends coreClient.OperationOptions {\n /** Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. */\n cacheControl?: string;\n /** Delay to wait until next poll, in milliseconds. */\n updateIntervalInMs?: number;\n /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */\n resumeFrom?: string;\n}\n\n/** Contains response data for the delete operation. */\nexport type ManagementGroupsDeleteResponse = ManagementGroupsDeleteHeaders &\n AzureAsyncOperationResults;\n\n/** Optional parameters. */\nexport interface ManagementGroupsGetDescendantsOptionalParams\n extends coreClient.OperationOptions {\n /**\n * Page continuation token is only used if a previous operation returned a partial result.\n * If a previous response contains a nextLink element, the value of the nextLink element will include a token parameter that specifies a starting point to use for subsequent calls.\n *\n */\n skiptoken?: string;\n /** Number of elements to return when retrieving results. Passing this in will override $skipToken. */\n top?: number;\n}\n\n/** Contains response data for the getDescendants operation. */\nexport type ManagementGroupsGetDescendantsResponse = DescendantListResult;\n\n/** Optional parameters. */\nexport interface ManagementGroupsListNextOptionalParams\n extends coreClient.OperationOptions {\n /** Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. */\n cacheControl?: string;\n /**\n * Page continuation token is only used if a previous operation returned a partial result.\n * If a previous response contains a nextLink element, the value of the nextLink element will include a token parameter that specifies a starting point to use for subsequent calls.\n *\n */\n skiptoken?: string;\n}\n\n/** Contains response data for the listNext operation. */\nexport type ManagementGroupsListNextResponse = ManagementGroupListResult;\n\n/** Optional parameters. */\nexport interface ManagementGroupsGetDescendantsNextOptionalParams\n extends coreClient.OperationOptions {\n /**\n * Page continuation token is only used if a previous operation returned a partial result.\n * If a previous response contains a nextLink element, the value of the nextLink element will include a token parameter that specifies a starting point to use for subsequent calls.\n *\n */\n skiptoken?: string;\n /** Number of elements to return when retrieving results. Passing this in will override $skipToken. */\n top?: number;\n}\n\n/** Contains response data for the getDescendantsNext operation. */\nexport type ManagementGroupsGetDescendantsNextResponse = DescendantListResult;\n\n/** Optional parameters. */\nexport interface ManagementGroupSubscriptionsCreateOptionalParams\n extends coreClient.OperationOptions {\n /** Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. */\n cacheControl?: string;\n}\n\n/** Contains response data for the create operation. */\nexport type ManagementGroupSubscriptionsCreateResponse = SubscriptionUnderManagementGroup;\n\n/** Optional parameters. */\nexport interface ManagementGroupSubscriptionsDeleteOptionalParams\n extends coreClient.OperationOptions {\n /** Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. */\n cacheControl?: string;\n}\n\n/** Optional parameters. */\nexport interface ManagementGroupSubscriptionsGetSubscriptionOptionalParams\n extends coreClient.OperationOptions {\n /** Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. */\n cacheControl?: string;\n}\n\n/** Contains response data for the getSubscription operation. */\nexport type ManagementGroupSubscriptionsGetSubscriptionResponse = SubscriptionUnderManagementGroup;\n\n/** Optional parameters. */\nexport interface ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupOptionalParams\n extends coreClient.OperationOptions {\n /**\n * Page continuation token is only used if a previous operation returned a partial result.\n * If a previous response contains a nextLink element, the value of the nextLink element will include a token parameter that specifies a starting point to use for subsequent calls.\n *\n */\n skiptoken?: string;\n}\n\n/** Contains response data for the getSubscriptionsUnderManagementGroup operation. */\nexport type ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupResponse = ListSubscriptionUnderManagementGroup;\n\n/** Optional parameters. */\nexport interface ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupNextOptionalParams\n extends coreClient.OperationOptions {\n /**\n * Page continuation token is only used if a previous operation returned a partial result.\n * If a previous response contains a nextLink element, the value of the nextLink element will include a token parameter that specifies a starting point to use for subsequent calls.\n *\n */\n skiptoken?: string;\n}\n\n/** Contains response data for the getSubscriptionsUnderManagementGroupNext operation. */\nexport type ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupNextResponse = ListSubscriptionUnderManagementGroup;\n\n/** Optional parameters. */\nexport interface HierarchySettingsListOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the list operation. */\nexport type HierarchySettingsListResponse = HierarchySettingsList;\n\n/** Optional parameters. */\nexport interface HierarchySettingsGetOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the get operation. */\nexport type HierarchySettingsGetResponse = HierarchySettings;\n\n/** Optional parameters. */\nexport interface HierarchySettingsCreateOrUpdateOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the createOrUpdate operation. */\nexport type HierarchySettingsCreateOrUpdateResponse = HierarchySettings;\n\n/** Optional parameters. */\nexport interface HierarchySettingsUpdateOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the update operation. */\nexport type HierarchySettingsUpdateResponse = HierarchySettings;\n\n/** Optional parameters. */\nexport interface HierarchySettingsDeleteOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Optional parameters. */\nexport interface OperationsListOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the list operation. */\nexport type OperationsListResponse = OperationListResult;\n\n/** Optional parameters. */\nexport interface OperationsListNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listNext operation. */\nexport type OperationsListNextResponse = OperationListResult;\n\n/** Optional parameters. */\nexport interface CheckNameAvailabilityOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the checkNameAvailability operation. */\nexport type CheckNameAvailabilityResponse = CheckNameAvailabilityResult;\n\n/** Optional parameters. */\nexport interface StartTenantBackfillOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the startTenantBackfill operation. */\nexport type StartTenantBackfillResponse = TenantBackfillStatusResult;\n\n/** Optional parameters. */\nexport interface TenantBackfillStatusOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the tenantBackfillStatus operation. */\nexport type TenantBackfillStatusResponse = TenantBackfillStatusResult;\n\n/** Optional parameters. */\nexport interface EntitiesListOptionalParams\n extends coreClient.OperationOptions {\n /** Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. */\n cacheControl?: string;\n /**\n * Page continuation token is only used if a previous operation returned a partial result.\n * If a previous response contains a nextLink element, the value of the nextLink element will include a token parameter that specifies a starting point to use for subsequent calls.\n *\n */\n skiptoken?: string;\n /** The filter parameter allows you to filter on the the name or display name fields. You can check for equality on the name field (e.g. name eq '{entityName}') and you can check for substrings on either the name or display name fields(e.g. contains(name, '{substringToSearch}'), contains(displayName, '{substringToSearch')). Note that the '{entityName}' and '{substringToSearch}' fields are checked case insensitively. */\n filter?: string;\n /** Number of elements to return when retrieving results. Passing this in will override $skipToken. */\n top?: number;\n /** Number of entities to skip over when retrieving results. Passing this in will override $skipToken. */\n skip?: number;\n /** This parameter specifies the fields to include in the response. Can include any combination of Name,DisplayName,Type,ParentDisplayNameChain,ParentChain, e.g. '$select=Name,DisplayName,Type,ParentDisplayNameChain,ParentNameChain'. When specified the $select parameter can override select in $skipToken. */\n select?: string;\n /**\n * The $search parameter is used in conjunction with the $filter parameter to return three different outputs depending on the parameter passed in.\n * With $search=AllowedParents the API will return the entity info of all groups that the requested entity will be able to reparent to as determined by the user's permissions.\n * With $search=AllowedChildren the API will return the entity info of all entities that can be added as children of the requested entity.\n * With $search=ParentAndFirstLevelChildren the API will return the parent and first level of children that the user has either direct access to or indirect access via one of their descendants.\n * With $search=ParentOnly the API will return only the group if the user has access to at least one of the descendants of the group.\n * With $search=ChildrenOnly the API will return only the first level of children of the group entity info specified in $filter. The user must have direct access to the children entities or one of it's descendants for it to show up in the results.\n */\n search?: Enum2;\n /** The view parameter allows clients to filter the type of data that is returned by the getEntities call. */\n view?: Enum3;\n /** A filter which allows the get entities call to focus on a particular group (i.e. \"$filter=name eq 'groupName'\") */\n groupName?: string;\n}\n\n/** Contains response data for the list operation. */\nexport type EntitiesListResponse = EntityListResult;\n\n/** Optional parameters. */\nexport interface EntitiesListNextOptionalParams\n extends coreClient.OperationOptions {\n /** Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. */\n cacheControl?: string;\n /**\n * Page continuation token is only used if a previous operation returned a partial result.\n * If a previous response contains a nextLink element, the value of the nextLink element will include a token parameter that specifies a starting point to use for subsequent calls.\n *\n */\n skiptoken?: string;\n /** The filter parameter allows you to filter on the the name or display name fields. You can check for equality on the name field (e.g. name eq '{entityName}') and you can check for substrings on either the name or display name fields(e.g. contains(name, '{substringToSearch}'), contains(displayName, '{substringToSearch')). Note that the '{entityName}' and '{substringToSearch}' fields are checked case insensitively. */\n filter?: string;\n /** Number of elements to return when retrieving results. Passing this in will override $skipToken. */\n top?: number;\n /** Number of entities to skip over when retrieving results. Passing this in will override $skipToken. */\n skip?: number;\n /** This parameter specifies the fields to include in the response. Can include any combination of Name,DisplayName,Type,ParentDisplayNameChain,ParentChain, e.g. '$select=Name,DisplayName,Type,ParentDisplayNameChain,ParentNameChain'. When specified the $select parameter can override select in $skipToken. */\n select?: string;\n /**\n * The $search parameter is used in conjunction with the $filter parameter to return three different outputs depending on the parameter passed in.\n * With $search=AllowedParents the API will return the entity info of all groups that the requested entity will be able to reparent to as determined by the user's permissions.\n * With $search=AllowedChildren the API will return the entity info of all entities that can be added as children of the requested entity.\n * With $search=ParentAndFirstLevelChildren the API will return the parent and first level of children that the user has either direct access to or indirect access via one of their descendants.\n * With $search=ParentOnly the API will return only the group if the user has access to at least one of the descendants of the group.\n * With $search=ChildrenOnly the API will return only the first level of children of the group entity info specified in $filter. The user must have direct access to the children entities or one of it's descendants for it to show up in the results.\n */\n search?: Enum2;\n /** The view parameter allows clients to filter the type of data that is returned by the getEntities call. */\n view?: Enum3;\n /** A filter which allows the get entities call to focus on a particular group (i.e. \"$filter=name eq 'groupName'\") */\n groupName?: string;\n}\n\n/** Contains response data for the listNext operation. */\nexport type EntitiesListNextResponse = EntityListResult;\n\n/** Optional parameters. */\nexport interface ManagementGroupsAPIOptionalParams\n extends coreClient.ServiceClientOptions {\n /** server parameter */\n $host?: string;\n /** Api Version */\n apiVersion?: string;\n /** Overrides client endpoint. */\n endpoint?: string;\n}\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\n\nexport const ManagementGroupListResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementGroupListResult\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ManagementGroupInfo\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ManagementGroupInfo: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementGroupInfo\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n tenantId: {\n serializedName: \"properties.tenantId\",\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"properties.displayName\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ErrorResponse: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ErrorResponse\",\n modelProperties: {\n error: {\n serializedName: \"error\",\n type: {\n name: \"Composite\",\n className: \"ErrorDetails\"\n }\n }\n }\n }\n};\n\nexport const ErrorDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ErrorDetails\",\n modelProperties: {\n code: {\n serializedName: \"code\",\n type: {\n name: \"String\"\n }\n },\n message: {\n serializedName: \"message\",\n type: {\n name: \"String\"\n }\n },\n details: {\n serializedName: \"details\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ManagementGroup: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementGroup\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n tenantId: {\n serializedName: \"properties.tenantId\",\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"properties.displayName\",\n type: {\n name: \"String\"\n }\n },\n details: {\n serializedName: \"properties.details\",\n type: {\n name: \"Composite\",\n className: \"ManagementGroupDetails\"\n }\n },\n children: {\n serializedName: \"properties.children\",\n nullable: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ManagementGroupChildInfo\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const ManagementGroupDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementGroupDetails\",\n modelProperties: {\n version: {\n serializedName: \"version\",\n type: {\n name: \"Number\"\n }\n },\n updatedTime: {\n serializedName: \"updatedTime\",\n type: {\n name: \"DateTime\"\n }\n },\n updatedBy: {\n serializedName: \"updatedBy\",\n type: {\n name: \"String\"\n }\n },\n parent: {\n serializedName: \"parent\",\n type: {\n name: \"Composite\",\n className: \"ParentGroupInfo\"\n }\n },\n path: {\n serializedName: \"path\",\n nullable: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ManagementGroupPathElement\"\n }\n }\n }\n },\n managementGroupAncestors: {\n serializedName: \"managementGroupAncestors\",\n nullable: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n managementGroupAncestorsChain: {\n serializedName: \"managementGroupAncestorsChain\",\n nullable: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ManagementGroupPathElement\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const ParentGroupInfo: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ParentGroupInfo\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"displayName\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ManagementGroupPathElement: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementGroupPathElement\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"displayName\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ManagementGroupChildInfo: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementGroupChildInfo\",\n modelProperties: {\n type: {\n serializedName: \"type\",\n type: {\n name: \"String\"\n }\n },\n id: {\n serializedName: \"id\",\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"displayName\",\n type: {\n name: \"String\"\n }\n },\n children: {\n serializedName: \"children\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ManagementGroupChildInfo\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const CreateManagementGroupRequest: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CreateManagementGroupRequest\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n tenantId: {\n serializedName: \"properties.tenantId\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"properties.displayName\",\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n details: {\n serializedName: \"properties.details\",\n type: {\n name: \"Composite\",\n className: \"CreateManagementGroupDetails\"\n }\n },\n children: {\n serializedName: \"properties.children\",\n readOnly: true,\n nullable: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"CreateManagementGroupChildInfo\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const CreateManagementGroupDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CreateManagementGroupDetails\",\n modelProperties: {\n version: {\n serializedName: \"version\",\n readOnly: true,\n type: {\n name: \"Number\"\n }\n },\n updatedTime: {\n serializedName: \"updatedTime\",\n readOnly: true,\n type: {\n name: \"DateTime\"\n }\n },\n updatedBy: {\n serializedName: \"updatedBy\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n parent: {\n serializedName: \"parent\",\n type: {\n name: \"Composite\",\n className: \"CreateParentGroupInfo\"\n }\n }\n }\n }\n};\n\nexport const CreateParentGroupInfo: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CreateParentGroupInfo\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"displayName\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const CreateManagementGroupChildInfo: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CreateManagementGroupChildInfo\",\n modelProperties: {\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"displayName\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n children: {\n serializedName: \"children\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"CreateManagementGroupChildInfo\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const AzureAsyncOperationResults: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"AzureAsyncOperationResults\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n status: {\n serializedName: \"status\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n tenantId: {\n serializedName: \"properties.tenantId\",\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"properties.displayName\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const PatchManagementGroupRequest: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"PatchManagementGroupRequest\",\n modelProperties: {\n displayName: {\n serializedName: \"displayName\",\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n parentGroupId: {\n serializedName: \"parentGroupId\",\n nullable: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const DescendantListResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"DescendantListResult\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"DescendantInfo\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const DescendantInfo: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"DescendantInfo\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"properties.displayName\",\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n parent: {\n serializedName: \"properties.parent\",\n type: {\n name: \"Composite\",\n className: \"DescendantParentGroupInfo\"\n }\n }\n }\n }\n};\n\nexport const DescendantParentGroupInfo: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"DescendantParentGroupInfo\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const SubscriptionUnderManagementGroup: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SubscriptionUnderManagementGroup\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n tenant: {\n serializedName: \"properties.tenant\",\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"properties.displayName\",\n type: {\n name: \"String\"\n }\n },\n parent: {\n serializedName: \"properties.parent\",\n type: {\n name: \"Composite\",\n className: \"DescendantParentGroupInfo\"\n }\n },\n state: {\n serializedName: \"properties.state\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ListSubscriptionUnderManagementGroup: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ListSubscriptionUnderManagementGroup\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"SubscriptionUnderManagementGroup\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const HierarchySettingsList: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"HierarchySettingsList\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"HierarchySettingsInfo\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const HierarchySettingsInfo: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"HierarchySettingsInfo\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n tenantId: {\n serializedName: \"properties.tenantId\",\n type: {\n name: \"String\"\n }\n },\n requireAuthorizationForGroupCreation: {\n serializedName: \"properties.requireAuthorizationForGroupCreation\",\n type: {\n name: \"Boolean\"\n }\n },\n defaultManagementGroup: {\n serializedName: \"properties.defaultManagementGroup\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const HierarchySettings: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"HierarchySettings\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n tenantId: {\n serializedName: \"properties.tenantId\",\n type: {\n name: \"String\"\n }\n },\n requireAuthorizationForGroupCreation: {\n serializedName: \"properties.requireAuthorizationForGroupCreation\",\n type: {\n name: \"Boolean\"\n }\n },\n defaultManagementGroup: {\n serializedName: \"properties.defaultManagementGroup\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const CreateOrUpdateSettingsRequest: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CreateOrUpdateSettingsRequest\",\n modelProperties: {\n requireAuthorizationForGroupCreation: {\n serializedName: \"properties.requireAuthorizationForGroupCreation\",\n type: {\n name: \"Boolean\"\n }\n },\n defaultManagementGroup: {\n serializedName: \"properties.defaultManagementGroup\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const OperationListResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"OperationListResult\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Operation\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const Operation: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Operation\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n display: {\n serializedName: \"display\",\n type: {\n name: \"Composite\",\n className: \"OperationDisplayProperties\"\n }\n }\n }\n }\n};\n\nexport const OperationDisplayProperties: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"OperationDisplayProperties\",\n modelProperties: {\n provider: {\n serializedName: \"provider\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n resource: {\n serializedName: \"resource\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n operation: {\n serializedName: \"operation\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n description: {\n serializedName: \"description\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const CheckNameAvailabilityRequest: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CheckNameAvailabilityRequest\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n type: {\n defaultValue: \"Microsoft.Management/managementGroups\",\n isConstant: true,\n serializedName: \"type\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const CheckNameAvailabilityResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CheckNameAvailabilityResult\",\n modelProperties: {\n nameAvailable: {\n serializedName: \"nameAvailable\",\n readOnly: true,\n type: {\n name: \"Boolean\"\n }\n },\n reason: {\n serializedName: \"reason\",\n readOnly: true,\n type: {\n name: \"Enum\",\n allowedValues: [\"Invalid\", \"AlreadyExists\"]\n }\n },\n message: {\n serializedName: \"message\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const EntityListResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"EntityListResult\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"EntityInfo\"\n }\n }\n }\n },\n count: {\n serializedName: \"count\",\n readOnly: true,\n type: {\n name: \"Number\"\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const EntityInfo: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"EntityInfo\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n tenantId: {\n serializedName: \"properties.tenantId\",\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"properties.displayName\",\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n parent: {\n serializedName: \"properties.parent\",\n type: {\n name: \"Composite\",\n className: \"EntityParentGroupInfo\"\n }\n },\n permissions: {\n serializedName: \"properties.permissions\",\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n inheritedPermissions: {\n serializedName: \"properties.inheritedPermissions\",\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n numberOfDescendants: {\n serializedName: \"properties.numberOfDescendants\",\n nullable: true,\n type: {\n name: \"Number\"\n }\n },\n numberOfChildren: {\n serializedName: \"properties.numberOfChildren\",\n nullable: true,\n type: {\n name: \"Number\"\n }\n },\n numberOfChildGroups: {\n serializedName: \"properties.numberOfChildGroups\",\n nullable: true,\n type: {\n name: \"Number\"\n }\n },\n parentDisplayNameChain: {\n serializedName: \"properties.parentDisplayNameChain\",\n nullable: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n parentNameChain: {\n serializedName: \"properties.parentNameChain\",\n nullable: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const EntityParentGroupInfo: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"EntityParentGroupInfo\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const TenantBackfillStatusResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"TenantBackfillStatusResult\",\n modelProperties: {\n tenantId: {\n serializedName: \"tenantId\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n status: {\n serializedName: \"status\",\n readOnly: true,\n type: {\n name: \"Enum\",\n allowedValues: [\n \"NotStarted\",\n \"NotStartedButGroupsExist\",\n \"Started\",\n \"Failed\",\n \"Cancelled\",\n \"Completed\"\n ]\n }\n }\n }\n }\n};\n\nexport const OperationResults: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"OperationResults\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n tenantId: {\n serializedName: \"properties.tenantId\",\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"properties.displayName\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const EntityHierarchyItem: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"EntityHierarchyItem\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"properties.displayName\",\n type: {\n name: \"String\"\n }\n },\n permissions: {\n serializedName: \"properties.permissions\",\n type: {\n name: \"String\"\n }\n },\n children: {\n serializedName: \"properties.children\",\n nullable: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"EntityHierarchyItem\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const ManagementGroupsCreateOrUpdateHeaders: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementGroupsCreateOrUpdateHeaders\",\n modelProperties: {\n location: {\n serializedName: \"location\",\n type: {\n name: \"String\"\n }\n },\n azureAsyncOperation: {\n serializedName: \"azure-asyncoperation\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ManagementGroupsDeleteHeaders: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementGroupsDeleteHeaders\",\n modelProperties: {\n location: {\n serializedName: \"location\",\n type: {\n name: \"String\"\n }\n },\n azureAsyncOperation: {\n serializedName: \"azure-asyncoperation\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport {\n OperationParameter,\n OperationURLParameter,\n OperationQueryParameter\n} from \"@azure/core-client\";\nimport {\n CreateManagementGroupRequest as CreateManagementGroupRequestMapper,\n PatchManagementGroupRequest as PatchManagementGroupRequestMapper,\n CreateOrUpdateSettingsRequest as CreateOrUpdateSettingsRequestMapper,\n CheckNameAvailabilityRequest as CheckNameAvailabilityRequestMapper\n} from \"../models/mappers\";\n\nexport const accept: OperationParameter = {\n parameterPath: \"accept\",\n mapper: {\n defaultValue: \"application/json\",\n isConstant: true,\n serializedName: \"Accept\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const $host: OperationURLParameter = {\n parameterPath: \"$host\",\n mapper: {\n serializedName: \"$host\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\n\nexport const apiVersion: OperationQueryParameter = {\n parameterPath: \"apiVersion\",\n mapper: {\n defaultValue: \"2021-04-01\",\n isConstant: true,\n serializedName: \"api-version\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const cacheControl: OperationParameter = {\n parameterPath: [\"options\", \"cacheControl\"],\n mapper: {\n defaultValue: \"no-cache\",\n serializedName: \"Cache-Control\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const skiptoken: OperationQueryParameter = {\n parameterPath: [\"options\", \"skiptoken\"],\n mapper: {\n serializedName: \"$skiptoken\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const groupId: OperationURLParameter = {\n parameterPath: \"groupId\",\n mapper: {\n serializedName: \"groupId\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const expand: OperationQueryParameter = {\n parameterPath: [\"options\", \"expand\"],\n mapper: {\n serializedName: \"$expand\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const recurse: OperationQueryParameter = {\n parameterPath: [\"options\", \"recurse\"],\n mapper: {\n serializedName: \"$recurse\",\n type: {\n name: \"Boolean\"\n }\n }\n};\n\nexport const filter: OperationQueryParameter = {\n parameterPath: [\"options\", \"filter\"],\n mapper: {\n serializedName: \"$filter\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const contentType: OperationParameter = {\n parameterPath: [\"options\", \"contentType\"],\n mapper: {\n defaultValue: \"application/json\",\n isConstant: true,\n serializedName: \"Content-Type\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const createManagementGroupRequest: OperationParameter = {\n parameterPath: \"createManagementGroupRequest\",\n mapper: CreateManagementGroupRequestMapper\n};\n\nexport const patchGroupRequest: OperationParameter = {\n parameterPath: \"patchGroupRequest\",\n mapper: PatchManagementGroupRequestMapper\n};\n\nexport const top: OperationQueryParameter = {\n parameterPath: [\"options\", \"top\"],\n mapper: {\n serializedName: \"$top\",\n type: {\n name: \"Number\"\n }\n }\n};\n\nexport const nextLink: OperationURLParameter = {\n parameterPath: \"nextLink\",\n mapper: {\n serializedName: \"nextLink\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\n\nexport const subscriptionId: OperationURLParameter = {\n parameterPath: \"subscriptionId\",\n mapper: {\n serializedName: \"subscriptionId\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const createTenantSettingsRequest: OperationParameter = {\n parameterPath: \"createTenantSettingsRequest\",\n mapper: CreateOrUpdateSettingsRequestMapper\n};\n\nexport const checkNameAvailabilityRequest: OperationParameter = {\n parameterPath: \"checkNameAvailabilityRequest\",\n mapper: CheckNameAvailabilityRequestMapper\n};\n\nexport const skip: OperationQueryParameter = {\n parameterPath: [\"options\", \"skip\"],\n mapper: {\n serializedName: \"$skip\",\n type: {\n name: \"Number\"\n }\n }\n};\n\nexport const select: OperationQueryParameter = {\n parameterPath: [\"options\", \"select\"],\n mapper: {\n serializedName: \"$select\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const search: OperationQueryParameter = {\n parameterPath: [\"options\", \"search\"],\n mapper: {\n serializedName: \"$search\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const view: OperationQueryParameter = {\n parameterPath: [\"options\", \"view\"],\n mapper: {\n serializedName: \"$view\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const groupName: OperationQueryParameter = {\n parameterPath: [\"options\", \"groupName\"],\n mapper: {\n serializedName: \"groupName\",\n type: {\n name: \"String\"\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { LongRunningOperation, LroResponse } from \"@azure/core-lro\";\n\nexport class LroImpl<T> implements LongRunningOperation<T> {\n constructor(\n private sendOperationFn: (args: any, spec: any) => Promise<LroResponse<T>>,\n private args: Record<string, unknown>,\n private spec: {\n readonly requestBody?: unknown;\n readonly path?: string;\n readonly httpMethod: string;\n } & Record<string, any>,\n public requestPath: string = spec.path!,\n public requestMethod: string = spec.httpMethod\n ) {}\n public async sendInitialRequest(): Promise<LroResponse<T>> {\n return this.sendOperationFn(this.args, this.spec);\n }\n public async sendPollRequest(path: string): Promise<LroResponse<T>> {\n const { requestBody, ...restSpec } = this.spec;\n return this.sendOperationFn(this.args, {\n ...restSpec,\n path,\n httpMethod: \"GET\"\n });\n }\n}\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { PagedAsyncIterableIterator } from \"@azure/core-paging\";\nimport { ManagementGroups } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { ManagementGroupsAPI } from \"../managementGroupsAPI\";\nimport { PollerLike, PollOperationState, LroEngine } from \"@azure/core-lro\";\nimport { LroImpl } from \"../lroImpl\";\nimport {\n ManagementGroupInfo,\n ManagementGroupsListNextOptionalParams,\n ManagementGroupsListOptionalParams,\n DescendantInfo,\n ManagementGroupsGetDescendantsNextOptionalParams,\n ManagementGroupsGetDescendantsOptionalParams,\n ManagementGroupsListResponse,\n ManagementGroupsGetOptionalParams,\n ManagementGroupsGetResponse,\n CreateManagementGroupRequest,\n ManagementGroupsCreateOrUpdateOptionalParams,\n ManagementGroupsCreateOrUpdateResponse,\n PatchManagementGroupRequest,\n ManagementGroupsUpdateOptionalParams,\n ManagementGroupsUpdateResponse,\n ManagementGroupsDeleteOptionalParams,\n ManagementGroupsDeleteResponse,\n ManagementGroupsGetDescendantsResponse,\n ManagementGroupsListNextResponse,\n ManagementGroupsGetDescendantsNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing ManagementGroups operations. */\nexport class ManagementGroupsImpl implements ManagementGroups {\n private readonly client: ManagementGroupsAPI;\n\n /**\n * Initialize a new instance of the class ManagementGroups class.\n * @param client Reference to the service client\n */\n constructor(client: ManagementGroupsAPI) {\n this.client = client;\n }\n\n /**\n * List management groups for the authenticated user.\n *\n * @param options The options parameters.\n */\n public list(\n options?: ManagementGroupsListOptionalParams\n ): PagedAsyncIterableIterator<ManagementGroupInfo> {\n const iter = this.listPagingAll(options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listPagingPage(options);\n }\n };\n }\n\n private async *listPagingPage(\n options?: ManagementGroupsListOptionalParams\n ): AsyncIterableIterator<ManagementGroupInfo[]> {\n let result = await this._list(options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listNext(continuationToken, options);\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listPagingAll(\n options?: ManagementGroupsListOptionalParams\n ): AsyncIterableIterator<ManagementGroupInfo> {\n for await (const page of this.listPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * List all entities that descend from a management group.\n *\n * @param groupId Management Group ID.\n * @param options The options parameters.\n */\n public listDescendants(\n groupId: string,\n options?: ManagementGroupsGetDescendantsOptionalParams\n ): PagedAsyncIterableIterator<DescendantInfo> {\n const iter = this.getDescendantsPagingAll(groupId, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.getDescendantsPagingPage(groupId, options);\n }\n };\n }\n\n private async *getDescendantsPagingPage(\n groupId: string,\n options?: ManagementGroupsGetDescendantsOptionalParams\n ): AsyncIterableIterator<DescendantInfo[]> {\n let result = await this._getDescendants(groupId, options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._getDescendantsNext(\n groupId,\n continuationToken,\n options\n );\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *getDescendantsPagingAll(\n groupId: string,\n options?: ManagementGroupsGetDescendantsOptionalParams\n ): AsyncIterableIterator<DescendantInfo> {\n for await (const page of this.getDescendantsPagingPage(groupId, options)) {\n yield* page;\n }\n }\n\n /**\n * List management groups for the authenticated user.\n *\n * @param options The options parameters.\n */\n private _list(\n options?: ManagementGroupsListOptionalParams\n ): Promise<ManagementGroupsListResponse> {\n return this.client.sendOperationRequest({ options }, listOperationSpec);\n }\n\n /**\n * Get the details of the management group.\n *\n * @param groupId Management Group ID.\n * @param options The options parameters.\n */\n get(\n groupId: string,\n options?: ManagementGroupsGetOptionalParams\n ): Promise<ManagementGroupsGetResponse> {\n return this.client.sendOperationRequest(\n { groupId, options },\n getOperationSpec\n );\n }\n\n /**\n * Create or update a management group.\n * If a management group is already created and a subsequent create request is issued with different\n * properties, the management group properties will be updated.\n *\n * @param groupId Management Group ID.\n * @param createManagementGroupRequest Management group creation parameters.\n * @param options The options parameters.\n */\n async beginCreateOrUpdate(\n groupId: string,\n createManagementGroupRequest: CreateManagementGroupRequest,\n options?: ManagementGroupsCreateOrUpdateOptionalParams\n ): Promise<\n PollerLike<\n PollOperationState<ManagementGroupsCreateOrUpdateResponse>,\n ManagementGroupsCreateOrUpdateResponse\n >\n > {\n const directSendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ): Promise<ManagementGroupsCreateOrUpdateResponse> => {\n return this.client.sendOperationRequest(args, spec);\n };\n const sendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ) => {\n let currentRawResponse:\n | coreClient.FullOperationResponse\n | undefined = undefined;\n const providedCallback = args.options?.onResponse;\n const callback: coreClient.RawResponseCallback = (\n rawResponse: coreClient.FullOperationResponse,\n flatResponse: unknown\n ) => {\n currentRawResponse = rawResponse;\n providedCallback?.(rawResponse, flatResponse);\n };\n const updatedArgs = {\n ...args,\n options: {\n ...args.options,\n onResponse: callback\n }\n };\n const flatResponse = await directSendOperation(updatedArgs, spec);\n return {\n flatResponse,\n rawResponse: {\n statusCode: currentRawResponse!.status,\n body: currentRawResponse!.parsedBody,\n headers: currentRawResponse!.headers.toJSON()\n }\n };\n };\n\n const lro = new LroImpl(\n sendOperation,\n { groupId, createManagementGroupRequest, options },\n createOrUpdateOperationSpec\n );\n return new LroEngine(lro, {\n resumeFrom: options?.resumeFrom,\n intervalInMs: options?.updateIntervalInMs,\n lroResourceLocationConfig: \"azure-async-operation\"\n });\n }\n\n /**\n * Create or update a management group.\n * If a management group is already created and a subsequent create request is issued with different\n * properties, the management group properties will be updated.\n *\n * @param groupId Management Group ID.\n * @param createManagementGroupRequest Management group creation parameters.\n * @param options The options parameters.\n */\n async beginCreateOrUpdateAndWait(\n groupId: string,\n createManagementGroupRequest: CreateManagementGroupRequest,\n options?: ManagementGroupsCreateOrUpdateOptionalParams\n ): Promise<ManagementGroupsCreateOrUpdateResponse> {\n const poller = await this.beginCreateOrUpdate(\n groupId,\n createManagementGroupRequest,\n options\n );\n return poller.pollUntilDone();\n }\n\n /**\n * Update a management group.\n *\n * @param groupId Management Group ID.\n * @param patchGroupRequest Management group patch parameters.\n * @param options The options parameters.\n */\n update(\n groupId: string,\n patchGroupRequest: PatchManagementGroupRequest,\n options?: ManagementGroupsUpdateOptionalParams\n ): Promise<ManagementGroupsUpdateResponse> {\n return this.client.sendOperationRequest(\n { groupId, patchGroupRequest, options },\n updateOperationSpec\n );\n }\n\n /**\n * Delete management group.\n * If a management group contains child resources, the request will fail.\n *\n * @param groupId Management Group ID.\n * @param options The options parameters.\n */\n async beginDelete(\n groupId: string,\n options?: ManagementGroupsDeleteOptionalParams\n ): Promise<\n PollerLike<\n PollOperationState<ManagementGroupsDeleteResponse>,\n ManagementGroupsDeleteResponse\n >\n > {\n const directSendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ): Promise<ManagementGroupsDeleteResponse> => {\n return this.client.sendOperationRequest(args, spec);\n };\n const sendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ) => {\n let currentRawResponse:\n | coreClient.FullOperationResponse\n | undefined = undefined;\n const providedCallback = args.options?.onResponse;\n const callback: coreClient.RawResponseCallback = (\n rawResponse: coreClient.FullOperationResponse,\n flatResponse: unknown\n ) => {\n currentRawResponse = rawResponse;\n providedCallback?.(rawResponse, flatResponse);\n };\n const updatedArgs = {\n ...args,\n options: {\n ...args.options,\n onResponse: callback\n }\n };\n const flatResponse = await directSendOperation(updatedArgs, spec);\n return {\n flatResponse,\n rawResponse: {\n statusCode: currentRawResponse!.status,\n body: currentRawResponse!.parsedBody,\n headers: currentRawResponse!.headers.toJSON()\n }\n };\n };\n\n const lro = new LroImpl(\n sendOperation,\n { groupId, options },\n deleteOperationSpec\n );\n return new LroEngine(lro, {\n resumeFrom: options?.resumeFrom,\n intervalInMs: options?.updateIntervalInMs,\n lroResourceLocationConfig: \"azure-async-operation\"\n });\n }\n\n /**\n * Delete management group.\n * If a management group contains child resources, the request will fail.\n *\n * @param groupId Management Group ID.\n * @param options The options parameters.\n */\n async beginDeleteAndWait(\n groupId: string,\n options?: ManagementGroupsDeleteOptionalParams\n ): Promise<ManagementGroupsDeleteResponse> {\n const poller = await this.beginDelete(groupId, options);\n return poller.pollUntilDone();\n }\n\n /**\n * List all entities that descend from a management group.\n *\n * @param groupId Management Group ID.\n * @param options The options parameters.\n */\n private _getDescendants(\n groupId: string,\n options?: ManagementGroupsGetDescendantsOptionalParams\n ): Promise<ManagementGroupsGetDescendantsResponse> {\n return this.client.sendOperationRequest(\n { groupId, options },\n getDescendantsOperationSpec\n );\n }\n\n /**\n * ListNext\n * @param nextLink The nextLink from the previous successful call to the List method.\n * @param options The options parameters.\n */\n private _listNext(\n nextLink: string,\n options?: ManagementGroupsListNextOptionalParams\n ): Promise<ManagementGroupsListNextResponse> {\n return this.client.sendOperationRequest(\n { nextLink, options },\n listNextOperationSpec\n );\n }\n\n /**\n * GetDescendantsNext\n * @param groupId Management Group ID.\n * @param nextLink The nextLink from the previous successful call to the GetDescendants method.\n * @param options The options parameters.\n */\n private _getDescendantsNext(\n groupId: string,\n nextLink: string,\n options?: ManagementGroupsGetDescendantsNextOptionalParams\n ): Promise<ManagementGroupsGetDescendantsNextResponse> {\n return this.client.sendOperationRequest(\n { groupId, nextLink, options },\n getDescendantsNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/managementGroups\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ManagementGroupListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion, Parameters.skiptoken],\n urlParameters: [Parameters.$host],\n headerParameters: [Parameters.accept, Parameters.cacheControl],\n serializer\n};\nconst getOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/managementGroups/{groupId}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ManagementGroup\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.expand,\n Parameters.recurse,\n Parameters.filter\n ],\n urlParameters: [Parameters.$host, Parameters.groupId],\n headerParameters: [Parameters.accept, Parameters.cacheControl],\n serializer\n};\nconst createOrUpdateOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/managementGroups/{groupId}\",\n httpMethod: \"PUT\",\n responses: {\n 200: {\n bodyMapper: Mappers.ManagementGroup\n },\n 201: {\n bodyMapper: Mappers.ManagementGroup\n },\n 202: {\n bodyMapper: Mappers.ManagementGroup\n },\n 204: {\n bodyMapper: Mappers.ManagementGroup\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n requestBody: Parameters.createManagementGroupRequest,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.groupId],\n headerParameters: [\n Parameters.accept,\n Parameters.cacheControl,\n Parameters.contentType\n ],\n mediaType: \"json\",\n serializer\n};\nconst updateOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/managementGroups/{groupId}\",\n httpMethod: \"PATCH\",\n responses: {\n 200: {\n bodyMapper: Mappers.ManagementGroup\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n requestBody: Parameters.patchGroupRequest,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.groupId],\n headerParameters: [\n Parameters.accept,\n Parameters.cacheControl,\n Parameters.contentType\n ],\n mediaType: \"json\",\n serializer\n};\nconst deleteOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/managementGroups/{groupId}\",\n httpMethod: \"DELETE\",\n responses: {\n 200: {\n bodyMapper: Mappers.AzureAsyncOperationResults,\n headersMapper: Mappers.ManagementGroupsDeleteHeaders\n },\n 201: {\n bodyMapper: Mappers.AzureAsyncOperationResults,\n headersMapper: Mappers.ManagementGroupsDeleteHeaders\n },\n 202: {\n bodyMapper: Mappers.AzureAsyncOperationResults,\n headersMapper: Mappers.ManagementGroupsDeleteHeaders\n },\n 204: {\n bodyMapper: Mappers.AzureAsyncOperationResults,\n headersMapper: Mappers.ManagementGroupsDeleteHeaders\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.groupId],\n headerParameters: [Parameters.accept, Parameters.cacheControl],\n serializer\n};\nconst getDescendantsOperationSpec: coreClient.OperationSpec = {\n path:\n \"/providers/Microsoft.Management/managementGroups/{groupId}/descendants\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DescendantListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.skiptoken,\n Parameters.top\n ],\n urlParameters: [Parameters.$host, Parameters.groupId],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ManagementGroupListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion, Parameters.skiptoken],\n urlParameters: [Parameters.$host, Parameters.nextLink],\n headerParameters: [Parameters.accept, Parameters.cacheControl],\n serializer\n};\nconst getDescendantsNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DescendantListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.skiptoken,\n Parameters.top\n ],\n urlParameters: [Parameters.$host, Parameters.groupId, Parameters.nextLink],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { PagedAsyncIterableIterator } from \"@azure/core-paging\";\nimport { ManagementGroupSubscriptions } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { ManagementGroupsAPI } from \"../managementGroupsAPI\";\nimport {\n SubscriptionUnderManagementGroup,\n ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupNextOptionalParams,\n ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupOptionalParams,\n ManagementGroupSubscriptionsCreateOptionalParams,\n ManagementGroupSubscriptionsCreateResponse,\n ManagementGroupSubscriptionsDeleteOptionalParams,\n ManagementGroupSubscriptionsGetSubscriptionOptionalParams,\n ManagementGroupSubscriptionsGetSubscriptionResponse,\n ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupResponse,\n ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing ManagementGroupSubscriptions operations. */\nexport class ManagementGroupSubscriptionsImpl\n implements ManagementGroupSubscriptions {\n private readonly client: ManagementGroupsAPI;\n\n /**\n * Initialize a new instance of the class ManagementGroupSubscriptions class.\n * @param client Reference to the service client\n */\n constructor(client: ManagementGroupsAPI) {\n this.client = client;\n }\n\n /**\n * Retrieves details about all subscriptions which are associated with the management group.\n *\n * @param groupId Management Group ID.\n * @param options The options parameters.\n */\n public listSubscriptionsUnderManagementGroup(\n groupId: string,\n options?: ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupOptionalParams\n ): PagedAsyncIterableIterator<SubscriptionUnderManagementGroup> {\n const iter = this.getSubscriptionsUnderManagementGroupPagingAll(\n groupId,\n options\n );\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.getSubscriptionsUnderManagementGroupPagingPage(\n groupId,\n options\n );\n }\n };\n }\n\n private async *getSubscriptionsUnderManagementGroupPagingPage(\n groupId: string,\n options?: ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupOptionalParams\n ): AsyncIterableIterator<SubscriptionUnderManagementGroup[]> {\n let result = await this._getSubscriptionsUnderManagementGroup(\n groupId,\n options\n );\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._getSubscriptionsUnderManagementGroupNext(\n groupId,\n continuationToken,\n options\n );\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *getSubscriptionsUnderManagementGroupPagingAll(\n groupId: string,\n options?: ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupOptionalParams\n ): AsyncIterableIterator<SubscriptionUnderManagementGroup> {\n for await (const page of this.getSubscriptionsUnderManagementGroupPagingPage(\n groupId,\n options\n )) {\n yield* page;\n }\n }\n\n /**\n * Associates existing subscription with the management group.\n *\n * @param groupId Management Group ID.\n * @param subscriptionId Subscription ID.\n * @param options The options parameters.\n */\n create(\n groupId: string,\n subscriptionId: string,\n options?: ManagementGroupSubscriptionsCreateOptionalParams\n ): Promise<ManagementGroupSubscriptionsCreateResponse> {\n return this.client.sendOperationRequest(\n { groupId, subscriptionId, options },\n createOperationSpec\n );\n }\n\n /**\n * De-associates subscription from the management group.\n *\n * @param groupId Management Group ID.\n * @param subscriptionId Subscription ID.\n * @param options The options parameters.\n */\n delete(\n groupId: string,\n subscriptionId: string,\n options?: ManagementGroupSubscriptionsDeleteOptionalParams\n ): Promise<void> {\n return this.client.sendOperationRequest(\n { groupId, subscriptionId, options },\n deleteOperationSpec\n );\n }\n\n /**\n * Retrieves details about given subscription which is associated with the management group.\n *\n * @param groupId Management Group ID.\n * @param subscriptionId Subscription ID.\n * @param options The options parameters.\n */\n getSubscription(\n groupId: string,\n subscriptionId: string,\n options?: ManagementGroupSubscriptionsGetSubscriptionOptionalParams\n ): Promise<ManagementGroupSubscriptionsGetSubscriptionResponse> {\n return this.client.sendOperationRequest(\n { groupId, subscriptionId, options },\n getSubscriptionOperationSpec\n );\n }\n\n /**\n * Retrieves details about all subscriptions which are associated with the management group.\n *\n * @param groupId Management Group ID.\n * @param options The options parameters.\n */\n private _getSubscriptionsUnderManagementGroup(\n groupId: string,\n options?: ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupOptionalParams\n ): Promise<\n ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupResponse\n > {\n return this.client.sendOperationRequest(\n { groupId, options },\n getSubscriptionsUnderManagementGroupOperationSpec\n );\n }\n\n /**\n * GetSubscriptionsUnderManagementGroupNext\n * @param groupId Management Group ID.\n * @param nextLink The nextLink from the previous successful call to the\n * GetSubscriptionsUnderManagementGroup method.\n * @param options The options parameters.\n */\n private _getSubscriptionsUnderManagementGroupNext(\n groupId: string,\n nextLink: string,\n options?: ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupNextOptionalParams\n ): Promise<\n ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupNextResponse\n > {\n return this.client.sendOperationRequest(\n { groupId, nextLink, options },\n getSubscriptionsUnderManagementGroupNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst createOperationSpec: coreClient.OperationSpec = {\n path:\n \"/providers/Microsoft.Management/managementGroups/{groupId}/subscriptions/{subscriptionId}\",\n httpMethod: \"PUT\",\n responses: {\n 200: {\n bodyMapper: Mappers.SubscriptionUnderManagementGroup\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.groupId,\n Parameters.subscriptionId\n ],\n headerParameters: [Parameters.accept, Parameters.cacheControl],\n serializer\n};\nconst deleteOperationSpec: coreClient.OperationSpec = {\n path:\n \"/providers/Microsoft.Management/managementGroups/{groupId}/subscriptions/{subscriptionId}\",\n httpMethod: \"DELETE\",\n responses: {\n 200: {},\n 204: {},\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.groupId,\n Parameters.subscriptionId\n ],\n headerParameters: [Parameters.accept, Parameters.cacheControl],\n serializer\n};\nconst getSubscriptionOperationSpec: coreClient.OperationSpec = {\n path:\n \"/providers/Microsoft.Management/managementGroups/{groupId}/subscriptions/{subscriptionId}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SubscriptionUnderManagementGroup\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.groupId,\n Parameters.subscriptionId\n ],\n headerParameters: [Parameters.accept, Parameters.cacheControl],\n serializer\n};\nconst getSubscriptionsUnderManagementGroupOperationSpec: coreClient.OperationSpec = {\n path:\n \"/providers/Microsoft.Management/managementGroups/{groupId}/subscriptions\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ListSubscriptionUnderManagementGroup\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion, Parameters.skiptoken],\n urlParameters: [Parameters.$host, Parameters.groupId],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst getSubscriptionsUnderManagementGroupNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ListSubscriptionUnderManagementGroup\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion, Parameters.skiptoken],\n urlParameters: [Parameters.$host, Parameters.groupId, Parameters.nextLink],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { HierarchySettingsOperations } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { ManagementGroupsAPI } from \"../managementGroupsAPI\";\nimport {\n HierarchySettingsListOptionalParams,\n HierarchySettingsListResponse,\n HierarchySettingsGetOptionalParams,\n HierarchySettingsGetResponse,\n CreateOrUpdateSettingsRequest,\n HierarchySettingsCreateOrUpdateOptionalParams,\n HierarchySettingsCreateOrUpdateResponse,\n HierarchySettingsUpdateOptionalParams,\n HierarchySettingsUpdateResponse,\n HierarchySettingsDeleteOptionalParams\n} from \"../models\";\n\n/** Class containing HierarchySettingsOperations operations. */\nexport class HierarchySettingsOperationsImpl\n implements HierarchySettingsOperations {\n private readonly client: ManagementGroupsAPI;\n\n /**\n * Initialize a new instance of the class HierarchySettingsOperations class.\n * @param client Reference to the service client\n */\n constructor(client: ManagementGroupsAPI) {\n this.client = client;\n }\n\n /**\n * Gets all the hierarchy settings defined at the Management Group level. Settings can only be set on\n * the root Management Group of the hierarchy.\n *\n * @param groupId Management Group ID.\n * @param options The options parameters.\n */\n list(\n groupId: string,\n options?: HierarchySettingsListOptionalParams\n ): Promise<HierarchySettingsListResponse> {\n return this.client.sendOperationRequest(\n { groupId, options },\n listOperationSpec\n );\n }\n\n /**\n * Gets the hierarchy settings defined at the Management Group level. Settings can only be set on the\n * root Management Group of the hierarchy.\n *\n * @param groupId Management Group ID.\n * @param options The options parameters.\n */\n get(\n groupId: string,\n options?: HierarchySettingsGetOptionalParams\n ): Promise<HierarchySettingsGetResponse> {\n return this.client.sendOperationRequest(\n { groupId, options },\n getOperationSpec\n );\n }\n\n /**\n * Creates or updates the hierarchy settings defined at the Management Group level.\n *\n * @param groupId Management Group ID.\n * @param createTenantSettingsRequest Tenant level settings request parameter.\n * @param options The options parameters.\n */\n createOrUpdate(\n groupId: string,\n createTenantSettingsRequest: CreateOrUpdateSettingsRequest,\n options?: HierarchySettingsCreateOrUpdateOptionalParams\n ): Promise<HierarchySettingsCreateOrUpdateResponse> {\n return this.client.sendOperationRequest(\n { groupId, createTenantSettingsRequest, options },\n createOrUpdateOperationSpec\n );\n }\n\n /**\n * Updates the hierarchy settings defined at the Management Group level.\n *\n * @param groupId Management Group ID.\n * @param createTenantSettingsRequest Tenant level settings request parameter.\n * @param options The options parameters.\n */\n update(\n groupId: string,\n createTenantSettingsRequest: CreateOrUpdateSettingsRequest,\n options?: HierarchySettingsUpdateOptionalParams\n ): Promise<HierarchySettingsUpdateResponse> {\n return this.client.sendOperationRequest(\n { groupId, createTenantSettingsRequest, options },\n updateOperationSpec\n );\n }\n\n /**\n * Deletes the hierarchy settings defined at the Management Group level.\n *\n * @param groupId Management Group ID.\n * @param options The options parameters.\n */\n delete(\n groupId: string,\n options?: HierarchySettingsDeleteOptionalParams\n ): Promise<void> {\n return this.client.sendOperationRequest(\n { groupId, options },\n deleteOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/managementGroups/{groupId}/settings\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.HierarchySettingsList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.groupId],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst getOperationSpec: coreClient.OperationSpec = {\n path:\n \"/providers/Microsoft.Management/managementGroups/{groupId}/settings/default\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.HierarchySettings\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.groupId],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst createOrUpdateOperationSpec: coreClient.OperationSpec = {\n path:\n \"/providers/Microsoft.Management/managementGroups/{groupId}/settings/default\",\n httpMethod: \"PUT\",\n responses: {\n 200: {\n bodyMapper: Mappers.HierarchySettings\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n requestBody: Parameters.createTenantSettingsRequest,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.groupId],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst updateOperationSpec: coreClient.OperationSpec = {\n path:\n \"/providers/Microsoft.Management/managementGroups/{groupId}/settings/default\",\n httpMethod: \"PATCH\",\n responses: {\n 200: {\n bodyMapper: Mappers.HierarchySettings\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n requestBody: Parameters.createTenantSettingsRequest,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.groupId],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst deleteOperationSpec: coreClient.OperationSpec = {\n path:\n \"/providers/Microsoft.Management/managementGroups/{groupId}/settings/default\",\n httpMethod: \"DELETE\",\n responses: {\n 200: {},\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.groupId],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { PagedAsyncIterableIterator } from \"@azure/core-paging\";\nimport { Operations } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { ManagementGroupsAPI } from \"../managementGroupsAPI\";\nimport {\n Operation,\n OperationsListNextOptionalParams,\n OperationsListOptionalParams,\n OperationsListResponse,\n OperationsListNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing Operations operations. */\nexport class OperationsImpl implements Operations {\n private readonly client: ManagementGroupsAPI;\n\n /**\n * Initialize a new instance of the class Operations class.\n * @param client Reference to the service client\n */\n constructor(client: ManagementGroupsAPI) {\n this.client = client;\n }\n\n /**\n * Lists all of the available Management REST API operations.\n * @param options The options parameters.\n */\n public list(\n options?: OperationsListOptionalParams\n ): PagedAsyncIterableIterator<Operation> {\n const iter = this.listPagingAll(options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listPagingPage(options);\n }\n };\n }\n\n private async *listPagingPage(\n options?: OperationsListOptionalParams\n ): AsyncIterableIterator<Operation[]> {\n let result = await this._list(options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listNext(continuationToken, options);\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listPagingAll(\n options?: OperationsListOptionalParams\n ): AsyncIterableIterator<Operation> {\n for await (const page of this.listPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * Lists all of the available Management REST API operations.\n * @param options The options parameters.\n */\n private _list(\n options?: OperationsListOptionalParams\n ): Promise<OperationsListResponse> {\n return this.client.sendOperationRequest({ options }, listOperationSpec);\n }\n\n /**\n * ListNext\n * @param nextLink The nextLink from the previous successful call to the List method.\n * @param options The options parameters.\n */\n private _listNext(\n nextLink: string,\n options?: OperationsListNextOptionalParams\n ): Promise<OperationsListNextResponse> {\n return this.client.sendOperationRequest(\n { nextLink, options },\n listNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/operations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.OperationListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.OperationListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.nextLink],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { PagedAsyncIterableIterator } from \"@azure/core-paging\";\nimport { Entities } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { ManagementGroupsAPI } from \"../managementGroupsAPI\";\nimport {\n EntityInfo,\n EntitiesListNextOptionalParams,\n EntitiesListOptionalParams,\n EntitiesListResponse,\n EntitiesListNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing Entities operations. */\nexport class EntitiesImpl implements Entities {\n private readonly client: ManagementGroupsAPI;\n\n /**\n * Initialize a new instance of the class Entities class.\n * @param client Reference to the service client\n */\n constructor(client: ManagementGroupsAPI) {\n this.client = client;\n }\n\n /**\n * List all entities (Management Groups, Subscriptions, etc.) for the authenticated user.\n *\n * @param options The options parameters.\n */\n public list(\n options?: EntitiesListOptionalParams\n ): PagedAsyncIterableIterator<EntityInfo> {\n const iter = this.listPagingAll(options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listPagingPage(options);\n }\n };\n }\n\n private async *listPagingPage(\n options?: EntitiesListOptionalParams\n ): AsyncIterableIterator<EntityInfo[]> {\n let result = await this._list(options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listNext(continuationToken, options);\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listPagingAll(\n options?: EntitiesListOptionalParams\n ): AsyncIterableIterator<EntityInfo> {\n for await (const page of this.listPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * List all entities (Management Groups, Subscriptions, etc.) for the authenticated user.\n *\n * @param options The options parameters.\n */\n private _list(\n options?: EntitiesListOptionalParams\n ): Promise<EntitiesListResponse> {\n return this.client.sendOperationRequest({ options }, listOperationSpec);\n }\n\n /**\n * ListNext\n * @param nextLink The nextLink from the previous successful call to the List method.\n * @param options The options parameters.\n */\n private _listNext(\n nextLink: string,\n options?: EntitiesListNextOptionalParams\n ): Promise<EntitiesListNextResponse> {\n return this.client.sendOperationRequest(\n { nextLink, options },\n listNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/getEntities\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.EntityListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.skiptoken,\n Parameters.filter,\n Parameters.top,\n Parameters.skip,\n Parameters.select,\n Parameters.search,\n Parameters.view,\n Parameters.groupName\n ],\n urlParameters: [Parameters.$host],\n headerParameters: [Parameters.accept, Parameters.cacheControl],\n serializer\n};\nconst listNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.EntityListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.skiptoken,\n Parameters.filter,\n Parameters.top,\n Parameters.skip,\n Parameters.select,\n Parameters.search,\n Parameters.view,\n Parameters.groupName\n ],\n urlParameters: [Parameters.$host, Parameters.nextLink],\n headerParameters: [Parameters.accept, Parameters.cacheControl],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\nimport * as coreAuth from \"@azure/core-auth\";\nimport {\n ManagementGroupsImpl,\n ManagementGroupSubscriptionsImpl,\n HierarchySettingsOperationsImpl,\n OperationsImpl,\n EntitiesImpl\n} from \"./operations\";\nimport {\n ManagementGroups,\n ManagementGroupSubscriptions,\n HierarchySettingsOperations,\n Operations,\n Entities\n} from \"./operationsInterfaces\";\nimport * as Parameters from \"./models/parameters\";\nimport * as Mappers from \"./models/mappers\";\nimport {\n ManagementGroupsAPIOptionalParams,\n CheckNameAvailabilityRequest,\n CheckNameAvailabilityOptionalParams,\n CheckNameAvailabilityResponse,\n StartTenantBackfillOptionalParams,\n StartTenantBackfillResponse,\n TenantBackfillStatusOptionalParams,\n TenantBackfillStatusResponse\n} from \"./models\";\n\nexport class ManagementGroupsAPI extends coreClient.ServiceClient {\n $host: string;\n apiVersion: string;\n\n /**\n * Initializes a new instance of the ManagementGroupsAPI class.\n * @param credentials Subscription credentials which uniquely identify client subscription.\n * @param options The parameter options\n */\n constructor(\n credentials: coreAuth.TokenCredential,\n options?: ManagementGroupsAPIOptionalParams\n ) {\n if (credentials === undefined) {\n throw new Error(\"'credentials' cannot be null\");\n }\n\n // Initializing default values for options\n if (!options) {\n options = {};\n }\n const defaults: ManagementGroupsAPIOptionalParams = {\n requestContentType: \"application/json; charset=utf-8\",\n credential: credentials\n };\n\n const packageDetails = `azsdk-js-arm-managementgroups/1.0.0-beta.1`;\n const userAgentPrefix =\n options.userAgentOptions && options.userAgentOptions.userAgentPrefix\n ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`\n : `${packageDetails}`;\n\n if (!options.credentialScopes) {\n options.credentialScopes = [\"https://management.azure.com/.default\"];\n }\n const optionsWithDefaults = {\n ...defaults,\n ...options,\n userAgentOptions: {\n userAgentPrefix\n },\n baseUri: options.endpoint || \"https://management.azure.com\"\n };\n super(optionsWithDefaults);\n\n // Assigning values to Constant parameters\n this.$host = options.$host || \"https://management.azure.com\";\n this.apiVersion = options.apiVersion || \"2021-04-01\";\n this.managementGroups = new ManagementGroupsImpl(this);\n this.managementGroupSubscriptions = new ManagementGroupSubscriptionsImpl(\n this\n );\n this.hierarchySettingsOperations = new HierarchySettingsOperationsImpl(\n this\n );\n this.operations = new OperationsImpl(this);\n this.entities = new EntitiesImpl(this);\n }\n\n /**\n * Checks if the specified management group name is valid and unique\n * @param checkNameAvailabilityRequest Management group name availability check parameters.\n * @param options The options parameters.\n */\n checkNameAvailability(\n checkNameAvailabilityRequest: CheckNameAvailabilityRequest,\n options?: CheckNameAvailabilityOptionalParams\n ): Promise<CheckNameAvailabilityResponse> {\n return this.sendOperationRequest(\n { checkNameAvailabilityRequest, options },\n checkNameAvailabilityOperationSpec\n );\n }\n\n /**\n * Starts backfilling subscriptions for the Tenant.\n * @param options The options parameters.\n */\n startTenantBackfill(\n options?: StartTenantBackfillOptionalParams\n ): Promise<StartTenantBackfillResponse> {\n return this.sendOperationRequest(\n { options },\n startTenantBackfillOperationSpec\n );\n }\n\n /**\n * Gets tenant backfill status\n * @param options The options parameters.\n */\n tenantBackfillStatus(\n options?: TenantBackfillStatusOptionalParams\n ): Promise<TenantBackfillStatusResponse> {\n return this.sendOperationRequest(\n { options },\n tenantBackfillStatusOperationSpec\n );\n }\n\n managementGroups: ManagementGroups;\n managementGroupSubscriptions: ManagementGroupSubscriptions;\n hierarchySettingsOperations: HierarchySettingsOperations;\n operations: Operations;\n entities: Entities;\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst checkNameAvailabilityOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/checkNameAvailability\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.CheckNameAvailabilityResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n requestBody: Parameters.checkNameAvailabilityRequest,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst startTenantBackfillOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/startTenantBackfill\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.TenantBackfillStatusResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst tenantBackfillStatusOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/tenantBackfillStatus\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.TenantBackfillStatusResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host],\n headerParameters: [Parameters.accept],\n serializer\n};\n"],"names":["KnownEnum0","KnownManagementGroupChildType","KnownEnum2","KnownEnum3","KnownPermissions","CreateManagementGroupRequestMapper","PatchManagementGroupRequestMapper","CreateOrUpdateSettingsRequestMapper","CheckNameAvailabilityRequestMapper","__asyncValues","__asyncDelegator","LroEngine","coreClient.createSerializer","Mappers.ManagementGroupListResult","Mappers.ErrorResponse","Parameters.apiVersion","Parameters.skiptoken","Parameters.$host","Parameters.accept","Parameters.cacheControl","Mappers.ManagementGroup","Parameters.expand","Parameters.recurse","Parameters.filter","Parameters.groupId","Parameters.createManagementGroupRequest","Parameters.contentType","Parameters.patchGroupRequest","Mappers.AzureAsyncOperationResults","Mappers.ManagementGroupsDeleteHeaders","Mappers.DescendantListResult","Parameters.top","Parameters.nextLink","deleteOperationSpec","serializer","Mappers.SubscriptionUnderManagementGroup","Parameters.subscriptionId","Mappers.ListSubscriptionUnderManagementGroup","listOperationSpec","getOperationSpec","createOrUpdateOperationSpec","updateOperationSpec","Mappers.HierarchySettingsList","Mappers.HierarchySettings","Parameters.createTenantSettingsRequest","listNextOperationSpec","Mappers.OperationListResult","Mappers.EntityListResult","Parameters.skip","Parameters.select","Parameters.search","Parameters.view","Parameters.groupName","coreClient.ServiceClient","Mappers.CheckNameAvailabilityResult","Parameters.checkNameAvailabilityRequest","Mappers.TenantBackfillStatusResult"],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sources":["../src/models/index.ts","../src/models/mappers.ts","../src/models/parameters.ts","../src/lroImpl.ts","../src/operations/managementGroups.ts","../src/operations/managementGroupSubscriptions.ts","../src/operations/hierarchySettingsOperations.ts","../src/operations/operations.ts","../src/operations/entities.ts","../src/managementGroupsAPI.ts"],"sourcesContent":["/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\n\n/** Describes the result of the request to list management groups. */\nexport interface ManagementGroupListResult {\n /** The list of management groups. */\n value?: ManagementGroupInfo[];\n /**\n * The URL to use for getting the next set of results.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly nextLink?: string;\n}\n\n/** The management group resource. */\nexport interface ManagementGroupInfo {\n /**\n * The fully qualified ID for the management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The type of the resource. For example, Microsoft.Management/managementGroups\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /**\n * The name of the management group. For example, 00000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /** The AAD Tenant ID associated with the management group. For example, 00000000-0000-0000-0000-000000000000 */\n tenantId?: string;\n /** The friendly name of the management group. */\n displayName?: string;\n}\n\n/** The error object. */\nexport interface ErrorResponse {\n /** The details of the error. */\n error?: ErrorDetails;\n}\n\n/** The details of the error. */\nexport interface ErrorDetails {\n /** One of a server-defined set of error codes. */\n code?: string;\n /** A human-readable representation of the error. */\n message?: string;\n /** A human-readable representation of the error's details. */\n details?: string;\n}\n\n/** The management group details. */\nexport interface ManagementGroup {\n /**\n * The fully qualified ID for the management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The type of the resource. For example, Microsoft.Management/managementGroups\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /**\n * The name of the management group. For example, 00000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /** The AAD Tenant ID associated with the management group. For example, 00000000-0000-0000-0000-000000000000 */\n tenantId?: string;\n /** The friendly name of the management group. */\n displayName?: string;\n /** The details of a management group. */\n details?: ManagementGroupDetails;\n /** The list of children. */\n children?: ManagementGroupChildInfo[];\n}\n\n/** The details of a management group. */\nexport interface ManagementGroupDetails {\n /** The version number of the object. */\n version?: number;\n /** The date and time when this object was last updated. */\n updatedTime?: Date;\n /** The identity of the principal or process that updated the object. */\n updatedBy?: string;\n /** (Optional) The ID of the parent management group. */\n parent?: ParentGroupInfo;\n /** The path from the root to the current group. */\n path?: ManagementGroupPathElement[];\n /** The ancestors of the management group. */\n managementGroupAncestors?: string[];\n /** The ancestors of the management group displayed in reversed order, from immediate parent to the root. */\n managementGroupAncestorsChain?: ManagementGroupPathElement[];\n}\n\n/** (Optional) The ID of the parent management group. */\nexport interface ParentGroupInfo {\n /** The fully qualified ID for the parent management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 */\n id?: string;\n /** The name of the parent management group */\n name?: string;\n /** The friendly name of the parent management group. */\n displayName?: string;\n}\n\n/** A path element of a management group ancestors. */\nexport interface ManagementGroupPathElement {\n /** The name of the group. */\n name?: string;\n /** The friendly name of the group. */\n displayName?: string;\n}\n\n/** The child information of a management group. */\nexport interface ManagementGroupChildInfo {\n /** The fully qualified resource type which includes provider namespace (e.g. Microsoft.Management/managementGroups) */\n type?: ManagementGroupChildType;\n /** The fully qualified ID for the child resource (management group or subscription). For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 */\n id?: string;\n /** The name of the child entity. */\n name?: string;\n /** The friendly name of the child resource. */\n displayName?: string;\n /** The list of children. */\n children?: ManagementGroupChildInfo[];\n}\n\n/** Management group creation parameters. */\nexport interface CreateManagementGroupRequest {\n /**\n * The fully qualified ID for the management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The type of the resource. For example, Microsoft.Management/managementGroups\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /** The name of the management group. For example, 00000000-0000-0000-0000-000000000000 */\n name?: string;\n /**\n * The AAD Tenant ID associated with the management group. For example, 00000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly tenantId?: string;\n /** The friendly name of the management group. If no value is passed then this field will be set to the groupId. */\n displayName?: string;\n /** The details of a management group used during creation. */\n details?: CreateManagementGroupDetails;\n /**\n * The list of children.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly children?: CreateManagementGroupChildInfo[];\n}\n\n/** The details of a management group used during creation. */\nexport interface CreateManagementGroupDetails {\n /**\n * The version number of the object.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly version?: number;\n /**\n * The date and time when this object was last updated.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly updatedTime?: Date;\n /**\n * The identity of the principal or process that updated the object.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly updatedBy?: string;\n /** (Optional) The ID of the parent management group used during creation. */\n parent?: CreateParentGroupInfo;\n}\n\n/** (Optional) The ID of the parent management group used during creation. */\nexport interface CreateParentGroupInfo {\n /** The fully qualified ID for the parent management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 */\n id?: string;\n /**\n * The name of the parent management group\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /**\n * The friendly name of the parent management group.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly displayName?: string;\n}\n\n/** The child information of a management group used during creation. */\nexport interface CreateManagementGroupChildInfo {\n /**\n * The fully qualified resource type which includes provider namespace (e.g. Microsoft.Management/managementGroups)\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: ManagementGroupChildType;\n /**\n * The fully qualified ID for the child resource (management group or subscription). For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The name of the child entity.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /**\n * The friendly name of the child resource.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly displayName?: string;\n /**\n * The list of children.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly children?: CreateManagementGroupChildInfo[];\n}\n\n/** The results of Azure-AsyncOperation. */\nexport interface AzureAsyncOperationResults {\n /**\n * The fully qualified ID for the management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The type of the resource. For example, Microsoft.Management/managementGroups\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /**\n * The name of the management group. For example, 00000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /**\n * The current status of the asynchronous operation performed . For example, Running, Succeeded, Failed\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly status?: string;\n /** The AAD Tenant ID associated with the management group. For example, 00000000-0000-0000-0000-000000000000 */\n tenantId?: string;\n /** The friendly name of the management group. */\n displayName?: string;\n}\n\n/** Management group patch parameters. */\nexport interface PatchManagementGroupRequest {\n /** The friendly name of the management group. */\n displayName?: string;\n /** (Optional) The fully qualified ID for the parent management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 */\n parentGroupId?: string;\n}\n\n/** Describes the result of the request to view descendants. */\nexport interface DescendantListResult {\n /** The list of descendants. */\n value?: DescendantInfo[];\n /**\n * The URL to use for getting the next set of results.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly nextLink?: string;\n}\n\n/** The descendant. */\nexport interface DescendantInfo {\n /**\n * The fully qualified ID for the descendant. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 or /subscriptions/0000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The type of the resource. For example, Microsoft.Management/managementGroups or /subscriptions\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /**\n * The name of the descendant. For example, 00000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /** The friendly name of the management group. */\n displayName?: string;\n /** The ID of the parent management group. */\n parent?: DescendantParentGroupInfo;\n}\n\n/** The ID of the parent management group. */\nexport interface DescendantParentGroupInfo {\n /** The fully qualified ID for the parent management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 */\n id?: string;\n}\n\n/** The details of subscription under management group. */\nexport interface SubscriptionUnderManagementGroup {\n /**\n * The fully qualified ID for the subscription. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000/subscriptions/0000000-0000-0000-0000-000000000001\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The type of the resource. For example, Microsoft.Management/managementGroups/subscriptions\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /**\n * The stringified id of the subscription. For example, 00000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /** The AAD Tenant ID associated with the subscription. For example, 00000000-0000-0000-0000-000000000000 */\n tenant?: string;\n /** The friendly name of the subscription. */\n displayName?: string;\n /** The ID of the parent management group. */\n parent?: DescendantParentGroupInfo;\n /** The state of the subscription. */\n state?: string;\n}\n\n/** The details of all subscriptions under management group. */\nexport interface ListSubscriptionUnderManagementGroup {\n /** The list of subscriptions. */\n value?: SubscriptionUnderManagementGroup[];\n /**\n * The URL to use for getting the next set of results.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly nextLink?: string;\n}\n\n/** Lists all hierarchy settings. */\nexport interface HierarchySettingsList {\n /** The list of hierarchy settings. */\n value?: HierarchySettingsInfo[];\n /**\n * The URL to use for getting the next set of results.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly nextLink?: string;\n}\n\n/** The hierarchy settings resource. */\nexport interface HierarchySettingsInfo {\n /**\n * The fully qualified ID for the settings object. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000/settings/default.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The type of the resource. For example, Microsoft.Management/managementGroups/settings.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /**\n * The name of the object. In this case, default.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /** The AAD Tenant ID associated with the hierarchy settings. For example, 00000000-0000-0000-0000-000000000000 */\n tenantId?: string;\n /** Indicates whether RBAC access is required upon group creation under the root Management Group. If set to true, user will require Microsoft.Management/managementGroups/write action on the root Management Group scope in order to create new Groups directly under the root. This will prevent new users from creating new Management Groups, unless they are given access. */\n requireAuthorizationForGroupCreation?: boolean;\n /** Settings that sets the default Management Group under which new subscriptions get added in this tenant. For example, /providers/Microsoft.Management/managementGroups/defaultGroup */\n defaultManagementGroup?: string;\n}\n\n/** Settings defined at the Management Group scope. */\nexport interface HierarchySettings {\n /**\n * The fully qualified ID for the settings object. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000/settings/default.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The type of the resource. For example, Microsoft.Management/managementGroups/settings.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /**\n * The name of the object. In this case, default.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /** The AAD Tenant ID associated with the hierarchy settings. For example, 00000000-0000-0000-0000-000000000000 */\n tenantId?: string;\n /** Indicates whether RBAC access is required upon group creation under the root Management Group. If set to true, user will require Microsoft.Management/managementGroups/write action on the root Management Group scope in order to create new Groups directly under the root. This will prevent new users from creating new Management Groups, unless they are given access. */\n requireAuthorizationForGroupCreation?: boolean;\n /** Settings that sets the default Management Group under which new subscriptions get added in this tenant. For example, /providers/Microsoft.Management/managementGroups/defaultGroup */\n defaultManagementGroup?: string;\n}\n\n/** Parameters for creating or updating Management Group settings */\nexport interface CreateOrUpdateSettingsRequest {\n /** Indicates whether RBAC access is required upon group creation under the root Management Group. If set to true, user will require Microsoft.Management/managementGroups/write action on the root Management Group scope in order to create new Groups directly under the root. This will prevent new users from creating new Management Groups, unless they are given access. */\n requireAuthorizationForGroupCreation?: boolean;\n /** Settings that sets the default Management Group under which new subscriptions get added in this tenant. For example, /providers/Microsoft.Management/managementGroups/defaultGroup */\n defaultManagementGroup?: string;\n}\n\n/** Describes the result of the request to list Microsoft.Management operations. */\nexport interface OperationListResult {\n /**\n * List of operations supported by the Microsoft.Management resource provider.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly value?: Operation[];\n /**\n * URL to get the next set of operation list results if there are any.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly nextLink?: string;\n}\n\n/** Operation supported by the Microsoft.Management resource provider. */\nexport interface Operation {\n /**\n * Operation name: {provider}/{resource}/{operation}.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /** The object that represents the operation. */\n display?: OperationDisplayProperties;\n}\n\n/** The object that represents the operation. */\nexport interface OperationDisplayProperties {\n /**\n * The name of the provider.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly provider?: string;\n /**\n * The resource on which the operation is performed.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly resource?: string;\n /**\n * The operation that can be performed.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly operation?: string;\n /**\n * Operation description.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly description?: string;\n}\n\n/** Management group name availability check parameters. */\nexport interface CheckNameAvailabilityRequest {\n /** the name to check for availability */\n name?: string;\n /** fully qualified resource type which includes provider namespace */\n type?: \"Microsoft.Management/managementGroups\";\n}\n\n/** Describes the result of the request to check management group name availability. */\nexport interface CheckNameAvailabilityResult {\n /**\n * Required. True indicates name is valid and available. False indicates the name is invalid, unavailable, or both.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly nameAvailable?: boolean;\n /**\n * Required if nameAvailable == false. Invalid indicates the name provided does not match the resource provider's naming requirements (incorrect length, unsupported characters, etc.) AlreadyExists indicates that the name is already in use and is therefore unavailable.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly reason?: Reason;\n /**\n * Required if nameAvailable == false. Localized. If reason == invalid, provide the user with the reason why the given name is invalid, and provide the resource naming requirements so that the user can select a valid name. If reason == AlreadyExists, explain that is already in use, and direct them to select a different name.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly message?: string;\n}\n\n/** Describes the result of the request to view entities. */\nexport interface EntityListResult {\n /** The list of entities. */\n value?: EntityInfo[];\n /**\n * Total count of records that match the filter\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly count?: number;\n /**\n * The URL to use for getting the next set of results.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly nextLink?: string;\n}\n\n/** The entity. */\nexport interface EntityInfo {\n /**\n * The fully qualified ID for the entity. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The type of the resource. For example, Microsoft.Management/managementGroups\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /**\n * The name of the entity. For example, 00000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /** The AAD Tenant ID associated with the entity. For example, 00000000-0000-0000-0000-000000000000 */\n tenantId?: string;\n /** The friendly name of the management group. */\n displayName?: string;\n /** (Optional) The ID of the parent management group. */\n parent?: EntityParentGroupInfo;\n /** The users specific permissions to this item. */\n permissions?: Permissions;\n /** The users specific permissions to this item. */\n inheritedPermissions?: Permissions;\n /** Number of Descendants */\n numberOfDescendants?: number;\n /** Number of children is the number of Groups and Subscriptions that are exactly one level underneath the current Group. */\n numberOfChildren?: number;\n /** Number of children is the number of Groups that are exactly one level underneath the current Group. */\n numberOfChildGroups?: number;\n /** The parent display name chain from the root group to the immediate parent */\n parentDisplayNameChain?: string[];\n /** The parent name chain from the root group to the immediate parent */\n parentNameChain?: string[];\n}\n\n/** (Optional) The ID of the parent management group. */\nexport interface EntityParentGroupInfo {\n /** The fully qualified ID for the parent management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 */\n id?: string;\n}\n\n/** The tenant backfill status */\nexport interface TenantBackfillStatusResult {\n /**\n * The AAD Tenant ID associated with the management group. For example, 00000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly tenantId?: string;\n /**\n * The status of the Tenant Backfill\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly status?: Status;\n}\n\n/** The results of an asynchronous operation. */\nexport interface OperationResults {\n /**\n * The fully qualified ID for the management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The type of the resource. For example, Microsoft.Management/managementGroups\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /**\n * The name of the management group. For example, 00000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /** The AAD Tenant ID associated with the management group. For example, 00000000-0000-0000-0000-000000000000 */\n tenantId?: string;\n /** The friendly name of the management group. */\n displayName?: string;\n}\n\n/** The management group details for the hierarchy view. */\nexport interface EntityHierarchyItem {\n /**\n * The fully qualified ID for the management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The type of the resource. For example, Microsoft.Management/managementGroups\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /**\n * The name of the management group. For example, 00000000-0000-0000-0000-000000000000\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /** The friendly name of the management group. */\n displayName?: string;\n /** The users specific permissions to this item. */\n permissions?: Permissions;\n /** The list of children. */\n children?: EntityHierarchyItem[];\n}\n\n/** Defines headers for ManagementGroups_createOrUpdate operation. */\nexport interface ManagementGroupsCreateOrUpdateHeaders {\n /**\n * URL for determining when an operation has completed. Send a GET request to the URL in Location header.\n * The URI should return a 202 until the operation reaches a terminal state and 200 once it reaches a terminal state.\n *\n * For more info: https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/Addendum.md#202-accepted-and-location-headers\n */\n location?: string;\n /**\n * URL for checking the ongoing status of the operation.\n * To get the status of the asynchronous operation, send a GET request to the URL in Azure-AsyncOperation header value.\n *\n * For more info: https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/Addendum.md#asynchronous-operations\n */\n azureAsyncOperation?: string;\n}\n\n/** Defines headers for ManagementGroups_delete operation. */\nexport interface ManagementGroupsDeleteHeaders {\n /**\n * URL for determining when an operation has completed. Send a GET request to the URL in Location header.\n * The URI should return a 202 until the operation reaches a terminal state and 200 once it reaches a terminal state.\n *\n * For more info: https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/Addendum.md#202-accepted-and-location-headers\n */\n location?: string;\n /**\n * URL for checking the ongoing status of the operation.\n * To get the status of the asynchronous operation, send a GET request to the URL in Azure-AsyncOperation header value.\n *\n * For more info: https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/Addendum.md#asynchronous-operations\n */\n azureAsyncOperation?: string;\n}\n\n/** Known values of {@link Enum0} that the service accepts. */\nexport enum KnownEnum0 {\n Children = \"children\",\n Path = \"path\",\n Ancestors = \"ancestors\"\n}\n\n/**\n * Defines values for Enum0. \\\n * {@link KnownEnum0} can be used interchangeably with Enum0,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **children** \\\n * **path** \\\n * **ancestors**\n */\nexport type Enum0 = string;\n\n/** Known values of {@link ManagementGroupChildType} that the service accepts. */\nexport enum KnownManagementGroupChildType {\n MicrosoftManagementManagementGroups = \"Microsoft.Management/managementGroups\",\n Subscriptions = \"/subscriptions\"\n}\n\n/**\n * Defines values for ManagementGroupChildType. \\\n * {@link KnownManagementGroupChildType} can be used interchangeably with ManagementGroupChildType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Microsoft.Management\\/managementGroups** \\\n * **\\/subscriptions**\n */\nexport type ManagementGroupChildType = string;\n\n/** Known values of {@link Enum2} that the service accepts. */\nexport enum KnownEnum2 {\n AllowedParents = \"AllowedParents\",\n AllowedChildren = \"AllowedChildren\",\n ParentAndFirstLevelChildren = \"ParentAndFirstLevelChildren\",\n ParentOnly = \"ParentOnly\",\n ChildrenOnly = \"ChildrenOnly\"\n}\n\n/**\n * Defines values for Enum2. \\\n * {@link KnownEnum2} can be used interchangeably with Enum2,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **AllowedParents** \\\n * **AllowedChildren** \\\n * **ParentAndFirstLevelChildren** \\\n * **ParentOnly** \\\n * **ChildrenOnly**\n */\nexport type Enum2 = string;\n\n/** Known values of {@link Enum3} that the service accepts. */\nexport enum KnownEnum3 {\n FullHierarchy = \"FullHierarchy\",\n GroupsOnly = \"GroupsOnly\",\n SubscriptionsOnly = \"SubscriptionsOnly\",\n Audit = \"Audit\"\n}\n\n/**\n * Defines values for Enum3. \\\n * {@link KnownEnum3} can be used interchangeably with Enum3,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **FullHierarchy** \\\n * **GroupsOnly** \\\n * **SubscriptionsOnly** \\\n * **Audit**\n */\nexport type Enum3 = string;\n\n/** Known values of {@link Permissions} that the service accepts. */\nexport enum KnownPermissions {\n Noaccess = \"noaccess\",\n View = \"view\",\n Edit = \"edit\",\n Delete = \"delete\"\n}\n\n/**\n * Defines values for Permissions. \\\n * {@link KnownPermissions} can be used interchangeably with Permissions,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **noaccess** \\\n * **view** \\\n * **edit** \\\n * **delete**\n */\nexport type Permissions = string;\n/** Defines values for Reason. */\nexport type Reason = \"Invalid\" | \"AlreadyExists\";\n/** Defines values for Status. */\nexport type Status =\n | \"NotStarted\"\n | \"NotStartedButGroupsExist\"\n | \"Started\"\n | \"Failed\"\n | \"Cancelled\"\n | \"Completed\";\n\n/** Optional parameters. */\nexport interface ManagementGroupsListOptionalParams\n extends coreClient.OperationOptions {\n /** Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. */\n cacheControl?: string;\n /**\n * Page continuation token is only used if a previous operation returned a partial result.\n * If a previous response contains a nextLink element, the value of the nextLink element will include a token parameter that specifies a starting point to use for subsequent calls.\n *\n */\n skiptoken?: string;\n}\n\n/** Contains response data for the list operation. */\nexport type ManagementGroupsListResponse = ManagementGroupListResult;\n\n/** Optional parameters. */\nexport interface ManagementGroupsGetOptionalParams\n extends coreClient.OperationOptions {\n /** Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. */\n cacheControl?: string;\n /** The $expand=children query string parameter allows clients to request inclusion of children in the response payload. $expand=path includes the path from the root group to the current group. $expand=ancestors includes the ancestor Ids of the current group. */\n expand?: Enum0;\n /** The $recurse=true query string parameter allows clients to request inclusion of entire hierarchy in the response payload. Note that $expand=children must be passed up if $recurse is set to true. */\n recurse?: boolean;\n /** A filter which allows the exclusion of subscriptions from results (i.e. '$filter=children.childType ne Subscription') */\n filter?: string;\n}\n\n/** Contains response data for the get operation. */\nexport type ManagementGroupsGetResponse = ManagementGroup;\n\n/** Optional parameters. */\nexport interface ManagementGroupsCreateOrUpdateOptionalParams\n extends coreClient.OperationOptions {\n /** Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. */\n cacheControl?: string;\n /** Delay to wait until next poll, in milliseconds. */\n updateIntervalInMs?: number;\n /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */\n resumeFrom?: string;\n}\n\n/** Contains response data for the createOrUpdate operation. */\nexport type ManagementGroupsCreateOrUpdateResponse = ManagementGroup;\n\n/** Optional parameters. */\nexport interface ManagementGroupsUpdateOptionalParams\n extends coreClient.OperationOptions {\n /** Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. */\n cacheControl?: string;\n}\n\n/** Contains response data for the update operation. */\nexport type ManagementGroupsUpdateResponse = ManagementGroup;\n\n/** Optional parameters. */\nexport interface ManagementGroupsDeleteOptionalParams\n extends coreClient.OperationOptions {\n /** Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. */\n cacheControl?: string;\n /** Delay to wait until next poll, in milliseconds. */\n updateIntervalInMs?: number;\n /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */\n resumeFrom?: string;\n}\n\n/** Contains response data for the delete operation. */\nexport type ManagementGroupsDeleteResponse = ManagementGroupsDeleteHeaders &\n AzureAsyncOperationResults;\n\n/** Optional parameters. */\nexport interface ManagementGroupsGetDescendantsOptionalParams\n extends coreClient.OperationOptions {\n /**\n * Page continuation token is only used if a previous operation returned a partial result.\n * If a previous response contains a nextLink element, the value of the nextLink element will include a token parameter that specifies a starting point to use for subsequent calls.\n *\n */\n skiptoken?: string;\n /** Number of elements to return when retrieving results. Passing this in will override $skipToken. */\n top?: number;\n}\n\n/** Contains response data for the getDescendants operation. */\nexport type ManagementGroupsGetDescendantsResponse = DescendantListResult;\n\n/** Optional parameters. */\nexport interface ManagementGroupsListNextOptionalParams\n extends coreClient.OperationOptions {\n /** Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. */\n cacheControl?: string;\n /**\n * Page continuation token is only used if a previous operation returned a partial result.\n * If a previous response contains a nextLink element, the value of the nextLink element will include a token parameter that specifies a starting point to use for subsequent calls.\n *\n */\n skiptoken?: string;\n}\n\n/** Contains response data for the listNext operation. */\nexport type ManagementGroupsListNextResponse = ManagementGroupListResult;\n\n/** Optional parameters. */\nexport interface ManagementGroupsGetDescendantsNextOptionalParams\n extends coreClient.OperationOptions {\n /**\n * Page continuation token is only used if a previous operation returned a partial result.\n * If a previous response contains a nextLink element, the value of the nextLink element will include a token parameter that specifies a starting point to use for subsequent calls.\n *\n */\n skiptoken?: string;\n /** Number of elements to return when retrieving results. Passing this in will override $skipToken. */\n top?: number;\n}\n\n/** Contains response data for the getDescendantsNext operation. */\nexport type ManagementGroupsGetDescendantsNextResponse = DescendantListResult;\n\n/** Optional parameters. */\nexport interface ManagementGroupSubscriptionsCreateOptionalParams\n extends coreClient.OperationOptions {\n /** Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. */\n cacheControl?: string;\n}\n\n/** Contains response data for the create operation. */\nexport type ManagementGroupSubscriptionsCreateResponse = SubscriptionUnderManagementGroup;\n\n/** Optional parameters. */\nexport interface ManagementGroupSubscriptionsDeleteOptionalParams\n extends coreClient.OperationOptions {\n /** Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. */\n cacheControl?: string;\n}\n\n/** Optional parameters. */\nexport interface ManagementGroupSubscriptionsGetSubscriptionOptionalParams\n extends coreClient.OperationOptions {\n /** Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. */\n cacheControl?: string;\n}\n\n/** Contains response data for the getSubscription operation. */\nexport type ManagementGroupSubscriptionsGetSubscriptionResponse = SubscriptionUnderManagementGroup;\n\n/** Optional parameters. */\nexport interface ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupOptionalParams\n extends coreClient.OperationOptions {\n /**\n * Page continuation token is only used if a previous operation returned a partial result.\n * If a previous response contains a nextLink element, the value of the nextLink element will include a token parameter that specifies a starting point to use for subsequent calls.\n *\n */\n skiptoken?: string;\n}\n\n/** Contains response data for the getSubscriptionsUnderManagementGroup operation. */\nexport type ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupResponse = ListSubscriptionUnderManagementGroup;\n\n/** Optional parameters. */\nexport interface ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupNextOptionalParams\n extends coreClient.OperationOptions {\n /**\n * Page continuation token is only used if a previous operation returned a partial result.\n * If a previous response contains a nextLink element, the value of the nextLink element will include a token parameter that specifies a starting point to use for subsequent calls.\n *\n */\n skiptoken?: string;\n}\n\n/** Contains response data for the getSubscriptionsUnderManagementGroupNext operation. */\nexport type ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupNextResponse = ListSubscriptionUnderManagementGroup;\n\n/** Optional parameters. */\nexport interface HierarchySettingsListOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the list operation. */\nexport type HierarchySettingsListResponse = HierarchySettingsList;\n\n/** Optional parameters. */\nexport interface HierarchySettingsGetOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the get operation. */\nexport type HierarchySettingsGetResponse = HierarchySettings;\n\n/** Optional parameters. */\nexport interface HierarchySettingsCreateOrUpdateOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the createOrUpdate operation. */\nexport type HierarchySettingsCreateOrUpdateResponse = HierarchySettings;\n\n/** Optional parameters. */\nexport interface HierarchySettingsUpdateOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the update operation. */\nexport type HierarchySettingsUpdateResponse = HierarchySettings;\n\n/** Optional parameters. */\nexport interface HierarchySettingsDeleteOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Optional parameters. */\nexport interface OperationsListOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the list operation. */\nexport type OperationsListResponse = OperationListResult;\n\n/** Optional parameters. */\nexport interface OperationsListNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listNext operation. */\nexport type OperationsListNextResponse = OperationListResult;\n\n/** Optional parameters. */\nexport interface CheckNameAvailabilityOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the checkNameAvailability operation. */\nexport type CheckNameAvailabilityResponse = CheckNameAvailabilityResult;\n\n/** Optional parameters. */\nexport interface StartTenantBackfillOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the startTenantBackfill operation. */\nexport type StartTenantBackfillResponse = TenantBackfillStatusResult;\n\n/** Optional parameters. */\nexport interface TenantBackfillStatusOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the tenantBackfillStatus operation. */\nexport type TenantBackfillStatusResponse = TenantBackfillStatusResult;\n\n/** Optional parameters. */\nexport interface EntitiesListOptionalParams\n extends coreClient.OperationOptions {\n /** Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. */\n cacheControl?: string;\n /**\n * Page continuation token is only used if a previous operation returned a partial result.\n * If a previous response contains a nextLink element, the value of the nextLink element will include a token parameter that specifies a starting point to use for subsequent calls.\n *\n */\n skiptoken?: string;\n /** The filter parameter allows you to filter on the the name or display name fields. You can check for equality on the name field (e.g. name eq '{entityName}') and you can check for substrings on either the name or display name fields(e.g. contains(name, '{substringToSearch}'), contains(displayName, '{substringToSearch')). Note that the '{entityName}' and '{substringToSearch}' fields are checked case insensitively. */\n filter?: string;\n /** Number of elements to return when retrieving results. Passing this in will override $skipToken. */\n top?: number;\n /** Number of entities to skip over when retrieving results. Passing this in will override $skipToken. */\n skip?: number;\n /** This parameter specifies the fields to include in the response. Can include any combination of Name,DisplayName,Type,ParentDisplayNameChain,ParentChain, e.g. '$select=Name,DisplayName,Type,ParentDisplayNameChain,ParentNameChain'. When specified the $select parameter can override select in $skipToken. */\n select?: string;\n /**\n * The $search parameter is used in conjunction with the $filter parameter to return three different outputs depending on the parameter passed in.\n * With $search=AllowedParents the API will return the entity info of all groups that the requested entity will be able to reparent to as determined by the user's permissions.\n * With $search=AllowedChildren the API will return the entity info of all entities that can be added as children of the requested entity.\n * With $search=ParentAndFirstLevelChildren the API will return the parent and first level of children that the user has either direct access to or indirect access via one of their descendants.\n * With $search=ParentOnly the API will return only the group if the user has access to at least one of the descendants of the group.\n * With $search=ChildrenOnly the API will return only the first level of children of the group entity info specified in $filter. The user must have direct access to the children entities or one of it's descendants for it to show up in the results.\n */\n search?: Enum2;\n /** The view parameter allows clients to filter the type of data that is returned by the getEntities call. */\n view?: Enum3;\n /** A filter which allows the get entities call to focus on a particular group (i.e. \"$filter=name eq 'groupName'\") */\n groupName?: string;\n}\n\n/** Contains response data for the list operation. */\nexport type EntitiesListResponse = EntityListResult;\n\n/** Optional parameters. */\nexport interface EntitiesListNextOptionalParams\n extends coreClient.OperationOptions {\n /** Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. */\n cacheControl?: string;\n /**\n * Page continuation token is only used if a previous operation returned a partial result.\n * If a previous response contains a nextLink element, the value of the nextLink element will include a token parameter that specifies a starting point to use for subsequent calls.\n *\n */\n skiptoken?: string;\n /** The filter parameter allows you to filter on the the name or display name fields. You can check for equality on the name field (e.g. name eq '{entityName}') and you can check for substrings on either the name or display name fields(e.g. contains(name, '{substringToSearch}'), contains(displayName, '{substringToSearch')). Note that the '{entityName}' and '{substringToSearch}' fields are checked case insensitively. */\n filter?: string;\n /** Number of elements to return when retrieving results. Passing this in will override $skipToken. */\n top?: number;\n /** Number of entities to skip over when retrieving results. Passing this in will override $skipToken. */\n skip?: number;\n /** This parameter specifies the fields to include in the response. Can include any combination of Name,DisplayName,Type,ParentDisplayNameChain,ParentChain, e.g. '$select=Name,DisplayName,Type,ParentDisplayNameChain,ParentNameChain'. When specified the $select parameter can override select in $skipToken. */\n select?: string;\n /**\n * The $search parameter is used in conjunction with the $filter parameter to return three different outputs depending on the parameter passed in.\n * With $search=AllowedParents the API will return the entity info of all groups that the requested entity will be able to reparent to as determined by the user's permissions.\n * With $search=AllowedChildren the API will return the entity info of all entities that can be added as children of the requested entity.\n * With $search=ParentAndFirstLevelChildren the API will return the parent and first level of children that the user has either direct access to or indirect access via one of their descendants.\n * With $search=ParentOnly the API will return only the group if the user has access to at least one of the descendants of the group.\n * With $search=ChildrenOnly the API will return only the first level of children of the group entity info specified in $filter. The user must have direct access to the children entities or one of it's descendants for it to show up in the results.\n */\n search?: Enum2;\n /** The view parameter allows clients to filter the type of data that is returned by the getEntities call. */\n view?: Enum3;\n /** A filter which allows the get entities call to focus on a particular group (i.e. \"$filter=name eq 'groupName'\") */\n groupName?: string;\n}\n\n/** Contains response data for the listNext operation. */\nexport type EntitiesListNextResponse = EntityListResult;\n\n/** Optional parameters. */\nexport interface ManagementGroupsAPIOptionalParams\n extends coreClient.ServiceClientOptions {\n /** server parameter */\n $host?: string;\n /** Api Version */\n apiVersion?: string;\n /** Overrides client endpoint. */\n endpoint?: string;\n}\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\n\nexport const ManagementGroupListResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementGroupListResult\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ManagementGroupInfo\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ManagementGroupInfo: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementGroupInfo\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n tenantId: {\n serializedName: \"properties.tenantId\",\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"properties.displayName\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ErrorResponse: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ErrorResponse\",\n modelProperties: {\n error: {\n serializedName: \"error\",\n type: {\n name: \"Composite\",\n className: \"ErrorDetails\"\n }\n }\n }\n }\n};\n\nexport const ErrorDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ErrorDetails\",\n modelProperties: {\n code: {\n serializedName: \"code\",\n type: {\n name: \"String\"\n }\n },\n message: {\n serializedName: \"message\",\n type: {\n name: \"String\"\n }\n },\n details: {\n serializedName: \"details\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ManagementGroup: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementGroup\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n tenantId: {\n serializedName: \"properties.tenantId\",\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"properties.displayName\",\n type: {\n name: \"String\"\n }\n },\n details: {\n serializedName: \"properties.details\",\n type: {\n name: \"Composite\",\n className: \"ManagementGroupDetails\"\n }\n },\n children: {\n serializedName: \"properties.children\",\n nullable: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ManagementGroupChildInfo\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const ManagementGroupDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementGroupDetails\",\n modelProperties: {\n version: {\n serializedName: \"version\",\n type: {\n name: \"Number\"\n }\n },\n updatedTime: {\n serializedName: \"updatedTime\",\n type: {\n name: \"DateTime\"\n }\n },\n updatedBy: {\n serializedName: \"updatedBy\",\n type: {\n name: \"String\"\n }\n },\n parent: {\n serializedName: \"parent\",\n type: {\n name: \"Composite\",\n className: \"ParentGroupInfo\"\n }\n },\n path: {\n serializedName: \"path\",\n nullable: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ManagementGroupPathElement\"\n }\n }\n }\n },\n managementGroupAncestors: {\n serializedName: \"managementGroupAncestors\",\n nullable: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n managementGroupAncestorsChain: {\n serializedName: \"managementGroupAncestorsChain\",\n nullable: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ManagementGroupPathElement\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const ParentGroupInfo: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ParentGroupInfo\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"displayName\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ManagementGroupPathElement: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementGroupPathElement\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"displayName\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ManagementGroupChildInfo: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementGroupChildInfo\",\n modelProperties: {\n type: {\n serializedName: \"type\",\n type: {\n name: \"String\"\n }\n },\n id: {\n serializedName: \"id\",\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"displayName\",\n type: {\n name: \"String\"\n }\n },\n children: {\n serializedName: \"children\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ManagementGroupChildInfo\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const CreateManagementGroupRequest: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CreateManagementGroupRequest\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n tenantId: {\n serializedName: \"properties.tenantId\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"properties.displayName\",\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n details: {\n serializedName: \"properties.details\",\n type: {\n name: \"Composite\",\n className: \"CreateManagementGroupDetails\"\n }\n },\n children: {\n serializedName: \"properties.children\",\n readOnly: true,\n nullable: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"CreateManagementGroupChildInfo\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const CreateManagementGroupDetails: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CreateManagementGroupDetails\",\n modelProperties: {\n version: {\n serializedName: \"version\",\n readOnly: true,\n type: {\n name: \"Number\"\n }\n },\n updatedTime: {\n serializedName: \"updatedTime\",\n readOnly: true,\n type: {\n name: \"DateTime\"\n }\n },\n updatedBy: {\n serializedName: \"updatedBy\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n parent: {\n serializedName: \"parent\",\n type: {\n name: \"Composite\",\n className: \"CreateParentGroupInfo\"\n }\n }\n }\n }\n};\n\nexport const CreateParentGroupInfo: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CreateParentGroupInfo\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"displayName\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const CreateManagementGroupChildInfo: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CreateManagementGroupChildInfo\",\n modelProperties: {\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"displayName\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n children: {\n serializedName: \"children\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"CreateManagementGroupChildInfo\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const AzureAsyncOperationResults: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"AzureAsyncOperationResults\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n status: {\n serializedName: \"status\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n tenantId: {\n serializedName: \"properties.tenantId\",\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"properties.displayName\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const PatchManagementGroupRequest: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"PatchManagementGroupRequest\",\n modelProperties: {\n displayName: {\n serializedName: \"displayName\",\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n parentGroupId: {\n serializedName: \"parentGroupId\",\n nullable: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const DescendantListResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"DescendantListResult\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"DescendantInfo\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const DescendantInfo: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"DescendantInfo\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"properties.displayName\",\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n parent: {\n serializedName: \"properties.parent\",\n type: {\n name: \"Composite\",\n className: \"DescendantParentGroupInfo\"\n }\n }\n }\n }\n};\n\nexport const DescendantParentGroupInfo: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"DescendantParentGroupInfo\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const SubscriptionUnderManagementGroup: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SubscriptionUnderManagementGroup\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n tenant: {\n serializedName: \"properties.tenant\",\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"properties.displayName\",\n type: {\n name: \"String\"\n }\n },\n parent: {\n serializedName: \"properties.parent\",\n type: {\n name: \"Composite\",\n className: \"DescendantParentGroupInfo\"\n }\n },\n state: {\n serializedName: \"properties.state\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ListSubscriptionUnderManagementGroup: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ListSubscriptionUnderManagementGroup\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"SubscriptionUnderManagementGroup\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const HierarchySettingsList: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"HierarchySettingsList\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"HierarchySettingsInfo\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const HierarchySettingsInfo: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"HierarchySettingsInfo\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n tenantId: {\n serializedName: \"properties.tenantId\",\n type: {\n name: \"String\"\n }\n },\n requireAuthorizationForGroupCreation: {\n serializedName: \"properties.requireAuthorizationForGroupCreation\",\n type: {\n name: \"Boolean\"\n }\n },\n defaultManagementGroup: {\n serializedName: \"properties.defaultManagementGroup\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const HierarchySettings: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"HierarchySettings\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n tenantId: {\n serializedName: \"properties.tenantId\",\n type: {\n name: \"String\"\n }\n },\n requireAuthorizationForGroupCreation: {\n serializedName: \"properties.requireAuthorizationForGroupCreation\",\n type: {\n name: \"Boolean\"\n }\n },\n defaultManagementGroup: {\n serializedName: \"properties.defaultManagementGroup\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const CreateOrUpdateSettingsRequest: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CreateOrUpdateSettingsRequest\",\n modelProperties: {\n requireAuthorizationForGroupCreation: {\n serializedName: \"properties.requireAuthorizationForGroupCreation\",\n type: {\n name: \"Boolean\"\n }\n },\n defaultManagementGroup: {\n serializedName: \"properties.defaultManagementGroup\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const OperationListResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"OperationListResult\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Operation\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const Operation: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Operation\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n display: {\n serializedName: \"display\",\n type: {\n name: \"Composite\",\n className: \"OperationDisplayProperties\"\n }\n }\n }\n }\n};\n\nexport const OperationDisplayProperties: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"OperationDisplayProperties\",\n modelProperties: {\n provider: {\n serializedName: \"provider\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n resource: {\n serializedName: \"resource\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n operation: {\n serializedName: \"operation\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n description: {\n serializedName: \"description\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const CheckNameAvailabilityRequest: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CheckNameAvailabilityRequest\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n type: {\n defaultValue: \"Microsoft.Management/managementGroups\",\n isConstant: true,\n serializedName: \"type\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const CheckNameAvailabilityResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CheckNameAvailabilityResult\",\n modelProperties: {\n nameAvailable: {\n serializedName: \"nameAvailable\",\n readOnly: true,\n type: {\n name: \"Boolean\"\n }\n },\n reason: {\n serializedName: \"reason\",\n readOnly: true,\n type: {\n name: \"Enum\",\n allowedValues: [\"Invalid\", \"AlreadyExists\"]\n }\n },\n message: {\n serializedName: \"message\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const EntityListResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"EntityListResult\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"EntityInfo\"\n }\n }\n }\n },\n count: {\n serializedName: \"count\",\n readOnly: true,\n type: {\n name: \"Number\"\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const EntityInfo: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"EntityInfo\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n tenantId: {\n serializedName: \"properties.tenantId\",\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"properties.displayName\",\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n parent: {\n serializedName: \"properties.parent\",\n type: {\n name: \"Composite\",\n className: \"EntityParentGroupInfo\"\n }\n },\n permissions: {\n serializedName: \"properties.permissions\",\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n inheritedPermissions: {\n serializedName: \"properties.inheritedPermissions\",\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n numberOfDescendants: {\n serializedName: \"properties.numberOfDescendants\",\n nullable: true,\n type: {\n name: \"Number\"\n }\n },\n numberOfChildren: {\n serializedName: \"properties.numberOfChildren\",\n nullable: true,\n type: {\n name: \"Number\"\n }\n },\n numberOfChildGroups: {\n serializedName: \"properties.numberOfChildGroups\",\n nullable: true,\n type: {\n name: \"Number\"\n }\n },\n parentDisplayNameChain: {\n serializedName: \"properties.parentDisplayNameChain\",\n nullable: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n parentNameChain: {\n serializedName: \"properties.parentNameChain\",\n nullable: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const EntityParentGroupInfo: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"EntityParentGroupInfo\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const TenantBackfillStatusResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"TenantBackfillStatusResult\",\n modelProperties: {\n tenantId: {\n serializedName: \"tenantId\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n status: {\n serializedName: \"status\",\n readOnly: true,\n type: {\n name: \"Enum\",\n allowedValues: [\n \"NotStarted\",\n \"NotStartedButGroupsExist\",\n \"Started\",\n \"Failed\",\n \"Cancelled\",\n \"Completed\"\n ]\n }\n }\n }\n }\n};\n\nexport const OperationResults: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"OperationResults\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n tenantId: {\n serializedName: \"properties.tenantId\",\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"properties.displayName\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const EntityHierarchyItem: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"EntityHierarchyItem\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"properties.displayName\",\n type: {\n name: \"String\"\n }\n },\n permissions: {\n serializedName: \"properties.permissions\",\n type: {\n name: \"String\"\n }\n },\n children: {\n serializedName: \"properties.children\",\n nullable: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"EntityHierarchyItem\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const ManagementGroupsCreateOrUpdateHeaders: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementGroupsCreateOrUpdateHeaders\",\n modelProperties: {\n location: {\n serializedName: \"location\",\n type: {\n name: \"String\"\n }\n },\n azureAsyncOperation: {\n serializedName: \"azure-asyncoperation\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ManagementGroupsDeleteHeaders: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementGroupsDeleteHeaders\",\n modelProperties: {\n location: {\n serializedName: \"location\",\n type: {\n name: \"String\"\n }\n },\n azureAsyncOperation: {\n serializedName: \"azure-asyncoperation\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport {\n OperationParameter,\n OperationURLParameter,\n OperationQueryParameter\n} from \"@azure/core-client\";\nimport {\n CreateManagementGroupRequest as CreateManagementGroupRequestMapper,\n PatchManagementGroupRequest as PatchManagementGroupRequestMapper,\n CreateOrUpdateSettingsRequest as CreateOrUpdateSettingsRequestMapper,\n CheckNameAvailabilityRequest as CheckNameAvailabilityRequestMapper\n} from \"../models/mappers\";\n\nexport const accept: OperationParameter = {\n parameterPath: \"accept\",\n mapper: {\n defaultValue: \"application/json\",\n isConstant: true,\n serializedName: \"Accept\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const $host: OperationURLParameter = {\n parameterPath: \"$host\",\n mapper: {\n serializedName: \"$host\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\n\nexport const apiVersion: OperationQueryParameter = {\n parameterPath: \"apiVersion\",\n mapper: {\n defaultValue: \"2021-04-01\",\n isConstant: true,\n serializedName: \"api-version\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const cacheControl: OperationParameter = {\n parameterPath: [\"options\", \"cacheControl\"],\n mapper: {\n defaultValue: \"no-cache\",\n serializedName: \"Cache-Control\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const skiptoken: OperationQueryParameter = {\n parameterPath: [\"options\", \"skiptoken\"],\n mapper: {\n serializedName: \"$skiptoken\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const groupId: OperationURLParameter = {\n parameterPath: \"groupId\",\n mapper: {\n serializedName: \"groupId\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const expand: OperationQueryParameter = {\n parameterPath: [\"options\", \"expand\"],\n mapper: {\n serializedName: \"$expand\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const recurse: OperationQueryParameter = {\n parameterPath: [\"options\", \"recurse\"],\n mapper: {\n serializedName: \"$recurse\",\n type: {\n name: \"Boolean\"\n }\n }\n};\n\nexport const filter: OperationQueryParameter = {\n parameterPath: [\"options\", \"filter\"],\n mapper: {\n serializedName: \"$filter\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const contentType: OperationParameter = {\n parameterPath: [\"options\", \"contentType\"],\n mapper: {\n defaultValue: \"application/json\",\n isConstant: true,\n serializedName: \"Content-Type\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const createManagementGroupRequest: OperationParameter = {\n parameterPath: \"createManagementGroupRequest\",\n mapper: CreateManagementGroupRequestMapper\n};\n\nexport const patchGroupRequest: OperationParameter = {\n parameterPath: \"patchGroupRequest\",\n mapper: PatchManagementGroupRequestMapper\n};\n\nexport const top: OperationQueryParameter = {\n parameterPath: [\"options\", \"top\"],\n mapper: {\n serializedName: \"$top\",\n type: {\n name: \"Number\"\n }\n }\n};\n\nexport const nextLink: OperationURLParameter = {\n parameterPath: \"nextLink\",\n mapper: {\n serializedName: \"nextLink\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\n\nexport const subscriptionId: OperationURLParameter = {\n parameterPath: \"subscriptionId\",\n mapper: {\n serializedName: \"subscriptionId\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const createTenantSettingsRequest: OperationParameter = {\n parameterPath: \"createTenantSettingsRequest\",\n mapper: CreateOrUpdateSettingsRequestMapper\n};\n\nexport const checkNameAvailabilityRequest: OperationParameter = {\n parameterPath: \"checkNameAvailabilityRequest\",\n mapper: CheckNameAvailabilityRequestMapper\n};\n\nexport const skip: OperationQueryParameter = {\n parameterPath: [\"options\", \"skip\"],\n mapper: {\n serializedName: \"$skip\",\n type: {\n name: \"Number\"\n }\n }\n};\n\nexport const select: OperationQueryParameter = {\n parameterPath: [\"options\", \"select\"],\n mapper: {\n serializedName: \"$select\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const search: OperationQueryParameter = {\n parameterPath: [\"options\", \"search\"],\n mapper: {\n serializedName: \"$search\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const view: OperationQueryParameter = {\n parameterPath: [\"options\", \"view\"],\n mapper: {\n serializedName: \"$view\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const groupName: OperationQueryParameter = {\n parameterPath: [\"options\", \"groupName\"],\n mapper: {\n serializedName: \"groupName\",\n type: {\n name: \"String\"\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { LongRunningOperation, LroResponse } from \"@azure/core-lro\";\n\nexport class LroImpl<T> implements LongRunningOperation<T> {\n constructor(\n private sendOperationFn: (args: any, spec: any) => Promise<LroResponse<T>>,\n private args: Record<string, unknown>,\n private spec: {\n readonly requestBody?: unknown;\n readonly path?: string;\n readonly httpMethod: string;\n } & Record<string, any>,\n public requestPath: string = spec.path!,\n public requestMethod: string = spec.httpMethod\n ) {}\n public async sendInitialRequest(): Promise<LroResponse<T>> {\n return this.sendOperationFn(this.args, this.spec);\n }\n public async sendPollRequest(path: string): Promise<LroResponse<T>> {\n const { requestBody, ...restSpec } = this.spec;\n return this.sendOperationFn(this.args, {\n ...restSpec,\n path,\n httpMethod: \"GET\"\n });\n }\n}\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { PagedAsyncIterableIterator } from \"@azure/core-paging\";\nimport { ManagementGroups } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { ManagementGroupsAPI } from \"../managementGroupsAPI\";\nimport { PollerLike, PollOperationState, LroEngine } from \"@azure/core-lro\";\nimport { LroImpl } from \"../lroImpl\";\nimport {\n ManagementGroupInfo,\n ManagementGroupsListNextOptionalParams,\n ManagementGroupsListOptionalParams,\n DescendantInfo,\n ManagementGroupsGetDescendantsNextOptionalParams,\n ManagementGroupsGetDescendantsOptionalParams,\n ManagementGroupsListResponse,\n ManagementGroupsGetOptionalParams,\n ManagementGroupsGetResponse,\n CreateManagementGroupRequest,\n ManagementGroupsCreateOrUpdateOptionalParams,\n ManagementGroupsCreateOrUpdateResponse,\n PatchManagementGroupRequest,\n ManagementGroupsUpdateOptionalParams,\n ManagementGroupsUpdateResponse,\n ManagementGroupsDeleteOptionalParams,\n ManagementGroupsDeleteResponse,\n ManagementGroupsGetDescendantsResponse,\n ManagementGroupsListNextResponse,\n ManagementGroupsGetDescendantsNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing ManagementGroups operations. */\nexport class ManagementGroupsImpl implements ManagementGroups {\n private readonly client: ManagementGroupsAPI;\n\n /**\n * Initialize a new instance of the class ManagementGroups class.\n * @param client Reference to the service client\n */\n constructor(client: ManagementGroupsAPI) {\n this.client = client;\n }\n\n /**\n * List management groups for the authenticated user.\n *\n * @param options The options parameters.\n */\n public list(\n options?: ManagementGroupsListOptionalParams\n ): PagedAsyncIterableIterator<ManagementGroupInfo> {\n const iter = this.listPagingAll(options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listPagingPage(options);\n }\n };\n }\n\n private async *listPagingPage(\n options?: ManagementGroupsListOptionalParams\n ): AsyncIterableIterator<ManagementGroupInfo[]> {\n let result = await this._list(options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listNext(continuationToken, options);\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listPagingAll(\n options?: ManagementGroupsListOptionalParams\n ): AsyncIterableIterator<ManagementGroupInfo> {\n for await (const page of this.listPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * List all entities that descend from a management group.\n *\n * @param groupId Management Group ID.\n * @param options The options parameters.\n */\n public listDescendants(\n groupId: string,\n options?: ManagementGroupsGetDescendantsOptionalParams\n ): PagedAsyncIterableIterator<DescendantInfo> {\n const iter = this.getDescendantsPagingAll(groupId, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.getDescendantsPagingPage(groupId, options);\n }\n };\n }\n\n private async *getDescendantsPagingPage(\n groupId: string,\n options?: ManagementGroupsGetDescendantsOptionalParams\n ): AsyncIterableIterator<DescendantInfo[]> {\n let result = await this._getDescendants(groupId, options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._getDescendantsNext(\n groupId,\n continuationToken,\n options\n );\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *getDescendantsPagingAll(\n groupId: string,\n options?: ManagementGroupsGetDescendantsOptionalParams\n ): AsyncIterableIterator<DescendantInfo> {\n for await (const page of this.getDescendantsPagingPage(groupId, options)) {\n yield* page;\n }\n }\n\n /**\n * List management groups for the authenticated user.\n *\n * @param options The options parameters.\n */\n private _list(\n options?: ManagementGroupsListOptionalParams\n ): Promise<ManagementGroupsListResponse> {\n return this.client.sendOperationRequest({ options }, listOperationSpec);\n }\n\n /**\n * Get the details of the management group.\n *\n * @param groupId Management Group ID.\n * @param options The options parameters.\n */\n get(\n groupId: string,\n options?: ManagementGroupsGetOptionalParams\n ): Promise<ManagementGroupsGetResponse> {\n return this.client.sendOperationRequest(\n { groupId, options },\n getOperationSpec\n );\n }\n\n /**\n * Create or update a management group.\n * If a management group is already created and a subsequent create request is issued with different\n * properties, the management group properties will be updated.\n *\n * @param groupId Management Group ID.\n * @param createManagementGroupRequest Management group creation parameters.\n * @param options The options parameters.\n */\n async beginCreateOrUpdate(\n groupId: string,\n createManagementGroupRequest: CreateManagementGroupRequest,\n options?: ManagementGroupsCreateOrUpdateOptionalParams\n ): Promise<\n PollerLike<\n PollOperationState<ManagementGroupsCreateOrUpdateResponse>,\n ManagementGroupsCreateOrUpdateResponse\n >\n > {\n const directSendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ): Promise<ManagementGroupsCreateOrUpdateResponse> => {\n return this.client.sendOperationRequest(args, spec);\n };\n const sendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ) => {\n let currentRawResponse:\n | coreClient.FullOperationResponse\n | undefined = undefined;\n const providedCallback = args.options?.onResponse;\n const callback: coreClient.RawResponseCallback = (\n rawResponse: coreClient.FullOperationResponse,\n flatResponse: unknown\n ) => {\n currentRawResponse = rawResponse;\n providedCallback?.(rawResponse, flatResponse);\n };\n const updatedArgs = {\n ...args,\n options: {\n ...args.options,\n onResponse: callback\n }\n };\n const flatResponse = await directSendOperation(updatedArgs, spec);\n return {\n flatResponse,\n rawResponse: {\n statusCode: currentRawResponse!.status,\n body: currentRawResponse!.parsedBody,\n headers: currentRawResponse!.headers.toJSON()\n }\n };\n };\n\n const lro = new LroImpl(\n sendOperation,\n { groupId, createManagementGroupRequest, options },\n createOrUpdateOperationSpec\n );\n return new LroEngine(lro, {\n resumeFrom: options?.resumeFrom,\n intervalInMs: options?.updateIntervalInMs,\n lroResourceLocationConfig: \"azure-async-operation\"\n });\n }\n\n /**\n * Create or update a management group.\n * If a management group is already created and a subsequent create request is issued with different\n * properties, the management group properties will be updated.\n *\n * @param groupId Management Group ID.\n * @param createManagementGroupRequest Management group creation parameters.\n * @param options The options parameters.\n */\n async beginCreateOrUpdateAndWait(\n groupId: string,\n createManagementGroupRequest: CreateManagementGroupRequest,\n options?: ManagementGroupsCreateOrUpdateOptionalParams\n ): Promise<ManagementGroupsCreateOrUpdateResponse> {\n const poller = await this.beginCreateOrUpdate(\n groupId,\n createManagementGroupRequest,\n options\n );\n return poller.pollUntilDone();\n }\n\n /**\n * Update a management group.\n *\n * @param groupId Management Group ID.\n * @param patchGroupRequest Management group patch parameters.\n * @param options The options parameters.\n */\n update(\n groupId: string,\n patchGroupRequest: PatchManagementGroupRequest,\n options?: ManagementGroupsUpdateOptionalParams\n ): Promise<ManagementGroupsUpdateResponse> {\n return this.client.sendOperationRequest(\n { groupId, patchGroupRequest, options },\n updateOperationSpec\n );\n }\n\n /**\n * Delete management group.\n * If a management group contains child resources, the request will fail.\n *\n * @param groupId Management Group ID.\n * @param options The options parameters.\n */\n async beginDelete(\n groupId: string,\n options?: ManagementGroupsDeleteOptionalParams\n ): Promise<\n PollerLike<\n PollOperationState<ManagementGroupsDeleteResponse>,\n ManagementGroupsDeleteResponse\n >\n > {\n const directSendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ): Promise<ManagementGroupsDeleteResponse> => {\n return this.client.sendOperationRequest(args, spec);\n };\n const sendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ) => {\n let currentRawResponse:\n | coreClient.FullOperationResponse\n | undefined = undefined;\n const providedCallback = args.options?.onResponse;\n const callback: coreClient.RawResponseCallback = (\n rawResponse: coreClient.FullOperationResponse,\n flatResponse: unknown\n ) => {\n currentRawResponse = rawResponse;\n providedCallback?.(rawResponse, flatResponse);\n };\n const updatedArgs = {\n ...args,\n options: {\n ...args.options,\n onResponse: callback\n }\n };\n const flatResponse = await directSendOperation(updatedArgs, spec);\n return {\n flatResponse,\n rawResponse: {\n statusCode: currentRawResponse!.status,\n body: currentRawResponse!.parsedBody,\n headers: currentRawResponse!.headers.toJSON()\n }\n };\n };\n\n const lro = new LroImpl(\n sendOperation,\n { groupId, options },\n deleteOperationSpec\n );\n return new LroEngine(lro, {\n resumeFrom: options?.resumeFrom,\n intervalInMs: options?.updateIntervalInMs,\n lroResourceLocationConfig: \"azure-async-operation\"\n });\n }\n\n /**\n * Delete management group.\n * If a management group contains child resources, the request will fail.\n *\n * @param groupId Management Group ID.\n * @param options The options parameters.\n */\n async beginDeleteAndWait(\n groupId: string,\n options?: ManagementGroupsDeleteOptionalParams\n ): Promise<ManagementGroupsDeleteResponse> {\n const poller = await this.beginDelete(groupId, options);\n return poller.pollUntilDone();\n }\n\n /**\n * List all entities that descend from a management group.\n *\n * @param groupId Management Group ID.\n * @param options The options parameters.\n */\n private _getDescendants(\n groupId: string,\n options?: ManagementGroupsGetDescendantsOptionalParams\n ): Promise<ManagementGroupsGetDescendantsResponse> {\n return this.client.sendOperationRequest(\n { groupId, options },\n getDescendantsOperationSpec\n );\n }\n\n /**\n * ListNext\n * @param nextLink The nextLink from the previous successful call to the List method.\n * @param options The options parameters.\n */\n private _listNext(\n nextLink: string,\n options?: ManagementGroupsListNextOptionalParams\n ): Promise<ManagementGroupsListNextResponse> {\n return this.client.sendOperationRequest(\n { nextLink, options },\n listNextOperationSpec\n );\n }\n\n /**\n * GetDescendantsNext\n * @param groupId Management Group ID.\n * @param nextLink The nextLink from the previous successful call to the GetDescendants method.\n * @param options The options parameters.\n */\n private _getDescendantsNext(\n groupId: string,\n nextLink: string,\n options?: ManagementGroupsGetDescendantsNextOptionalParams\n ): Promise<ManagementGroupsGetDescendantsNextResponse> {\n return this.client.sendOperationRequest(\n { groupId, nextLink, options },\n getDescendantsNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/managementGroups\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ManagementGroupListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion, Parameters.skiptoken],\n urlParameters: [Parameters.$host],\n headerParameters: [Parameters.accept, Parameters.cacheControl],\n serializer\n};\nconst getOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/managementGroups/{groupId}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ManagementGroup\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.expand,\n Parameters.recurse,\n Parameters.filter\n ],\n urlParameters: [Parameters.$host, Parameters.groupId],\n headerParameters: [Parameters.accept, Parameters.cacheControl],\n serializer\n};\nconst createOrUpdateOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/managementGroups/{groupId}\",\n httpMethod: \"PUT\",\n responses: {\n 200: {\n bodyMapper: Mappers.ManagementGroup\n },\n 201: {\n bodyMapper: Mappers.ManagementGroup\n },\n 202: {\n bodyMapper: Mappers.ManagementGroup\n },\n 204: {\n bodyMapper: Mappers.ManagementGroup\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n requestBody: Parameters.createManagementGroupRequest,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.groupId],\n headerParameters: [\n Parameters.accept,\n Parameters.cacheControl,\n Parameters.contentType\n ],\n mediaType: \"json\",\n serializer\n};\nconst updateOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/managementGroups/{groupId}\",\n httpMethod: \"PATCH\",\n responses: {\n 200: {\n bodyMapper: Mappers.ManagementGroup\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n requestBody: Parameters.patchGroupRequest,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.groupId],\n headerParameters: [\n Parameters.accept,\n Parameters.cacheControl,\n Parameters.contentType\n ],\n mediaType: \"json\",\n serializer\n};\nconst deleteOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/managementGroups/{groupId}\",\n httpMethod: \"DELETE\",\n responses: {\n 200: {\n bodyMapper: Mappers.AzureAsyncOperationResults,\n headersMapper: Mappers.ManagementGroupsDeleteHeaders\n },\n 201: {\n bodyMapper: Mappers.AzureAsyncOperationResults,\n headersMapper: Mappers.ManagementGroupsDeleteHeaders\n },\n 202: {\n bodyMapper: Mappers.AzureAsyncOperationResults,\n headersMapper: Mappers.ManagementGroupsDeleteHeaders\n },\n 204: {\n bodyMapper: Mappers.AzureAsyncOperationResults,\n headersMapper: Mappers.ManagementGroupsDeleteHeaders\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.groupId],\n headerParameters: [Parameters.accept, Parameters.cacheControl],\n serializer\n};\nconst getDescendantsOperationSpec: coreClient.OperationSpec = {\n path:\n \"/providers/Microsoft.Management/managementGroups/{groupId}/descendants\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DescendantListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.skiptoken,\n Parameters.top\n ],\n urlParameters: [Parameters.$host, Parameters.groupId],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ManagementGroupListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion, Parameters.skiptoken],\n urlParameters: [Parameters.$host, Parameters.nextLink],\n headerParameters: [Parameters.accept, Parameters.cacheControl],\n serializer\n};\nconst getDescendantsNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DescendantListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.skiptoken,\n Parameters.top\n ],\n urlParameters: [Parameters.$host, Parameters.groupId, Parameters.nextLink],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { PagedAsyncIterableIterator } from \"@azure/core-paging\";\nimport { ManagementGroupSubscriptions } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { ManagementGroupsAPI } from \"../managementGroupsAPI\";\nimport {\n SubscriptionUnderManagementGroup,\n ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupNextOptionalParams,\n ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupOptionalParams,\n ManagementGroupSubscriptionsCreateOptionalParams,\n ManagementGroupSubscriptionsCreateResponse,\n ManagementGroupSubscriptionsDeleteOptionalParams,\n ManagementGroupSubscriptionsGetSubscriptionOptionalParams,\n ManagementGroupSubscriptionsGetSubscriptionResponse,\n ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupResponse,\n ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing ManagementGroupSubscriptions operations. */\nexport class ManagementGroupSubscriptionsImpl\n implements ManagementGroupSubscriptions {\n private readonly client: ManagementGroupsAPI;\n\n /**\n * Initialize a new instance of the class ManagementGroupSubscriptions class.\n * @param client Reference to the service client\n */\n constructor(client: ManagementGroupsAPI) {\n this.client = client;\n }\n\n /**\n * Retrieves details about all subscriptions which are associated with the management group.\n *\n * @param groupId Management Group ID.\n * @param options The options parameters.\n */\n public listSubscriptionsUnderManagementGroup(\n groupId: string,\n options?: ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupOptionalParams\n ): PagedAsyncIterableIterator<SubscriptionUnderManagementGroup> {\n const iter = this.getSubscriptionsUnderManagementGroupPagingAll(\n groupId,\n options\n );\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.getSubscriptionsUnderManagementGroupPagingPage(\n groupId,\n options\n );\n }\n };\n }\n\n private async *getSubscriptionsUnderManagementGroupPagingPage(\n groupId: string,\n options?: ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupOptionalParams\n ): AsyncIterableIterator<SubscriptionUnderManagementGroup[]> {\n let result = await this._getSubscriptionsUnderManagementGroup(\n groupId,\n options\n );\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._getSubscriptionsUnderManagementGroupNext(\n groupId,\n continuationToken,\n options\n );\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *getSubscriptionsUnderManagementGroupPagingAll(\n groupId: string,\n options?: ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupOptionalParams\n ): AsyncIterableIterator<SubscriptionUnderManagementGroup> {\n for await (const page of this.getSubscriptionsUnderManagementGroupPagingPage(\n groupId,\n options\n )) {\n yield* page;\n }\n }\n\n /**\n * Associates existing subscription with the management group.\n *\n * @param groupId Management Group ID.\n * @param subscriptionId Subscription ID.\n * @param options The options parameters.\n */\n create(\n groupId: string,\n subscriptionId: string,\n options?: ManagementGroupSubscriptionsCreateOptionalParams\n ): Promise<ManagementGroupSubscriptionsCreateResponse> {\n return this.client.sendOperationRequest(\n { groupId, subscriptionId, options },\n createOperationSpec\n );\n }\n\n /**\n * De-associates subscription from the management group.\n *\n * @param groupId Management Group ID.\n * @param subscriptionId Subscription ID.\n * @param options The options parameters.\n */\n delete(\n groupId: string,\n subscriptionId: string,\n options?: ManagementGroupSubscriptionsDeleteOptionalParams\n ): Promise<void> {\n return this.client.sendOperationRequest(\n { groupId, subscriptionId, options },\n deleteOperationSpec\n );\n }\n\n /**\n * Retrieves details about given subscription which is associated with the management group.\n *\n * @param groupId Management Group ID.\n * @param subscriptionId Subscription ID.\n * @param options The options parameters.\n */\n getSubscription(\n groupId: string,\n subscriptionId: string,\n options?: ManagementGroupSubscriptionsGetSubscriptionOptionalParams\n ): Promise<ManagementGroupSubscriptionsGetSubscriptionResponse> {\n return this.client.sendOperationRequest(\n { groupId, subscriptionId, options },\n getSubscriptionOperationSpec\n );\n }\n\n /**\n * Retrieves details about all subscriptions which are associated with the management group.\n *\n * @param groupId Management Group ID.\n * @param options The options parameters.\n */\n private _getSubscriptionsUnderManagementGroup(\n groupId: string,\n options?: ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupOptionalParams\n ): Promise<\n ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupResponse\n > {\n return this.client.sendOperationRequest(\n { groupId, options },\n getSubscriptionsUnderManagementGroupOperationSpec\n );\n }\n\n /**\n * GetSubscriptionsUnderManagementGroupNext\n * @param groupId Management Group ID.\n * @param nextLink The nextLink from the previous successful call to the\n * GetSubscriptionsUnderManagementGroup method.\n * @param options The options parameters.\n */\n private _getSubscriptionsUnderManagementGroupNext(\n groupId: string,\n nextLink: string,\n options?: ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupNextOptionalParams\n ): Promise<\n ManagementGroupSubscriptionsGetSubscriptionsUnderManagementGroupNextResponse\n > {\n return this.client.sendOperationRequest(\n { groupId, nextLink, options },\n getSubscriptionsUnderManagementGroupNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst createOperationSpec: coreClient.OperationSpec = {\n path:\n \"/providers/Microsoft.Management/managementGroups/{groupId}/subscriptions/{subscriptionId}\",\n httpMethod: \"PUT\",\n responses: {\n 200: {\n bodyMapper: Mappers.SubscriptionUnderManagementGroup\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.groupId,\n Parameters.subscriptionId\n ],\n headerParameters: [Parameters.accept, Parameters.cacheControl],\n serializer\n};\nconst deleteOperationSpec: coreClient.OperationSpec = {\n path:\n \"/providers/Microsoft.Management/managementGroups/{groupId}/subscriptions/{subscriptionId}\",\n httpMethod: \"DELETE\",\n responses: {\n 200: {},\n 204: {},\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.groupId,\n Parameters.subscriptionId\n ],\n headerParameters: [Parameters.accept, Parameters.cacheControl],\n serializer\n};\nconst getSubscriptionOperationSpec: coreClient.OperationSpec = {\n path:\n \"/providers/Microsoft.Management/managementGroups/{groupId}/subscriptions/{subscriptionId}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SubscriptionUnderManagementGroup\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.groupId,\n Parameters.subscriptionId\n ],\n headerParameters: [Parameters.accept, Parameters.cacheControl],\n serializer\n};\nconst getSubscriptionsUnderManagementGroupOperationSpec: coreClient.OperationSpec = {\n path:\n \"/providers/Microsoft.Management/managementGroups/{groupId}/subscriptions\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ListSubscriptionUnderManagementGroup\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion, Parameters.skiptoken],\n urlParameters: [Parameters.$host, Parameters.groupId],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst getSubscriptionsUnderManagementGroupNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ListSubscriptionUnderManagementGroup\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion, Parameters.skiptoken],\n urlParameters: [Parameters.$host, Parameters.groupId, Parameters.nextLink],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { HierarchySettingsOperations } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { ManagementGroupsAPI } from \"../managementGroupsAPI\";\nimport {\n HierarchySettingsListOptionalParams,\n HierarchySettingsListResponse,\n HierarchySettingsGetOptionalParams,\n HierarchySettingsGetResponse,\n CreateOrUpdateSettingsRequest,\n HierarchySettingsCreateOrUpdateOptionalParams,\n HierarchySettingsCreateOrUpdateResponse,\n HierarchySettingsUpdateOptionalParams,\n HierarchySettingsUpdateResponse,\n HierarchySettingsDeleteOptionalParams\n} from \"../models\";\n\n/** Class containing HierarchySettingsOperations operations. */\nexport class HierarchySettingsOperationsImpl\n implements HierarchySettingsOperations {\n private readonly client: ManagementGroupsAPI;\n\n /**\n * Initialize a new instance of the class HierarchySettingsOperations class.\n * @param client Reference to the service client\n */\n constructor(client: ManagementGroupsAPI) {\n this.client = client;\n }\n\n /**\n * Gets all the hierarchy settings defined at the Management Group level. Settings can only be set on\n * the root Management Group of the hierarchy.\n *\n * @param groupId Management Group ID.\n * @param options The options parameters.\n */\n list(\n groupId: string,\n options?: HierarchySettingsListOptionalParams\n ): Promise<HierarchySettingsListResponse> {\n return this.client.sendOperationRequest(\n { groupId, options },\n listOperationSpec\n );\n }\n\n /**\n * Gets the hierarchy settings defined at the Management Group level. Settings can only be set on the\n * root Management Group of the hierarchy.\n *\n * @param groupId Management Group ID.\n * @param options The options parameters.\n */\n get(\n groupId: string,\n options?: HierarchySettingsGetOptionalParams\n ): Promise<HierarchySettingsGetResponse> {\n return this.client.sendOperationRequest(\n { groupId, options },\n getOperationSpec\n );\n }\n\n /**\n * Creates or updates the hierarchy settings defined at the Management Group level.\n *\n * @param groupId Management Group ID.\n * @param createTenantSettingsRequest Tenant level settings request parameter.\n * @param options The options parameters.\n */\n createOrUpdate(\n groupId: string,\n createTenantSettingsRequest: CreateOrUpdateSettingsRequest,\n options?: HierarchySettingsCreateOrUpdateOptionalParams\n ): Promise<HierarchySettingsCreateOrUpdateResponse> {\n return this.client.sendOperationRequest(\n { groupId, createTenantSettingsRequest, options },\n createOrUpdateOperationSpec\n );\n }\n\n /**\n * Updates the hierarchy settings defined at the Management Group level.\n *\n * @param groupId Management Group ID.\n * @param createTenantSettingsRequest Tenant level settings request parameter.\n * @param options The options parameters.\n */\n update(\n groupId: string,\n createTenantSettingsRequest: CreateOrUpdateSettingsRequest,\n options?: HierarchySettingsUpdateOptionalParams\n ): Promise<HierarchySettingsUpdateResponse> {\n return this.client.sendOperationRequest(\n { groupId, createTenantSettingsRequest, options },\n updateOperationSpec\n );\n }\n\n /**\n * Deletes the hierarchy settings defined at the Management Group level.\n *\n * @param groupId Management Group ID.\n * @param options The options parameters.\n */\n delete(\n groupId: string,\n options?: HierarchySettingsDeleteOptionalParams\n ): Promise<void> {\n return this.client.sendOperationRequest(\n { groupId, options },\n deleteOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/managementGroups/{groupId}/settings\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.HierarchySettingsList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.groupId],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst getOperationSpec: coreClient.OperationSpec = {\n path:\n \"/providers/Microsoft.Management/managementGroups/{groupId}/settings/default\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.HierarchySettings\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.groupId],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst createOrUpdateOperationSpec: coreClient.OperationSpec = {\n path:\n \"/providers/Microsoft.Management/managementGroups/{groupId}/settings/default\",\n httpMethod: \"PUT\",\n responses: {\n 200: {\n bodyMapper: Mappers.HierarchySettings\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n requestBody: Parameters.createTenantSettingsRequest,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.groupId],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst updateOperationSpec: coreClient.OperationSpec = {\n path:\n \"/providers/Microsoft.Management/managementGroups/{groupId}/settings/default\",\n httpMethod: \"PATCH\",\n responses: {\n 200: {\n bodyMapper: Mappers.HierarchySettings\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n requestBody: Parameters.createTenantSettingsRequest,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.groupId],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst deleteOperationSpec: coreClient.OperationSpec = {\n path:\n \"/providers/Microsoft.Management/managementGroups/{groupId}/settings/default\",\n httpMethod: \"DELETE\",\n responses: {\n 200: {},\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.groupId],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { PagedAsyncIterableIterator } from \"@azure/core-paging\";\nimport { Operations } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { ManagementGroupsAPI } from \"../managementGroupsAPI\";\nimport {\n Operation,\n OperationsListNextOptionalParams,\n OperationsListOptionalParams,\n OperationsListResponse,\n OperationsListNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing Operations operations. */\nexport class OperationsImpl implements Operations {\n private readonly client: ManagementGroupsAPI;\n\n /**\n * Initialize a new instance of the class Operations class.\n * @param client Reference to the service client\n */\n constructor(client: ManagementGroupsAPI) {\n this.client = client;\n }\n\n /**\n * Lists all of the available Management REST API operations.\n * @param options The options parameters.\n */\n public list(\n options?: OperationsListOptionalParams\n ): PagedAsyncIterableIterator<Operation> {\n const iter = this.listPagingAll(options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listPagingPage(options);\n }\n };\n }\n\n private async *listPagingPage(\n options?: OperationsListOptionalParams\n ): AsyncIterableIterator<Operation[]> {\n let result = await this._list(options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listNext(continuationToken, options);\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listPagingAll(\n options?: OperationsListOptionalParams\n ): AsyncIterableIterator<Operation> {\n for await (const page of this.listPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * Lists all of the available Management REST API operations.\n * @param options The options parameters.\n */\n private _list(\n options?: OperationsListOptionalParams\n ): Promise<OperationsListResponse> {\n return this.client.sendOperationRequest({ options }, listOperationSpec);\n }\n\n /**\n * ListNext\n * @param nextLink The nextLink from the previous successful call to the List method.\n * @param options The options parameters.\n */\n private _listNext(\n nextLink: string,\n options?: OperationsListNextOptionalParams\n ): Promise<OperationsListNextResponse> {\n return this.client.sendOperationRequest(\n { nextLink, options },\n listNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/operations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.OperationListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.OperationListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.nextLink],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { PagedAsyncIterableIterator } from \"@azure/core-paging\";\nimport { Entities } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { ManagementGroupsAPI } from \"../managementGroupsAPI\";\nimport {\n EntityInfo,\n EntitiesListNextOptionalParams,\n EntitiesListOptionalParams,\n EntitiesListResponse,\n EntitiesListNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing Entities operations. */\nexport class EntitiesImpl implements Entities {\n private readonly client: ManagementGroupsAPI;\n\n /**\n * Initialize a new instance of the class Entities class.\n * @param client Reference to the service client\n */\n constructor(client: ManagementGroupsAPI) {\n this.client = client;\n }\n\n /**\n * List all entities (Management Groups, Subscriptions, etc.) for the authenticated user.\n *\n * @param options The options parameters.\n */\n public list(\n options?: EntitiesListOptionalParams\n ): PagedAsyncIterableIterator<EntityInfo> {\n const iter = this.listPagingAll(options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listPagingPage(options);\n }\n };\n }\n\n private async *listPagingPage(\n options?: EntitiesListOptionalParams\n ): AsyncIterableIterator<EntityInfo[]> {\n let result = await this._list(options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listNext(continuationToken, options);\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listPagingAll(\n options?: EntitiesListOptionalParams\n ): AsyncIterableIterator<EntityInfo> {\n for await (const page of this.listPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * List all entities (Management Groups, Subscriptions, etc.) for the authenticated user.\n *\n * @param options The options parameters.\n */\n private _list(\n options?: EntitiesListOptionalParams\n ): Promise<EntitiesListResponse> {\n return this.client.sendOperationRequest({ options }, listOperationSpec);\n }\n\n /**\n * ListNext\n * @param nextLink The nextLink from the previous successful call to the List method.\n * @param options The options parameters.\n */\n private _listNext(\n nextLink: string,\n options?: EntitiesListNextOptionalParams\n ): Promise<EntitiesListNextResponse> {\n return this.client.sendOperationRequest(\n { nextLink, options },\n listNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/getEntities\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.EntityListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.skiptoken,\n Parameters.filter,\n Parameters.top,\n Parameters.skip,\n Parameters.select,\n Parameters.search,\n Parameters.view,\n Parameters.groupName\n ],\n urlParameters: [Parameters.$host],\n headerParameters: [Parameters.accept, Parameters.cacheControl],\n serializer\n};\nconst listNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.EntityListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.skiptoken,\n Parameters.filter,\n Parameters.top,\n Parameters.skip,\n Parameters.select,\n Parameters.search,\n Parameters.view,\n Parameters.groupName\n ],\n urlParameters: [Parameters.$host, Parameters.nextLink],\n headerParameters: [Parameters.accept, Parameters.cacheControl],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\nimport * as coreAuth from \"@azure/core-auth\";\nimport {\n ManagementGroupsImpl,\n ManagementGroupSubscriptionsImpl,\n HierarchySettingsOperationsImpl,\n OperationsImpl,\n EntitiesImpl\n} from \"./operations\";\nimport {\n ManagementGroups,\n ManagementGroupSubscriptions,\n HierarchySettingsOperations,\n Operations,\n Entities\n} from \"./operationsInterfaces\";\nimport * as Parameters from \"./models/parameters\";\nimport * as Mappers from \"./models/mappers\";\nimport {\n ManagementGroupsAPIOptionalParams,\n CheckNameAvailabilityRequest,\n CheckNameAvailabilityOptionalParams,\n CheckNameAvailabilityResponse,\n StartTenantBackfillOptionalParams,\n StartTenantBackfillResponse,\n TenantBackfillStatusOptionalParams,\n TenantBackfillStatusResponse\n} from \"./models\";\n\nexport class ManagementGroupsAPI extends coreClient.ServiceClient {\n $host: string;\n apiVersion: string;\n\n /**\n * Initializes a new instance of the ManagementGroupsAPI class.\n * @param credentials Subscription credentials which uniquely identify client subscription.\n * @param options The parameter options\n */\n constructor(\n credentials: coreAuth.TokenCredential,\n options?: ManagementGroupsAPIOptionalParams\n ) {\n if (credentials === undefined) {\n throw new Error(\"'credentials' cannot be null\");\n }\n\n // Initializing default values for options\n if (!options) {\n options = {};\n }\n const defaults: ManagementGroupsAPIOptionalParams = {\n requestContentType: \"application/json; charset=utf-8\",\n credential: credentials\n };\n\n const packageDetails = `azsdk-js-arm-managementgroups/1.0.0-beta.1`;\n const userAgentPrefix =\n options.userAgentOptions && options.userAgentOptions.userAgentPrefix\n ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`\n : `${packageDetails}`;\n\n if (!options.credentialScopes) {\n options.credentialScopes = [\"https://management.azure.com/.default\"];\n }\n const optionsWithDefaults = {\n ...defaults,\n ...options,\n userAgentOptions: {\n userAgentPrefix\n },\n baseUri: options.endpoint || \"https://management.azure.com\"\n };\n super(optionsWithDefaults);\n\n // Assigning values to Constant parameters\n this.$host = options.$host || \"https://management.azure.com\";\n this.apiVersion = options.apiVersion || \"2021-04-01\";\n this.managementGroups = new ManagementGroupsImpl(this);\n this.managementGroupSubscriptions = new ManagementGroupSubscriptionsImpl(\n this\n );\n this.hierarchySettingsOperations = new HierarchySettingsOperationsImpl(\n this\n );\n this.operations = new OperationsImpl(this);\n this.entities = new EntitiesImpl(this);\n }\n\n /**\n * Checks if the specified management group name is valid and unique\n * @param checkNameAvailabilityRequest Management group name availability check parameters.\n * @param options The options parameters.\n */\n checkNameAvailability(\n checkNameAvailabilityRequest: CheckNameAvailabilityRequest,\n options?: CheckNameAvailabilityOptionalParams\n ): Promise<CheckNameAvailabilityResponse> {\n return this.sendOperationRequest(\n { checkNameAvailabilityRequest, options },\n checkNameAvailabilityOperationSpec\n );\n }\n\n /**\n * Starts backfilling subscriptions for the Tenant.\n * @param options The options parameters.\n */\n startTenantBackfill(\n options?: StartTenantBackfillOptionalParams\n ): Promise<StartTenantBackfillResponse> {\n return this.sendOperationRequest(\n { options },\n startTenantBackfillOperationSpec\n );\n }\n\n /**\n * Gets tenant backfill status\n * @param options The options parameters.\n */\n tenantBackfillStatus(\n options?: TenantBackfillStatusOptionalParams\n ): Promise<TenantBackfillStatusResponse> {\n return this.sendOperationRequest(\n { options },\n tenantBackfillStatusOperationSpec\n );\n }\n\n managementGroups: ManagementGroups;\n managementGroupSubscriptions: ManagementGroupSubscriptions;\n hierarchySettingsOperations: HierarchySettingsOperations;\n operations: Operations;\n entities: Entities;\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst checkNameAvailabilityOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/checkNameAvailability\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.CheckNameAvailabilityResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n requestBody: Parameters.checkNameAvailabilityRequest,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst startTenantBackfillOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/startTenantBackfill\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.TenantBackfillStatusResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst tenantBackfillStatusOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/tenantBackfillStatus\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.TenantBackfillStatusResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host],\n headerParameters: [Parameters.accept],\n serializer\n};\n"],"names":["KnownEnum0","KnownManagementGroupChildType","KnownEnum2","KnownEnum3","KnownPermissions","CreateManagementGroupRequestMapper","PatchManagementGroupRequestMapper","CreateOrUpdateSettingsRequestMapper","CheckNameAvailabilityRequestMapper","__asyncValues","__asyncDelegator","listOperationSpec","getOperationSpec","createOrUpdateOperationSpec","LroEngine","updateOperationSpec","deleteOperationSpec","listNextOperationSpec","serializer","coreClient","Mappers.ManagementGroupListResult","Mappers.ErrorResponse","Parameters.apiVersion","Parameters.skiptoken","Parameters.$host","Parameters.accept","Parameters.cacheControl","Mappers.ManagementGroup","Parameters.expand","Parameters.recurse","Parameters.filter","Parameters.groupId","Parameters.createManagementGroupRequest","Parameters.contentType","Parameters.patchGroupRequest","Mappers.AzureAsyncOperationResults","Mappers.ManagementGroupsDeleteHeaders","Mappers.DescendantListResult","Parameters.top","Parameters.nextLink","Mappers.SubscriptionUnderManagementGroup","Parameters.subscriptionId","Mappers.ListSubscriptionUnderManagementGroup","Mappers.HierarchySettingsList","Mappers.HierarchySettings","Parameters.createTenantSettingsRequest","Mappers.OperationListResult","Mappers.EntityListResult","Parameters.skip","Parameters.select","Parameters.search","Parameters.view","Parameters.groupName","Mappers.CheckNameAvailabilityResult","Parameters.checkNameAvailabilityRequest","Mappers.TenantBackfillStatusResult"],"mappings":"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"}