import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * List the block storage volumes of a region in a public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const volumes = ovh.getCloudStorageBlockVolumes({ * serviceName: "xxxxxxxxx", * region: "GRA9", * }); * ``` */ export declare function getCloudStorageBlockVolumes(args: GetCloudStorageBlockVolumesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudStorageBlockVolumes. */ export interface GetCloudStorageBlockVolumesArgs { /** * The region where the volumes reside. */ region: string; /** * The id of the public cloud project. */ serviceName: string; } /** * A collection of values returned by getCloudStorageBlockVolumes. */ export interface GetCloudStorageBlockVolumesResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Region. */ readonly region: string; readonly serviceName: string; /** * List of volumes: */ readonly volumes: outputs.GetCloudStorageBlockVolumesVolume[]; } /** * List the block storage volumes of a region in a public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const volumes = ovh.getCloudStorageBlockVolumes({ * serviceName: "xxxxxxxxx", * region: "GRA9", * }); * ``` */ export declare function getCloudStorageBlockVolumesOutput(args: GetCloudStorageBlockVolumesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudStorageBlockVolumes. */ export interface GetCloudStorageBlockVolumesOutputArgs { /** * The region where the volumes reside. */ region: pulumi.Input; /** * The id of the public cloud project. */ serviceName: pulumi.Input; }