pulumi-newrelic 5.22.0__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 +28 -1
  2. pulumi_newrelic/_inputs.py +10385 -2976
  3. pulumi_newrelic/_utilities.py +50 -10
  4. pulumi_newrelic/account_management.py +48 -42
  5. pulumi_newrelic/alert_channel.py +165 -175
  6. pulumi_newrelic/alert_condition.py +307 -319
  7. pulumi_newrelic/alert_muting_rule.py +193 -140
  8. pulumi_newrelic/alert_policy.py +121 -117
  9. pulumi_newrelic/alert_policy_channel.py +89 -79
  10. pulumi_newrelic/api_access_key.py +195 -193
  11. pulumi_newrelic/browser_application.py +120 -114
  12. pulumi_newrelic/cloud/__init__.py +3 -1
  13. pulumi_newrelic/cloud/_inputs.py +4267 -2714
  14. pulumi_newrelic/cloud/aws_govcloud_integrations.py +206 -196
  15. pulumi_newrelic/cloud/aws_govcloud_link_account.py +143 -228
  16. pulumi_newrelic/cloud/aws_integrations.py +510 -1490
  17. pulumi_newrelic/cloud/aws_link_account.py +80 -76
  18. pulumi_newrelic/cloud/azure_integrations.py +673 -587
  19. pulumi_newrelic/cloud/azure_link_account.py +121 -117
  20. pulumi_newrelic/cloud/gcp_integrations.py +428 -408
  21. pulumi_newrelic/cloud/gcp_link_account.py +65 -61
  22. pulumi_newrelic/cloud/oci_link_account.py +926 -0
  23. pulumi_newrelic/cloud/outputs.py +1678 -2321
  24. pulumi_newrelic/config/__init__.py +2 -1
  25. pulumi_newrelic/config/__init__.pyi +8 -3
  26. pulumi_newrelic/config/vars.py +22 -17
  27. pulumi_newrelic/data_partition_rule.py +119 -117
  28. pulumi_newrelic/entity_tags.py +111 -53
  29. pulumi_newrelic/events_to_metrics_rule.py +106 -102
  30. pulumi_newrelic/get_account.py +41 -33
  31. pulumi_newrelic/get_alert_channel.py +73 -28
  32. pulumi_newrelic/get_alert_policy.py +82 -33
  33. pulumi_newrelic/get_application.py +51 -43
  34. pulumi_newrelic/get_authentication_domain.py +27 -23
  35. pulumi_newrelic/get_cloud_account.py +43 -35
  36. pulumi_newrelic/get_entity.py +126 -183
  37. pulumi_newrelic/get_group.py +76 -31
  38. pulumi_newrelic/get_key_transaction.py +117 -42
  39. pulumi_newrelic/get_notification_destination.py +75 -38
  40. pulumi_newrelic/get_obfuscation_expression.py +47 -39
  41. pulumi_newrelic/get_service_level_alert_helper.py +189 -171
  42. pulumi_newrelic/get_test_grok_pattern.py +47 -36
  43. pulumi_newrelic/get_user.py +39 -31
  44. pulumi_newrelic/group.py +59 -199
  45. pulumi_newrelic/infra_alert_condition.py +399 -405
  46. pulumi_newrelic/insights/__init__.py +2 -1
  47. pulumi_newrelic/insights/_inputs.py +71 -28
  48. pulumi_newrelic/insights/event.py +54 -52
  49. pulumi_newrelic/insights/outputs.py +28 -23
  50. pulumi_newrelic/key_transaction.py +465 -0
  51. pulumi_newrelic/log_parsing_rule.py +159 -157
  52. pulumi_newrelic/monitor_downtime.py +311 -331
  53. pulumi_newrelic/notification_channel.py +534 -464
  54. pulumi_newrelic/notification_destination.py +238 -141
  55. pulumi_newrelic/nrql_alert_condition.py +820 -614
  56. pulumi_newrelic/nrql_drop_rule.py +113 -151
  57. pulumi_newrelic/obfuscation_expression.py +80 -76
  58. pulumi_newrelic/obfuscation_rule.py +115 -109
  59. pulumi_newrelic/one_dashboard.py +110 -104
  60. pulumi_newrelic/one_dashboard_json.py +69 -63
  61. pulumi_newrelic/one_dashboard_raw.py +212 -206
  62. pulumi_newrelic/outputs.py +4936 -2234
  63. pulumi_newrelic/pipeline_cloud_rule.py +335 -0
  64. pulumi_newrelic/plugins/__init__.py +2 -1
  65. pulumi_newrelic/plugins/_inputs.py +519 -89
  66. pulumi_newrelic/plugins/application_settings.py +463 -187
  67. pulumi_newrelic/plugins/outputs.py +336 -74
  68. pulumi_newrelic/plugins/workload.py +313 -189
  69. pulumi_newrelic/provider.py +156 -142
  70. pulumi_newrelic/pulumi-plugin.json +2 -1
  71. pulumi_newrelic/service_level.py +263 -263
  72. pulumi_newrelic/synthetics/__init__.py +2 -1
  73. pulumi_newrelic/synthetics/_inputs.py +265 -108
  74. pulumi_newrelic/synthetics/alert_condition.py +170 -180
  75. pulumi_newrelic/synthetics/broken_links_monitor.py +297 -249
  76. pulumi_newrelic/synthetics/cert_check_monitor.py +306 -258
  77. pulumi_newrelic/synthetics/get_private_location.py +51 -47
  78. pulumi_newrelic/synthetics/get_secure_credential.py +39 -31
  79. pulumi_newrelic/synthetics/monitor.py +658 -460
  80. pulumi_newrelic/synthetics/multi_location_alert_condition.py +211 -205
  81. pulumi_newrelic/synthetics/outputs.py +92 -87
  82. pulumi_newrelic/synthetics/private_location.py +118 -112
  83. pulumi_newrelic/synthetics/script_monitor.py +613 -373
  84. pulumi_newrelic/synthetics/secure_credential.py +97 -95
  85. pulumi_newrelic/synthetics/step_monitor.py +445 -275
  86. pulumi_newrelic/user.py +84 -80
  87. pulumi_newrelic/workflow.py +336 -322
  88. {pulumi_newrelic-5.22.0.dist-info → pulumi_newrelic-5.58.0a1763707205.dist-info}/METADATA +7 -6
  89. pulumi_newrelic-5.58.0a1763707205.dist-info/RECORD +92 -0
  90. {pulumi_newrelic-5.22.0.dist-info → pulumi_newrelic-5.58.0a1763707205.dist-info}/WHEEL +1 -1
  91. pulumi_newrelic-5.22.0.dist-info/RECORD +0 -89
  92. {pulumi_newrelic-5.22.0.dist-info → pulumi_newrelic-5.58.0a1763707205.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__ = [
@@ -22,8 +27,8 @@ class GetObfuscationExpressionResult:
22
27
  A collection of values returned by getObfuscationExpression.
23
28
  """
24
29
  def __init__(__self__, account_id=None, id=None, name=None):
25
- if account_id and not isinstance(account_id, int):
26
- raise TypeError("Expected argument 'account_id' to be a int")
30
+ if account_id and not isinstance(account_id, str):
31
+ raise TypeError("Expected argument 'account_id' to be a str")
27
32
  pulumi.set(__self__, "account_id", account_id)
28
33
  if id and not isinstance(id, str):
29
34
  raise TypeError("Expected argument 'id' to be a str")
@@ -32,22 +37,22 @@ class GetObfuscationExpressionResult:
32
37
  raise TypeError("Expected argument 'name' to be a str")
33
38
  pulumi.set(__self__, "name", name)
34
39
 
35
- @property
40
+ @_builtins.property
36
41
  @pulumi.getter(name="accountId")
37
- def account_id(self) -> Optional[int]:
42
+ def account_id(self) -> Optional[_builtins.str]:
38
43
  return pulumi.get(self, "account_id")
39
44
 
40
- @property
45
+ @_builtins.property
41
46
  @pulumi.getter
42
- def id(self) -> str:
47
+ def id(self) -> _builtins.str:
43
48
  """
44
49
  The provider-assigned unique ID for this managed resource.
45
50
  """
46
51
  return pulumi.get(self, "id")
47
52
 
48
- @property
53
+ @_builtins.property
49
54
  @pulumi.getter
50
- def name(self) -> str:
55
+ def name(self) -> _builtins.str:
51
56
  return pulumi.get(self, "name")
52
57
 
53
58
 
@@ -62,36 +67,35 @@ class AwaitableGetObfuscationExpressionResult(GetObfuscationExpressionResult):
62
67
  name=self.name)
63
68
 
64
69
 
65
- def get_obfuscation_expression(account_id: Optional[int] = None,
66
- name: Optional[str] = None,
70
+ def get_obfuscation_expression(account_id: Optional[_builtins.str] = None,
71
+ name: Optional[_builtins.str] = None,
67
72
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetObfuscationExpressionResult:
68
73
  """
69
74
  Use this data source to get information about a specific Obfuscation Expression in New Relic that already exists.
70
75
 
71
76
  ## Example Usage
72
77
 
73
- <!--Start PulumiCodeChooser -->
74
78
  ```python
75
79
  import pulumi
76
80
  import pulumi_newrelic as newrelic
77
81
 
78
- expression = newrelic.get_obfuscation_expression(account_id=123456,
82
+ expression = newrelic.get_obfuscation_expression(account_id="123456",
79
83
  name="The expression")
80
84
  rule = newrelic.ObfuscationRule("rule",
85
+ name="ruleName",
81
86
  description="description of the rule",
82
87
  filter="hostStatus=running",
83
88
  enabled=True,
84
- actions=[newrelic.ObfuscationRuleActionArgs(
85
- attributes=["message"],
86
- expression_id=expression.id,
87
- method="MASK",
88
- )])
89
+ actions=[{
90
+ "attributes": ["message"],
91
+ "expression_id": expression.id,
92
+ "method": "MASK",
93
+ }])
89
94
  ```
90
- <!--End PulumiCodeChooser -->
91
95
 
92
96
 
93
- :param int account_id: The account id associated with the obfuscation expression. If left empty will default to account ID specified in provider level configuration.
94
- :param str name: Name of expression.
97
+ :param _builtins.str account_id: The account id associated with the obfuscation expression. If left empty will default to account ID specified in provider level configuration.
98
+ :param _builtins.str name: Name of expression.
95
99
  """
96
100
  __args__ = dict()
97
101
  __args__['accountId'] = account_id
@@ -103,38 +107,42 @@ def get_obfuscation_expression(account_id: Optional[int] = None,
103
107
  account_id=pulumi.get(__ret__, 'account_id'),
104
108
  id=pulumi.get(__ret__, 'id'),
105
109
  name=pulumi.get(__ret__, 'name'))
106
-
107
-
108
- @_utilities.lift_output_func(get_obfuscation_expression)
109
- def get_obfuscation_expression_output(account_id: Optional[pulumi.Input[Optional[int]]] = None,
110
- name: Optional[pulumi.Input[str]] = None,
111
- opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetObfuscationExpressionResult]:
110
+ def get_obfuscation_expression_output(account_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
111
+ name: Optional[pulumi.Input[_builtins.str]] = None,
112
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetObfuscationExpressionResult]:
112
113
  """
113
114
  Use this data source to get information about a specific Obfuscation Expression in New Relic that already exists.
114
115
 
115
116
  ## Example Usage
116
117
 
117
- <!--Start PulumiCodeChooser -->
118
118
  ```python
119
119
  import pulumi
120
120
  import pulumi_newrelic as newrelic
121
121
 
122
- expression = newrelic.get_obfuscation_expression(account_id=123456,
122
+ expression = newrelic.get_obfuscation_expression(account_id="123456",
123
123
  name="The expression")
124
124
  rule = newrelic.ObfuscationRule("rule",
125
+ name="ruleName",
125
126
  description="description of the rule",
126
127
  filter="hostStatus=running",
127
128
  enabled=True,
128
- actions=[newrelic.ObfuscationRuleActionArgs(
129
- attributes=["message"],
130
- expression_id=expression.id,
131
- method="MASK",
132
- )])
129
+ actions=[{
130
+ "attributes": ["message"],
131
+ "expression_id": expression.id,
132
+ "method": "MASK",
133
+ }])
133
134
  ```
134
- <!--End PulumiCodeChooser -->
135
135
 
136
136
 
137
- :param int account_id: The account id associated with the obfuscation expression. If left empty will default to account ID specified in provider level configuration.
138
- :param str name: Name of expression.
137
+ :param _builtins.str account_id: The account id associated with the obfuscation expression. If left empty will default to account ID specified in provider level configuration.
138
+ :param _builtins.str name: Name of expression.
139
139
  """
140
- ...
140
+ __args__ = dict()
141
+ __args__['accountId'] = account_id
142
+ __args__['name'] = name
143
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
144
+ __ret__ = pulumi.runtime.invoke_output('newrelic:index/getObfuscationExpression:getObfuscationExpression', __args__, opts=opts, typ=GetObfuscationExpressionResult)
145
+ return __ret__.apply(lambda __response__: GetObfuscationExpressionResult(
146
+ account_id=pulumi.get(__response__, 'account_id'),
147
+ id=pulumi.get(__response__, 'id'),
148
+ name=pulumi.get(__response__, 'name')))