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.

Files changed (24) hide show
  1. pulumi_azure_native/__init__.py +3 -0
  2. pulumi_azure_native/authorization/__init__.py +2 -0
  3. pulumi_azure_native/authorization/_enums.py +70 -0
  4. pulumi_azure_native/authorization/_inputs.py +838 -0
  5. pulumi_azure_native/authorization/get_role_management_policy.py +228 -0
  6. pulumi_azure_native/authorization/outputs.py +88 -0
  7. pulumi_azure_native/authorization/role_management_policy.py +327 -0
  8. pulumi_azure_native/authorization/v20201001/__init__.py +4 -0
  9. pulumi_azure_native/authorization/v20201001/_enums.py +78 -0
  10. pulumi_azure_native/authorization/v20201001/_inputs.py +853 -0
  11. pulumi_azure_native/authorization/v20201001/get_role_management_policy.py +222 -0
  12. pulumi_azure_native/authorization/v20201001/outputs.py +89 -0
  13. pulumi_azure_native/authorization/v20201001/role_management_policy.py +321 -0
  14. pulumi_azure_native/authorization/v20201001preview/__init__.py +4 -0
  15. pulumi_azure_native/authorization/v20201001preview/_enums.py +78 -0
  16. pulumi_azure_native/authorization/v20201001preview/_inputs.py +853 -0
  17. pulumi_azure_native/authorization/v20201001preview/get_role_management_policy.py +222 -0
  18. pulumi_azure_native/authorization/v20201001preview/outputs.py +959 -0
  19. pulumi_azure_native/authorization/v20201001preview/role_management_policy.py +321 -0
  20. pulumi_azure_native/pulumi-plugin.json +1 -1
  21. {pulumi_azure_native-2.44.0a1717167674.dist-info → pulumi_azure_native-2.44.0a1717427766.dist-info}/METADATA +1 -1
  22. {pulumi_azure_native-2.44.0a1717167674.dist-info → pulumi_azure_native-2.44.0a1717427766.dist-info}/RECORD +24 -14
  23. {pulumi_azure_native-2.44.0a1717167674.dist-info → pulumi_azure_native-2.44.0a1717427766.dist-info}/WHEEL +0 -0
  24. {pulumi_azure_native-2.44.0a1717167674.dist-info → pulumi_azure_native-2.44.0a1717427766.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,78 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ from enum import Enum
6
+
7
+ __all__ = [
8
+ 'ApprovalMode',
9
+ 'EnablementRules',
10
+ 'NotificationDeliveryMechanism',
11
+ 'NotificationLevel',
12
+ 'RecipientType',
13
+ 'RoleManagementPolicyRuleType',
14
+ 'UserType',
15
+ ]
16
+
17
+
18
+ class ApprovalMode(str, Enum):
19
+ """
20
+ The type of rule
21
+ """
22
+ SINGLE_STAGE = "SingleStage"
23
+ SERIAL = "Serial"
24
+ PARALLEL = "Parallel"
25
+ NO_APPROVAL = "NoApproval"
26
+
27
+
28
+ class EnablementRules(str, Enum):
29
+ """
30
+ The type of enablement rule
31
+ """
32
+ MULTI_FACTOR_AUTHENTICATION = "MultiFactorAuthentication"
33
+ JUSTIFICATION = "Justification"
34
+ TICKETING = "Ticketing"
35
+
36
+
37
+ class NotificationDeliveryMechanism(str, Enum):
38
+ """
39
+ The type of notification.
40
+ """
41
+ EMAIL = "Email"
42
+
43
+
44
+ class NotificationLevel(str, Enum):
45
+ """
46
+ The notification level.
47
+ """
48
+ NONE = "None"
49
+ CRITICAL = "Critical"
50
+ ALL = "All"
51
+
52
+
53
+ class RecipientType(str, Enum):
54
+ """
55
+ The recipient type.
56
+ """
57
+ REQUESTOR = "Requestor"
58
+ APPROVER = "Approver"
59
+ ADMIN = "Admin"
60
+
61
+
62
+ class RoleManagementPolicyRuleType(str, Enum):
63
+ """
64
+ The type of rule
65
+ """
66
+ ROLE_MANAGEMENT_POLICY_APPROVAL_RULE = "RoleManagementPolicyApprovalRule"
67
+ ROLE_MANAGEMENT_POLICY_AUTHENTICATION_CONTEXT_RULE = "RoleManagementPolicyAuthenticationContextRule"
68
+ ROLE_MANAGEMENT_POLICY_ENABLEMENT_RULE = "RoleManagementPolicyEnablementRule"
69
+ ROLE_MANAGEMENT_POLICY_EXPIRATION_RULE = "RoleManagementPolicyExpirationRule"
70
+ ROLE_MANAGEMENT_POLICY_NOTIFICATION_RULE = "RoleManagementPolicyNotificationRule"
71
+
72
+
73
+ class UserType(str, Enum):
74
+ """
75
+ The type of user.
76
+ """
77
+ USER = "User"
78
+ GROUP = "Group"