import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Returns a list of available Managed Object Storage regions. */ export declare function getManagedObjectStorageRegions(args?: GetManagedObjectStorageRegionsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagedObjectStorageRegions. */ export interface GetManagedObjectStorageRegionsArgs { regions?: inputs.GetManagedObjectStorageRegionsRegion[]; } /** * A collection of values returned by getManagedObjectStorageRegions. */ export interface GetManagedObjectStorageRegionsResult { /** * The ID of this resource. */ readonly id: string; readonly regions?: outputs.GetManagedObjectStorageRegionsRegion[]; } /** * Returns a list of available Managed Object Storage regions. */ export declare function getManagedObjectStorageRegionsOutput(args?: GetManagedObjectStorageRegionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagedObjectStorageRegions. */ export interface GetManagedObjectStorageRegionsOutputArgs { regions?: pulumi.Input[]>; }