pulumi-newrelic 5.19.0a1708065288__py3-none-any.whl → 5.20.0__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.
@@ -0,0 +1,358 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from . import _utilities
11
+
12
+ __all__ = ['UserArgs', 'User']
13
+
14
+ @pulumi.input_type
15
+ class UserArgs:
16
+ def __init__(__self__, *,
17
+ authentication_domain_id: pulumi.Input[str],
18
+ email_id: pulumi.Input[str],
19
+ name: Optional[pulumi.Input[str]] = None,
20
+ user_type: Optional[pulumi.Input[str]] = None):
21
+ """
22
+ The set of arguments for constructing a User resource.
23
+ :param pulumi.Input[str] authentication_domain_id: The ID of the authentication domain to which the user to be created would belong.
24
+ :param pulumi.Input[str] email_id: The email ID of the user to be created.
25
+ :param pulumi.Input[str] name: The name of the user to be created.
26
+ :param pulumi.Input[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`.
27
+
28
+ > **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.
29
+
30
+ > **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.
31
+ """
32
+ pulumi.set(__self__, "authentication_domain_id", authentication_domain_id)
33
+ pulumi.set(__self__, "email_id", email_id)
34
+ if name is not None:
35
+ pulumi.set(__self__, "name", name)
36
+ if user_type is not None:
37
+ pulumi.set(__self__, "user_type", user_type)
38
+
39
+ @property
40
+ @pulumi.getter(name="authenticationDomainId")
41
+ def authentication_domain_id(self) -> pulumi.Input[str]:
42
+ """
43
+ The ID of the authentication domain to which the user to be created would belong.
44
+ """
45
+ return pulumi.get(self, "authentication_domain_id")
46
+
47
+ @authentication_domain_id.setter
48
+ def authentication_domain_id(self, value: pulumi.Input[str]):
49
+ pulumi.set(self, "authentication_domain_id", value)
50
+
51
+ @property
52
+ @pulumi.getter(name="emailId")
53
+ def email_id(self) -> pulumi.Input[str]:
54
+ """
55
+ The email ID of the user to be created.
56
+ """
57
+ return pulumi.get(self, "email_id")
58
+
59
+ @email_id.setter
60
+ def email_id(self, value: pulumi.Input[str]):
61
+ pulumi.set(self, "email_id", value)
62
+
63
+ @property
64
+ @pulumi.getter
65
+ def name(self) -> Optional[pulumi.Input[str]]:
66
+ """
67
+ The name of the user to be created.
68
+ """
69
+ return pulumi.get(self, "name")
70
+
71
+ @name.setter
72
+ def name(self, value: Optional[pulumi.Input[str]]):
73
+ pulumi.set(self, "name", value)
74
+
75
+ @property
76
+ @pulumi.getter(name="userType")
77
+ def user_type(self) -> Optional[pulumi.Input[str]]:
78
+ """
79
+ 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`.
80
+
81
+ > **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.
82
+
83
+ > **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.
84
+ """
85
+ return pulumi.get(self, "user_type")
86
+
87
+ @user_type.setter
88
+ def user_type(self, value: Optional[pulumi.Input[str]]):
89
+ pulumi.set(self, "user_type", value)
90
+
91
+
92
+ @pulumi.input_type
93
+ class _UserState:
94
+ def __init__(__self__, *,
95
+ authentication_domain_id: Optional[pulumi.Input[str]] = None,
96
+ email_id: Optional[pulumi.Input[str]] = None,
97
+ name: Optional[pulumi.Input[str]] = None,
98
+ user_type: Optional[pulumi.Input[str]] = None):
99
+ """
100
+ Input properties used for looking up and filtering User resources.
101
+ :param pulumi.Input[str] authentication_domain_id: The ID of the authentication domain to which the user to be created would belong.
102
+ :param pulumi.Input[str] email_id: The email ID of the user to be created.
103
+ :param pulumi.Input[str] name: The name of the user to be created.
104
+ :param pulumi.Input[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`.
105
+
106
+ > **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.
107
+
108
+ > **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.
109
+ """
110
+ if authentication_domain_id is not None:
111
+ pulumi.set(__self__, "authentication_domain_id", authentication_domain_id)
112
+ if email_id is not None:
113
+ pulumi.set(__self__, "email_id", email_id)
114
+ if name is not None:
115
+ pulumi.set(__self__, "name", name)
116
+ if user_type is not None:
117
+ pulumi.set(__self__, "user_type", user_type)
118
+
119
+ @property
120
+ @pulumi.getter(name="authenticationDomainId")
121
+ def authentication_domain_id(self) -> Optional[pulumi.Input[str]]:
122
+ """
123
+ The ID of the authentication domain to which the user to be created would belong.
124
+ """
125
+ return pulumi.get(self, "authentication_domain_id")
126
+
127
+ @authentication_domain_id.setter
128
+ def authentication_domain_id(self, value: Optional[pulumi.Input[str]]):
129
+ pulumi.set(self, "authentication_domain_id", value)
130
+
131
+ @property
132
+ @pulumi.getter(name="emailId")
133
+ def email_id(self) -> Optional[pulumi.Input[str]]:
134
+ """
135
+ The email ID of the user to be created.
136
+ """
137
+ return pulumi.get(self, "email_id")
138
+
139
+ @email_id.setter
140
+ def email_id(self, value: Optional[pulumi.Input[str]]):
141
+ pulumi.set(self, "email_id", value)
142
+
143
+ @property
144
+ @pulumi.getter
145
+ def name(self) -> Optional[pulumi.Input[str]]:
146
+ """
147
+ The name of the user to be created.
148
+ """
149
+ return pulumi.get(self, "name")
150
+
151
+ @name.setter
152
+ def name(self, value: Optional[pulumi.Input[str]]):
153
+ pulumi.set(self, "name", value)
154
+
155
+ @property
156
+ @pulumi.getter(name="userType")
157
+ def user_type(self) -> Optional[pulumi.Input[str]]:
158
+ """
159
+ 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`.
160
+
161
+ > **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.
162
+
163
+ > **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.
164
+ """
165
+ return pulumi.get(self, "user_type")
166
+
167
+ @user_type.setter
168
+ def user_type(self, value: Optional[pulumi.Input[str]]):
169
+ pulumi.set(self, "user_type", value)
170
+
171
+
172
+ class User(pulumi.CustomResource):
173
+ @overload
174
+ def __init__(__self__,
175
+ resource_name: str,
176
+ opts: Optional[pulumi.ResourceOptions] = None,
177
+ authentication_domain_id: Optional[pulumi.Input[str]] = None,
178
+ email_id: Optional[pulumi.Input[str]] = None,
179
+ name: Optional[pulumi.Input[str]] = None,
180
+ user_type: Optional[pulumi.Input[str]] = None,
181
+ __props__=None):
182
+ """
183
+ The `User` resource may be used to create, update and delete users in New Relic.
184
+
185
+ ## Example Usage
186
+
187
+ ```python
188
+ import pulumi
189
+ import pulumi_newrelic as newrelic
190
+
191
+ foo_authentication_domain = newrelic.get_authentication_domain(name="Test Authentication Domain")
192
+ foo_user = newrelic.User("fooUser",
193
+ email_id="test_user@test.com",
194
+ authentication_domain_id=foo_authentication_domain.id,
195
+ user_type="CORE_USER_TIER")
196
+ ```
197
+
198
+ ## Import
199
+
200
+ A user can be imported using its ID. Example:
201
+
202
+ ```sh
203
+ $ pulumi import newrelic:index/user:User foo 1999999999
204
+ ```
205
+
206
+ :param str resource_name: The name of the resource.
207
+ :param pulumi.ResourceOptions opts: Options for the resource.
208
+ :param pulumi.Input[str] authentication_domain_id: The ID of the authentication domain to which the user to be created would belong.
209
+ :param pulumi.Input[str] email_id: The email ID of the user to be created.
210
+ :param pulumi.Input[str] name: The name of the user to be created.
211
+ :param pulumi.Input[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`.
212
+
213
+ > **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.
214
+
215
+ > **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.
216
+ """
217
+ ...
218
+ @overload
219
+ def __init__(__self__,
220
+ resource_name: str,
221
+ args: UserArgs,
222
+ opts: Optional[pulumi.ResourceOptions] = None):
223
+ """
224
+ The `User` resource may be used to create, update and delete users in New Relic.
225
+
226
+ ## Example Usage
227
+
228
+ ```python
229
+ import pulumi
230
+ import pulumi_newrelic as newrelic
231
+
232
+ foo_authentication_domain = newrelic.get_authentication_domain(name="Test Authentication Domain")
233
+ foo_user = newrelic.User("fooUser",
234
+ email_id="test_user@test.com",
235
+ authentication_domain_id=foo_authentication_domain.id,
236
+ user_type="CORE_USER_TIER")
237
+ ```
238
+
239
+ ## Import
240
+
241
+ A user can be imported using its ID. Example:
242
+
243
+ ```sh
244
+ $ pulumi import newrelic:index/user:User foo 1999999999
245
+ ```
246
+
247
+ :param str resource_name: The name of the resource.
248
+ :param UserArgs args: The arguments to use to populate this resource's properties.
249
+ :param pulumi.ResourceOptions opts: Options for the resource.
250
+ """
251
+ ...
252
+ def __init__(__self__, resource_name: str, *args, **kwargs):
253
+ resource_args, opts = _utilities.get_resource_args_opts(UserArgs, pulumi.ResourceOptions, *args, **kwargs)
254
+ if resource_args is not None:
255
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
256
+ else:
257
+ __self__._internal_init(resource_name, *args, **kwargs)
258
+
259
+ def _internal_init(__self__,
260
+ resource_name: str,
261
+ opts: Optional[pulumi.ResourceOptions] = None,
262
+ authentication_domain_id: Optional[pulumi.Input[str]] = None,
263
+ email_id: Optional[pulumi.Input[str]] = None,
264
+ name: Optional[pulumi.Input[str]] = None,
265
+ user_type: Optional[pulumi.Input[str]] = None,
266
+ __props__=None):
267
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
268
+ if not isinstance(opts, pulumi.ResourceOptions):
269
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
270
+ if opts.id is None:
271
+ if __props__ is not None:
272
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
273
+ __props__ = UserArgs.__new__(UserArgs)
274
+
275
+ if authentication_domain_id is None and not opts.urn:
276
+ raise TypeError("Missing required property 'authentication_domain_id'")
277
+ __props__.__dict__["authentication_domain_id"] = authentication_domain_id
278
+ if email_id is None and not opts.urn:
279
+ raise TypeError("Missing required property 'email_id'")
280
+ __props__.__dict__["email_id"] = email_id
281
+ __props__.__dict__["name"] = name
282
+ __props__.__dict__["user_type"] = user_type
283
+ super(User, __self__).__init__(
284
+ 'newrelic:index/user:User',
285
+ resource_name,
286
+ __props__,
287
+ opts)
288
+
289
+ @staticmethod
290
+ def get(resource_name: str,
291
+ id: pulumi.Input[str],
292
+ opts: Optional[pulumi.ResourceOptions] = None,
293
+ authentication_domain_id: Optional[pulumi.Input[str]] = None,
294
+ email_id: Optional[pulumi.Input[str]] = None,
295
+ name: Optional[pulumi.Input[str]] = None,
296
+ user_type: Optional[pulumi.Input[str]] = None) -> 'User':
297
+ """
298
+ Get an existing User resource's state with the given name, id, and optional extra
299
+ properties used to qualify the lookup.
300
+
301
+ :param str resource_name: The unique name of the resulting resource.
302
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
303
+ :param pulumi.ResourceOptions opts: Options for the resource.
304
+ :param pulumi.Input[str] authentication_domain_id: The ID of the authentication domain to which the user to be created would belong.
305
+ :param pulumi.Input[str] email_id: The email ID of the user to be created.
306
+ :param pulumi.Input[str] name: The name of the user to be created.
307
+ :param pulumi.Input[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`.
308
+
309
+ > **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.
310
+
311
+ > **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.
312
+ """
313
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
314
+
315
+ __props__ = _UserState.__new__(_UserState)
316
+
317
+ __props__.__dict__["authentication_domain_id"] = authentication_domain_id
318
+ __props__.__dict__["email_id"] = email_id
319
+ __props__.__dict__["name"] = name
320
+ __props__.__dict__["user_type"] = user_type
321
+ return User(resource_name, opts=opts, __props__=__props__)
322
+
323
+ @property
324
+ @pulumi.getter(name="authenticationDomainId")
325
+ def authentication_domain_id(self) -> pulumi.Output[str]:
326
+ """
327
+ The ID of the authentication domain to which the user to be created would belong.
328
+ """
329
+ return pulumi.get(self, "authentication_domain_id")
330
+
331
+ @property
332
+ @pulumi.getter(name="emailId")
333
+ def email_id(self) -> pulumi.Output[str]:
334
+ """
335
+ The email ID of the user to be created.
336
+ """
337
+ return pulumi.get(self, "email_id")
338
+
339
+ @property
340
+ @pulumi.getter
341
+ def name(self) -> pulumi.Output[str]:
342
+ """
343
+ The name of the user to be created.
344
+ """
345
+ return pulumi.get(self, "name")
346
+
347
+ @property
348
+ @pulumi.getter(name="userType")
349
+ def user_type(self) -> pulumi.Output[Optional[str]]:
350
+ """
351
+ 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`.
352
+
353
+ > **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.
354
+
355
+ > **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.
356
+ """
357
+ return pulumi.get(self, "user_type")
358
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_newrelic
3
- Version: 5.19.0a1708065288
3
+ Version: 5.20.0
4
4
  Summary: A Pulumi package for creating and managing New Relic resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -1,11 +1,11 @@
1
- pulumi_newrelic/__init__.py,sha256=G9uYSBPUn3CiIdo3PPbJduh_jKTnv_1GzXDpRwe4akY,10962
1
+ pulumi_newrelic/__init__.py,sha256=Ekxa_c_Z6YcPWbvb7FFvd3lBPGRctMTA9rQGGzd13Ts,11328
2
2
  pulumi_newrelic/_inputs.py,sha256=IK3QSgzencxOTb3L-iSDvdaEvKORUTKYewvS8c5VeA8,476794
3
3
  pulumi_newrelic/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
4
4
  pulumi_newrelic/account_management.py,sha256=auMjKSSMQg57OSvOxBJ3MmN_E5z4LdwM4OAwm5AMD2k,8691
5
5
  pulumi_newrelic/alert_channel.py,sha256=f0nLOEtmxakqQPeevuE9W4Sd0pch2RQnfP4sCWApI30,20890
6
6
  pulumi_newrelic/alert_condition.py,sha256=X_2UfWFTWd7PJpmfRGSbgpX4eW1NmPoqtYNFfyR5U1o,45746
7
7
  pulumi_newrelic/alert_muting_rule.py,sha256=nGTdLpOM2fk_wOEMWZLIZokEsMvnbJVH2Mm3Tu1qnHY,19077
8
- pulumi_newrelic/alert_policy.py,sha256=qaIWag4jIrzO4dk-pJYO2iQI8Mqp5RtSCeNk79JvcGo,21883
8
+ pulumi_newrelic/alert_policy.py,sha256=sBu7RkF3LVU2jSmtPHCluS3vzFbxxLV8VCtCtS3VYe4,26105
9
9
  pulumi_newrelic/alert_policy_channel.py,sha256=-r72F1aLGwZcTFuTW68zz-pT497t7bojR_lpHOYJngI,15047
10
10
  pulumi_newrelic/api_access_key.py,sha256=qxHUn8uyGbDNjxVa8Rf9PGKKe63iIlGR0SGD-2Dtdlg,22003
11
11
  pulumi_newrelic/browser_application.py,sha256=pcN5YzkCDoHQFZImpDVQn875rou2vZb54Q9x2W6jles,20501
@@ -14,21 +14,24 @@ pulumi_newrelic/entity_tags.py,sha256=xFxM971c5_blXqlqvK5rsZzYZlDo_4iBIEitMxpn0T
14
14
  pulumi_newrelic/events_to_metrics_rule.py,sha256=NGNxYo4jxww9nXRSwlvqL1B-WdJHGWa64Xa_xcEccro,15888
15
15
  pulumi_newrelic/get_account.py,sha256=9UzKNb5Jjy97owe2HwcNx-fsUxPEel_V3anKifTC5Vo,4651
16
16
  pulumi_newrelic/get_alert_channel.py,sha256=8fbAqBFL5BEXRWqTEf1RjfMnF_faYb59-ZiSf0R4-wk,5416
17
- pulumi_newrelic/get_alert_policy.py,sha256=SrLWQw7kXrSWjh_GeNd4d1axOuCkfxD6faKENLMRpck,5963
17
+ pulumi_newrelic/get_alert_policy.py,sha256=bXG0H6FGgPJOlSif9jcX3C281YSH7RdQLUMMeTzDhks,5795
18
18
  pulumi_newrelic/get_application.py,sha256=5ABKpvWzERwjIEsWwQDpeP3ZJba4shmYuyiNxKvHpnc,5312
19
19
  pulumi_newrelic/get_authentication_domain.py,sha256=UmJnleWQupH_STEvT9v4rRQoS3xnACPkuauPlzmCdkY,3586
20
20
  pulumi_newrelic/get_cloud_account.py,sha256=8yAYziHYdHd1wIfNggdgI_wLq39amS3_f4eW-a-_hMY,5187
21
21
  pulumi_newrelic/get_entity.py,sha256=RNG2amzCxUcwWs3uBRyZL-je70lTzuwO-dpOqk9bpiU,10853
22
+ pulumi_newrelic/get_group.py,sha256=p50E6SFqYdF4O7QeK5z0mqs1e06MYba2p-0BSHta89A,5663
22
23
  pulumi_newrelic/get_key_transaction.py,sha256=QOLqA1EZ4G6BxVQCSZt94rf0M9iJJwGwvW3ioSX71Y0,4081
23
24
  pulumi_newrelic/get_notification_destination.py,sha256=x13_HISLPz42t8MnE9QGf1QEhhc_WfDN3OE4Cx1wB8Q,6365
24
25
  pulumi_newrelic/get_obfuscation_expression.py,sha256=UUhLN7g-VnQ9ASzFt8M4-GE4EpWawIfoug8DJW0Mb_U,4867
25
26
  pulumi_newrelic/get_service_level_alert_helper.py,sha256=yOxb_74lGurxVmmMlVhR6qGy5chm2wkvpwW2eUDmipo,20140
26
27
  pulumi_newrelic/get_test_grok_pattern.py,sha256=Mxo8j32CyD6W_lGwk3BF_NnUA1mi9gfe9voa947HbtU,5504
28
+ pulumi_newrelic/get_user.py,sha256=QxI7LiKvkiBOc-Ovj3ySFzD1l2SrGO1Y7-xnrGhfP3A,7284
29
+ pulumi_newrelic/group.py,sha256=Moi1VJ82NTlIj0u25FEfnxTuNatpbTiC89GrUuCSbSY,21045
27
30
  pulumi_newrelic/infra_alert_condition.py,sha256=T2cW_J8mqiIReV9YNQT3KbNSU8_5GGvPrvpMzWiFYLU,56742
28
31
  pulumi_newrelic/log_parsing_rule.py,sha256=nlGKJssQ3d6gjNG1LJZjdYxfbidGHdy7bRbTqw-LKsY,22270
29
32
  pulumi_newrelic/monitor_downtime.py,sha256=qFGiikR2TMyGDjHn5t6vs9TKUz8Sdksd26rUKpvsUEE,45214
30
- pulumi_newrelic/notification_channel.py,sha256=_55p2WkYvHV-8I4ApZ1q7HW8y1CIBtkrLJFpB7pn-e4,43984
31
- pulumi_newrelic/notification_destination.py,sha256=ELFKkBpyc4ZzkYe64ZenFVM8lCgVXD8bQf2aYGdWRjA,25645
33
+ pulumi_newrelic/notification_channel.py,sha256=Jb08kGYDUSVSlao2mG8HYAOexEs-xbYxKJGC6Chj7jw,45108
34
+ pulumi_newrelic/notification_destination.py,sha256=4rdVen05b3UNVWkoRzSAelSSR9EWJtYlg6r9vl_U99A,28367
32
35
  pulumi_newrelic/nrql_alert_condition.py,sha256=HrmjCKrj21H2l0StdxlE0-OHGdSCUPIOdkYUXUDUtbQ,105561
33
36
  pulumi_newrelic/nrql_drop_rule.py,sha256=uOY6vN0Fqufl13vAUGHikXJLhKLeIRUYb-PB4vkh6nI,15726
34
37
  pulumi_newrelic/obfuscation_expression.py,sha256=Ug-pkNbylLLndFS-qEgt2ohs-s0YMY7fqhvqxx6p1to,12291
@@ -41,9 +44,10 @@ pulumi_newrelic/provider.py,sha256=VPXhUfFLSVoIFew1P_oy7pHeondN5LbHsLoLqD3z7qs,1
41
44
  pulumi_newrelic/pulumi-plugin.json,sha256=BB2nuoRbgCmufIppkKjSbeCa7oIqt8NBakO_A4QV0Pk,45
42
45
  pulumi_newrelic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
46
  pulumi_newrelic/service_level.py,sha256=_OP2mlBdwytUKoMA0Av9TjjNDOJA3Q2w2ORIHi7CrHk,29765
47
+ pulumi_newrelic/user.py,sha256=CTEu7jLOd1JLGudpz724ZVWM6xT9iKfZhsF9NgZKEyA,18970
44
48
  pulumi_newrelic/workflow.py,sha256=vqvLiF1SNFsnr9SrCuiBYVyILF0s96eFXdUeFDDIowI,41378
45
49
  pulumi_newrelic/cloud/__init__.py,sha256=iv3_NQivZ9OvaZzsRb81j-_v55U3fjpbV-q2T8oW6i8,592
46
- pulumi_newrelic/cloud/_inputs.py,sha256=E4RMrsuu9R1viChF-s4Wf-KvcsmhQFqTvIHBRF9JS-Q,331250
50
+ pulumi_newrelic/cloud/_inputs.py,sha256=b8GQn6Yk8JhTcIttEAiWyYDw0E_QSW2eNQb3UFYLTYk,332136
47
51
  pulumi_newrelic/cloud/aws_govcloud_integrations.py,sha256=9_ikPyzE6xhS4X2VWp82LSTrcfy1LA9eLyaHLDIqIas,62206
48
52
  pulumi_newrelic/cloud/aws_govcloud_link_account.py,sha256=wtTA0qFmfrSRbUi6zhaXF2wQLlm-dUB0o6H81fTbJs4,20763
49
53
  pulumi_newrelic/cloud/aws_integrations.py,sha256=LS4TWadsPQjg0UnzfoXftnCZNoqz7onEwwhId-XUvtw,180649
@@ -52,7 +56,7 @@ pulumi_newrelic/cloud/azure_integrations.py,sha256=63bwcNboNbSEgmhxbD7Icm4ziYr1b
52
56
  pulumi_newrelic/cloud/azure_link_account.py,sha256=t_9pB5M68Cpf0nxG52arpP87i1U3-T_vrtOu-9RUGBc,18467
53
57
  pulumi_newrelic/cloud/gcp_integrations.py,sha256=WPiBu9sRLNO8qZYmUdrhIDz0zz5bRT5EiMkeGZGT4UQ,83424
54
58
  pulumi_newrelic/cloud/gcp_link_account.py,sha256=Y6IyZY_idXpInofah529U19qA0EfNuvNgz3YxkwqwrU,12367
55
- pulumi_newrelic/cloud/outputs.py,sha256=jinZLaji4zslRgyoqO90LyZ4Qpoj2S6dZBMJOYpdTn4,352906
59
+ pulumi_newrelic/cloud/outputs.py,sha256=URkzIYZ5x8OJSTkR6CLawyqP2GT0R4eEIlsiA2RQwKg,353792
56
60
  pulumi_newrelic/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
57
61
  pulumi_newrelic/config/__init__.pyi,sha256=8n6XwrQvqjl4HY1_XELEwc9YzT87qKE_XNuwTuxE1s8,845
58
62
  pulumi_newrelic/config/vars.py,sha256=LoerUF1FfCG5xvxTF5mWFEP5ClRaMAK8KdgJiPmchp4,2110
@@ -79,7 +83,7 @@ pulumi_newrelic/synthetics/private_location.py,sha256=x2Ji28435eqLVwZY9tXLN4QV08
79
83
  pulumi_newrelic/synthetics/script_monitor.py,sha256=4OQteFH88JhQnTC6j9GwBhXO-DYWarjGkkqX0WIEPeE,54582
80
84
  pulumi_newrelic/synthetics/secure_credential.py,sha256=O5SFzx3UNw64KjxCRzxatsXoPjT_e6VyJ32JTa0f0Dw,15604
81
85
  pulumi_newrelic/synthetics/step_monitor.py,sha256=SykPSAJYHcqMD9dNXSXx2cTpsKmF3cy6ObXNRqb2CTQ,35141
82
- pulumi_newrelic-5.19.0a1708065288.dist-info/METADATA,sha256=OQwqy3HiFertu8AUDGn-QX_a0bgZabchQgn6d86Jfw0,3900
83
- pulumi_newrelic-5.19.0a1708065288.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
84
- pulumi_newrelic-5.19.0a1708065288.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
85
- pulumi_newrelic-5.19.0a1708065288.dist-info/RECORD,,
86
+ pulumi_newrelic-5.20.0.dist-info/METADATA,sha256=ZsUxsYnIKCllb5_CsHYdticIyFw3bE7WVsOeRXIbwjw,3889
87
+ pulumi_newrelic-5.20.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
88
+ pulumi_newrelic-5.20.0.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
89
+ pulumi_newrelic-5.20.0.dist-info/RECORD,,