import * as pulumi from "@pulumi/pulumi"; import { output as outputs } from "./types"; export declare function getNexusBlobstoreGroup(args: GetNexusBlobstoreGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetNexusBlobstoreGroup. */ export interface GetNexusBlobstoreGroupArgs { name: string; } /** * A collection of values returned by GetNexusBlobstoreGroup. */ export interface GetNexusBlobstoreGroupResult { readonly availableSpaceInBytes: number; readonly blobCount: number; readonly fillPolicy: string; readonly id: string; readonly members: string[]; readonly name: string; readonly softQuotas: outputs.GetNexusBlobstoreGroupSoftQuota[]; readonly totalSizeInBytes: number; } export declare function getNexusBlobstoreGroupOutput(args: GetNexusBlobstoreGroupOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetNexusBlobstoreGroup. */ export interface GetNexusBlobstoreGroupOutputArgs { name: pulumi.Input; }