UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

92 lines (91 loc) 2.77 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get a blueprint definition. * * Uses Azure REST API version 2018-11-01-preview. */ export declare function getBlueprint(args: GetBlueprintArgs, opts?: pulumi.InvokeOptions): Promise<GetBlueprintResult>; export interface GetBlueprintArgs { /** * Name of the blueprint definition. */ blueprintName: string; /** * The scope of the resource. Valid scopes are: management group (format: '/providers/Microsoft.Management/managementGroups/{managementGroup}'), subscription (format: '/subscriptions/{subscriptionId}'). */ resourceScope: string; } /** * Represents a Blueprint definition. */ export interface GetBlueprintResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Multi-line explain this resource. */ readonly description?: string; /** * One-liner string explain this resource. */ readonly displayName?: string; /** * String Id used to locate any resource on Azure. */ readonly id: string; /** * Layout view of the blueprint definition for UI reference. */ readonly layout: any; /** * Name of this resource. */ readonly name: string; /** * Parameters required by this blueprint definition. */ readonly parameters?: { [key: string]: outputs.blueprint.ParameterDefinitionResponse; }; /** * Resource group placeholders defined by this blueprint definition. */ readonly resourceGroups?: { [key: string]: outputs.blueprint.ResourceGroupDefinitionResponse; }; /** * Status of the blueprint. This field is readonly. */ readonly status: outputs.blueprint.BlueprintStatusResponse; /** * The scope where this blueprint definition can be assigned. */ readonly targetScope: string; /** * Type of this resource. */ readonly type: string; /** * Published versions of this blueprint definition. */ readonly versions?: any; } /** * Get a blueprint definition. * * Uses Azure REST API version 2018-11-01-preview. */ export declare function getBlueprintOutput(args: GetBlueprintOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetBlueprintResult>; export interface GetBlueprintOutputArgs { /** * Name of the blueprint definition. */ blueprintName: pulumi.Input<string>; /** * The scope of the resource. Valid scopes are: management group (format: '/providers/Microsoft.Management/managementGroups/{managementGroup}'), subscription (format: '/subscriptions/{subscriptionId}'). */ resourceScope: pulumi.Input<string>; }