Skip to main content

configurations_for_resource_groups

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

Overview

Nameconfigurations_for_resource_groups
TypeResource
Idazure.maintenance.configurations_for_resource_groups

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
locationstringGets or sets location of the resource
propertiesobjectGets or sets properties of the resource
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
tagsobjectGets or sets tags of the resource
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, resourceGroupName

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

SELECT examples

OK

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