UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

44 lines (43 loc) 1.49 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Method that gets called when list of partitions is requested. * * Uses Azure REST API version 2022-04-04-preview. */ export declare function listEnergyServicePartitions(args: ListEnergyServicePartitionsArgs, opts?: pulumi.InvokeOptions): Promise<ListEnergyServicePartitionsResult>; export interface ListEnergyServicePartitionsArgs { /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; /** * The resource name. */ resourceName: string; } /** * List of data partitions. */ export interface ListEnergyServicePartitionsResult { /** * List of data partitions along with their properties in a given OEP resource. */ readonly dataPartitionInfo?: outputs.openenergyplatform.DataPartitionPropertiesResponse[]; } /** * Method that gets called when list of partitions is requested. * * Uses Azure REST API version 2022-04-04-preview. */ export declare function listEnergyServicePartitionsOutput(args: ListEnergyServicePartitionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListEnergyServicePartitionsResult>; export interface ListEnergyServicePartitionsOutputArgs { /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; /** * The resource name. */ resourceName: pulumi.Input<string>; }