import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Blueprint Published Version * * > **Note:** Azure Blueprints are in Preview and potentially subject to breaking change without notice. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const current = azure.core.getSubscription({}); * const test = current.then(current => azure.blueprint.getPublishedVersion({ * scopeId: current.id, * blueprintName: "exampleBluePrint", * version: "dev_v2.3", * })); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Blueprint` - 2018-11-01-preview */ export declare function getPublishedVersion(args: GetPublishedVersionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPublishedVersion. */ export interface GetPublishedVersionArgs { /** * The name of the Blueprint Definition */ blueprintName: string; /** * The ID of the Management Group / Subscription where this Blueprint Definition is stored. */ scopeId: string; /** * The Version name of the Published Version of the Blueprint Definition */ version: string; } /** * A collection of values returned by getPublishedVersion. */ export interface GetPublishedVersionResult { readonly blueprintName: string; /** * The description of the Blueprint Published Version */ readonly description: string; /** * The display name of the Blueprint Published Version */ readonly displayName: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly lastModified: string; readonly scopeId: string; /** * The target scope */ readonly targetScope: string; readonly timeCreated: string; /** * The type of the Blueprint */ readonly type: string; readonly version: string; } /** * Use this data source to access information about an existing Blueprint Published Version * * > **Note:** Azure Blueprints are in Preview and potentially subject to breaking change without notice. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const current = azure.core.getSubscription({}); * const test = current.then(current => azure.blueprint.getPublishedVersion({ * scopeId: current.id, * blueprintName: "exampleBluePrint", * version: "dev_v2.3", * })); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Blueprint` - 2018-11-01-preview */ export declare function getPublishedVersionOutput(args: GetPublishedVersionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPublishedVersion. */ export interface GetPublishedVersionOutputArgs { /** * The name of the Blueprint Definition */ blueprintName: pulumi.Input; /** * The ID of the Management Group / Subscription where this Blueprint Definition is stored. */ scopeId: pulumi.Input; /** * The Version name of the Published Version of the Blueprint Definition */ version: pulumi.Input; }