Assignment Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Assignment() |
Initializes a new instance of the Assignment class. |
Assignment(String, ManagedServiceIdentity, IDictionary<String, ParameterValue>, IDictionary<String,ResourceGroupValue>, String, String, String, String, String, String, String, AssignmentStatus, AssignmentLockSettings, String) |
Initializes a new instance of the Assignment class. |
Assignment()
Initializes a new instance of the Assignment class.
public Assignment ();
Public Sub New ()
Applies to
Assignment(String, ManagedServiceIdentity, IDictionary<String, ParameterValue>, IDictionary<String,ResourceGroupValue>, String, String, String, String, String, String, String, AssignmentStatus, AssignmentLockSettings, String)
Initializes a new instance of the Assignment class.
public Assignment (string location, Microsoft.Azure.Management.Blueprint.Models.ManagedServiceIdentity identity, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.Blueprint.Models.ParameterValue> parameters, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.Blueprint.Models.ResourceGroupValue> resourceGroups, string id = default, string type = default, string name = default, string displayName = default, string description = default, string blueprintId = default, string scope = default, Microsoft.Azure.Management.Blueprint.Models.AssignmentStatus status = default, Microsoft.Azure.Management.Blueprint.Models.AssignmentLockSettings locks = default, string provisioningState = default);
new Microsoft.Azure.Management.Blueprint.Models.Assignment : string * Microsoft.Azure.Management.Blueprint.Models.ManagedServiceIdentity * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.Blueprint.Models.ParameterValue> * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.Blueprint.Models.ResourceGroupValue> * string * string * string * string * string * string * string * Microsoft.Azure.Management.Blueprint.Models.AssignmentStatus * Microsoft.Azure.Management.Blueprint.Models.AssignmentLockSettings * string -> Microsoft.Azure.Management.Blueprint.Models.Assignment
Public Sub New (location As String, identity As ManagedServiceIdentity, parameters As IDictionary(Of String, ParameterValue), resourceGroups As IDictionary(Of String, ResourceGroupValue), 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 blueprintId As String = Nothing, Optional scope As String = Nothing, Optional status As AssignmentStatus = Nothing, Optional locks As AssignmentLockSettings = Nothing, Optional provisioningState As String = Nothing)
Parameters
- location
- String
The location of this blueprint assignment.
- identity
- ManagedServiceIdentity
Managed identity for this blueprint assignment.
- parameters
- IDictionary<String,ParameterValue>
Blueprint assignment parameter values.
- resourceGroups
- IDictionary<String,ResourceGroupValue>
Names and locations of resource group placeholders.
- 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.
- blueprintId
- String
ID of the published version of a blueprint definition.
- scope
- String
The target subscription scope of the blueprint assignment (format: '/subscriptions/{subscriptionId}'). For management group level assignments, the property is required.
- status
- AssignmentStatus
Status of blueprint assignment. This field is readonly.
- locks
- AssignmentLockSettings
Defines how resources deployed by a blueprint assignment are locked.
- provisioningState
- String
State of the blueprint assignment. Possible values include: 'creating', 'validating', 'waiting', 'deploying', 'cancelling', 'locking', 'succeeded', 'failed', 'canceled', 'deleting'
Applies to
Azure SDK for .NET