pulumi-azuread 5.48.0a1706744699__py3-none-any.whl → 6.8.0a1766208344__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-azuread might be problematic. Click here for more details.

Files changed (87) hide show
  1. pulumi_azuread/__init__.py +48 -1
  2. pulumi_azuread/_inputs.py +3803 -919
  3. pulumi_azuread/_utilities.py +52 -12
  4. pulumi_azuread/access_package.py +84 -78
  5. pulumi_azuread/access_package_assignment_policy.py +202 -196
  6. pulumi_azuread/access_package_catalog.py +82 -76
  7. pulumi_azuread/access_package_catalog_role_assignment.py +73 -67
  8. pulumi_azuread/access_package_resource_catalog_association.py +73 -67
  9. pulumi_azuread/access_package_resource_package_association.py +79 -73
  10. pulumi_azuread/administrative_unit.py +120 -100
  11. pulumi_azuread/administrative_unit_member.py +66 -50
  12. pulumi_azuread/administrative_unit_role_member.py +75 -69
  13. pulumi_azuread/app_role_assignment.py +164 -264
  14. pulumi_azuread/application.py +766 -692
  15. pulumi_azuread/application_api_access.py +84 -80
  16. pulumi_azuread/application_app_role.py +120 -116
  17. pulumi_azuread/application_certificate.py +349 -211
  18. pulumi_azuread/application_fallback_public_client.py +50 -44
  19. pulumi_azuread/application_federated_identity_credential.py +142 -197
  20. pulumi_azuread/application_from_template.py +90 -84
  21. pulumi_azuread/application_identifier_uri.py +56 -52
  22. pulumi_azuread/application_known_clients.py +50 -44
  23. pulumi_azuread/application_optional_claims.py +87 -81
  24. pulumi_azuread/application_owner.py +76 -42
  25. pulumi_azuread/application_password.py +159 -205
  26. pulumi_azuread/application_permission_scope.py +160 -156
  27. pulumi_azuread/application_pre_authorized.py +120 -236
  28. pulumi_azuread/application_redirect_uris.py +75 -69
  29. pulumi_azuread/application_registration.py +315 -309
  30. pulumi_azuread/authentication_strength_policy.py +73 -67
  31. pulumi_azuread/claims_mapping_policy.py +48 -42
  32. pulumi_azuread/conditional_access_policy.py +248 -232
  33. pulumi_azuread/config/__init__.py +2 -1
  34. pulumi_azuread/config/__init__.pyi +23 -17
  35. pulumi_azuread/config/vars.py +47 -37
  36. pulumi_azuread/custom_directory_role.py +128 -122
  37. pulumi_azuread/directory_role.py +60 -54
  38. pulumi_azuread/directory_role_assignment.py +194 -181
  39. pulumi_azuread/directory_role_eligibility_schedule_request.py +86 -80
  40. pulumi_azuread/directory_role_member.py +54 -48
  41. pulumi_azuread/get_access_package.py +45 -31
  42. pulumi_azuread/get_access_package_catalog.py +40 -27
  43. pulumi_azuread/get_access_package_catalog_role.py +39 -25
  44. pulumi_azuread/get_administrative_unit.py +42 -27
  45. pulumi_azuread/get_application.py +135 -94
  46. pulumi_azuread/get_application_published_app_ids.py +42 -47
  47. pulumi_azuread/get_application_template.py +49 -33
  48. pulumi_azuread/get_client_config.py +24 -15
  49. pulumi_azuread/get_directory_object.py +32 -21
  50. pulumi_azuread/get_directory_role_templates.py +20 -12
  51. pulumi_azuread/get_directory_roles.py +23 -14
  52. pulumi_azuread/get_domains.py +65 -46
  53. pulumi_azuread/get_group.py +147 -88
  54. pulumi_azuread/get_group_role_management_policy.py +178 -0
  55. pulumi_azuread/get_groups.py +71 -51
  56. pulumi_azuread/get_named_location.py +47 -22
  57. pulumi_azuread/get_service_principal.py +108 -90
  58. pulumi_azuread/get_service_principals.py +60 -64
  59. pulumi_azuread/get_user.py +186 -118
  60. pulumi_azuread/get_users.py +96 -53
  61. pulumi_azuread/group.py +622 -464
  62. pulumi_azuread/group_member.py +56 -50
  63. pulumi_azuread/group_role_management_policy.py +544 -0
  64. pulumi_azuread/group_without_members.py +1610 -0
  65. pulumi_azuread/invitation.py +126 -120
  66. pulumi_azuread/named_location.py +90 -76
  67. pulumi_azuread/outputs.py +2844 -1308
  68. pulumi_azuread/privileged_access_group_assignment_schedule.py +695 -0
  69. pulumi_azuread/privileged_access_group_eligibility_schedule.py +695 -0
  70. pulumi_azuread/provider.py +292 -246
  71. pulumi_azuread/pulumi-plugin.json +2 -1
  72. pulumi_azuread/service_principal.py +400 -461
  73. pulumi_azuread/service_principal_certificate.py +230 -145
  74. pulumi_azuread/service_principal_claims_mapping_policy_assignment.py +53 -47
  75. pulumi_azuread/service_principal_delegated_permission_grant.py +146 -140
  76. pulumi_azuread/service_principal_password.py +156 -141
  77. pulumi_azuread/service_principal_token_signing_certificate.py +119 -124
  78. pulumi_azuread/synchronization_job.py +105 -111
  79. pulumi_azuread/synchronization_job_provision_on_demand.py +396 -0
  80. pulumi_azuread/synchronization_secret.py +64 -70
  81. pulumi_azuread/user.py +776 -730
  82. pulumi_azuread/user_flow_attribute.py +76 -70
  83. {pulumi_azuread-5.48.0a1706744699.dist-info → pulumi_azuread-6.8.0a1766208344.dist-info}/METADATA +21 -20
  84. pulumi_azuread-6.8.0a1766208344.dist-info/RECORD +87 -0
  85. {pulumi_azuread-5.48.0a1706744699.dist-info → pulumi_azuread-6.8.0a1766208344.dist-info}/WHEEL +1 -1
  86. pulumi_azuread-5.48.0a1706744699.dist-info/RECORD +0 -81
  87. {pulumi_azuread-5.48.0a1706744699.dist-info → pulumi_azuread-6.8.0a1766208344.dist-info}/top_level.txt +0 -0
@@ -1,12 +1,17 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
- import copy
5
+ import builtins as _builtins
6
6
  import warnings
7
+ import sys
7
8
  import pulumi
8
9
  import pulumi.runtime
9
10
  from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
10
15
  from . import _utilities
11
16
 
12
17
  __all__ = ['UserFlowAttributeArgs', 'UserFlowAttribute']
@@ -14,69 +19,69 @@ __all__ = ['UserFlowAttributeArgs', 'UserFlowAttribute']
14
19
  @pulumi.input_type
15
20
  class UserFlowAttributeArgs:
16
21
  def __init__(__self__, *,
17
- data_type: pulumi.Input[str],
18
- description: pulumi.Input[str],
19
- display_name: pulumi.Input[str]):
22
+ data_type: pulumi.Input[_builtins.str],
23
+ description: pulumi.Input[_builtins.str],
24
+ display_name: pulumi.Input[_builtins.str]):
20
25
  """
21
26
  The set of arguments for constructing a UserFlowAttribute resource.
22
- :param pulumi.Input[str] data_type: The data type of the user flow attribute. Possible values are `boolean`, `dateTime`, `int64`, `string` or `stringCollection`. Changing this forces a new resource to be created.
23
- :param pulumi.Input[str] description: The description of the user flow attribute that is shown to the user at the time of sign-up.
24
- :param pulumi.Input[str] display_name: The display name of the user flow attribute. Changing this forces a new resource to be created.
27
+ :param pulumi.Input[_builtins.str] data_type: The data type of the user flow attribute. Possible values are `boolean`, `dateTime`, `int64`, `string` or `stringCollection`. Changing this forces a new resource to be created.
28
+ :param pulumi.Input[_builtins.str] description: The description of the user flow attribute that is shown to the user at the time of sign-up.
29
+ :param pulumi.Input[_builtins.str] display_name: The display name of the user flow attribute. Changing this forces a new resource to be created.
25
30
  """
26
31
  pulumi.set(__self__, "data_type", data_type)
27
32
  pulumi.set(__self__, "description", description)
28
33
  pulumi.set(__self__, "display_name", display_name)
29
34
 
30
- @property
35
+ @_builtins.property
31
36
  @pulumi.getter(name="dataType")
32
- def data_type(self) -> pulumi.Input[str]:
37
+ def data_type(self) -> pulumi.Input[_builtins.str]:
33
38
  """
34
39
  The data type of the user flow attribute. Possible values are `boolean`, `dateTime`, `int64`, `string` or `stringCollection`. Changing this forces a new resource to be created.
35
40
  """
36
41
  return pulumi.get(self, "data_type")
37
42
 
38
43
  @data_type.setter
39
- def data_type(self, value: pulumi.Input[str]):
44
+ def data_type(self, value: pulumi.Input[_builtins.str]):
40
45
  pulumi.set(self, "data_type", value)
41
46
 
42
- @property
47
+ @_builtins.property
43
48
  @pulumi.getter
44
- def description(self) -> pulumi.Input[str]:
49
+ def description(self) -> pulumi.Input[_builtins.str]:
45
50
  """
46
51
  The description of the user flow attribute that is shown to the user at the time of sign-up.
47
52
  """
48
53
  return pulumi.get(self, "description")
49
54
 
50
55
  @description.setter
51
- def description(self, value: pulumi.Input[str]):
56
+ def description(self, value: pulumi.Input[_builtins.str]):
52
57
  pulumi.set(self, "description", value)
53
58
 
54
- @property
59
+ @_builtins.property
55
60
  @pulumi.getter(name="displayName")
56
- def display_name(self) -> pulumi.Input[str]:
61
+ def display_name(self) -> pulumi.Input[_builtins.str]:
57
62
  """
58
63
  The display name of the user flow attribute. Changing this forces a new resource to be created.
59
64
  """
60
65
  return pulumi.get(self, "display_name")
61
66
 
62
67
  @display_name.setter
63
- def display_name(self, value: pulumi.Input[str]):
68
+ def display_name(self, value: pulumi.Input[_builtins.str]):
64
69
  pulumi.set(self, "display_name", value)
65
70
 
66
71
 
67
72
  @pulumi.input_type
68
73
  class _UserFlowAttributeState:
69
74
  def __init__(__self__, *,
70
- attribute_type: Optional[pulumi.Input[str]] = None,
71
- data_type: Optional[pulumi.Input[str]] = None,
72
- description: Optional[pulumi.Input[str]] = None,
73
- display_name: Optional[pulumi.Input[str]] = None):
75
+ attribute_type: Optional[pulumi.Input[_builtins.str]] = None,
76
+ data_type: Optional[pulumi.Input[_builtins.str]] = None,
77
+ description: Optional[pulumi.Input[_builtins.str]] = None,
78
+ display_name: Optional[pulumi.Input[_builtins.str]] = None):
74
79
  """
75
80
  Input properties used for looking up and filtering UserFlowAttribute resources.
76
- :param pulumi.Input[str] attribute_type: The type of the user flow attribute. Values include `builtIn`, `custom` or `required`.
77
- :param pulumi.Input[str] data_type: The data type of the user flow attribute. Possible values are `boolean`, `dateTime`, `int64`, `string` or `stringCollection`. Changing this forces a new resource to be created.
78
- :param pulumi.Input[str] description: The description of the user flow attribute that is shown to the user at the time of sign-up.
79
- :param pulumi.Input[str] display_name: The display name of the user flow attribute. Changing this forces a new resource to be created.
81
+ :param pulumi.Input[_builtins.str] attribute_type: The type of the user flow attribute. Values include `builtIn`, `custom` or `required`.
82
+ :param pulumi.Input[_builtins.str] data_type: The data type of the user flow attribute. Possible values are `boolean`, `dateTime`, `int64`, `string` or `stringCollection`. Changing this forces a new resource to be created.
83
+ :param pulumi.Input[_builtins.str] description: The description of the user flow attribute that is shown to the user at the time of sign-up.
84
+ :param pulumi.Input[_builtins.str] display_name: The display name of the user flow attribute. Changing this forces a new resource to be created.
80
85
  """
81
86
  if attribute_type is not None:
82
87
  pulumi.set(__self__, "attribute_type", attribute_type)
@@ -87,63 +92,64 @@ class _UserFlowAttributeState:
87
92
  if display_name is not None:
88
93
  pulumi.set(__self__, "display_name", display_name)
89
94
 
90
- @property
95
+ @_builtins.property
91
96
  @pulumi.getter(name="attributeType")
92
- def attribute_type(self) -> Optional[pulumi.Input[str]]:
97
+ def attribute_type(self) -> Optional[pulumi.Input[_builtins.str]]:
93
98
  """
94
99
  The type of the user flow attribute. Values include `builtIn`, `custom` or `required`.
95
100
  """
96
101
  return pulumi.get(self, "attribute_type")
97
102
 
98
103
  @attribute_type.setter
99
- def attribute_type(self, value: Optional[pulumi.Input[str]]):
104
+ def attribute_type(self, value: Optional[pulumi.Input[_builtins.str]]):
100
105
  pulumi.set(self, "attribute_type", value)
101
106
 
102
- @property
107
+ @_builtins.property
103
108
  @pulumi.getter(name="dataType")
104
- def data_type(self) -> Optional[pulumi.Input[str]]:
109
+ def data_type(self) -> Optional[pulumi.Input[_builtins.str]]:
105
110
  """
106
111
  The data type of the user flow attribute. Possible values are `boolean`, `dateTime`, `int64`, `string` or `stringCollection`. Changing this forces a new resource to be created.
107
112
  """
108
113
  return pulumi.get(self, "data_type")
109
114
 
110
115
  @data_type.setter
111
- def data_type(self, value: Optional[pulumi.Input[str]]):
116
+ def data_type(self, value: Optional[pulumi.Input[_builtins.str]]):
112
117
  pulumi.set(self, "data_type", value)
113
118
 
114
- @property
119
+ @_builtins.property
115
120
  @pulumi.getter
116
- def description(self) -> Optional[pulumi.Input[str]]:
121
+ def description(self) -> Optional[pulumi.Input[_builtins.str]]:
117
122
  """
118
123
  The description of the user flow attribute that is shown to the user at the time of sign-up.
119
124
  """
120
125
  return pulumi.get(self, "description")
121
126
 
122
127
  @description.setter
123
- def description(self, value: Optional[pulumi.Input[str]]):
128
+ def description(self, value: Optional[pulumi.Input[_builtins.str]]):
124
129
  pulumi.set(self, "description", value)
125
130
 
126
- @property
131
+ @_builtins.property
127
132
  @pulumi.getter(name="displayName")
128
- def display_name(self) -> Optional[pulumi.Input[str]]:
133
+ def display_name(self) -> Optional[pulumi.Input[_builtins.str]]:
129
134
  """
130
135
  The display name of the user flow attribute. Changing this forces a new resource to be created.
131
136
  """
132
137
  return pulumi.get(self, "display_name")
133
138
 
134
139
  @display_name.setter
135
- def display_name(self, value: Optional[pulumi.Input[str]]):
140
+ def display_name(self, value: Optional[pulumi.Input[_builtins.str]]):
136
141
  pulumi.set(self, "display_name", value)
137
142
 
138
143
 
144
+ @pulumi.type_token("azuread:index/userFlowAttribute:UserFlowAttribute")
139
145
  class UserFlowAttribute(pulumi.CustomResource):
140
146
  @overload
141
147
  def __init__(__self__,
142
148
  resource_name: str,
143
149
  opts: Optional[pulumi.ResourceOptions] = None,
144
- data_type: Optional[pulumi.Input[str]] = None,
145
- description: Optional[pulumi.Input[str]] = None,
146
- display_name: Optional[pulumi.Input[str]] = None,
150
+ data_type: Optional[pulumi.Input[_builtins.str]] = None,
151
+ description: Optional[pulumi.Input[_builtins.str]] = None,
152
+ display_name: Optional[pulumi.Input[_builtins.str]] = None,
147
153
  __props__=None):
148
154
  """
149
155
  Manages user flow attributes in an Azure Active Directory (Azure AD) tenant.
@@ -163,9 +169,9 @@ class UserFlowAttribute(pulumi.CustomResource):
163
169
  import pulumi_azuread as azuread
164
170
 
165
171
  example = azuread.UserFlowAttribute("example",
166
- data_type="string",
172
+ display_name="Hobby",
167
173
  description="Your hobby",
168
- display_name="Hobby")
174
+ data_type="string")
169
175
  ```
170
176
 
171
177
  ## Import
@@ -173,16 +179,16 @@ class UserFlowAttribute(pulumi.CustomResource):
173
179
  User flow attributes can be imported using the `id`, e.g.
174
180
 
175
181
  ```sh
176
- $ pulumi import azuread:index/userFlowAttribute:UserFlowAttribute example extension_ecc9f88db2924942b8a96f44873616fe_Hobbyjkorv
182
+ $ pulumi import azuread:index/userFlowAttribute:UserFlowAttribute example extension_ecc9f88db2924942b8a96f44873616fe_Hobbyjkorv
177
183
  ```
178
184
 
179
- -> This ID can be queried using the [User Flow Attributes API](https://learn.microsoft.com/en-us/graph/api/identityuserflowattribute-list?view=graph-rest-1.0&tabs=http).
185
+ -> This ID can be queried using the [User Flow Attributes API](https://learn.microsoft.com/en-us/graph/api/identityuserflowattribute-list?view=graph-rest-1.0&tabs=http).
180
186
 
181
187
  :param str resource_name: The name of the resource.
182
188
  :param pulumi.ResourceOptions opts: Options for the resource.
183
- :param pulumi.Input[str] data_type: The data type of the user flow attribute. Possible values are `boolean`, `dateTime`, `int64`, `string` or `stringCollection`. Changing this forces a new resource to be created.
184
- :param pulumi.Input[str] description: The description of the user flow attribute that is shown to the user at the time of sign-up.
185
- :param pulumi.Input[str] display_name: The display name of the user flow attribute. Changing this forces a new resource to be created.
189
+ :param pulumi.Input[_builtins.str] data_type: The data type of the user flow attribute. Possible values are `boolean`, `dateTime`, `int64`, `string` or `stringCollection`. Changing this forces a new resource to be created.
190
+ :param pulumi.Input[_builtins.str] description: The description of the user flow attribute that is shown to the user at the time of sign-up.
191
+ :param pulumi.Input[_builtins.str] display_name: The display name of the user flow attribute. Changing this forces a new resource to be created.
186
192
  """
187
193
  ...
188
194
  @overload
@@ -208,9 +214,9 @@ class UserFlowAttribute(pulumi.CustomResource):
208
214
  import pulumi_azuread as azuread
209
215
 
210
216
  example = azuread.UserFlowAttribute("example",
211
- data_type="string",
217
+ display_name="Hobby",
212
218
  description="Your hobby",
213
- display_name="Hobby")
219
+ data_type="string")
214
220
  ```
215
221
 
216
222
  ## Import
@@ -218,10 +224,10 @@ class UserFlowAttribute(pulumi.CustomResource):
218
224
  User flow attributes can be imported using the `id`, e.g.
219
225
 
220
226
  ```sh
221
- $ pulumi import azuread:index/userFlowAttribute:UserFlowAttribute example extension_ecc9f88db2924942b8a96f44873616fe_Hobbyjkorv
227
+ $ pulumi import azuread:index/userFlowAttribute:UserFlowAttribute example extension_ecc9f88db2924942b8a96f44873616fe_Hobbyjkorv
222
228
  ```
223
229
 
224
- -> This ID can be queried using the [User Flow Attributes API](https://learn.microsoft.com/en-us/graph/api/identityuserflowattribute-list?view=graph-rest-1.0&tabs=http).
230
+ -> This ID can be queried using the [User Flow Attributes API](https://learn.microsoft.com/en-us/graph/api/identityuserflowattribute-list?view=graph-rest-1.0&tabs=http).
225
231
 
226
232
  :param str resource_name: The name of the resource.
227
233
  :param UserFlowAttributeArgs args: The arguments to use to populate this resource's properties.
@@ -238,9 +244,9 @@ class UserFlowAttribute(pulumi.CustomResource):
238
244
  def _internal_init(__self__,
239
245
  resource_name: str,
240
246
  opts: Optional[pulumi.ResourceOptions] = None,
241
- data_type: Optional[pulumi.Input[str]] = None,
242
- description: Optional[pulumi.Input[str]] = None,
243
- display_name: Optional[pulumi.Input[str]] = None,
247
+ data_type: Optional[pulumi.Input[_builtins.str]] = None,
248
+ description: Optional[pulumi.Input[_builtins.str]] = None,
249
+ display_name: Optional[pulumi.Input[_builtins.str]] = None,
244
250
  __props__=None):
245
251
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
246
252
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -270,10 +276,10 @@ class UserFlowAttribute(pulumi.CustomResource):
270
276
  def get(resource_name: str,
271
277
  id: pulumi.Input[str],
272
278
  opts: Optional[pulumi.ResourceOptions] = None,
273
- attribute_type: Optional[pulumi.Input[str]] = None,
274
- data_type: Optional[pulumi.Input[str]] = None,
275
- description: Optional[pulumi.Input[str]] = None,
276
- display_name: Optional[pulumi.Input[str]] = None) -> 'UserFlowAttribute':
279
+ attribute_type: Optional[pulumi.Input[_builtins.str]] = None,
280
+ data_type: Optional[pulumi.Input[_builtins.str]] = None,
281
+ description: Optional[pulumi.Input[_builtins.str]] = None,
282
+ display_name: Optional[pulumi.Input[_builtins.str]] = None) -> 'UserFlowAttribute':
277
283
  """
278
284
  Get an existing UserFlowAttribute resource's state with the given name, id, and optional extra
279
285
  properties used to qualify the lookup.
@@ -281,10 +287,10 @@ class UserFlowAttribute(pulumi.CustomResource):
281
287
  :param str resource_name: The unique name of the resulting resource.
282
288
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
283
289
  :param pulumi.ResourceOptions opts: Options for the resource.
284
- :param pulumi.Input[str] attribute_type: The type of the user flow attribute. Values include `builtIn`, `custom` or `required`.
285
- :param pulumi.Input[str] data_type: The data type of the user flow attribute. Possible values are `boolean`, `dateTime`, `int64`, `string` or `stringCollection`. Changing this forces a new resource to be created.
286
- :param pulumi.Input[str] description: The description of the user flow attribute that is shown to the user at the time of sign-up.
287
- :param pulumi.Input[str] display_name: The display name of the user flow attribute. Changing this forces a new resource to be created.
290
+ :param pulumi.Input[_builtins.str] attribute_type: The type of the user flow attribute. Values include `builtIn`, `custom` or `required`.
291
+ :param pulumi.Input[_builtins.str] data_type: The data type of the user flow attribute. Possible values are `boolean`, `dateTime`, `int64`, `string` or `stringCollection`. Changing this forces a new resource to be created.
292
+ :param pulumi.Input[_builtins.str] description: The description of the user flow attribute that is shown to the user at the time of sign-up.
293
+ :param pulumi.Input[_builtins.str] display_name: The display name of the user flow attribute. Changing this forces a new resource to be created.
288
294
  """
289
295
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
290
296
 
@@ -296,33 +302,33 @@ class UserFlowAttribute(pulumi.CustomResource):
296
302
  __props__.__dict__["display_name"] = display_name
297
303
  return UserFlowAttribute(resource_name, opts=opts, __props__=__props__)
298
304
 
299
- @property
305
+ @_builtins.property
300
306
  @pulumi.getter(name="attributeType")
301
- def attribute_type(self) -> pulumi.Output[str]:
307
+ def attribute_type(self) -> pulumi.Output[_builtins.str]:
302
308
  """
303
309
  The type of the user flow attribute. Values include `builtIn`, `custom` or `required`.
304
310
  """
305
311
  return pulumi.get(self, "attribute_type")
306
312
 
307
- @property
313
+ @_builtins.property
308
314
  @pulumi.getter(name="dataType")
309
- def data_type(self) -> pulumi.Output[str]:
315
+ def data_type(self) -> pulumi.Output[_builtins.str]:
310
316
  """
311
317
  The data type of the user flow attribute. Possible values are `boolean`, `dateTime`, `int64`, `string` or `stringCollection`. Changing this forces a new resource to be created.
312
318
  """
313
319
  return pulumi.get(self, "data_type")
314
320
 
315
- @property
321
+ @_builtins.property
316
322
  @pulumi.getter
317
- def description(self) -> pulumi.Output[str]:
323
+ def description(self) -> pulumi.Output[_builtins.str]:
318
324
  """
319
325
  The description of the user flow attribute that is shown to the user at the time of sign-up.
320
326
  """
321
327
  return pulumi.get(self, "description")
322
328
 
323
- @property
329
+ @_builtins.property
324
330
  @pulumi.getter(name="displayName")
325
- def display_name(self) -> pulumi.Output[str]:
331
+ def display_name(self) -> pulumi.Output[_builtins.str]:
326
332
  """
327
333
  The display name of the user flow attribute. Changing this forces a new resource to be created.
328
334
  """
@@ -1,23 +1,24 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: pulumi_azuread
3
- Version: 5.48.0a1706744699
3
+ Version: 6.8.0a1766208344
4
4
  Summary: A Pulumi package for creating and managing Azure Active Directory (Azure AD) cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
7
7
  Project-URL: Repository, https://github.com/pulumi/pulumi-azuread
8
8
  Keywords: pulumi,azuread
9
- Requires-Python: >=3.7
9
+ Requires-Python: >=3.9
10
10
  Description-Content-Type: text/markdown
11
- Requires-Dist: parver >=0.2.1
12
- Requires-Dist: pulumi <4.0.0,>=3.0.0
13
- Requires-Dist: semver >=2.8.1
11
+ Requires-Dist: parver>=0.2.1
12
+ Requires-Dist: pulumi<4.0.0,>=3.165.0
13
+ Requires-Dist: semver>=2.8.1
14
+ Requires-Dist: typing-extensions<5,>=4.11; python_version < "3.11"
14
15
 
15
16
  [![Actions Status](https://github.com/pulumi/pulumi-azuread/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-azuread/actions)
16
17
  [![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)
17
18
  [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazuread.svg)](https://npmjs.com/package/@pulumi/azuread)
18
19
  [![NuGet version](https://badge.fury.io/nu/pulumi.azuread.svg)](https://badge.fury.io/nu/pulumi.azured)
19
20
  [![Python version](https://badge.fury.io/py/pulumi-azuread.svg)](https://pypi.org/project/pulumi-azuread)
20
- [![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-azuread/sdk/v5/go)](https://pkg.go.dev/github.com/pulumi/pulumi-azuread/sdk/v5/go)
21
+ [![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-azuread/sdk/v6/go)](https://pkg.go.dev/github.com/pulumi/pulumi-azuread/sdk/v6/go)
21
22
  [![License](https://img.shields.io/npm/l/%40pulumi%2Fpulumi.svg)](https://github.com/pulumi/pulumi-azuread/blob/master/LICENSE)
22
23
 
23
24
  # Microsoft Azure Active Directory Resource Provider
@@ -39,51 +40,51 @@ This package is available in many languages in the standard packaging formats.
39
40
 
40
41
  To use from JavaScript or TypeScript in Node.js, install using either `npm`:
41
42
 
42
- $ npm install @pulumi/azuread
43
+ npm install @pulumi/azuread
43
44
 
44
45
  or `yarn`:
45
46
 
46
- $ yarn add @pulumi/azuread
47
+ yarn add @pulumi/azuread
47
48
 
48
49
  ### Python 3
49
50
 
50
51
  To use from Python, install using `pip`:
51
52
 
52
- $ pip install pulumi-azuread
53
+ pip install pulumi-azuread
53
54
 
54
55
  ### Go
55
56
 
56
57
  To use from Go, use `go get` to grab the latest version of the library
57
58
 
58
- $ go get github.com/pulumi/pulumi-azuread/sdk/v5
59
+ go get github.com/pulumi/pulumi-azuread/sdk/v6
59
60
 
60
61
  ### .NET
61
62
 
62
63
  To use from .NET, install using `dotnet add package`:
63
64
 
64
- $ dotnet add package Pulumi.Azuread
65
+ dotnet add package Pulumi.Azuread
65
66
 
66
67
  ## Configuration
67
68
 
68
69
  The following configuration points are available:
69
70
 
70
- - `azuread:clientId` - The Client ID which should be used. This can also be sourced from the `ARM_CLIENT_ID` Environment
71
+ - `azuread:clientId` - The Client ID which should be used. This can also be sourced from the `ARM_CLIENT_ID` Environment
71
72
  Variable.
72
- - `azuread:tenantId` - The Tenant ID which should be used. This can also be sourced from the `ARM_TENANT_ID` Environment
73
+ - `azuread:tenantId` - The Tenant ID which should be used. This can also be sourced from the `ARM_TENANT_ID` Environment
73
74
  Variable.
74
- - `azuread:clientSecret` - The Client Secret which should be used. This can also be sourced from the `ARM_CLIENT_SECRET`
75
+ - `azuread:clientSecret` - The Client Secret which should be used. This can also be sourced from the `ARM_CLIENT_SECRET`
75
76
  Environment Variable.
76
- - `azuread:certificatePassword` - The password associated with the Client Certificate. This can also be sourced from
77
+ - `azuread:certificatePassword` - The password associated with the Client Certificate. This can also be sourced from
77
78
  the `ARM_CLIENT_CERTIFICATE_PASSWORD` Environment Variable.
78
- - `azuread:clientCertificatePath` - The path to the Client Certificate associated with the Service Principal which should
79
+ - `azuread:clientCertificatePath` - The path to the Client Certificate associated with the Service Principal which should
79
80
  be used. This can also be sourced from the `ARM_CLIENT_CERTIFICATE_PATH` Environment Variable.
80
- - `azuread:environment` - The Cloud Environment which be used. Possible values are public, usgovernment, german and china.
81
+ - `azuread:environment` - The Cloud Environment which be used. Possible values are public, usgovernment, german and china.
81
82
  Defaults to `public`. This can also be sourced from the `ARM_ENVIRONMENT` environment variable.
82
83
  - `azuread:msiEndpoint` - The path to a custom endpoint for Managed Service Identity - in most circumstances this should
83
84
  be detected automatically. This can also be sourced from the `ARM_MSI_ENDPOINT` Environment Variable.
84
- - `azuread:useMsi` - Should Managed Service Identity be used for Authentication? This can also be sourced from the
85
+ - `azuread:useMsi` - Should Managed Service Identity be used for Authentication? This can also be sourced from the
85
86
  `ARM_USE_MSI` Environment Variable. Defaults to `false`.
86
-
87
+
87
88
  ## Reference
88
89
 
89
90
  For further information, please visit [the AzureAD provider docs](https://www.pulumi.com/registry/packages/azuread/) or for detailed reference documentation, please visit [the API docs](https://www.pulumi.com/registry/packages/azuread/api-docs/).
@@ -0,0 +1,87 @@
1
+ pulumi_azuread/__init__.py,sha256=P9m9lBGpf2J4CVemSnnM_1UMTMlSm48i9L22C9-PEwU,14908
2
+ pulumi_azuread/_inputs.py,sha256=6ij6WK7u9TWtT5oI6mlQ0ybKsBnzGpba1H6ilkpmdjc,326420
3
+ pulumi_azuread/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
4
+ pulumi_azuread/access_package.py,sha256=Wd2wo9Tih63eFewbTxOr9__AxjYloxswOX2gHdMJnUM,14859
5
+ pulumi_azuread/access_package_assignment_policy.py,sha256=9vYrYngTdhSZfG4DHYml5TqsvHZIqV7mogp_qyfL_WM,38927
6
+ pulumi_azuread/access_package_catalog.py,sha256=4dI_y_MMLI3zM3-ALb2lA1MyCcHmM3nQ7-1M6i0lvlw,15501
7
+ pulumi_azuread/access_package_catalog_role_assignment.py,sha256=klBLnBz-s4oyuswTFReBqBzTsXr4tAKsN8DWmeHHYWU,16172
8
+ pulumi_azuread/access_package_resource_catalog_association.py,sha256=u3vlbZ42ls9ZbNEuOHcONvH_JhL2CzloxEUlSyKsuRg,17163
9
+ pulumi_azuread/access_package_resource_package_association.py,sha256=ufKP5NLaDe_aqPpoLKC2QMtNWJDc4PGYe2UFMZsHU-k,18923
10
+ pulumi_azuread/administrative_unit.py,sha256=Ey87vIHDEQ3261hv6wrxP2HmS9xVNX6mu8U_v5SLyAY,24319
11
+ pulumi_azuread/administrative_unit_member.py,sha256=8OJJe6FJDLkNcquWp0ApelE327GcgMLpyvx9AM2qncE,15856
12
+ pulumi_azuread/administrative_unit_role_member.py,sha256=oIZeAqGLC_S4AJ9AQqTMSbs_EZJNM_4ZwEvurv64Ikg,17001
13
+ pulumi_azuread/app_role_assignment.py,sha256=rdkQfd4kkYMvWi46HnPsOjKw32dU4HadIcvKEKof3xQ,26218
14
+ pulumi_azuread/application.py,sha256=mn-evRdP8IjABYCb8AQpH3S-rvTPshCXivGWRxVvi-U,128438
15
+ pulumi_azuread/application_api_access.py,sha256=A31w8YLy1sVKQ10WEKAO-9cSB0K_1wLttIE85dQp2Po,18362
16
+ pulumi_azuread/application_app_role.py,sha256=_4S9LWXUKHDgsic7w6HxfDy7ZSGuV4WtcRk27zBaWkw,24967
17
+ pulumi_azuread/application_certificate.py,sha256=Yf-uCfjk7Zszb1Muo6r-yxaUHoUYGSCyzXsfJfIpmUw,41088
18
+ pulumi_azuread/application_fallback_public_client.py,sha256=O_ApHNX7h9kFmvH9XUT9NA5aq4wEaMq5Db4GcegTuMA,11686
19
+ pulumi_azuread/application_federated_identity_credential.py,sha256=4tvWBc1S645JSFYIS_Onf1mVbo_o1ono5meLolanYD0,25071
20
+ pulumi_azuread/application_from_template.py,sha256=_txfoEro8QqJJrtAr_TsKKeTBEVbLgiHO8kd1m1J65Y,18448
21
+ pulumi_azuread/application_identifier_uri.py,sha256=2alkHXDKgBOUmgbNjWlhFj6IY-3tpEdix7wkEfkVMd8,12706
22
+ pulumi_azuread/application_known_clients.py,sha256=QUFzbtjX12NLpGwAyg2pSWoP_WgpFk5c0eNK8eJIopU,11048
23
+ pulumi_azuread/application_optional_claims.py,sha256=8MZgxh_Ece4mJtBXbZplJ6xnWTBWTJMpNzope3ZnmNQ,19439
24
+ pulumi_azuread/application_owner.py,sha256=wf5JrkQLggIVTTMfsGnb7NZ1taJS5ch-EDHIeSpLD_8,13246
25
+ pulumi_azuread/application_password.py,sha256=ZW2TG3onx9_oMKPLf6h2BO7Abwf2Ym1btg6ziQ6BLFw,29312
26
+ pulumi_azuread/application_permission_scope.py,sha256=wxAEud8nSZtipzfm-PJOirRDkmqE4t4ui1iGaAsHSCQ,32039
27
+ pulumi_azuread/application_pre_authorized.py,sha256=ik5Sh0MlYP1niP1UKY9bDcB--FgQWklhtPEdQoHVOHg,17496
28
+ pulumi_azuread/application_redirect_uris.py,sha256=R0uY_H5prZUv3B8gNqo88TQLdZYWL9_CztORhnauBwE,15316
29
+ pulumi_azuread/application_registration.py,sha256=BJuBIao4FMDPzoHDZ0reItikobfwbDKoCzQKbY5MdVQ,54982
30
+ pulumi_azuread/authentication_strength_policy.py,sha256=JacEJBdnMRRsGJAOpzq8Qp4_X7GMEH0Lv-Ciae_iDac,16584
31
+ pulumi_azuread/claims_mapping_policy.py,sha256=6A17XQPoKaIxgbynAFjXLJXQgD1PnxRqLmF-0pOeiwg,13013
32
+ pulumi_azuread/conditional_access_policy.py,sha256=W8eaQfuizo6sYQwAhmYXLTtgxrT_d4ymuIJZ1ZhX3iM,28992
33
+ pulumi_azuread/custom_directory_role.py,sha256=c-9wCmce8kAS3sQveXxY5dd6q7MFdxG7dKBtwjvukcU,23879
34
+ pulumi_azuread/directory_role.py,sha256=F2U4hecBrOlfwJ1BJXjiHEfvt_wJEjd1y5kXLSyEZnU,15325
35
+ pulumi_azuread/directory_role_assignment.py,sha256=pyexBkCsdlFKogewkk9c-eXIn-J1t4V-1m-bbUku6ao,25333
36
+ pulumi_azuread/directory_role_eligibility_schedule_request.py,sha256=CQx5CbVO4b9TXWvyaNxLOdCEyYXQRZmallMYd9rqkBk,19382
37
+ pulumi_azuread/directory_role_member.py,sha256=LQRvrCXuqzA8SArBNJ-ho6uEDd4Gqj6mlGm1X3lNWnQ,13621
38
+ pulumi_azuread/get_access_package.py,sha256=obNSPKlDEBJUJMyKwBFewvy0RO-YFSLPJCkSl0Zpfv8,8692
39
+ pulumi_azuread/get_access_package_catalog.py,sha256=O85MMfphJapLAXZgWXQRt57wfQFBPCdBY4y72MPsBPY,8630
40
+ pulumi_azuread/get_access_package_catalog_role.py,sha256=r3iq_vl7_zve_d7pfRBXiWLIlLtJynkgr8rOQKcclJM,7752
41
+ pulumi_azuread/get_administrative_unit.py,sha256=GDVa3CvjTga9Hfn6l1hQ8Zi1FoE5EihtWgBz17jZPvM,8331
42
+ pulumi_azuread/get_application.py,sha256=da-Hq8rPEnZtNJQnnPoJtiTb8r376x_ohryl2K14Q1Y,28779
43
+ pulumi_azuread/get_application_published_app_ids.py,sha256=oueLK7sjqPijZe1ecDrFkUxHNkTkXLObScHDXEmlPEo,5431
44
+ pulumi_azuread/get_application_template.py,sha256=___6L2a6CrZQvXzwb846IyJT_inOPKmBuzFUx7S3Pnw,10002
45
+ pulumi_azuread/get_client_config.py,sha256=0-9Av41hojZJbQOXlf_wIRi0Rqvqy75iKMoiroF2u_M,4887
46
+ pulumi_azuread/get_directory_object.py,sha256=7zQN5R9I7ec5hIWkBzINH0ZXwUgA6HO-w9xaUirYxN4,5844
47
+ pulumi_azuread/get_directory_role_templates.py,sha256=KgPIEidPY6059Ru1m3qvdbbVOouUBR1E-YcUlDVqLts,5325
48
+ pulumi_azuread/get_directory_roles.py,sha256=F-tuomW-iS3zOKyoIT9jKSi6rd79TYIEC74tPXsJUKY,5560
49
+ pulumi_azuread/get_domains.py,sha256=HCvuGlPdZGAp6P_WEIBZyh6aGPcgRz2vT-XfyLtALNk,11783
50
+ pulumi_azuread/get_group.py,sha256=AnuYah_UT8LmhOAERSBbYg6UbPN9jMaEvgZVCLIW2Dc,28805
51
+ pulumi_azuread/get_group_role_management_policy.py,sha256=5EN6XEHMafzuJZKaYnCjosxgofbB_mVu84DmF4TJ7ts,7354
52
+ pulumi_azuread/get_groups.py,sha256=0S6HUlqEGxI9RPRBQ0GyhWyWnPd1TPzj5GVAn-SFRgE,14401
53
+ pulumi_azuread/get_named_location.py,sha256=PQGKsq5rzvrr2_eRfRaXCtB6lFameUVikgpTmi7AgMQ,7969
54
+ pulumi_azuread/get_service_principal.py,sha256=ThderYSSIEQeZt5ljQ_mrf2uAwmrbrMQqYX14EInGCI,26603
55
+ pulumi_azuread/get_service_principals.py,sha256=fGzZCHAmp-I1mQUncCvGnCdmJaoHpWDfVzln3lAjGbE,12324
56
+ pulumi_azuread/get_user.py,sha256=6XHaWkhcn67NHNqkcLfLjwvMYzUfIReJHdFugX_bow4,35468
57
+ pulumi_azuread/get_users.py,sha256=Yj5fskUCVjlr4A_7OlQUGgMxucdN0Gtx_MjSH5rbi44,12647
58
+ pulumi_azuread/group.py,sha256=CH5a2JYmA1v5iDWxiaIigGlt5X8LVMmgGS4RjZkLNs4,117761
59
+ pulumi_azuread/group_member.py,sha256=hq1TpFO58H6RYUKbdWjKcKo9GsR0RAsmhst_TZ3XWKU,13649
60
+ pulumi_azuread/group_role_management_policy.py,sha256=VhSXODiyyakrRjcIvY1RxeIuFm60Tjv_fAVLzfM0nck,28111
61
+ pulumi_azuread/group_without_members.py,sha256=6hOywm-YaamWU9cinfveTaGhfwdZbjfXqqMbEGbPd-4,112873
62
+ pulumi_azuread/invitation.py,sha256=MJx18h7RtNwb-FfWG6g-FTlBGqKGZ0fxdC79f8pBFGw,22905
63
+ pulumi_azuread/named_location.py,sha256=VRCPnhWMfKeJKuFEgzdnWztRSc9cXm8PPLRIN0vxQPk,15201
64
+ pulumi_azuread/outputs.py,sha256=1J2w5a4lENdmp3AxXhHQ-JhHNCX_Ry1wWSRqd0ZKB7Q,314010
65
+ pulumi_azuread/privileged_access_group_assignment_schedule.py,sha256=09dSKadf0lAWz134XKyAmC8ky35KGANZCFhq84iTnns,35666
66
+ pulumi_azuread/privileged_access_group_eligibility_schedule.py,sha256=bi7_KSBCqMDW2DmiMu6huDPEyvlnWuUjox4DACcY8cE,35702
67
+ pulumi_azuread/provider.py,sha256=whVhSlEiMZa6ZpJYSQH3P3MBeiy7Prf2md9vg3X9bZY,38763
68
+ pulumi_azuread/pulumi-plugin.json,sha256=6LL7CRIp6xCBmvZ_F3qtNl7P4jfReoC4w7ZHuU11xz0,83
69
+ pulumi_azuread/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
+ pulumi_azuread/service_principal.py,sha256=08da-BPryO6GCwx1Z_-ytIzB5gGflO13swfAcfgikhY,87849
71
+ pulumi_azuread/service_principal_certificate.py,sha256=jzdnPkbO_JAW7XJIy4KdnLrSd7tZ7STkNu9ThFIzVE4,36739
72
+ pulumi_azuread/service_principal_claims_mapping_policy_assignment.py,sha256=AQVEB-uFBx5Cunugn2YYKQG9AkumsTNOmkn3XiUGnjE,12450
73
+ pulumi_azuread/service_principal_delegated_permission_grant.py,sha256=tsRPP6BC3Eh7myEFRlTHIjK8xyKQ6ugnTiuVk8DOCws,27262
74
+ pulumi_azuread/service_principal_password.py,sha256=tqUuJVZplruzXSzZBTl-Cng3aEo_LdKZ-z2L9HBSYjU,29701
75
+ pulumi_azuread/service_principal_token_signing_certificate.py,sha256=n6BZgOqoRxv8xY8iJxaDJEUY1rNqDcS5CYopEAlb_4s,23493
76
+ pulumi_azuread/synchronization_job.py,sha256=vnriI2pLIRqCLglMIEm9KhPXZ3If5vrpDO0INVOPt3Y,17709
77
+ pulumi_azuread/synchronization_job_provision_on_demand.py,sha256=HJXKSyiNR30ZAye2j7b_iKpyKgNE-__ZViUEo_qNc00,19349
78
+ pulumi_azuread/synchronization_secret.py,sha256=R-iqf8kQpn5YbkK2gtdKD3cY0oLsE7ams0EaC5LcrRY,13335
79
+ pulumi_azuread/user.py,sha256=O0FSHvyT8ziugK0WNYJKnCHCCZIYbPI9mmhYuCb5aXE,118526
80
+ pulumi_azuread/user_flow_attribute.py,sha256=FHoLGHF6cV4Ze8YwhYYJZSJAqFqwJl5IrcscoapWQGI,15612
81
+ pulumi_azuread/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
82
+ pulumi_azuread/config/__init__.pyi,sha256=bghI2nooHHXwiUFX2xjJgWbUgVGByimqSIwMu4yMDW8,3533
83
+ pulumi_azuread/config/vars.py,sha256=drZ3jE6OlwjhSM2bW3Nw7ouH-OC94orMEF_aI26SqHs,6319
84
+ pulumi_azuread-6.8.0a1766208344.dist-info/METADATA,sha256=LKAjhmxVHMVjMj3YutFwKEDugzd3C65MTmCcsv1aTHk,4316
85
+ pulumi_azuread-6.8.0a1766208344.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
86
+ pulumi_azuread-6.8.0a1766208344.dist-info/top_level.txt,sha256=6Qj8-UbMrK9qBTFiDQHxG3fRrnIMh-xNorNq_N5HtrI,15
87
+ pulumi_azuread-6.8.0a1766208344.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.42.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,81 +0,0 @@
1
- pulumi_azuread/__init__.py,sha256=--CoXgwWWlE7R64ky9slrzoamjVbqA56yDR_78hrUKA,13377
2
- pulumi_azuread/_inputs.py,sha256=dfxF8DuwI0bnwRM8mT4UEurFj_BCda4-lTaQ3vTdHUQ,171197
3
- pulumi_azuread/_utilities.py,sha256=nNKRJyG0bkCleVzIGnszB5TSQOVUqAHks2baneWhujg,9249
4
- pulumi_azuread/access_package.py,sha256=0BlJKpRjXddPZJsfX_JxErt0yR5c5KJWd6UhKKY9Q6Y,14102
5
- pulumi_azuread/access_package_assignment_policy.py,sha256=xoAQb1p1A4OvO-nXWEnCSYO0DdvG4luQMUnd7t6l_yo,37543
6
- pulumi_azuread/access_package_catalog.py,sha256=Eb9_G_qLKrBy4eZWh0SMhBQMvmetinC6SOKyB_oS2zQ,14572
7
- pulumi_azuread/access_package_catalog_role_assignment.py,sha256=S8a22mOMSJ4Bh3o0rt4RyVGrOBwWFX08GflF4VEo8Us,15501
8
- pulumi_azuread/access_package_resource_catalog_association.py,sha256=JcqF_6XEn59rM48GzVdS7crO4Yqf-M1S_q3fpVHh9yM,16612
9
- pulumi_azuread/access_package_resource_package_association.py,sha256=knQPfIY1iXNlUWgLMykKuyFGa2aXOPqxEDRcYMC3EDE,18544
10
- pulumi_azuread/administrative_unit.py,sha256=sgF3U67xoHfqdlwziTddKkD-P1o6uFyky6s7LK93tCg,20863
11
- pulumi_azuread/administrative_unit_member.py,sha256=2EtzxZEDXABVOF3aL3c8WOEOYs98qyIdRJz9WvZ6GVE,13653
12
- pulumi_azuread/administrative_unit_role_member.py,sha256=wi9oEo1Xz-SmPxn1RnzPbXe6bcOpJrsD7HlneKVyLlw,16658
13
- pulumi_azuread/app_role_assignment.py,sha256=Hc_W60UkdX4zYshnjy973N7q69-j_9S9qOMtg0hs6mc,31355
14
- pulumi_azuread/application.py,sha256=3iH7i6g6ebSqLAuNqPYxZJQ2DUP2j5Ec5i0REVuMjz4,119789
15
- pulumi_azuread/application_api_access.py,sha256=GOh0idixzfMPzbumnqRtvRgPk4oazArwjFXNVV3OmfI,17569
16
- pulumi_azuread/application_app_role.py,sha256=k4t8gXTCTJl5d1oWWhzz0ZF1lDkvL8Pq-DQkq57rAM8,23718
17
- pulumi_azuread/application_certificate.py,sha256=7CiR8hqzRnHwasVsTOVu76K8HG5oe1G0pArY6-cOzgw,35596
18
- pulumi_azuread/application_fallback_public_client.py,sha256=AYPuYrXS-hiwt-4HMs-FdvNvgemF7uztIFTjfofiz8Y,11283
19
- pulumi_azuread/application_federated_identity_credential.py,sha256=cw3QK-ZrmiAJe00b0KVmSgVrQUOxwlf1dtHIpGB711Y,28691
20
- pulumi_azuread/application_from_template.py,sha256=Cra-EZNMAg8XgpfLuNEAaKbVCmIxxv4fcZED2j007WE,17607
21
- pulumi_azuread/application_identifier_uri.py,sha256=0pltEVinu8wemuHYPUvddpiCYy47HqFfzJpLMgxm8QA,12453
22
- pulumi_azuread/application_known_clients.py,sha256=qKzraVxA5bvKiQF1wsXBlAlLEJ4bFfIsJWa-Q5XftcU,10645
23
- pulumi_azuread/application_optional_claims.py,sha256=Ne3KsDkRSeoxIMzvNxcsvUB-u3If4zZkkNgAArmE6q4,18918
24
- pulumi_azuread/application_owner.py,sha256=Ob6rt2o6Y_V5nE5-mmzI25tnbe7LPIwxQ6ixY-fPi_s,11043
25
- pulumi_azuread/application_password.py,sha256=POILF1jdjI_fO5OADQF72hGRta2fFFpwd7KEi8e8odQ,30940
26
- pulumi_azuread/application_permission_scope.py,sha256=vwkEua49KOOpBuI5E1DzsrudCGVCV8do9v2YwSfxgI8,30780
27
- pulumi_azuread/application_pre_authorized.py,sha256=koSIIbyieGGEjIS3NeTl52iNmuevGxRZ6F377OUVLvA,25970
28
- pulumi_azuread/application_redirect_uris.py,sha256=uJHW98P6lDpfuPX13Fk_aiaqpvEy8HcqhrQLRUpfBg0,14561
29
- pulumi_azuread/application_registration.py,sha256=Pmf8X2lPtKs9o6PzkK8kz-kT4pa0-cPkhxG4ubLhvB4,51841
30
- pulumi_azuread/authentication_strength_policy.py,sha256=k49jw-l-drVhWV87qTIXvdP-IMdtZY0U_IYSFDMF9Mk,15727
31
- pulumi_azuread/claims_mapping_policy.py,sha256=sCoeBcQm7NGtIhYTVuGZw9xVJM3O_EJtSxJ5q9Sijr8,12356
32
- pulumi_azuread/conditional_access_policy.py,sha256=JZCQkZqDdE8ql5qtQ7pCMDVJdxpINRoSYdGotyFJVp4,29894
33
- pulumi_azuread/custom_directory_role.py,sha256=k19mwb803t0DZweuY5SjkTyiggsLZY42-t8LZrMUFrM,22662
34
- pulumi_azuread/directory_role.py,sha256=G3rfN1bv6iGOcB4BwOpuo9k3Ikjkcs32bWD4wW3-vtU,14568
35
- pulumi_azuread/directory_role_assignment.py,sha256=v2tkJmTAp79bSXcQHykF_gIt8JdbZJicu3g5PafPHQ0,26737
36
- pulumi_azuread/directory_role_eligibility_schedule_request.py,sha256=G39qh-LvQnQWcrYvmvziTYtxBh8YudKsro9x4tgL6xQ,18571
37
- pulumi_azuread/directory_role_member.py,sha256=R-uyZCZ_9ztI9jag0RGo_jUMi1A6eH6L7mohfr1gdBE,13124
38
- pulumi_azuread/get_access_package.py,sha256=ljYoIQhgXyRa1nu0cTUT_wDUvI6GdBF5rOt5umWh9gQ,7525
39
- pulumi_azuread/get_access_package_catalog.py,sha256=A1YD34vZj6CECX3GYaBf5xWUj7z1jxTp0OsF51prWQs,7500
40
- pulumi_azuread/get_access_package_catalog_role.py,sha256=KxjgFclvWQBUxlmO8auk_zuZWGbGMQu6EEnNVP5dTt0,6700
41
- pulumi_azuread/get_administrative_unit.py,sha256=2v1XTdU5tn-YxtLAmFt-oPJIjt34pBsfJgW2kGyFSwg,7224
42
- pulumi_azuread/get_application.py,sha256=N8GvuHVAJLxNe5j35y2oyN75QWGiQ1vH33tyGi47wQo,25106
43
- pulumi_azuread/get_application_published_app_ids.py,sha256=6_XPbLu_o1ESVZqU1PvYJwtFsrp_G25yjgE_WPucnfE,6124
44
- pulumi_azuread/get_application_template.py,sha256=VGHfsQphsj0lG8THi231MGd1QMyKclJFIbQk_wV41UA,8571
45
- pulumi_azuread/get_client_config.py,sha256=ucIcRmdaYKtg4VVOxYYrAOj1WpzbPwbyXHDiNbznsSc,4122
46
- pulumi_azuread/get_directory_object.py,sha256=iodUkRY6bWRScenFph-TQ5COCETAao2nxfqRkL7JJ6s,5074
47
- pulumi_azuread/get_directory_role_templates.py,sha256=6qeTSLoNeto4EE_NcHwUzxB5RkyG2uwR60ZJnMc8biA,4606
48
- pulumi_azuread/get_directory_roles.py,sha256=FXrNWAsPPA-2yGiAzJrdoQP9c-eEOvPA4tt1vREtXYw,4799
49
- pulumi_azuread/get_domains.py,sha256=NFULbuMw_GW2yuLqKYX9F9SZMzjMrl6TF_GZcjAagKc,10168
50
- pulumi_azuread/get_group.py,sha256=GPsE7tZHAV5YoarHkfwfXzkRQ0juAsR7XAfyS17MWHY,23739
51
- pulumi_azuread/get_groups.py,sha256=oKpuwLBZcrYjEhjd6KUbnEq9npXolEiBz5ETIq7jLJ8,12683
52
- pulumi_azuread/get_named_location.py,sha256=oV8MZ9MbJ7BLvwTQttBTGBZV6qWpqqJBiHvDY-d8dkI,6546
53
- pulumi_azuread/get_service_principal.py,sha256=Wyz1S9qvvdVO9vSWr-3KPiBCI_hrhWywngEGTQyQfEA,24710
54
- pulumi_azuread/get_service_principals.py,sha256=h-Oc4c-SIZfIzqWklOKP_wpS1YPOnp5q4KI9OeteVWQ,12358
55
- pulumi_azuread/get_user.py,sha256=cEzLGirscBE7UCmY39fu1KkkqawrMJ7zSm2ulL5rv6I,30031
56
- pulumi_azuread/get_users.py,sha256=8SfM4g_eprvzPJPYK0VQ-zXLaf8kgFP_9KZCxMrGtGA,9796
57
- pulumi_azuread/group.py,sha256=LZ0lBmr75_vsY6k60S7YAxU6i0OkXVC_Ygb32DBiCrs,107388
58
- pulumi_azuread/group_member.py,sha256=GCsy21D9IlfXXuwNkDOXNKqLgEKKE54xj2eOysWopVo,13108
59
- pulumi_azuread/invitation.py,sha256=jrATs2Usx9EtuH7o1hKhVMtXPn0geZ7TbMcEFPytEDg,21808
60
- pulumi_azuread/named_location.py,sha256=ckxIW7zL-zUXekpU8CXbCE6ElGrm9lNuQiK8tY_2yTo,14464
61
- pulumi_azuread/outputs.py,sha256=29sbchVrnyAvppqnYPvS3Ic-NHLii6cynXvRbdgUqwc,231068
62
- pulumi_azuread/provider.py,sha256=FiUKEVH5zYg17I8EOGnXu_QS2AYL032lPnxzF2Pds-w,32753
63
- pulumi_azuread/pulumi-plugin.json,sha256=PWP2S2i9FxGT5zYE4KW02fSoFmJ3wsqiIiDAJwX_fKQ,44
64
- pulumi_azuread/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
- pulumi_azuread/service_principal.py,sha256=zf_GCtJTOtJbaKaka6kWp4U59C5e9mXYsqVjG0NiXu4,89053
66
- pulumi_azuread/service_principal_certificate.py,sha256=mJvP3Vk-nA3Wu98yEUBSnQyXjcZQhFeKQrz1R_Sfkws,30523
67
- pulumi_azuread/service_principal_claims_mapping_policy_assignment.py,sha256=FKwQhSNHrFj3QYIpFwyI-02sKGlc3r6NHEUzG908K0Q,11884
68
- pulumi_azuread/service_principal_delegated_permission_grant.py,sha256=V4QBL0Ute8vXcPK4y4nBmw8oEFkFvEgEofmB86GnD9w,27261
69
- pulumi_azuread/service_principal_password.py,sha256=S8KSsrCEiHfRjxE3MTGo8aqqH99dL9MclBxy7rsleTs,26735
70
- pulumi_azuread/service_principal_token_signing_certificate.py,sha256=piENOR2Hkt2NLJsL_tk0_WsYQw7jW8nxPlObChxJNAE,22917
71
- pulumi_azuread/synchronization_job.py,sha256=FO5BR-a1kqIe45gH7tcmZ_rFecuUY7zVTTkW_OceM0Y,17414
72
- pulumi_azuread/synchronization_secret.py,sha256=QbKLM1qVyFKuOiHQ3VuOrtWn7HnqwDUvsAferUqtZWg,13351
73
- pulumi_azuread/user.py,sha256=Dwvgx-zQMu23mPoKEn3YPd1h0PkpUXh3QREm7lqBlf8,108540
74
- pulumi_azuread/user_flow_attribute.py,sha256=sdKXzUUY54pcPpIP7JT2qai6VRhvaQyyshZSTPcSXF4,14771
75
- pulumi_azuread/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
76
- pulumi_azuread/config/__init__.pyi,sha256=_S3njcu-_3PVTc2WwjhBpKkF9OtTmarPilsHhA1D8DY,3167
77
- pulumi_azuread/config/vars.py,sha256=kSb7ebxSR_7cmCUu90ydT_hr97qjAGBkwgUMum61OXs,5563
78
- pulumi_azuread-5.48.0a1706744699.dist-info/METADATA,sha256=0flGEu_Ne50jx71fJx1Kx8l1DyCcwzRBj7xqicKRUJ0,4271
79
- pulumi_azuread-5.48.0a1706744699.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
80
- pulumi_azuread-5.48.0a1706744699.dist-info/top_level.txt,sha256=6Qj8-UbMrK9qBTFiDQHxG3fRrnIMh-xNorNq_N5HtrI,15
81
- pulumi_azuread-5.48.0a1706744699.dist-info/RECORD,,