pulumi-azure-native 2.87.0a1739181549__py3-none-any.whl → 2.87.0a1739200739__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 (36) hide show
  1. pulumi_azure_native/__init__.py +5 -0
  2. pulumi_azure_native/authorization/__init__.py +2 -0
  3. pulumi_azure_native/authorization/_enums.py +88 -0
  4. pulumi_azure_native/authorization/_inputs.py +1431 -43
  5. pulumi_azure_native/authorization/get_role_management_policy.py +247 -0
  6. pulumi_azure_native/authorization/outputs.py +312 -0
  7. pulumi_azure_native/authorization/role_management_policy.py +332 -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 +1134 -0
  11. pulumi_azure_native/authorization/v20201001/get_role_management_policy.py +241 -0
  12. pulumi_azure_native/authorization/v20201001/outputs.py +89 -0
  13. pulumi_azure_native/authorization/v20201001/role_management_policy.py +326 -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 +1134 -0
  17. pulumi_azure_native/authorization/v20201001preview/get_role_management_policy.py +241 -0
  18. pulumi_azure_native/authorization/v20201001preview/outputs.py +959 -0
  19. pulumi_azure_native/authorization/v20201001preview/role_management_policy.py +326 -0
  20. pulumi_azure_native/authorization/v20240201preview/__init__.py +4 -0
  21. pulumi_azure_native/authorization/v20240201preview/_enums.py +96 -0
  22. pulumi_azure_native/authorization/v20240201preview/_inputs.py +1390 -0
  23. pulumi_azure_native/authorization/v20240201preview/get_role_management_policy.py +241 -0
  24. pulumi_azure_native/authorization/v20240201preview/outputs.py +89 -0
  25. pulumi_azure_native/authorization/v20240201preview/role_management_policy.py +326 -0
  26. pulumi_azure_native/authorization/v20240901preview/__init__.py +4 -0
  27. pulumi_azure_native/authorization/v20240901preview/_enums.py +96 -0
  28. pulumi_azure_native/authorization/v20240901preview/_inputs.py +1410 -0
  29. pulumi_azure_native/authorization/v20240901preview/get_role_management_policy.py +241 -0
  30. pulumi_azure_native/authorization/v20240901preview/outputs.py +89 -0
  31. pulumi_azure_native/authorization/v20240901preview/role_management_policy.py +326 -0
  32. pulumi_azure_native/pulumi-plugin.json +1 -1
  33. {pulumi_azure_native-2.87.0a1739181549.dist-info → pulumi_azure_native-2.87.0a1739200739.dist-info}/METADATA +1 -1
  34. {pulumi_azure_native-2.87.0a1739181549.dist-info → pulumi_azure_native-2.87.0a1739200739.dist-info}/RECORD +36 -18
  35. {pulumi_azure_native-2.87.0a1739181549.dist-info → pulumi_azure_native-2.87.0a1739200739.dist-info}/WHEEL +0 -0
  36. {pulumi_azure_native-2.87.0a1739181549.dist-info → pulumi_azure_native-2.87.0a1739200739.dist-info}/top_level.txt +0 -0
@@ -5,6 +5,10 @@
5
5
  from ... import _utilities
6
6
  import typing
7
7
  # Export this package's modules as members:
8
+ from ._enums import *
9
+ from .get_role_management_policy import *
8
10
  from .get_role_management_policy_assignment import *
11
+ from .role_management_policy import *
9
12
  from .role_management_policy_assignment import *
13
+ from ._inputs import *
10
14
  from . import outputs
@@ -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"