pulumi-azure-native 2.87.0a1739193742__py3-none-any.whl → 2.88.0a1739348902__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.0a1739193742.dist-info → pulumi_azure_native-2.88.0a1739348902.dist-info}/METADATA +1 -1
  34. {pulumi_azure_native-2.87.0a1739193742.dist-info → pulumi_azure_native-2.88.0a1739348902.dist-info}/RECORD +36 -18
  35. {pulumi_azure_native-2.87.0a1739193742.dist-info → pulumi_azure_native-2.88.0a1739348902.dist-info}/WHEEL +0 -0
  36. {pulumi_azure_native-2.87.0a1739193742.dist-info → pulumi_azure_native-2.88.0a1739348902.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,96 @@
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
+ 'ExcludedPrincipalTypes',
11
+ 'NotificationDeliveryMechanism',
12
+ 'NotificationLevel',
13
+ 'PIMOnlyMode',
14
+ 'RecipientType',
15
+ 'RoleManagementPolicyRuleType',
16
+ 'UserType',
17
+ ]
18
+
19
+
20
+ class ApprovalMode(str, Enum):
21
+ """
22
+ The type of rule
23
+ """
24
+ SINGLE_STAGE = "SingleStage"
25
+ SERIAL = "Serial"
26
+ PARALLEL = "Parallel"
27
+ NO_APPROVAL = "NoApproval"
28
+
29
+
30
+ class EnablementRules(str, Enum):
31
+ """
32
+ The type of enablement rule
33
+ """
34
+ MULTI_FACTOR_AUTHENTICATION = "MultiFactorAuthentication"
35
+ JUSTIFICATION = "Justification"
36
+ TICKETING = "Ticketing"
37
+
38
+
39
+ class ExcludedPrincipalTypes(str, Enum):
40
+ SERVICE_PRINCIPALS_AS_TARGET = "ServicePrincipalsAsTarget"
41
+ SERVICE_PRINCIPALS_AS_REQUESTOR = "ServicePrincipalsAsRequestor"
42
+
43
+
44
+ class NotificationDeliveryMechanism(str, Enum):
45
+ """
46
+ The type of notification.
47
+ """
48
+ EMAIL = "Email"
49
+
50
+
51
+ class NotificationLevel(str, Enum):
52
+ """
53
+ The notification level.
54
+ """
55
+ NONE = "None"
56
+ CRITICAL = "Critical"
57
+ ALL = "All"
58
+
59
+
60
+ class PIMOnlyMode(str, Enum):
61
+ """
62
+ Determines whether the setting is enabled, disabled or report only.
63
+ """
64
+ DISABLED = "Disabled"
65
+ ENABLED = "Enabled"
66
+ REPORT_ONLY = "ReportOnly"
67
+
68
+
69
+ class RecipientType(str, Enum):
70
+ """
71
+ The recipient type.
72
+ """
73
+ REQUESTOR = "Requestor"
74
+ APPROVER = "Approver"
75
+ ADMIN = "Admin"
76
+
77
+
78
+ class RoleManagementPolicyRuleType(str, Enum):
79
+ """
80
+ The type of rule
81
+ """
82
+ ROLE_MANAGEMENT_POLICY_APPROVAL_RULE = "RoleManagementPolicyApprovalRule"
83
+ ROLE_MANAGEMENT_POLICY_AUTHENTICATION_CONTEXT_RULE = "RoleManagementPolicyAuthenticationContextRule"
84
+ ROLE_MANAGEMENT_POLICY_ENABLEMENT_RULE = "RoleManagementPolicyEnablementRule"
85
+ ROLE_MANAGEMENT_POLICY_EXPIRATION_RULE = "RoleManagementPolicyExpirationRule"
86
+ ROLE_MANAGEMENT_POLICY_NOTIFICATION_RULE = "RoleManagementPolicyNotificationRule"
87
+ ROLE_MANAGEMENT_POLICY_PIM_ONLY_MODE_RULE = "RoleManagementPolicyPimOnlyModeRule"
88
+
89
+
90
+ class UserType(str, Enum):
91
+ """
92
+ The type of user.
93
+ """
94
+ USER = "User"
95
+ GROUP = "Group"
96
+ SERVICE_PRINCIPAL = "ServicePrincipal"