import * as pulumi from "@pulumi/pulumi"; import { output as outputs } from "./types"; export declare function getNexusBlobstoreS3(args: GetNexusBlobstoreS3Args, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetNexusBlobstoreS3. */ export interface GetNexusBlobstoreS3Args { name: string; } /** * A collection of values returned by GetNexusBlobstoreS3. */ export interface GetNexusBlobstoreS3Result { readonly blobCount: number; readonly bucketConfigurations: outputs.GetNexusBlobstoreS3BucketConfiguration[]; readonly id: string; readonly name: string; readonly softQuotas: outputs.GetNexusBlobstoreS3SoftQuota[]; readonly totalSizeInBytes: number; } export declare function getNexusBlobstoreS3Output(args: GetNexusBlobstoreS3OutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetNexusBlobstoreS3. */ export interface GetNexusBlobstoreS3OutputArgs { name: pulumi.Input; }