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

124 lines (123 loc) 4.53 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Blueprint artifact that deploys a Resource Manager template. * * Uses Azure REST API version 2018-11-01-preview. In version 2.x of the Azure Native provider, it used API version 2018-11-01-preview. */ export declare class TemplateArtifact extends pulumi.CustomResource { /** * Get an existing TemplateArtifact resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): TemplateArtifact; /** * Returns true if the given object is an instance of TemplateArtifact. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is TemplateArtifact; /** * The Azure API version of the resource. */ readonly azureApiVersion: pulumi.Output<string>; /** * Artifacts which need to be deployed before the specified artifact. */ readonly dependsOn: pulumi.Output<string[] | undefined>; /** * Multi-line explain this resource. */ readonly description: pulumi.Output<string | undefined>; /** * One-liner string explain this resource. */ readonly displayName: pulumi.Output<string | undefined>; /** * Specifies the kind of blueprint artifact. * Expected value is 'template'. */ readonly kind: pulumi.Output<"template">; /** * Name of this resource. */ readonly name: pulumi.Output<string>; /** * Resource Manager template blueprint artifact parameter values. */ readonly parameters: pulumi.Output<{ [key: string]: outputs.blueprint.ParameterValueResponse; }>; /** * If applicable, the name of the resource group placeholder to which the Resource Manager template blueprint artifact will be deployed. */ readonly resourceGroup: pulumi.Output<string | undefined>; /** * The Resource Manager template blueprint artifact body. */ readonly template: pulumi.Output<any>; /** * Type of this resource. */ readonly type: pulumi.Output<string>; /** * Create a TemplateArtifact resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: TemplateArtifactArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a TemplateArtifact resource. */ export interface TemplateArtifactArgs { /** * Name of the blueprint artifact. */ artifactName?: pulumi.Input<string>; /** * Name of the blueprint definition. */ blueprintName: pulumi.Input<string>; /** * Artifacts which need to be deployed before the specified artifact. */ dependsOn?: pulumi.Input<pulumi.Input<string>[]>; /** * Multi-line explain this resource. */ description?: pulumi.Input<string>; /** * One-liner string explain this resource. */ displayName?: pulumi.Input<string>; /** * Specifies the kind of blueprint artifact. * Expected value is 'template'. */ kind: pulumi.Input<"template">; /** * Resource Manager template blueprint artifact parameter values. */ parameters: pulumi.Input<{ [key: string]: pulumi.Input<inputs.blueprint.ParameterValueArgs>; }>; /** * If applicable, the name of the resource group placeholder to which the Resource Manager template blueprint artifact will be deployed. */ resourceGroup?: 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>; /** * The Resource Manager template blueprint artifact body. */ template: any; }