Skip to main content

management_group_subscriptions_subscriptions

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

Overview

Namemanagement_group_subscriptions_subscriptions
TypeResource
Idazure.management_groups.management_group_subscriptions_subscriptions

Fields

NameDatatypeDescription
idtextThe fully qualified ID for the subscription. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000/subscriptions/0000000-0000-0000-0000-000000000001
nametextThe stringified id of the subscription. For example, 00000000-0000-0000-0000-000000000000
display_nametextfield from the properties object
groupIdtextfield from the properties object
parenttextfield from the properties object
statetextfield from the properties object
subscriptionIdtextfield from the properties object
tenanttextfield from the properties object
typetextThe type of the resource. For example, Microsoft.Management/managementGroups/subscriptions

Methods

NameAccessible byRequired ParamsDescription
getSELECTgroupId, subscriptionIdRetrieves details about given subscription which is associated with the management group.

SELECT examples

Retrieves details about given subscription which is associated with the management group.

SELECT
id,
name,
display_name,
groupId,
parent,
state,
subscriptionId,
tenant,
type
FROM azure.management_groups.vw_management_group_subscriptions_subscriptions
WHERE groupId = '{{ groupId }}'
AND subscriptionId = '{{ subscriptionId }}';