@pulumi/azure-native
Version: 
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.49 kB
TypeScript
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>;
}