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
@@ -1,7 +1,8 @@
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 builtins as _builtins
5
6
  from . import _utilities
6
7
  import typing
7
8
  # Export this package's modules as members:
@@ -20,15 +21,21 @@ from .get_account import *
20
21
  from .get_alert_channel import *
21
22
  from .get_alert_policy import *
22
23
  from .get_application import *
24
+ from .get_authentication_domain import *
23
25
  from .get_cloud_account import *
24
26
  from .get_entity import *
27
+ from .get_group import *
25
28
  from .get_key_transaction import *
26
29
  from .get_notification_destination import *
27
30
  from .get_obfuscation_expression import *
28
31
  from .get_service_level_alert_helper import *
29
32
  from .get_test_grok_pattern import *
33
+ from .get_user import *
34
+ from .group import *
30
35
  from .infra_alert_condition import *
36
+ from .key_transaction import *
31
37
  from .log_parsing_rule import *
38
+ from .monitor_downtime import *
32
39
  from .notification_channel import *
33
40
  from .notification_destination import *
34
41
  from .nrql_alert_condition import *
@@ -38,8 +45,10 @@ from .obfuscation_rule import *
38
45
  from .one_dashboard import *
39
46
  from .one_dashboard_json import *
40
47
  from .one_dashboard_raw import *
48
+ from .pipeline_cloud_rule import *
41
49
  from .provider import *
42
50
  from .service_level import *
51
+ from .user import *
43
52
  from .workflow import *
44
53
  from ._inputs import *
45
54
  from . import outputs
@@ -130,6 +139,14 @@ _utilities.register(
130
139
  "newrelic:cloud/gcpLinkAccount:GcpLinkAccount": "GcpLinkAccount"
131
140
  }
132
141
  },
142
+ {
143
+ "pkg": "newrelic",
144
+ "mod": "cloud/ociLinkAccount",
145
+ "fqn": "pulumi_newrelic.cloud",
146
+ "classes": {
147
+ "newrelic:cloud/ociLinkAccount:OciLinkAccount": "OciLinkAccount"
148
+ }
149
+ },
133
150
  {
134
151
  "pkg": "newrelic",
135
152
  "mod": "index/accountManagement",
@@ -218,6 +235,14 @@ _utilities.register(
218
235
  "newrelic:index/eventsToMetricsRule:EventsToMetricsRule": "EventsToMetricsRule"
219
236
  }
220
237
  },
238
+ {
239
+ "pkg": "newrelic",
240
+ "mod": "index/group",
241
+ "fqn": "pulumi_newrelic",
242
+ "classes": {
243
+ "newrelic:index/group:Group": "Group"
244
+ }
245
+ },
221
246
  {
222
247
  "pkg": "newrelic",
223
248
  "mod": "index/infraAlertCondition",
@@ -226,6 +251,14 @@ _utilities.register(
226
251
  "newrelic:index/infraAlertCondition:InfraAlertCondition": "InfraAlertCondition"
227
252
  }
228
253
  },
254
+ {
255
+ "pkg": "newrelic",
256
+ "mod": "index/keyTransaction",
257
+ "fqn": "pulumi_newrelic",
258
+ "classes": {
259
+ "newrelic:index/keyTransaction:KeyTransaction": "KeyTransaction"
260
+ }
261
+ },
229
262
  {
230
263
  "pkg": "newrelic",
231
264
  "mod": "index/logParsingRule",
@@ -234,6 +267,14 @@ _utilities.register(
234
267
  "newrelic:index/logParsingRule:LogParsingRule": "LogParsingRule"
235
268
  }
236
269
  },
270
+ {
271
+ "pkg": "newrelic",
272
+ "mod": "index/monitorDowntime",
273
+ "fqn": "pulumi_newrelic",
274
+ "classes": {
275
+ "newrelic:index/monitorDowntime:MonitorDowntime": "MonitorDowntime"
276
+ }
277
+ },
237
278
  {
238
279
  "pkg": "newrelic",
239
280
  "mod": "index/notificationChannel",
@@ -306,6 +347,14 @@ _utilities.register(
306
347
  "newrelic:index/oneDashboardRaw:OneDashboardRaw": "OneDashboardRaw"
307
348
  }
308
349
  },
350
+ {
351
+ "pkg": "newrelic",
352
+ "mod": "index/pipelineCloudRule",
353
+ "fqn": "pulumi_newrelic",
354
+ "classes": {
355
+ "newrelic:index/pipelineCloudRule:PipelineCloudRule": "PipelineCloudRule"
356
+ }
357
+ },
309
358
  {
310
359
  "pkg": "newrelic",
311
360
  "mod": "index/serviceLevel",
@@ -314,6 +363,14 @@ _utilities.register(
314
363
  "newrelic:index/serviceLevel:ServiceLevel": "ServiceLevel"
315
364
  }
316
365
  },
366
+ {
367
+ "pkg": "newrelic",
368
+ "mod": "index/user",
369
+ "fqn": "pulumi_newrelic",
370
+ "classes": {
371
+ "newrelic:index/user:User": "User"
372
+ }
373
+ },
317
374
  {
318
375
  "pkg": "newrelic",
319
376
  "mod": "index/workflow",