pulumi-newrelic 5.16.0a1698964311__py3-none-any.whl → 5.58.0a1763707205__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-newrelic might be problematic. Click here for more details.

Files changed (92) hide show
  1. pulumi_newrelic/__init__.py +58 -1
  2. pulumi_newrelic/_inputs.py +10772 -2775
  3. pulumi_newrelic/_utilities.py +92 -11
  4. pulumi_newrelic/account_management.py +56 -42
  5. pulumi_newrelic/alert_channel.py +177 -151
  6. pulumi_newrelic/alert_condition.py +313 -301
  7. pulumi_newrelic/alert_muting_rule.py +195 -138
  8. pulumi_newrelic/alert_policy.py +157 -109
  9. pulumi_newrelic/alert_policy_channel.py +95 -81
  10. pulumi_newrelic/api_access_key.py +191 -209
  11. pulumi_newrelic/browser_application.py +161 -153
  12. pulumi_newrelic/cloud/__init__.py +3 -1
  13. pulumi_newrelic/cloud/_inputs.py +4267 -2710
  14. pulumi_newrelic/cloud/aws_govcloud_integrations.py +238 -200
  15. pulumi_newrelic/cloud/aws_govcloud_link_account.py +159 -212
  16. pulumi_newrelic/cloud/aws_integrations.py +518 -1490
  17. pulumi_newrelic/cloud/aws_link_account.py +88 -76
  18. pulumi_newrelic/cloud/azure_integrations.py +681 -587
  19. pulumi_newrelic/cloud/azure_link_account.py +129 -117
  20. pulumi_newrelic/cloud/gcp_integrations.py +436 -408
  21. pulumi_newrelic/cloud/gcp_link_account.py +71 -59
  22. pulumi_newrelic/cloud/oci_link_account.py +926 -0
  23. pulumi_newrelic/cloud/outputs.py +1678 -2317
  24. pulumi_newrelic/config/__init__.py +2 -1
  25. pulumi_newrelic/config/__init__.pyi +45 -0
  26. pulumi_newrelic/config/vars.py +22 -17
  27. pulumi_newrelic/data_partition_rule.py +129 -117
  28. pulumi_newrelic/entity_tags.py +153 -31
  29. pulumi_newrelic/events_to_metrics_rule.py +114 -102
  30. pulumi_newrelic/get_account.py +41 -29
  31. pulumi_newrelic/get_alert_channel.py +73 -28
  32. pulumi_newrelic/get_alert_policy.py +83 -34
  33. pulumi_newrelic/get_application.py +51 -39
  34. pulumi_newrelic/get_authentication_domain.py +111 -0
  35. pulumi_newrelic/get_cloud_account.py +43 -31
  36. pulumi_newrelic/get_entity.py +126 -121
  37. pulumi_newrelic/get_group.py +190 -0
  38. pulumi_newrelic/get_key_transaction.py +117 -38
  39. pulumi_newrelic/get_notification_destination.py +86 -36
  40. pulumi_newrelic/get_obfuscation_expression.py +47 -35
  41. pulumi_newrelic/get_service_level_alert_helper.py +237 -137
  42. pulumi_newrelic/get_test_grok_pattern.py +47 -32
  43. pulumi_newrelic/get_user.py +165 -0
  44. pulumi_newrelic/group.py +286 -0
  45. pulumi_newrelic/infra_alert_condition.py +400 -382
  46. pulumi_newrelic/insights/__init__.py +2 -1
  47. pulumi_newrelic/insights/_inputs.py +94 -23
  48. pulumi_newrelic/insights/event.py +56 -48
  49. pulumi_newrelic/insights/outputs.py +51 -18
  50. pulumi_newrelic/key_transaction.py +465 -0
  51. pulumi_newrelic/log_parsing_rule.py +169 -153
  52. pulumi_newrelic/monitor_downtime.py +914 -0
  53. pulumi_newrelic/notification_channel.py +560 -418
  54. pulumi_newrelic/notification_destination.py +379 -124
  55. pulumi_newrelic/nrql_alert_condition.py +945 -513
  56. pulumi_newrelic/nrql_drop_rule.py +121 -129
  57. pulumi_newrelic/obfuscation_expression.py +88 -76
  58. pulumi_newrelic/obfuscation_rule.py +123 -109
  59. pulumi_newrelic/one_dashboard.py +118 -108
  60. pulumi_newrelic/one_dashboard_json.py +77 -67
  61. pulumi_newrelic/one_dashboard_raw.py +214 -202
  62. pulumi_newrelic/outputs.py +5491 -2141
  63. pulumi_newrelic/pipeline_cloud_rule.py +335 -0
  64. pulumi_newrelic/plugins/__init__.py +2 -1
  65. pulumi_newrelic/plugins/_inputs.py +520 -90
  66. pulumi_newrelic/plugins/application_settings.py +463 -167
  67. pulumi_newrelic/plugins/outputs.py +337 -75
  68. pulumi_newrelic/plugins/workload.py +387 -151
  69. pulumi_newrelic/provider.py +156 -142
  70. pulumi_newrelic/pulumi-plugin.json +2 -1
  71. pulumi_newrelic/service_level.py +277 -255
  72. pulumi_newrelic/synthetics/__init__.py +2 -1
  73. pulumi_newrelic/synthetics/_inputs.py +275 -106
  74. pulumi_newrelic/synthetics/alert_condition.py +174 -160
  75. pulumi_newrelic/synthetics/broken_links_monitor.py +367 -207
  76. pulumi_newrelic/synthetics/cert_check_monitor.py +380 -218
  77. pulumi_newrelic/synthetics/get_private_location.py +51 -39
  78. pulumi_newrelic/synthetics/get_secure_credential.py +39 -27
  79. pulumi_newrelic/synthetics/monitor.py +668 -462
  80. pulumi_newrelic/synthetics/multi_location_alert_condition.py +219 -201
  81. pulumi_newrelic/synthetics/outputs.py +102 -85
  82. pulumi_newrelic/synthetics/private_location.py +120 -110
  83. pulumi_newrelic/synthetics/script_monitor.py +623 -375
  84. pulumi_newrelic/synthetics/secure_credential.py +99 -93
  85. pulumi_newrelic/synthetics/step_monitor.py +545 -201
  86. pulumi_newrelic/user.py +366 -0
  87. pulumi_newrelic/workflow.py +348 -312
  88. {pulumi_newrelic-5.16.0a1698964311.dist-info → pulumi_newrelic-5.58.0a1763707205.dist-info}/METADATA +8 -7
  89. pulumi_newrelic-5.58.0a1763707205.dist-info/RECORD +92 -0
  90. {pulumi_newrelic-5.16.0a1698964311.dist-info → pulumi_newrelic-5.58.0a1763707205.dist-info}/WHEEL +1 -1
  91. pulumi_newrelic-5.16.0a1698964311.dist-info/RECORD +0 -82
  92. {pulumi_newrelic-5.16.0a1698964311.dist-info → pulumi_newrelic-5.58.0a1763707205.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,366 @@
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
+ import builtins as _builtins
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
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
15
+ from . import _utilities
16
+
17
+ __all__ = ['UserArgs', 'User']
18
+
19
+ @pulumi.input_type
20
+ class UserArgs:
21
+ def __init__(__self__, *,
22
+ authentication_domain_id: pulumi.Input[_builtins.str],
23
+ email_id: pulumi.Input[_builtins.str],
24
+ name: Optional[pulumi.Input[_builtins.str]] = None,
25
+ user_type: Optional[pulumi.Input[_builtins.str]] = None):
26
+ """
27
+ The set of arguments for constructing a User resource.
28
+ :param pulumi.Input[_builtins.str] authentication_domain_id: The ID of the authentication domain to which the user to be created would belong.
29
+ :param pulumi.Input[_builtins.str] email_id: The email ID of the user to be created.
30
+ :param pulumi.Input[_builtins.str] name: The name of the user to be created.
31
+ :param pulumi.Input[_builtins.str] user_type: The tier to which the user to be created would belong. Accepted values for this argument are `BASIC_USER_TIER`, `CORE_USER_TIER`, or `FULL_USER_TIER`. If not specified in the configuration, the argument would default to `BASIC_USER_TIER`.
32
+
33
+ > **NOTE** The ID of an authentication domain can be retrieved using its name, via the data source `get_authentication_domain`, as shown in the example above. Head over to the documentation of this data source for more details and examples.
34
+
35
+ > **WARNING:** Changing the `authentication_domain_id` of a `User` resource that has already been applied would result in a **replacement** of the resource – destruction of the existing resource, followed by the addition of a new resource with the specified configuration. This is due to the fact that updating the `authentication_domain_id` of an existing user is not supported.
36
+ """
37
+ pulumi.set(__self__, "authentication_domain_id", authentication_domain_id)
38
+ pulumi.set(__self__, "email_id", email_id)
39
+ if name is not None:
40
+ pulumi.set(__self__, "name", name)
41
+ if user_type is not None:
42
+ pulumi.set(__self__, "user_type", user_type)
43
+
44
+ @_builtins.property
45
+ @pulumi.getter(name="authenticationDomainId")
46
+ def authentication_domain_id(self) -> pulumi.Input[_builtins.str]:
47
+ """
48
+ The ID of the authentication domain to which the user to be created would belong.
49
+ """
50
+ return pulumi.get(self, "authentication_domain_id")
51
+
52
+ @authentication_domain_id.setter
53
+ def authentication_domain_id(self, value: pulumi.Input[_builtins.str]):
54
+ pulumi.set(self, "authentication_domain_id", value)
55
+
56
+ @_builtins.property
57
+ @pulumi.getter(name="emailId")
58
+ def email_id(self) -> pulumi.Input[_builtins.str]:
59
+ """
60
+ The email ID of the user to be created.
61
+ """
62
+ return pulumi.get(self, "email_id")
63
+
64
+ @email_id.setter
65
+ def email_id(self, value: pulumi.Input[_builtins.str]):
66
+ pulumi.set(self, "email_id", value)
67
+
68
+ @_builtins.property
69
+ @pulumi.getter
70
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
71
+ """
72
+ The name of the user to be created.
73
+ """
74
+ return pulumi.get(self, "name")
75
+
76
+ @name.setter
77
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
78
+ pulumi.set(self, "name", value)
79
+
80
+ @_builtins.property
81
+ @pulumi.getter(name="userType")
82
+ def user_type(self) -> Optional[pulumi.Input[_builtins.str]]:
83
+ """
84
+ The tier to which the user to be created would belong. Accepted values for this argument are `BASIC_USER_TIER`, `CORE_USER_TIER`, or `FULL_USER_TIER`. If not specified in the configuration, the argument would default to `BASIC_USER_TIER`.
85
+
86
+ > **NOTE** The ID of an authentication domain can be retrieved using its name, via the data source `get_authentication_domain`, as shown in the example above. Head over to the documentation of this data source for more details and examples.
87
+
88
+ > **WARNING:** Changing the `authentication_domain_id` of a `User` resource that has already been applied would result in a **replacement** of the resource – destruction of the existing resource, followed by the addition of a new resource with the specified configuration. This is due to the fact that updating the `authentication_domain_id` of an existing user is not supported.
89
+ """
90
+ return pulumi.get(self, "user_type")
91
+
92
+ @user_type.setter
93
+ def user_type(self, value: Optional[pulumi.Input[_builtins.str]]):
94
+ pulumi.set(self, "user_type", value)
95
+
96
+
97
+ @pulumi.input_type
98
+ class _UserState:
99
+ def __init__(__self__, *,
100
+ authentication_domain_id: Optional[pulumi.Input[_builtins.str]] = None,
101
+ email_id: Optional[pulumi.Input[_builtins.str]] = None,
102
+ name: Optional[pulumi.Input[_builtins.str]] = None,
103
+ user_type: Optional[pulumi.Input[_builtins.str]] = None):
104
+ """
105
+ Input properties used for looking up and filtering User resources.
106
+ :param pulumi.Input[_builtins.str] authentication_domain_id: The ID of the authentication domain to which the user to be created would belong.
107
+ :param pulumi.Input[_builtins.str] email_id: The email ID of the user to be created.
108
+ :param pulumi.Input[_builtins.str] name: The name of the user to be created.
109
+ :param pulumi.Input[_builtins.str] user_type: The tier to which the user to be created would belong. Accepted values for this argument are `BASIC_USER_TIER`, `CORE_USER_TIER`, or `FULL_USER_TIER`. If not specified in the configuration, the argument would default to `BASIC_USER_TIER`.
110
+
111
+ > **NOTE** The ID of an authentication domain can be retrieved using its name, via the data source `get_authentication_domain`, as shown in the example above. Head over to the documentation of this data source for more details and examples.
112
+
113
+ > **WARNING:** Changing the `authentication_domain_id` of a `User` resource that has already been applied would result in a **replacement** of the resource – destruction of the existing resource, followed by the addition of a new resource with the specified configuration. This is due to the fact that updating the `authentication_domain_id` of an existing user is not supported.
114
+ """
115
+ if authentication_domain_id is not None:
116
+ pulumi.set(__self__, "authentication_domain_id", authentication_domain_id)
117
+ if email_id is not None:
118
+ pulumi.set(__self__, "email_id", email_id)
119
+ if name is not None:
120
+ pulumi.set(__self__, "name", name)
121
+ if user_type is not None:
122
+ pulumi.set(__self__, "user_type", user_type)
123
+
124
+ @_builtins.property
125
+ @pulumi.getter(name="authenticationDomainId")
126
+ def authentication_domain_id(self) -> Optional[pulumi.Input[_builtins.str]]:
127
+ """
128
+ The ID of the authentication domain to which the user to be created would belong.
129
+ """
130
+ return pulumi.get(self, "authentication_domain_id")
131
+
132
+ @authentication_domain_id.setter
133
+ def authentication_domain_id(self, value: Optional[pulumi.Input[_builtins.str]]):
134
+ pulumi.set(self, "authentication_domain_id", value)
135
+
136
+ @_builtins.property
137
+ @pulumi.getter(name="emailId")
138
+ def email_id(self) -> Optional[pulumi.Input[_builtins.str]]:
139
+ """
140
+ The email ID of the user to be created.
141
+ """
142
+ return pulumi.get(self, "email_id")
143
+
144
+ @email_id.setter
145
+ def email_id(self, value: Optional[pulumi.Input[_builtins.str]]):
146
+ pulumi.set(self, "email_id", value)
147
+
148
+ @_builtins.property
149
+ @pulumi.getter
150
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
151
+ """
152
+ The name of the user to be created.
153
+ """
154
+ return pulumi.get(self, "name")
155
+
156
+ @name.setter
157
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
158
+ pulumi.set(self, "name", value)
159
+
160
+ @_builtins.property
161
+ @pulumi.getter(name="userType")
162
+ def user_type(self) -> Optional[pulumi.Input[_builtins.str]]:
163
+ """
164
+ The tier to which the user to be created would belong. Accepted values for this argument are `BASIC_USER_TIER`, `CORE_USER_TIER`, or `FULL_USER_TIER`. If not specified in the configuration, the argument would default to `BASIC_USER_TIER`.
165
+
166
+ > **NOTE** The ID of an authentication domain can be retrieved using its name, via the data source `get_authentication_domain`, as shown in the example above. Head over to the documentation of this data source for more details and examples.
167
+
168
+ > **WARNING:** Changing the `authentication_domain_id` of a `User` resource that has already been applied would result in a **replacement** of the resource – destruction of the existing resource, followed by the addition of a new resource with the specified configuration. This is due to the fact that updating the `authentication_domain_id` of an existing user is not supported.
169
+ """
170
+ return pulumi.get(self, "user_type")
171
+
172
+ @user_type.setter
173
+ def user_type(self, value: Optional[pulumi.Input[_builtins.str]]):
174
+ pulumi.set(self, "user_type", value)
175
+
176
+
177
+ @pulumi.type_token("newrelic:index/user:User")
178
+ class User(pulumi.CustomResource):
179
+ @overload
180
+ def __init__(__self__,
181
+ resource_name: str,
182
+ opts: Optional[pulumi.ResourceOptions] = None,
183
+ authentication_domain_id: Optional[pulumi.Input[_builtins.str]] = None,
184
+ email_id: Optional[pulumi.Input[_builtins.str]] = None,
185
+ name: Optional[pulumi.Input[_builtins.str]] = None,
186
+ user_type: Optional[pulumi.Input[_builtins.str]] = None,
187
+ __props__=None):
188
+ """
189
+ The `User` resource may be used to create, update and delete users in New Relic.
190
+
191
+ ## Example Usage
192
+
193
+ ```python
194
+ import pulumi
195
+ import pulumi_newrelic as newrelic
196
+
197
+ foo = newrelic.get_authentication_domain(name="Test Authentication Domain")
198
+ foo_user = newrelic.User("foo",
199
+ name="Test New User",
200
+ email_id="test_user@test.com",
201
+ authentication_domain_id=foo.id,
202
+ user_type="CORE_USER_TIER")
203
+ ```
204
+
205
+ ## Import
206
+
207
+ A user can be imported using its ID. Example:
208
+
209
+ ```sh
210
+ $ pulumi import newrelic:index/user:User foo 1999999999
211
+ ```
212
+
213
+ :param str resource_name: The name of the resource.
214
+ :param pulumi.ResourceOptions opts: Options for the resource.
215
+ :param pulumi.Input[_builtins.str] authentication_domain_id: The ID of the authentication domain to which the user to be created would belong.
216
+ :param pulumi.Input[_builtins.str] email_id: The email ID of the user to be created.
217
+ :param pulumi.Input[_builtins.str] name: The name of the user to be created.
218
+ :param pulumi.Input[_builtins.str] user_type: The tier to which the user to be created would belong. Accepted values for this argument are `BASIC_USER_TIER`, `CORE_USER_TIER`, or `FULL_USER_TIER`. If not specified in the configuration, the argument would default to `BASIC_USER_TIER`.
219
+
220
+ > **NOTE** The ID of an authentication domain can be retrieved using its name, via the data source `get_authentication_domain`, as shown in the example above. Head over to the documentation of this data source for more details and examples.
221
+
222
+ > **WARNING:** Changing the `authentication_domain_id` of a `User` resource that has already been applied would result in a **replacement** of the resource – destruction of the existing resource, followed by the addition of a new resource with the specified configuration. This is due to the fact that updating the `authentication_domain_id` of an existing user is not supported.
223
+ """
224
+ ...
225
+ @overload
226
+ def __init__(__self__,
227
+ resource_name: str,
228
+ args: UserArgs,
229
+ opts: Optional[pulumi.ResourceOptions] = None):
230
+ """
231
+ The `User` resource may be used to create, update and delete users in New Relic.
232
+
233
+ ## Example Usage
234
+
235
+ ```python
236
+ import pulumi
237
+ import pulumi_newrelic as newrelic
238
+
239
+ foo = newrelic.get_authentication_domain(name="Test Authentication Domain")
240
+ foo_user = newrelic.User("foo",
241
+ name="Test New User",
242
+ email_id="test_user@test.com",
243
+ authentication_domain_id=foo.id,
244
+ user_type="CORE_USER_TIER")
245
+ ```
246
+
247
+ ## Import
248
+
249
+ A user can be imported using its ID. Example:
250
+
251
+ ```sh
252
+ $ pulumi import newrelic:index/user:User foo 1999999999
253
+ ```
254
+
255
+ :param str resource_name: The name of the resource.
256
+ :param UserArgs args: The arguments to use to populate this resource's properties.
257
+ :param pulumi.ResourceOptions opts: Options for the resource.
258
+ """
259
+ ...
260
+ def __init__(__self__, resource_name: str, *args, **kwargs):
261
+ resource_args, opts = _utilities.get_resource_args_opts(UserArgs, pulumi.ResourceOptions, *args, **kwargs)
262
+ if resource_args is not None:
263
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
264
+ else:
265
+ __self__._internal_init(resource_name, *args, **kwargs)
266
+
267
+ def _internal_init(__self__,
268
+ resource_name: str,
269
+ opts: Optional[pulumi.ResourceOptions] = None,
270
+ authentication_domain_id: Optional[pulumi.Input[_builtins.str]] = None,
271
+ email_id: Optional[pulumi.Input[_builtins.str]] = None,
272
+ name: Optional[pulumi.Input[_builtins.str]] = None,
273
+ user_type: Optional[pulumi.Input[_builtins.str]] = None,
274
+ __props__=None):
275
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
276
+ if not isinstance(opts, pulumi.ResourceOptions):
277
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
278
+ if opts.id is None:
279
+ if __props__ is not None:
280
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
281
+ __props__ = UserArgs.__new__(UserArgs)
282
+
283
+ if authentication_domain_id is None and not opts.urn:
284
+ raise TypeError("Missing required property 'authentication_domain_id'")
285
+ __props__.__dict__["authentication_domain_id"] = authentication_domain_id
286
+ if email_id is None and not opts.urn:
287
+ raise TypeError("Missing required property 'email_id'")
288
+ __props__.__dict__["email_id"] = email_id
289
+ __props__.__dict__["name"] = name
290
+ __props__.__dict__["user_type"] = user_type
291
+ super(User, __self__).__init__(
292
+ 'newrelic:index/user:User',
293
+ resource_name,
294
+ __props__,
295
+ opts)
296
+
297
+ @staticmethod
298
+ def get(resource_name: str,
299
+ id: pulumi.Input[str],
300
+ opts: Optional[pulumi.ResourceOptions] = None,
301
+ authentication_domain_id: Optional[pulumi.Input[_builtins.str]] = None,
302
+ email_id: Optional[pulumi.Input[_builtins.str]] = None,
303
+ name: Optional[pulumi.Input[_builtins.str]] = None,
304
+ user_type: Optional[pulumi.Input[_builtins.str]] = None) -> 'User':
305
+ """
306
+ Get an existing User resource's state with the given name, id, and optional extra
307
+ properties used to qualify the lookup.
308
+
309
+ :param str resource_name: The unique name of the resulting resource.
310
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
311
+ :param pulumi.ResourceOptions opts: Options for the resource.
312
+ :param pulumi.Input[_builtins.str] authentication_domain_id: The ID of the authentication domain to which the user to be created would belong.
313
+ :param pulumi.Input[_builtins.str] email_id: The email ID of the user to be created.
314
+ :param pulumi.Input[_builtins.str] name: The name of the user to be created.
315
+ :param pulumi.Input[_builtins.str] user_type: The tier to which the user to be created would belong. Accepted values for this argument are `BASIC_USER_TIER`, `CORE_USER_TIER`, or `FULL_USER_TIER`. If not specified in the configuration, the argument would default to `BASIC_USER_TIER`.
316
+
317
+ > **NOTE** The ID of an authentication domain can be retrieved using its name, via the data source `get_authentication_domain`, as shown in the example above. Head over to the documentation of this data source for more details and examples.
318
+
319
+ > **WARNING:** Changing the `authentication_domain_id` of a `User` resource that has already been applied would result in a **replacement** of the resource – destruction of the existing resource, followed by the addition of a new resource with the specified configuration. This is due to the fact that updating the `authentication_domain_id` of an existing user is not supported.
320
+ """
321
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
322
+
323
+ __props__ = _UserState.__new__(_UserState)
324
+
325
+ __props__.__dict__["authentication_domain_id"] = authentication_domain_id
326
+ __props__.__dict__["email_id"] = email_id
327
+ __props__.__dict__["name"] = name
328
+ __props__.__dict__["user_type"] = user_type
329
+ return User(resource_name, opts=opts, __props__=__props__)
330
+
331
+ @_builtins.property
332
+ @pulumi.getter(name="authenticationDomainId")
333
+ def authentication_domain_id(self) -> pulumi.Output[_builtins.str]:
334
+ """
335
+ The ID of the authentication domain to which the user to be created would belong.
336
+ """
337
+ return pulumi.get(self, "authentication_domain_id")
338
+
339
+ @_builtins.property
340
+ @pulumi.getter(name="emailId")
341
+ def email_id(self) -> pulumi.Output[_builtins.str]:
342
+ """
343
+ The email ID of the user to be created.
344
+ """
345
+ return pulumi.get(self, "email_id")
346
+
347
+ @_builtins.property
348
+ @pulumi.getter
349
+ def name(self) -> pulumi.Output[_builtins.str]:
350
+ """
351
+ The name of the user to be created.
352
+ """
353
+ return pulumi.get(self, "name")
354
+
355
+ @_builtins.property
356
+ @pulumi.getter(name="userType")
357
+ def user_type(self) -> pulumi.Output[Optional[_builtins.str]]:
358
+ """
359
+ The tier to which the user to be created would belong. Accepted values for this argument are `BASIC_USER_TIER`, `CORE_USER_TIER`, or `FULL_USER_TIER`. If not specified in the configuration, the argument would default to `BASIC_USER_TIER`.
360
+
361
+ > **NOTE** The ID of an authentication domain can be retrieved using its name, via the data source `get_authentication_domain`, as shown in the example above. Head over to the documentation of this data source for more details and examples.
362
+
363
+ > **WARNING:** Changing the `authentication_domain_id` of a `User` resource that has already been applied would result in a **replacement** of the resource – destruction of the existing resource, followed by the addition of a new resource with the specified configuration. This is due to the fact that updating the `authentication_domain_id` of an existing user is not supported.
364
+ """
365
+ return pulumi.get(self, "user_type")
366
+