pulumi-azure-native 2.44.0a1717167674__py3-none-any.whl → 2.44.0a1717427766__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-azure-native might be problematic. Click here for more details.
- pulumi_azure_native/__init__.py +3 -0
- pulumi_azure_native/authorization/__init__.py +2 -0
- pulumi_azure_native/authorization/_enums.py +70 -0
- pulumi_azure_native/authorization/_inputs.py +838 -0
- pulumi_azure_native/authorization/get_role_management_policy.py +228 -0
- pulumi_azure_native/authorization/outputs.py +88 -0
- pulumi_azure_native/authorization/role_management_policy.py +327 -0
- pulumi_azure_native/authorization/v20201001/__init__.py +4 -0
- pulumi_azure_native/authorization/v20201001/_enums.py +78 -0
- pulumi_azure_native/authorization/v20201001/_inputs.py +853 -0
- pulumi_azure_native/authorization/v20201001/get_role_management_policy.py +222 -0
- pulumi_azure_native/authorization/v20201001/outputs.py +89 -0
- pulumi_azure_native/authorization/v20201001/role_management_policy.py +321 -0
- pulumi_azure_native/authorization/v20201001preview/__init__.py +4 -0
- pulumi_azure_native/authorization/v20201001preview/_enums.py +78 -0
- pulumi_azure_native/authorization/v20201001preview/_inputs.py +853 -0
- pulumi_azure_native/authorization/v20201001preview/get_role_management_policy.py +222 -0
- pulumi_azure_native/authorization/v20201001preview/outputs.py +959 -0
- pulumi_azure_native/authorization/v20201001preview/role_management_policy.py +321 -0
- pulumi_azure_native/pulumi-plugin.json +1 -1
- {pulumi_azure_native-2.44.0a1717167674.dist-info → pulumi_azure_native-2.44.0a1717427766.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.44.0a1717167674.dist-info → pulumi_azure_native-2.44.0a1717427766.dist-info}/RECORD +24 -14
- {pulumi_azure_native-2.44.0a1717167674.dist-info → pulumi_azure_native-2.44.0a1717427766.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.44.0a1717167674.dist-info → pulumi_azure_native-2.44.0a1717427766.dist-info}/top_level.txt +0 -0
pulumi_azure_native/__init__.py
CHANGED
|
@@ -2080,6 +2080,7 @@ _utilities.register(
|
|
|
2080
2080
|
"azure-native:authorization:ResourceManagementPrivateLink": "ResourceManagementPrivateLink",
|
|
2081
2081
|
"azure-native:authorization:RoleAssignment": "RoleAssignment",
|
|
2082
2082
|
"azure-native:authorization:RoleDefinition": "RoleDefinition",
|
|
2083
|
+
"azure-native:authorization:RoleManagementPolicy": "RoleManagementPolicy",
|
|
2083
2084
|
"azure-native:authorization:RoleManagementPolicyAssignment": "RoleManagementPolicyAssignment",
|
|
2084
2085
|
"azure-native:authorization:ScopeAccessReviewHistoryDefinitionById": "ScopeAccessReviewHistoryDefinitionById",
|
|
2085
2086
|
"azure-native:authorization:ScopeAccessReviewScheduleDefinitionById": "ScopeAccessReviewScheduleDefinitionById",
|
|
@@ -2160,6 +2161,7 @@ _utilities.register(
|
|
|
2160
2161
|
"mod": "authorization/v20201001",
|
|
2161
2162
|
"fqn": "pulumi_azure_native.authorization.v20201001",
|
|
2162
2163
|
"classes": {
|
|
2164
|
+
"azure-native:authorization/v20201001:RoleManagementPolicy": "RoleManagementPolicy",
|
|
2163
2165
|
"azure-native:authorization/v20201001:RoleManagementPolicyAssignment": "RoleManagementPolicyAssignment"
|
|
2164
2166
|
}
|
|
2165
2167
|
},
|
|
@@ -2168,6 +2170,7 @@ _utilities.register(
|
|
|
2168
2170
|
"mod": "authorization/v20201001preview",
|
|
2169
2171
|
"fqn": "pulumi_azure_native.authorization.v20201001preview",
|
|
2170
2172
|
"classes": {
|
|
2173
|
+
"azure-native:authorization/v20201001preview:RoleManagementPolicy": "RoleManagementPolicy",
|
|
2171
2174
|
"azure-native:authorization/v20201001preview:RoleManagementPolicyAssignment": "RoleManagementPolicyAssignment"
|
|
2172
2175
|
}
|
|
2173
2176
|
},
|
|
@@ -30,6 +30,7 @@ from .get_private_link_association import *
|
|
|
30
30
|
from .get_resource_management_private_link import *
|
|
31
31
|
from .get_role_assignment import *
|
|
32
32
|
from .get_role_definition import *
|
|
33
|
+
from .get_role_management_policy import *
|
|
33
34
|
from .get_role_management_policy_assignment import *
|
|
34
35
|
from .get_scope_access_review_history_definition_by_id import *
|
|
35
36
|
from .get_scope_access_review_schedule_definition_by_id import *
|
|
@@ -61,6 +62,7 @@ from .private_link_association import *
|
|
|
61
62
|
from .resource_management_private_link import *
|
|
62
63
|
from .role_assignment import *
|
|
63
64
|
from .role_definition import *
|
|
65
|
+
from .role_management_policy import *
|
|
64
66
|
from .role_management_policy_assignment import *
|
|
65
67
|
from .scope_access_review_history_definition_by_id import *
|
|
66
68
|
from .scope_access_review_schedule_definition_by_id import *
|
|
@@ -8,18 +8,25 @@ __all__ = [
|
|
|
8
8
|
'AccessReviewRecurrencePatternType',
|
|
9
9
|
'AccessReviewRecurrenceRangeType',
|
|
10
10
|
'AccessReviewResult',
|
|
11
|
+
'ApprovalMode',
|
|
11
12
|
'AssignmentScopeValidation',
|
|
12
13
|
'DefaultDecisionType',
|
|
14
|
+
'EnablementRules',
|
|
13
15
|
'EnforcementMode',
|
|
14
16
|
'ExemptionCategory',
|
|
15
17
|
'LockLevel',
|
|
18
|
+
'NotificationDeliveryMechanism',
|
|
19
|
+
'NotificationLevel',
|
|
16
20
|
'OverrideKind',
|
|
17
21
|
'ParameterType',
|
|
18
22
|
'PolicyType',
|
|
19
23
|
'PrincipalType',
|
|
20
24
|
'PublicNetworkAccessOptions',
|
|
25
|
+
'RecipientType',
|
|
21
26
|
'ResourceIdentityType',
|
|
27
|
+
'RoleManagementPolicyRuleType',
|
|
22
28
|
'SelectorKind',
|
|
29
|
+
'UserType',
|
|
23
30
|
]
|
|
24
31
|
|
|
25
32
|
|
|
@@ -51,6 +58,16 @@ class AccessReviewResult(str, Enum):
|
|
|
51
58
|
NOT_NOTIFIED = "NotNotified"
|
|
52
59
|
|
|
53
60
|
|
|
61
|
+
class ApprovalMode(str, Enum):
|
|
62
|
+
"""
|
|
63
|
+
The type of rule
|
|
64
|
+
"""
|
|
65
|
+
SINGLE_STAGE = "SingleStage"
|
|
66
|
+
SERIAL = "Serial"
|
|
67
|
+
PARALLEL = "Parallel"
|
|
68
|
+
NO_APPROVAL = "NoApproval"
|
|
69
|
+
|
|
70
|
+
|
|
54
71
|
class AssignmentScopeValidation(str, Enum):
|
|
55
72
|
"""
|
|
56
73
|
The option whether validate the exemption is at or under the assignment scope.
|
|
@@ -74,6 +91,15 @@ class DefaultDecisionType(str, Enum):
|
|
|
74
91
|
RECOMMENDATION = "Recommendation"
|
|
75
92
|
|
|
76
93
|
|
|
94
|
+
class EnablementRules(str, Enum):
|
|
95
|
+
"""
|
|
96
|
+
The type of enablement rule
|
|
97
|
+
"""
|
|
98
|
+
MULTI_FACTOR_AUTHENTICATION = "MultiFactorAuthentication"
|
|
99
|
+
JUSTIFICATION = "Justification"
|
|
100
|
+
TICKETING = "Ticketing"
|
|
101
|
+
|
|
102
|
+
|
|
77
103
|
class EnforcementMode(str, Enum):
|
|
78
104
|
"""
|
|
79
105
|
The policy assignment enforcement mode. Possible values are Default and DoNotEnforce.
|
|
@@ -111,6 +137,22 @@ class LockLevel(str, Enum):
|
|
|
111
137
|
READ_ONLY = "ReadOnly"
|
|
112
138
|
|
|
113
139
|
|
|
140
|
+
class NotificationDeliveryMechanism(str, Enum):
|
|
141
|
+
"""
|
|
142
|
+
The type of notification.
|
|
143
|
+
"""
|
|
144
|
+
EMAIL = "Email"
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
class NotificationLevel(str, Enum):
|
|
148
|
+
"""
|
|
149
|
+
The notification level.
|
|
150
|
+
"""
|
|
151
|
+
NONE = "None"
|
|
152
|
+
CRITICAL = "Critical"
|
|
153
|
+
ALL = "All"
|
|
154
|
+
|
|
155
|
+
|
|
114
156
|
class OverrideKind(str, Enum):
|
|
115
157
|
"""
|
|
116
158
|
The override kind.
|
|
@@ -160,6 +202,15 @@ class PublicNetworkAccessOptions(str, Enum):
|
|
|
160
202
|
DISABLED = "Disabled"
|
|
161
203
|
|
|
162
204
|
|
|
205
|
+
class RecipientType(str, Enum):
|
|
206
|
+
"""
|
|
207
|
+
The recipient type.
|
|
208
|
+
"""
|
|
209
|
+
REQUESTOR = "Requestor"
|
|
210
|
+
APPROVER = "Approver"
|
|
211
|
+
ADMIN = "Admin"
|
|
212
|
+
|
|
213
|
+
|
|
163
214
|
class ResourceIdentityType(str, Enum):
|
|
164
215
|
"""
|
|
165
216
|
The identity type. This is the only required field when adding a system or user assigned identity to a resource.
|
|
@@ -178,6 +229,17 @@ class ResourceIdentityType(str, Enum):
|
|
|
178
229
|
"""
|
|
179
230
|
|
|
180
231
|
|
|
232
|
+
class RoleManagementPolicyRuleType(str, Enum):
|
|
233
|
+
"""
|
|
234
|
+
The type of rule
|
|
235
|
+
"""
|
|
236
|
+
ROLE_MANAGEMENT_POLICY_APPROVAL_RULE = "RoleManagementPolicyApprovalRule"
|
|
237
|
+
ROLE_MANAGEMENT_POLICY_AUTHENTICATION_CONTEXT_RULE = "RoleManagementPolicyAuthenticationContextRule"
|
|
238
|
+
ROLE_MANAGEMENT_POLICY_ENABLEMENT_RULE = "RoleManagementPolicyEnablementRule"
|
|
239
|
+
ROLE_MANAGEMENT_POLICY_EXPIRATION_RULE = "RoleManagementPolicyExpirationRule"
|
|
240
|
+
ROLE_MANAGEMENT_POLICY_NOTIFICATION_RULE = "RoleManagementPolicyNotificationRule"
|
|
241
|
+
|
|
242
|
+
|
|
181
243
|
class SelectorKind(str, Enum):
|
|
182
244
|
"""
|
|
183
245
|
The selector kind.
|
|
@@ -198,3 +260,11 @@ class SelectorKind(str, Enum):
|
|
|
198
260
|
"""
|
|
199
261
|
The selector kind to filter policies by the policy definition reference ID.
|
|
200
262
|
"""
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
class UserType(str, Enum):
|
|
266
|
+
"""
|
|
267
|
+
The type of user.
|
|
268
|
+
"""
|
|
269
|
+
USER = "User"
|
|
270
|
+
GROUP = "Group"
|