management_group_subscriptions_subscriptions
Creates, updates, deletes, gets or lists a management_group_subscriptions_subscriptions
resource.
Overview
Name | management_group_subscriptions_subscriptions |
Type | Resource |
Id | azure.management_groups.management_group_subscriptions_subscriptions |
Fields
The following fields are returned by SELECT
queries:
- get
Name | Datatype | Description |
---|---|---|
id | string | The fully qualified ID for the subscription. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000/subscriptions/0000000-0000-0000-0000-000000000001 |
name | string | The stringified id of the subscription. For example, 00000000-0000-0000-0000-000000000000 |
properties | object | The generic properties of subscription under a management group. (title: Properties) |
type | string | The type of the resource. For example, Microsoft.Management/managementGroups/subscriptions |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | groupId , subscriptionId | Cache-Control | Retrieves details about given subscription which is 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.
Name | Datatype | Description |
---|---|---|
groupId | string | Management Group ID. |
subscriptionId | string | Subscription ID. |
Cache-Control | string | Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. |
SELECT
examples
- get
Retrieves details about given subscription which is associated with the management group.
SELECT
id,
name,
properties,
type
FROM azure.management_groups.management_group_subscriptions_subscriptions
WHERE groupId = '{{ groupId }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND Cache-Control = '{{ Cache-Control }}'
;