Skip to main content

energy_services_partitions

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

Overview

Nameenergy_services_partitions
TypeResource
Idazure_extras.open_energy_platform.energy_services_partitions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
dataPartitionInfoarrayList of data partitions along with their properties in a given OEP resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, resourceNameMethod that gets called when list of partitions is requested.

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.
resourceNamestringThe resource name.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Method that gets called when list of partitions is requested.

SELECT
dataPartitionInfo
FROM azure_extras.open_energy_platform.energy_services_partitions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
;