Skip to main content

configuration_profiles_versions_child_resources

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

Overview

Nameconfiguration_profiles_versions_child_resources
TypeResource
Idazure.automanage.configuration_profiles_versions_child_resources

Fields

The following fields are returned by SELECT queries:

OK. List of configuration profiles.

NameDatatypeDescription
locationstringThe geo-location where the resource lives
propertiesobjectProperties of the configuration profile.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
tagsobjectResource tags.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectconfigurationProfileName, subscriptionId, resourceGroupNameRetrieve a list of configuration profile version for a configuration profile

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
configurationProfileNamestringName of the configuration profile.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Retrieve a list of configuration profile version for a configuration profile

SELECT
location,
properties,
systemData,
tags
FROM azure.automanage.configuration_profiles_versions_child_resources
WHERE configurationProfileName = '{{ configurationProfileName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
;