Skip to main content

management_group_subscriptions_subscriptions_under_management_groups

Creates, updates, deletes, gets or lists a management_group_subscriptions_subscriptions_under_management_groups resource.

Overview

Namemanagement_group_subscriptions_subscriptions_under_management_groups
TypeResource
Idazure.management_groups.management_group_subscriptions_subscriptions_under_management_groups

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe fully qualified ID for the subscription. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000/subscriptions/0000000-0000-0000-0000-000000000001
namestringThe stringified id of the subscription. For example, 00000000-0000-0000-0000-000000000000
propertiesobjectThe generic properties of subscription under a management group. (title: Properties)
typestringThe type of the resource. For example, Microsoft.Management/managementGroups/subscriptions

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectgroupId$skiptokenRetrieves details about all subscriptions which are associated with the management group.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
groupIdstringManagement Group ID.
$skiptokenstringPage continuation token is only used if a previous operation returned a partial result. 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.

SELECT examples

Retrieves details about all subscriptions which are associated with the management group.

SELECT
id,
name,
properties,
type
FROM azure.management_groups.management_group_subscriptions_subscriptions_under_management_groups
WHERE groupId = '{{ groupId }}' -- required
AND $skiptoken = '{{ $skiptoken }}'
;