GetPublishedVersion
Use this data source to access information about an existing Azure Blueprint Published Version
NOTE: Azure Blueprints are in Preview and potentially subject to breaking change without notice.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var current = Output.Create(Azure.Core.GetSubscription.InvokeAsync());
var test = current.Apply(current => Output.Create(Azure.Blueprint.GetPublishedVersion.InvokeAsync(new Azure.Blueprint.GetPublishedVersionArgs
{
ScopeId = current.Id,
BlueprintName = "exampleBluePrint",
Version = "dev_v2.3",
})));
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/blueprint"
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/core"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
current, err := core.GetSubscription(ctx, nil, nil)
if err != nil {
return err
}
_, err := blueprint.GetPublishedVersion(ctx, &blueprint.GetPublishedVersionArgs{
ScopeId: current.Id,
BlueprintName: "exampleBluePrint",
Version: "dev_v2.3",
}, nil)
if err != nil {
return err
}
return nil
})
}import pulumi
import pulumi_azure as azure
current = azure.core.get_subscription()
test = azure.blueprint.get_published_version(scope_id=current.id,
blueprint_name="exampleBluePrint",
version="dev_v2.3")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",
}));Using GetPublishedVersion
function getPublishedVersion(args: GetPublishedVersionArgs, opts?: InvokeOptions): Promise<GetPublishedVersionResult>function get_published_version(blueprint_name=None, scope_id=None, version=None, opts=None)func GetPublishedVersion(ctx *Context, args *GetPublishedVersionArgs, opts ...InvokeOption) (*GetPublishedVersionResult, error)public static class GetPublishedVersion {
public static Task<GetPublishedVersionResult> InvokeAsync(GetPublishedVersionArgs args, InvokeOptions? opts = null)
}The following arguments are supported:
GetPublishedVersion Result
The following output properties are available:
- Blueprint
Name string - Description string
The description of the Blueprint Published Version
- Display
Name string The display name of the Blueprint Published Version
- Id string
The provider-assigned unique ID for this managed resource.
- Last
Modified string - Scope
Id string - Target
Scope string The target scope
- Time
Created string - Type string
The type of the Blueprint
- Version string
- Blueprint
Name string - Description string
The description of the Blueprint Published Version
- Display
Name string The display name of the Blueprint Published Version
- Id string
The provider-assigned unique ID for this managed resource.
- Last
Modified string - Scope
Id string - Target
Scope string The target scope
- Time
Created string - Type string
The type of the Blueprint
- Version string
- blueprint
Name string - description string
The description of the Blueprint Published Version
- display
Name string The display name of the Blueprint Published Version
- id string
The provider-assigned unique ID for this managed resource.
- last
Modified string - scope
Id string - target
Scope string The target scope
- time
Created string - type string
The type of the Blueprint
- version string
- blueprint_
name str - description str
The description of the Blueprint Published Version
- display_
name str The display name of the Blueprint Published Version
- id str
The provider-assigned unique ID for this managed resource.
- last_
modified str - scope_
id str - target_
scope str The target scope
- time_
created str - type str
The type of the Blueprint
- version str
Package Details
- Repository
- https://github.com/pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.