Skip to main content

enabled_resource_types

Creates, updates, deletes, gets or lists an enabled_resource_types resource.

Overview

Nameenabled_resource_types
TypeResource
Idazure.custom_locations.enabled_resource_types

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
propertiesobjectThe set of properties for EnabledResourceType specific to a Custom Location
systemDataobjectMetadata pertaining to creation and last modification of the resource

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, resourceNameGets the list of the Enabled Resource Types.

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

SELECT examples

Gets the list of the Enabled Resource Types.

SELECT
properties,
systemData
FROM azure.custom_locations.enabled_resource_types
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
;