import * as pulumi from "@pulumi/pulumi"; import { output as outputs } from "./types"; export declare function getNexusBlobstoreAzure(args: GetNexusBlobstoreAzureArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetNexusBlobstoreAzure. */ export interface GetNexusBlobstoreAzureArgs { name: string; } /** * A collection of values returned by GetNexusBlobstoreAzure. */ export interface GetNexusBlobstoreAzureResult { readonly blobCount: number; readonly bucketConfigurations: outputs.GetNexusBlobstoreAzureBucketConfiguration[]; readonly id: string; readonly name: string; readonly softQuotas: outputs.GetNexusBlobstoreAzureSoftQuota[]; readonly totalSizeInBytes: number; } export declare function getNexusBlobstoreAzureOutput(args: GetNexusBlobstoreAzureOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetNexusBlobstoreAzure. */ export interface GetNexusBlobstoreAzureOutputArgs { name: pulumi.Input; }