import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Policies available for a Managed Object Storage resource. See `managedObjectStorageUserPolicy` for attaching to a user. */ export declare function getManagedObjectStoragePolicies(args: GetManagedObjectStoragePoliciesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagedObjectStoragePolicies. */ export interface GetManagedObjectStoragePoliciesArgs { serviceUuid: string; } /** * A collection of values returned by getManagedObjectStoragePolicies. */ export interface GetManagedObjectStoragePoliciesResult { /** * @deprecated Contains the same value as `serviceUuid`. Use `serviceUuid` instead. */ readonly id: string; readonly policies: outputs.GetManagedObjectStoragePoliciesPolicy[]; readonly serviceUuid: string; } /** * Policies available for a Managed Object Storage resource. See `managedObjectStorageUserPolicy` for attaching to a user. */ export declare function getManagedObjectStoragePoliciesOutput(args: GetManagedObjectStoragePoliciesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagedObjectStoragePolicies. */ export interface GetManagedObjectStoragePoliciesOutputArgs { serviceUuid: pulumi.Input; }