BlueprintModel Constructors

Definition

Overloads

BlueprintModel()

Initializes a new instance of the BlueprintModel class.

BlueprintModel(String, String, String, String, String, BlueprintStatus, String, IDictionary<String,ParameterDefinition>, IDictionary<String, ResourceGroupDefinition>, Object, Object)

Initializes a new instance of the BlueprintModel class.

BlueprintModel()

Initializes a new instance of the BlueprintModel class.

public BlueprintModel ();
Public Sub New ()

Applies to

BlueprintModel(String, String, String, String, String, BlueprintStatus, String, IDictionary<String,ParameterDefinition>, IDictionary<String, ResourceGroupDefinition>, Object, Object)

Initializes a new instance of the BlueprintModel class.

public BlueprintModel (string id = default, string type = default, string name = default, string displayName = default, string description = default, Microsoft.Azure.Management.Blueprint.Models.BlueprintStatus status = default, string targetScope = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.Blueprint.Models.ParameterDefinition> parameters = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.Blueprint.Models.ResourceGroupDefinition> resourceGroups = default, object versions = default, object layout = default);
new Microsoft.Azure.Management.Blueprint.Models.BlueprintModel : string * string * string * string * string * Microsoft.Azure.Management.Blueprint.Models.BlueprintStatus * string * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.Blueprint.Models.ParameterDefinition> * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.Blueprint.Models.ResourceGroupDefinition> * obj * obj -> Microsoft.Azure.Management.Blueprint.Models.BlueprintModel
Public Sub New (Optional id As String = Nothing, Optional type As String = Nothing, Optional name As String = Nothing, Optional displayName As String = Nothing, Optional description As String = Nothing, Optional status As BlueprintStatus = Nothing, Optional targetScope As String = Nothing, Optional parameters As IDictionary(Of String, ParameterDefinition) = Nothing, Optional resourceGroups As IDictionary(Of String, ResourceGroupDefinition) = Nothing, Optional versions As Object = Nothing, Optional layout As Object = Nothing)

Parameters

id
String

String Id used to locate any resource on Azure.

type
String

Type of this resource.

name
String

Name of this resource.

displayName
String

One-liner string explain this resource.

description
String

Multi-line explain this resource.

status
BlueprintStatus

Status of the blueprint. This field is readonly.

targetScope
String

The scope where this blueprint definition can be assigned. Possible values include: 'subscription', 'managementGroup'

parameters
IDictionary<String,ParameterDefinition>

Parameters required by this blueprint definition.

resourceGroups
IDictionary<String,ResourceGroupDefinition>

Resource group placeholders defined by this blueprint definition.

versions
Object

Published versions of this blueprint definition.

layout
Object

Layout view of the blueprint definition for UI reference.

Applies to