import * as pulumi from "@pulumi/pulumi"; export declare function getDestinationAzureBlobStorage(args: GetDestinationAzureBlobStorageArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDestinationAzureBlobStorage. */ export interface GetDestinationAzureBlobStorageArgs { destinationId: string; } /** * A collection of values returned by getDestinationAzureBlobStorage. */ export interface GetDestinationAzureBlobStorageResult { readonly configuration: string; readonly destinationId: string; readonly destinationType: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly workspaceId: string; } export declare function getDestinationAzureBlobStorageOutput(args: GetDestinationAzureBlobStorageOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getDestinationAzureBlobStorage. */ export interface GetDestinationAzureBlobStorageOutputArgs { destinationId: pulumi.Input; }