Skip to main content

configuration_assignments_within_subscriptions

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

Overview

Nameconfiguration_assignments_within_subscriptions
TypeResource
Idazure.maintenance.configuration_assignments_within_subscriptions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstring (arm-id)Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
namestringThe name of the resource
locationstringLocation of the resource
propertiesobjectProperties of the configuration assignment
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId

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
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

OK

SELECT
id,
name,
location,
properties,
systemData,
type
FROM azure.maintenance.configuration_assignments_within_subscriptions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;