13
13
14
14
15
15
class Assignment (TrackedResource ):
16
- """Represents a Blueprint assignment.
16
+ """Represents a blueprint assignment.
17
17
18
18
Variables are only populated by the server, and will be ignored when
19
19
sending a request.
@@ -26,31 +26,32 @@ class Assignment(TrackedResource):
26
26
:vartype type: str
27
27
:ivar name: Name of this resource.
28
28
:vartype name: str
29
- :param location: Required. The location of this Blueprint assignment.
29
+ :param location: Required. The location of this blueprint assignment.
30
30
:type location: str
31
- :param identity: Required. Managed Service Identity for this Blueprint
32
- assignment
31
+ :param identity: Required. Managed identity for this blueprint assignment.
33
32
:type identity: ~azure.mgmt.blueprint.models.ManagedServiceIdentity
34
33
:param display_name: One-liner string explain this resource.
35
34
:type display_name: str
36
35
:param description: Multi-line explain this resource.
37
36
:type description: str
38
- :param blueprint_id: ID of the Blueprint definition resource.
37
+ :param blueprint_id: ID of the published version of a blueprint
38
+ definition.
39
39
:type blueprint_id: str
40
- :param parameters: Required. Blueprint parameter values.
40
+ :param parameters: Required. Blueprint assignment parameter values.
41
41
:type parameters: dict[str,
42
42
~azure.mgmt.blueprint.models.ParameterValueBase]
43
43
:param resource_groups: Required. Names and locations of resource group
44
44
placeholders.
45
45
:type resource_groups: dict[str,
46
46
~azure.mgmt.blueprint.models.ResourceGroupValue]
47
- :ivar status: Status of Blueprint assignment. This field is readonly.
47
+ :ivar status: Status of blueprint assignment. This field is readonly.
48
48
:vartype status: ~azure.mgmt.blueprint.models.AssignmentStatus
49
- :param locks: Defines how Blueprint-managed resources will be locked.
49
+ :param locks: Defines how resources deployed by a blueprint assignment are
50
+ locked.
50
51
:type locks: ~azure.mgmt.blueprint.models.AssignmentLockSettings
51
- :ivar provisioning_state: State of the assignment. Possible values
52
- include: 'creating', 'validating', 'waiting', 'deploying', 'cancelling ',
53
- 'locking', 'succeeded', 'failed', 'canceled', 'deleting'
52
+ :ivar provisioning_state: State of the blueprint assignment. Possible
53
+ values include: 'creating', 'validating', 'waiting', 'deploying',
54
+ 'cancelling', ' locking', 'succeeded', 'failed', 'canceled', 'deleting'
54
55
:vartype provisioning_state: str or
55
56
~azure.mgmt.blueprint.models.AssignmentProvisioningState
56
57
"""
0 commit comments